// Copyright (C) 2024, The Duplicati Team // https://duplicati.com, hello@duplicati.com // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. using System; using System.Collections.Generic; using System.Text; namespace Duplicati.Library.Utility { /// /// Common class for parsing commandline options /// public static class CommandLineParser { /// /// Reads a list of command line arguments, and removes the options passed, /// and returns them in a dictionary. Options are expected to be in the format /// --name=value or --name, both value and name may be enclosed in double quotes /// /// The parsed list of commandline options /// The commandline arguments public static Dictionary ExtractOptions(List args, Func parserCallback = null) { Dictionary options = new Dictionary(); for (int i = 0; i < args.Count; i++) { if (args[i].StartsWith("--", StringComparison.Ordinal)) { string key = null; string value = null; if (args[i].IndexOf("=", StringComparison.Ordinal) > 0) { key = args[i].Substring(0, args[i].IndexOf("=", StringComparison.Ordinal)); value = args[i].Substring(args[i].IndexOf("=", StringComparison.Ordinal) + 1); } else key = args[i]; //Skip the leading -- key = key.Substring(2).ToLower(System.Globalization.CultureInfo.InvariantCulture); if (!string.IsNullOrEmpty(value) && value.Length > 1 && value.StartsWith("\"", StringComparison.Ordinal) && value.EndsWith("\"", StringComparison.Ordinal)) value = value.Substring(1, value.Length - 2); //Last argument overwrites the current if (parserCallback == null || parserCallback(key, value)) options[key] = value; args.RemoveAt(i); i--; } } return options; } } }