/0.82/Src/Framework/CommandGroups/BatchCommandGroup.cs

# · C# · 270 lines · 143 code · 44 blank · 83 comment · 10 complexity · 8bb43d9856a807605c1efdd8a05336a5 MD5 · raw file

  1. // --------------------------------------------------------------------------------------------------------------------
  2. // <copyright file="BatchCommandGroup.cs" company="Open Trader">
  3. // Copyright (c) David Denis (david.denis@systemathics.com)
  4. // </copyright>
  5. // <summary>
  6. // | Open Trader - The Open Source Systematic Trading Platform
  7. // |
  8. // | This program is free software: you can redistribute it and/or modify
  9. // | it under the terms of the GNU General Public License as published by
  10. // | the Free Software Foundation, either version 2 of the License, or
  11. // | (at your option) any later version.
  12. // |
  13. // | This program is distributed in the hope that it will be useful,
  14. // | but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. // | GNU General Public License for more details.
  17. // |
  18. // | You should have received a copy of the GNU General Public License
  19. // | along with this program. If not, see http://www.gnu.org/licenses
  20. // |
  21. // | Up to date informations about Open Trader can be found at :
  22. // | http://opentrader.org
  23. // | http://opentrader.codeplex.com
  24. // |
  25. // | For professional services, please visit us at :
  26. // | http://www.systemathics.com
  27. // </summary>
  28. // --------------------------------------------------------------------------------------------------------------------
  29. namespace Org.OpenTrader.Framework.CommandGroups
  30. {
  31. #region Using Directives
  32. using System;
  33. using System.Collections.Generic;
  34. using System.IO;
  35. using Org.OpenTrader.Framework.CommandLine;
  36. #endregion
  37. /// <summary>
  38. /// The execution context command group.
  39. /// </summary>
  40. public class BatchCommandGroup : CommandGroup
  41. {
  42. #region Constants and Fields
  43. /// <summary>
  44. /// The commands.
  45. /// </summary>
  46. private readonly IDictionary<string, Command> commands;
  47. #endregion
  48. #region Constructors and Destructors
  49. /// <summary>
  50. /// Initializes a new instance of the <see cref="BatchCommandGroup"/> class.
  51. /// </summary>
  52. public BatchCommandGroup()
  53. {
  54. this.commands = new Dictionary<string, Command>();
  55. Command cmd;
  56. cmd = new RunCommand(this);
  57. this.commands[cmd.Name] = cmd;
  58. }
  59. #endregion
  60. #region Properties
  61. /// <summary>
  62. /// Gets Commands.
  63. /// </summary>
  64. public override IDictionary<string, Command> Commands
  65. {
  66. get
  67. {
  68. return this.commands;
  69. }
  70. }
  71. /// <summary>
  72. /// Gets Help.
  73. /// </summary>
  74. public override string Help
  75. {
  76. get
  77. {
  78. return "This command group is used to handle batch scripts";
  79. }
  80. }
  81. /// <summary>
  82. /// Gets Name.
  83. /// </summary>
  84. public override string Name
  85. {
  86. get
  87. {
  88. return "batch";
  89. }
  90. }
  91. #endregion
  92. /// <summary>
  93. /// The run command.
  94. /// </summary>
  95. public class RunCommand : Command
  96. {
  97. #region Constants and Fields
  98. /// <summary>
  99. /// The identity.
  100. /// </summary>
  101. private static readonly Identity Identity = Identity.Create(System.Reflection.MethodBase.GetCurrentMethod());
  102. #endregion
  103. #region Constructors and Destructors
  104. /// <summary>
  105. /// Initializes a new instance of the <see cref="RunCommand"/> class.
  106. /// </summary>
  107. /// <param name="commandGroup">
  108. /// The command group.
  109. /// </param>
  110. public RunCommand(CommandGroup commandGroup)
  111. : base(commandGroup)
  112. {
  113. }
  114. #endregion
  115. #region Properties
  116. /// <summary>
  117. /// Gets Help.
  118. /// </summary>
  119. public override string Help
  120. {
  121. get
  122. {
  123. return "run the given command file";
  124. }
  125. }
  126. /// <summary>
  127. /// Gets Name.
  128. /// </summary>
  129. public override string Name
  130. {
  131. get
  132. {
  133. return "run";
  134. }
  135. }
  136. /// <summary>
  137. /// Gets Usage.
  138. /// </summary>
  139. public override string Usage
  140. {
  141. get
  142. {
  143. return string.Format("{0} {1} command_file", this.CommandGroup.Name, this.Name);
  144. }
  145. }
  146. #endregion
  147. #region Public Methods
  148. /// <summary>
  149. /// The execute.
  150. /// </summary>
  151. /// <param name="args">
  152. /// The args.
  153. /// </param>
  154. /// <returns>
  155. /// </returns>
  156. public override Status Execute(string[] args)
  157. {
  158. if (args.Length < 1)
  159. {
  160. return Status.Failure(Identity, "parameter command_file is missing");
  161. }
  162. var filename = args[0];
  163. // The given parameters (if any)
  164. var parametersCount = Math.Max(0, args.Length - 1);
  165. var parameters = new string[] { };
  166. if (parametersCount > 0)
  167. {
  168. parameters = new string[parametersCount];
  169. Array.Copy(args, 1, parameters, 0, parametersCount);
  170. }
  171. IDictionary<string, string> variables = new Dictionary<string, string>();
  172. foreach (var assignment in parameters)
  173. {
  174. var couple = assignment.Split(new[] { '=' });
  175. var key = couple[0];
  176. var value = couple[1];
  177. variables[key] = value;
  178. }
  179. using (var sr = new StreamReader(filename))
  180. {
  181. string s;
  182. do
  183. {
  184. read:
  185. // Read command
  186. s = sr.ReadLine();
  187. // Eof
  188. if (s == null)
  189. {
  190. break;
  191. }
  192. // newlines and comments
  193. if (s.Length == 0 || s.StartsWith("#"))
  194. {
  195. goto read;
  196. }
  197. // Replace variables by their values
  198. foreach (var va in variables.Keys)
  199. {
  200. s = s.Replace("$" + va, variables[va]);
  201. }
  202. // Split to create an array similar to the one passed to Main(...)
  203. var arguments = s.Split(new[] { ' ' });
  204. if (arguments.Length > 0)
  205. {
  206. try
  207. {
  208. // logger.Log(ELogLevel.Info, string.Format("Executing \"{0}\"", s));
  209. Console.WriteLine(string.Format("Executing \"{0}\"", s));
  210. CommandLine.Process(arguments);
  211. }
  212. catch
  213. {
  214. Console.WriteLine(string.Format("Error while executing {0}", s));
  215. // logger.Log(ELogLevel.Info, );
  216. }
  217. }
  218. }
  219. while (s != null);
  220. }
  221. return Status.Success(Identity);
  222. }
  223. #endregion
  224. }
  225. }
  226. }