/CmdletHelpViewer/HelperClass.cs

# · C# · 196 lines · 192 code · 4 blank · 0 comment · 25 complexity · 441266836ae947c314e75129dd1de27a MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Xml.Linq;
  6. using System.Collections.ObjectModel;
  7. using CmdletHelpViewer.Models;
  8. namespace CmdletHelpViewer
  9. {
  10. internal static class HelperClass
  11. {
  12. internal static void ParseXElement(XElement cmdRootXElement, CmdletCommand cmdletCommand)
  13. {
  14. foreach (XElement cmdParentXElement in cmdRootXElement.Elements())
  15. {
  16. switch (cmdParentXElement.Name.LocalName)
  17. {
  18. case "details":
  19. {
  20. GetCmdDetail(cmdParentXElement, cmdletCommand);
  21. }
  22. break;
  23. case "description":
  24. {
  25. cmdletCommand.DetailDescription = cmdParentXElement.Value;
  26. if (!string.IsNullOrWhiteSpace(cmdletCommand.DetailDescription))
  27. {
  28. cmdletCommand.DetailDescription = cmdletCommand.DetailDescription.Trim();
  29. }
  30. }
  31. break;
  32. case "parameters":
  33. {
  34. GetCmdParameter(cmdParentXElement, cmdletCommand);
  35. }
  36. break;
  37. case "examples":
  38. {
  39. GetCmdExample(cmdParentXElement, cmdletCommand);
  40. }
  41. break;
  42. }
  43. }
  44. }
  45. internal static void GetCmdDetail(XElement cmdParentXElement, CmdletCommand cmdletCommand)
  46. {
  47. foreach (XElement cmdChildXElement in cmdParentXElement.Elements())
  48. {
  49. switch (cmdChildXElement.Name.LocalName)
  50. {
  51. case "name":
  52. {
  53. cmdletCommand.Name = cmdChildXElement.Value;
  54. if (!string.IsNullOrWhiteSpace(cmdletCommand.Name))
  55. {
  56. cmdletCommand.Name = cmdletCommand.Name.Trim();
  57. }
  58. }
  59. break;
  60. case "description":
  61. {
  62. cmdletCommand.ShortDescription = cmdChildXElement.Value;
  63. if (!string.IsNullOrWhiteSpace(cmdletCommand.ShortDescription))
  64. {
  65. cmdletCommand.ShortDescription = cmdletCommand.ShortDescription.Trim();
  66. }
  67. }
  68. break;
  69. }
  70. }
  71. }
  72. internal static void GetCmdParameter(XElement cmdParentXElement, CmdletCommand cmdletCommand)
  73. {
  74. Collection<CmdletParameter> parametersCollection = new Collection<CmdletParameter>();
  75. foreach (XElement cmdChildXElement in cmdParentXElement.Elements())
  76. {
  77. CmdletParameter cmdletparameter = new CmdletParameter();
  78. foreach (XAttribute xParameters in cmdChildXElement.Attributes())
  79. {
  80. if (xParameters.Name.LocalName == "required")
  81. {
  82. cmdletparameter.Required = Convert.ToBoolean(xParameters.Value);
  83. }
  84. if (xParameters.Name.LocalName == "variableLength")
  85. {
  86. cmdletparameter.VariableLength = Convert.ToBoolean(xParameters.Value);
  87. }
  88. if (xParameters.Name.LocalName == "globbing")
  89. {
  90. cmdletparameter.Globbing = Convert.ToBoolean(xParameters.Value);
  91. }
  92. if (xParameters.Name.LocalName == "pipelineInput")
  93. {
  94. cmdletparameter.PipeLineInput = xParameters.Value;
  95. if (!string.IsNullOrWhiteSpace(cmdletparameter.PipeLineInput))
  96. {
  97. cmdletparameter.PipeLineInput = cmdletparameter.PipeLineInput.Trim();
  98. }
  99. }
  100. if (xParameters.Name.LocalName == "position")
  101. {
  102. cmdletparameter.Position = xParameters.Value;
  103. if (!string.IsNullOrWhiteSpace(cmdletparameter.Position))
  104. {
  105. cmdletparameter.Position = cmdletparameter.Position.Trim();
  106. }
  107. }
  108. }
  109. foreach (XElement xparametersXElement in cmdChildXElement.Elements())
  110. {
  111. switch (xparametersXElement.Name.LocalName)
  112. {
  113. case "name":
  114. {
  115. cmdletparameter.Name = xparametersXElement.Value;
  116. if (!string.IsNullOrWhiteSpace(cmdletparameter.Name))
  117. {
  118. cmdletparameter.Name = cmdletparameter.Name.Trim();
  119. }
  120. }
  121. break;
  122. case "description":
  123. {
  124. cmdletparameter.Description = xparametersXElement.Value;
  125. if (!string.IsNullOrWhiteSpace(cmdletparameter.Description))
  126. {
  127. cmdletparameter.Description = cmdletparameter.Description.Trim();
  128. }
  129. }
  130. break;
  131. case "parameterValue":
  132. {
  133. cmdletparameter.ParameterType = xparametersXElement.Value;
  134. if (!string.IsNullOrWhiteSpace(cmdletparameter.ParameterType))
  135. {
  136. cmdletparameter.ParameterType = cmdletparameter.ParameterType.Trim();
  137. }
  138. }
  139. break;
  140. }
  141. }
  142. parametersCollection.Add(cmdletparameter);
  143. }
  144. cmdletCommand.Parameters = parametersCollection;
  145. }
  146. internal static void GetCmdExample(XElement cmdParentXElement, CmdletCommand cmdletCommand)
  147. {
  148. Collection<CmdletExample> examplescollection = new Collection<CmdletExample>();
  149. foreach (XElement cmdChildXElement in cmdParentXElement.Elements())
  150. {
  151. CmdletExample cmdletexample = new CmdletExample();
  152. foreach (XElement childXElement in cmdChildXElement.Elements())
  153. {
  154. switch (childXElement.Name.LocalName)
  155. {
  156. case "title":
  157. {
  158. childXElement.Value = childXElement.Value.Replace("-", "");
  159. childXElement.Value = childXElement.Value.Replace("\n", "");
  160. cmdletexample.Title = childXElement.Value;
  161. if (!string.IsNullOrWhiteSpace(cmdletexample.Title))
  162. {
  163. cmdletexample.Title = cmdletexample.Title.Trim();
  164. }
  165. }
  166. break;
  167. case "code":
  168. {
  169. cmdletexample.Code = childXElement.Value;
  170. if (!string.IsNullOrWhiteSpace(cmdletexample.Code))
  171. {
  172. cmdletexample.Code = cmdletexample.Code.Trim();
  173. }
  174. }
  175. break;
  176. case "remarks":
  177. {
  178. cmdletexample.Remarks = childXElement.Value;
  179. if (!string.IsNullOrWhiteSpace(cmdletexample.Remarks))
  180. {
  181. cmdletexample.Remarks = cmdletexample.Remarks.Trim();
  182. }
  183. }
  184. break;
  185. }
  186. }
  187. examplescollection.Add(cmdletexample);
  188. }
  189. cmdletCommand.Examples = examplescollection;
  190. }
  191. }
  192. }