命令行工具类

作者:追风剑情 发布于:2016-8-19 13:00 分类:C#

CommandLine类用来解析命令行字符串,通过扩展子类来实现不同命令的功能。

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Reflection;
  6.  
  7. namespace CommandLineTool
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. //测试命令
  14. CommandLine cmdLine = new CommandLine("jar -cvf xxx.jar *");
  15. CommandLine cmdLine1 = new CommandLine("copy \"C:\\Program Files\\text.txt\" \"D:\\dir1\\text.txt\"");
  16. Console.WriteLine(cmdLine.ToString());
  17. Console.WriteLine(cmdLine1.ToString());
  18.  
  19. CommandLine cmdLine2 = CommandLine.Create("copy \"C:\\Program Files\\text.txt\" \"D:\\dir1\\text.txt\"");
  20. Console.WriteLine(cmdLine2.ToString());
  21. if (null != cmdLine2)
  22. cmdLine2.Execute();
  23.  
  24. Console.Read();
  25. }
  26. }
  27.  
  28. public class CommandLine
  29. {
  30. private string _origin;
  31. private string _cmd;
  32. private string[] _params;
  33.  
  34. public string cmd { get { return _cmd; } }
  35. public string[] cparams { get { return _params; } }
  36.  
  37. public static CommandLine Create(string origin)
  38. {
  39. string cmd = ParseCmdType(origin);
  40. char[] cmdChars = cmd.ToCharArray();
  41. //首字母转成大写
  42. if (cmdChars[0] >= 97)
  43. cmdChars[0] = (char)((byte)cmdChars[0] - 32);
  44. string className = new string(cmdChars) + "Command";
  45. Type type = Type.GetType("CommandLineTool."+className);
  46. CommandLine cmdLine = null;
  47. if (null != type)
  48. {
  49. cmdLine = (CommandLine)Activator.CreateInstance(type);
  50. cmdLine.SetOrigin(origin);
  51. }
  52. return cmdLine;
  53. }
  54.  
  55. private static string ParseCmdType(string s)
  56. {
  57. string cmd;
  58. int index = s.IndexOf(" ");
  59. if (-1 == index)
  60. cmd = s;
  61. else
  62. cmd = s.Substring(0, index);
  63. return cmd;
  64. }
  65.  
  66. public CommandLine()
  67. {
  68.  
  69. }
  70.  
  71. public CommandLine(string origin)
  72. {
  73. SetOrigin(origin);
  74. }
  75.  
  76. public void SetOrigin(string origin)
  77. {
  78. if (string.IsNullOrWhiteSpace(origin))
  79. throw new Exception("命令行不能为空");
  80. _origin = origin.Trim();
  81. ParseCmd(_origin);
  82. }
  83.  
  84. private void ParseCmd(string s)
  85. {
  86. int index = s.IndexOf(" ");
  87. if (-1 == index)
  88. {
  89. _cmd = s;
  90. }
  91. else
  92. {
  93. _cmd = s.Substring(0, index);
  94. string p = s.Substring(index).Trim();
  95. ParseParams(p);
  96. }
  97. }
  98.  
  99. private void ParseParams(string s)
  100. {
  101. List<int> spaceIndexs = new List<int>();
  102.  
  103. for (int i = 0; i < s.Length; i++)
  104. {
  105. //发现前引号
  106. if (s[i] == '"')
  107. {
  108. i = IndexOfquo(s, i);
  109. }
  110. else if (s[i] == ' ')//发现参数分隔符
  111. {
  112. i = IndexOfSpace(s, i);
  113. spaceIndexs.Add(i);
  114. }
  115. }
  116.  
  117. _params = new string[spaceIndexs.Count + 1];
  118.  
  119. spaceIndexs.Insert(0, 0);
  120. spaceIndexs.Add(s.Length);
  121.  
  122. for (int i = 0; i+1 < spaceIndexs.Count; i++)
  123. {
  124. int start = spaceIndexs[i];
  125. int end = spaceIndexs[i+1];
  126. _params[i] = TrimQuo(Substring(s, start, end).Trim());
  127. }
  128. }
  129.  
  130. //搜索连续空格中的最后一个空格索引号
  131. private int IndexOfSpace(string s, int start)
  132. {
  133. int index = start;
  134. for (index = start + 1; index < s.Length; index++)
  135. {
  136. if (s[index] != ' ')
  137. {
  138. index--;
  139. break;
  140. }
  141. }
  142. return index;
  143. }
  144.  
  145. //搜索后引号
  146. private int IndexOfquo(string s, int start)
  147. {
  148. int index;
  149. for (index = start + 1; index < s.Length; index++)
  150. {
  151. if (s[index] == '"' && s[index - 1] != '\\')
  152. {
  153. break;
  154. }
  155. }
  156. return index;
  157. }
  158.  
  159. private string Substring(string s, int start, int end)
  160. {
  161. s = s.Substring(start, end - start);
  162. return s;
  163. }
  164.  
  165. //去除字符串前后引号
  166. private string TrimQuo(string s)
  167. {
  168. if (s[0] == '"' && s[s.Length - 1] == '"')
  169. {
  170. s = s.Substring(1, s.Length - 2);
  171. }
  172. return s;
  173. }
  174.  
  175. public override string ToString()
  176. {
  177. StringBuilder sb = new StringBuilder();
  178. if (null != _params)
  179. {
  180. for (int i = 0; i < _params.Length; i++)
  181. sb.AppendFormat("{0} ,", _params[i]);
  182. }
  183. string s = string.Format("cmd={0}; params={1}", cmd, sb.ToString());
  184. return s;
  185. }
  186.  
  187. /// <summary>
  188. /// 执行具体功能,此方法由子类实现。
  189. /// </summary>
  190. public virtual void Execute() { }
  191. }
  192.  
  193. //Copy命令
  194. public class CopyCommand : CommandLine
  195. {
  196. public override void Execute()
  197. {
  198. Console.WriteLine("执行CopyCommand");
  199. }
  200. }
  201. }

 

运行测试

1111111111.png

 

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号