aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Framework/InterfaceCommander/Commander.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-02-05 19:34:23 +0000
committerJustin Clarke Casey2009-02-05 19:34:23 +0000
commit65448cd02d2b07ef04a87678dd685d443f4eb836 (patch)
tree063466977c1cdf8195ac4402f9966f31df44b25c /OpenSim/Region/Environment/Modules/Framework/InterfaceCommander/Commander.cs
parent* Remove unused region info list from OpenSimBase. (diff)
downloadopensim-SC_OLD-65448cd02d2b07ef04a87678dd685d443f4eb836.zip
opensim-SC_OLD-65448cd02d2b07ef04a87678dd685d443f4eb836.tar.gz
opensim-SC_OLD-65448cd02d2b07ef04a87678dd685d443f4eb836.tar.bz2
opensim-SC_OLD-65448cd02d2b07ef04a87678dd685d443f4eb836.tar.xz
* refactor: Split out module Command class into a separate file
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Modules/Framework/InterfaceCommander/Commander.cs171
1 files changed, 0 insertions, 171 deletions
diff --git a/OpenSim/Region/Environment/Modules/Framework/InterfaceCommander/Commander.cs b/OpenSim/Region/Environment/Modules/Framework/InterfaceCommander/Commander.cs
index ae34d37..8b19043 100644
--- a/OpenSim/Region/Environment/Modules/Framework/InterfaceCommander/Commander.cs
+++ b/OpenSim/Region/Environment/Modules/Framework/InterfaceCommander/Commander.cs
@@ -36,177 +36,6 @@ using OpenSim.Region.Environment.Interfaces;
36namespace OpenSim.Region.Environment.Modules.Framework.InterfaceCommander 36namespace OpenSim.Region.Environment.Modules.Framework.InterfaceCommander
37{ 37{
38 /// <summary> 38 /// <summary>
39 /// A single function call encapsulated in a class which enforces arguments when passing around as Object[]'s.
40 /// Used for console commands and script API generation
41 /// </summary>
42 public class Command : ICommand
43 {
44 //private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
45 private List<CommandArgument> m_args = new List<CommandArgument>();
46
47 private Action<object[]> m_command;
48 private string m_help;
49 private string m_name;
50 private CommandIntentions m_intentions; //A permission type system could implement this and know what a command intends on doing.
51
52 public Command(string name, CommandIntentions intention, Action<Object[]> command, string help)
53 {
54 m_name = name;
55 m_command = command;
56 m_help = help;
57 m_intentions = intention;
58 }
59
60 #region ICommand Members
61
62 public void AddArgument(string name, string helptext, string type)
63 {
64 m_args.Add(new CommandArgument(name, helptext, type));
65 }
66
67 public string Name
68 {
69 get { return m_name; }
70 }
71
72 public CommandIntentions Intentions
73 {
74 get { return m_intentions; }
75 }
76
77 public string Help
78 {
79 get { return m_help; }
80 }
81
82 public Dictionary<string, string> Arguments
83 {
84 get
85 {
86 Dictionary<string, string> tmp = new Dictionary<string, string>();
87 foreach (CommandArgument arg in m_args)
88 {
89 tmp.Add(arg.Name, arg.ArgumentType);
90 }
91 return tmp;
92 }
93 }
94
95 public void ShowConsoleHelp()
96 {
97 Console.WriteLine("== " + Name + " ==");
98 Console.WriteLine(m_help);
99 Console.WriteLine("= Parameters =");
100 foreach (CommandArgument arg in m_args)
101 {
102 Console.WriteLine("* " + arg.Name + " (" + arg.ArgumentType + ")");
103 Console.WriteLine("\t" + arg.HelpText);
104 }
105 }
106
107 public void Run(Object[] args)
108 {
109 Object[] cleanArgs = new Object[m_args.Count];
110
111 if (args.Length < cleanArgs.Length)
112 {
113 Console.WriteLine("ERROR: Missing " + (cleanArgs.Length - args.Length) + " argument(s)");
114 ShowConsoleHelp();
115 return;
116 }
117 if (args.Length > cleanArgs.Length)
118 {
119 Console.WriteLine("ERROR: Too many arguments for this command. Type '<module> <command> help' for help.");
120 return;
121 }
122
123 int i = 0;
124 foreach (Object arg in args)
125 {
126 if (string.IsNullOrEmpty(arg.ToString()))
127 {
128 Console.WriteLine("ERROR: Empty arguments are not allowed");
129 return;
130 }
131 try
132 {
133 switch (m_args[i].ArgumentType)
134 {
135 case "String":
136 m_args[i].ArgumentValue = arg.ToString();
137 break;
138 case "Integer":
139 m_args[i].ArgumentValue = Int32.Parse(arg.ToString());
140 break;
141 case "Double":
142 m_args[i].ArgumentValue = Double.Parse(arg.ToString());
143 break;
144 case "Boolean":
145 m_args[i].ArgumentValue = Boolean.Parse(arg.ToString());
146 break;
147 default:
148 Console.WriteLine("ERROR: Unknown desired type for argument " + m_args[i].Name + " on command " + m_name);
149 break;
150 }
151 }
152 catch (FormatException)
153 {
154 Console.WriteLine("ERROR: Argument number " + (i + 1) +
155 " (" + m_args[i].Name + ") must be a valid " +
156 m_args[i].ArgumentType.ToLower() + ".");
157 return;
158 }
159 cleanArgs[i] = m_args[i].ArgumentValue;
160
161 i++;
162 }
163
164 m_command.Invoke(cleanArgs);
165 }
166
167 #endregion
168 }
169
170 /// <summary>
171 /// A single command argument, contains name, type and at runtime, value.
172 /// </summary>
173 public class CommandArgument
174 {
175 private string m_help;
176 private string m_name;
177 private string m_type;
178 private Object m_val;
179
180 public CommandArgument(string name, string help, string type)
181 {
182 m_name = name;
183 m_help = help;
184 m_type = type;
185 }
186
187 public string Name
188 {
189 get { return m_name; }
190 }
191
192 public string HelpText
193 {
194 get { return m_help; }
195 }
196
197 public string ArgumentType
198 {
199 get { return m_type; }
200 }
201
202 public Object ArgumentValue
203 {
204 get { return m_val; }
205 set { m_val = value; }
206 }
207 }
208
209 /// <summary>
210 /// A class to enable modules to register console and script commands, which enforces typing and valid input. 39 /// A class to enable modules to register console and script commands, which enforces typing and valid input.
211 /// </summary> 40 /// </summary>
212 public class Commander : ICommander 41 public class Commander : ICommander