Skip to content
This repository was archived by the owner on Dec 22, 2019. It is now read-only.

Commit a72d8ab

Browse files
committedOct 30, 2017
Add CmdLineParser into the Updater
1 parent b4fb022 commit a72d8ab

File tree

3 files changed

+48
-118
lines changed

3 files changed

+48
-118
lines changed
 

‎UpdateLib/TestApp/Program.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ static void Main()
3737
foreach (var s in Environment.GetCommandLineArgs())
3838
Console.WriteLine(s);
3939

40-
Environment.Exit(0);
40+
// Environment.Exit(0);
4141

4242
// we still want our updater to have visual styles in case of update cmd argument switch
4343
Application.EnableVisualStyles();
4444
Application.SetCompatibleTextRenderingDefault(false);
4545

4646
Updater.Instance
47-
.ConfigureUpdateUrl("https://raw.githubusercontent.com/MatthiWare/UpdateLib.TestApp.UpdateExample/master/Dev/updatefile.xml")
48-
//.ConfigureUpdateUrl("http://matthiware.dev/UpdateLib/Dev/updatefile.xml")
47+
//.ConfigureUpdateUrl("https://raw.githubusercontent.com/MatthiWare/UpdateLib.TestApp.UpdateExample/master/Dev/updatefile.xml")
48+
.ConfigureUpdateUrl("http://matthiware.dev/UpdateLib/Dev/updatefile.xml")
4949
.ConfigureLogger((logger) => logger.LogLevel = LoggingLevel.Debug)
5050
.ConfigureLogger((logger) => logger.Writers.Add(new ConsoleLogWriter()))
5151
.ConfigureLogger((logger) => logger.Writers.Add(new FileLogWriter()))

‎UpdateLib/UpdateLib.Tests/Util/CmdLineParserTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public void TestDoubleParse()
134134

135135
args[2] = "11";
136136

137-
Array.Resize<string>(ref args, 3);
137+
Array.Resize(ref args, 3);
138138

139139
cmd.Parse(args);
140140

‎UpdateLib/UpdateLib/Updater.cs

+44-114
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,11 @@ public static Updater Instance
6161
#region Fields
6262

6363
private const string m_strUpdateLib = "UpdateLib";
64-
65-
private int m_pid;
64+
6665
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";
7069
private Lazy<PathVariableConverter> m_lazyPathVarConv = new Lazy<PathVariableConverter>(() => new PathVariableConverter());
7170
private TimeSpan m_cacheInvalidation = TimeSpan.FromMinutes(5);
7271
private Lazy<Logger> m_lazyLogger = new Lazy<Logger>(() => new Logger());
@@ -105,6 +104,8 @@ public static Updater Instance
105104

106105
internal static string UpdaterName { get { return m_lazyUpdaterName.Value; } }
107106

107+
public CmdLineParser CommandLine { get; } = new CmdLineParser();
108+
108109
/// <summary>
109110
/// Gets or sets the url to update from
110111
/// </summary>
@@ -144,49 +145,19 @@ public InstallationMode InstallationMode
144145
/// <summary>
145146
/// Gets or sets if we want to check for updates before the actual program is loaded.
146147
/// </summary>
147-
public bool StartUpdating { get; set; } = false;
148+
public bool StartUpdating { get; private set; } = false;
148149

149150
/// <summary>
150151
/// Gets or sets if we want to update silently (no UI interaction).
151152
/// </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;
183154

184155
/// <summary>
185156
/// Indicates if we want to wait for the given process to wait
186157
/// See <seealso cref="WaitForProcessCmdArg"/> and <seealso cref="ConfigureWaitForProcessCmdArg(string)"/>
187158
/// 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.
188159
/// </summary>
189-
public bool WaitForProcessExit { get; set; }
160+
public bool WaitForProcessExit { get; private set; }
190161

191162
/// <summary>
192163
/// Gets the <see cref="PathVariableConverter"/>.
@@ -281,6 +252,18 @@ public Updater ConfigureLogger(Action<ILogger> action)
281252
return this;
282253
}
283254

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+
284267
/// <summary>
285268
/// Configures if the updater needs a restart before updating
286269
/// </summary>
@@ -318,42 +301,6 @@ public Updater ConfigureInstallationMode(InstallationMode mode)
318301
return this;
319302
}
320303

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-
357304
/// <summary>
358305
/// Configures the update url
359306
/// </summary>
@@ -372,7 +319,12 @@ public Updater ConfigureUpdateUrl(string url)
372319
/// <summary>
373320
/// Initializes a new instance of <see cref="Updater"/> with the default settings.
374321
/// </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+
}
376328

377329
/// <summary>
378330
/// Initializes the updater
@@ -381,10 +333,16 @@ public void Initialize()
381333
{
382334
StartInitializationTasks();
383335

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;
385343

386344
if (WaitForProcessExit)
387-
WaitForProcessToExit(m_pid);
345+
WaitForProcessToExit((int)CommandLine[m_argWait].Value);
388346

389347
IsInitialized = true;
390348

@@ -404,23 +362,6 @@ private void StartInitializationTasks()
404362
UpdateCacheTask.ConfigureAwait(false).Start();
405363
}
406364

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-
424365
/// <summary>
425366
/// Waits for a process to exit on the current thread
426367
/// </summary>
@@ -515,7 +456,7 @@ public CheckForUpdatesTask CheckForUpdatesAsync(IWin32Window owner)
515456
if (result != DialogResult.Yes)
516457
return;
517458

518-
if ((!StartUpdating && NeedsRestartBeforeUpdate)
459+
if ((!StartUpdating && NeedsRestartBeforeUpdate)
519460
|| (adminReq && !PermissionUtil.IsProcessElevated))
520461
if (!RestartApp(true, UpdateSilently, true, adminReq))
521462
return;
@@ -627,29 +568,29 @@ internal bool RestartApp(bool update = false, bool silent = false, bool waitForP
627568

628569
for (int i = 0; i < args.Count; i++)
629570
{
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))
631572
{
632573
args[i] = string.Empty;
633574
}
634-
else if (args[i] == WaitForProcessCmdArg)
575+
else if (args[i] == CommandLine.ParameterPrefix + m_argWait)
635576
{
636577
args[i] = string.Empty;
637578
if (i + 1 < args.Count)
638579
args[++i] = string.Empty;
639580
}
640581
}
641582

642-
if (waitForPid && !string.IsNullOrEmpty(instance.WaitForProcessCmdArg))
583+
if (waitForPid && !args.Contains(CommandLine.ParameterPrefix + m_argWait))
643584
{
644-
args.Add(instance.WaitForProcessCmdArg);
585+
args.Add(CommandLine.ParameterPrefix + m_argWait);
645586
args.Add(Process.GetCurrentProcess().Id.ToString());
646587
}
647588

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);
650591

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);
653594

654595
string arguments = args.NotEmpty().Distinct().AppendAll(" ");
655596

@@ -679,16 +620,5 @@ internal bool RestartApp(bool update = false, bool silent = false, bool waitForP
679620
// we will never reach this part of the code
680621
return true;
681622
}
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-
}
693623
}
694624
}

0 commit comments

Comments
 (0)
This repository has been archived.