@@ -61,12 +61,11 @@ public static Updater Instance
61
61
#region Fields
62
62
63
63
private const string m_strUpdateLib = "UpdateLib" ;
64
-
65
- private int m_pid ;
64
+
66
65
private string m_updateUrl = string . Empty ;
67
- private string m_argUpdateSilent = "-- silent" ;
68
- private string m_argUpdate = "-- update" ;
69
- private string m_argWait = "-- wait" ;
66
+ private const string m_argUpdateSilent = "silent" ;
67
+ private const string m_argUpdate = "update" ;
68
+ private const string m_argWait = "wait" ;
70
69
private Lazy < PathVariableConverter > m_lazyPathVarConv = new Lazy < PathVariableConverter > ( ( ) => new PathVariableConverter ( ) ) ;
71
70
private TimeSpan m_cacheInvalidation = TimeSpan . FromMinutes ( 5 ) ;
72
71
private Lazy < Logger > m_lazyLogger = new Lazy < Logger > ( ( ) => new Logger ( ) ) ;
@@ -105,6 +104,8 @@ public static Updater Instance
105
104
106
105
internal static string UpdaterName { get { return m_lazyUpdaterName . Value ; } }
107
106
107
+ public CmdLineParser CommandLine { get ; } = new CmdLineParser ( ) ;
108
+
108
109
/// <summary>
109
110
/// Gets or sets the url to update from
110
111
/// </summary>
@@ -144,49 +145,19 @@ public InstallationMode InstallationMode
144
145
/// <summary>
145
146
/// Gets or sets if we want to check for updates before the actual program is loaded.
146
147
/// </summary>
147
- public bool StartUpdating { get ; set ; } = false ;
148
+ public bool StartUpdating { get ; private set ; } = false ;
148
149
149
150
/// <summary>
150
151
/// Gets or sets if we want to update silently (no UI interaction).
151
152
/// </summary>
152
- public bool UpdateSilently { get ; set ; } = false ;
153
-
154
- /// <summary>
155
- /// Gets or sets the command line argument for the silent switch
156
- /// If this argument has been set and is passed in the command line it will set <see cref="UpdateSilently"/> to <c>True</c>
157
- /// </summary>
158
- public string UpdateSilentlyCmdArg
159
- {
160
- get { return m_argUpdateSilent ; }
161
- set { SetAndVerifyCmdArgument ( ref m_argUpdateSilent , value ) ; }
162
- }
163
-
164
- /// <summary>
165
- /// Gets or sets the command line argument for the update switch
166
- /// If this argument has been set and is passed in the command line it will set <see cref="StartUpdating"/> to <c>True</c>
167
- /// </summary>
168
- public string StartUpdatingCmdArg
169
- {
170
- get { return m_argUpdate ; }
171
- set { SetAndVerifyCmdArgument ( ref m_argUpdate , value ) ; }
172
- }
173
-
174
- /// <summary>
175
- /// Gets or sets the command line argument for the wait switch
176
- /// If this argument has been set and passed in the command line followed by an <see cref="Process.Id"/> it will set <see cref="WaitForProcessExit"/> to <c>True</c>
177
- /// </summary>
178
- public string WaitForProcessCmdArg
179
- {
180
- get { return m_argWait ; }
181
- set { SetAndVerifyCmdArgument ( ref m_argWait , value ) ; }
182
- }
153
+ public bool UpdateSilently { get ; private set ; } = false ;
183
154
184
155
/// <summary>
185
156
/// Indicates if we want to wait for the given process to wait
186
157
/// See <seealso cref="WaitForProcessCmdArg"/> and <seealso cref="ConfigureWaitForProcessCmdArg(string)"/>
187
158
/// If this property has been set to true it will wait for the <see cref="Process.Id"/> to exit before continuing when <see cref="Initialize"/> has been called.
188
159
/// </summary>
189
- public bool WaitForProcessExit { get ; set ; }
160
+ public bool WaitForProcessExit { get ; private set ; }
190
161
191
162
/// <summary>
192
163
/// Gets the <see cref="PathVariableConverter"/>.
@@ -281,6 +252,18 @@ public Updater ConfigureLogger(Action<ILogger> action)
281
252
return this ;
282
253
}
283
254
255
+ /// <summary>
256
+ /// Configures the command line parser
257
+ /// </summary>
258
+ /// <param name="action">Action to perform on the command line parser</param>
259
+ /// <returns><see cref="Updater"/> </returns>
260
+ public Updater ConfigureCommandLineParser ( Action < CmdLineParser > action )
261
+ {
262
+ action ( CommandLine ) ;
263
+
264
+ return this ;
265
+ }
266
+
284
267
/// <summary>
285
268
/// Configures if the updater needs a restart before updating
286
269
/// </summary>
@@ -318,42 +301,6 @@ public Updater ConfigureInstallationMode(InstallationMode mode)
318
301
return this ;
319
302
}
320
303
321
- /// <summary>
322
- /// Configures the update silently command switch
323
- /// </summary>
324
- /// <param name="cmdArg">Command name</param>
325
- /// <returns><see cref="Updater"/></returns>
326
- public Updater ConfigureSilentCmdArg ( string cmdArg )
327
- {
328
- UpdateSilentlyCmdArg = cmdArg ;
329
-
330
- return this ;
331
- }
332
-
333
- /// <summary>
334
- /// Configures the update command switch
335
- /// </summary>
336
- /// <param name="cmdArg">Command name</param>
337
- /// <returns><see cref="Updater"/></returns>
338
- public Updater ConfigureUpdateCmdArg ( string cmdArg )
339
- {
340
- StartUpdatingCmdArg = cmdArg ;
341
-
342
- return this ;
343
- }
344
-
345
- /// <summary>
346
- /// Configures the wait for process to exit command switch
347
- /// </summary>
348
- /// <param name="cmdArg">Command name</param>
349
- /// <returns><see cref="Updater"/></returns>
350
- public Updater ConfigureWaitForProcessCmdArg ( string cmdArg )
351
- {
352
- WaitForProcessCmdArg = cmdArg ;
353
-
354
- return this ;
355
- }
356
-
357
304
/// <summary>
358
305
/// Configures the update url
359
306
/// </summary>
@@ -372,7 +319,12 @@ public Updater ConfigureUpdateUrl(string url)
372
319
/// <summary>
373
320
/// Initializes a new instance of <see cref="Updater"/> with the default settings.
374
321
/// </summary>
375
- private Updater ( ) { }
322
+ private Updater ( )
323
+ {
324
+ CommandLine . AddParameter ( m_argUpdateSilent ) ;
325
+ CommandLine . AddParameter ( m_argUpdate ) ;
326
+ CommandLine . AddParameter ( m_argWait , ParamMandatoryType . Optional , ParamValueType . Int ) ;
327
+ }
376
328
377
329
/// <summary>
378
330
/// Initializes the updater
@@ -381,10 +333,16 @@ public void Initialize()
381
333
{
382
334
StartInitializationTasks ( ) ;
383
335
384
- ParseCmdArguments ( Environment . GetCommandLineArgs ( ) ) ;
336
+ // parse the command line
337
+ CommandLine . Parse ( ) ;
338
+
339
+
340
+ WaitForProcessExit = CommandLine [ m_argWait ] ? . IsFound ?? false ;
341
+ StartUpdating = CommandLine [ m_argUpdate ] ? . IsFound ?? false ;
342
+ UpdateSilently = CommandLine [ m_argUpdateSilent ] ? . IsFound ?? false ;
385
343
386
344
if ( WaitForProcessExit )
387
- WaitForProcessToExit ( m_pid ) ;
345
+ WaitForProcessToExit ( ( int ) CommandLine [ m_argWait ] . Value ) ;
388
346
389
347
IsInitialized = true ;
390
348
@@ -404,23 +362,6 @@ private void StartInitializationTasks()
404
362
UpdateCacheTask . ConfigureAwait ( false ) . Start ( ) ;
405
363
}
406
364
407
- /// <summary>
408
- /// Parses the given arguments
409
- /// </summary>
410
- /// <param name="args">The arguments to parse</param>
411
- private void ParseCmdArguments ( string [ ] args )
412
- {
413
- for ( int i = 0 ; i < args . Length ; i ++ )
414
- {
415
- if ( ! string . IsNullOrEmpty ( StartUpdatingCmdArg ) && args [ i ] == StartUpdatingCmdArg )
416
- StartUpdating = true ;
417
- else if ( ! string . IsNullOrEmpty ( UpdateSilentlyCmdArg ) && args [ i ] == UpdateSilentlyCmdArg )
418
- UpdateSilently = true ;
419
- else if ( ! string . IsNullOrEmpty ( WaitForProcessCmdArg ) && args [ i ] == WaitForProcessCmdArg && i + 1 < args . Length && int . TryParse ( args [ ++ i ] , out m_pid ) )
420
- WaitForProcessExit = true ;
421
- }
422
- }
423
-
424
365
/// <summary>
425
366
/// Waits for a process to exit on the current thread
426
367
/// </summary>
@@ -515,7 +456,7 @@ public CheckForUpdatesTask CheckForUpdatesAsync(IWin32Window owner)
515
456
if ( result != DialogResult . Yes )
516
457
return ;
517
458
518
- if ( ( ! StartUpdating && NeedsRestartBeforeUpdate )
459
+ if ( ( ! StartUpdating && NeedsRestartBeforeUpdate )
519
460
|| ( adminReq && ! PermissionUtil . IsProcessElevated ) )
520
461
if ( ! RestartApp ( true , UpdateSilently , true , adminReq ) )
521
462
return ;
@@ -627,29 +568,29 @@ internal bool RestartApp(bool update = false, bool silent = false, bool waitForP
627
568
628
569
for ( int i = 0 ; i < args . Count ; i ++ )
629
570
{
630
- if ( ( ! update && args [ i ] == StartUpdatingCmdArg ) || ( ! silent && args [ i ] == UpdateSilentlyCmdArg ) )
571
+ if ( ( ! update && args [ i ] == CommandLine . ParameterPrefix + m_argUpdate ) || ( ! silent && args [ i ] == CommandLine . ParameterPrefix + m_argUpdateSilent ) )
631
572
{
632
573
args [ i ] = string . Empty ;
633
574
}
634
- else if ( args [ i ] == WaitForProcessCmdArg )
575
+ else if ( args [ i ] == CommandLine . ParameterPrefix + m_argWait )
635
576
{
636
577
args [ i ] = string . Empty ;
637
578
if ( i + 1 < args . Count )
638
579
args [ ++ i ] = string . Empty ;
639
580
}
640
581
}
641
582
642
- if ( waitForPid && ! string . IsNullOrEmpty ( instance . WaitForProcessCmdArg ) )
583
+ if ( waitForPid && ! args . Contains ( CommandLine . ParameterPrefix + m_argWait ) )
643
584
{
644
- args . Add ( instance . WaitForProcessCmdArg ) ;
585
+ args . Add ( CommandLine . ParameterPrefix + m_argWait ) ;
645
586
args . Add ( Process . GetCurrentProcess ( ) . Id . ToString ( ) ) ;
646
587
}
647
588
648
- if ( update && ! string . IsNullOrEmpty ( instance . StartUpdatingCmdArg ) && ! args . Contains ( instance . StartUpdatingCmdArg ) )
649
- args . Add ( instance . StartUpdatingCmdArg ) ;
589
+ if ( update && ! args . Contains ( CommandLine . ParameterPrefix + m_argUpdate ) )
590
+ args . Add ( CommandLine . ParameterPrefix + m_argUpdate ) ;
650
591
651
- if ( silent && ! string . IsNullOrEmpty ( instance . UpdateSilentlyCmdArg ) && ! args . Contains ( instance . UpdateSilentlyCmdArg ) )
652
- args . Add ( instance . UpdateSilentlyCmdArg ) ;
592
+ if ( silent && ! args . Contains ( CommandLine . ParameterPrefix + m_argUpdateSilent ) )
593
+ args . Add ( CommandLine . ParameterPrefix + m_argUpdateSilent ) ;
653
594
654
595
string arguments = args . NotEmpty ( ) . Distinct ( ) . AppendAll ( " " ) ;
655
596
@@ -679,16 +620,5 @@ internal bool RestartApp(bool update = false, bool silent = false, bool waitForP
679
620
// we will never reach this part of the code
680
621
return true ;
681
622
}
682
-
683
- private void SetAndVerifyCmdArgument ( ref string reference , string value )
684
- {
685
- if ( string . IsNullOrEmpty ( value ) )
686
- throw new ArgumentNullException ( nameof ( value ) ) ;
687
-
688
- if ( value . Contains ( ' ' ) )
689
- throw new ArgumentException ( "Command line argument can not contain spaces" ) ;
690
-
691
- reference = value ;
692
- }
693
623
}
694
624
}
0 commit comments