aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools/OpenSim.GridLaunch/CommandProcessor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Tools/OpenSim.GridLaunch/CommandProcessor.cs')
-rw-r--r--OpenSim/Tools/OpenSim.GridLaunch/CommandProcessor.cs76
1 files changed, 76 insertions, 0 deletions
diff --git a/OpenSim/Tools/OpenSim.GridLaunch/CommandProcessor.cs b/OpenSim/Tools/OpenSim.GridLaunch/CommandProcessor.cs
new file mode 100644
index 0000000..aca36e9
--- /dev/null
+++ b/OpenSim/Tools/OpenSim.GridLaunch/CommandProcessor.cs
@@ -0,0 +1,76 @@
1/*
2 * Copyright (c) Contributors, http://opensimulator.org/
3 * See CONTRIBUTORS.TXT for a full list of copyright holders.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of the OpenSim Project nor the
13 * names of its contributors may be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
17 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27using System;
28using System.Collections.Generic;
29using System.Text;
30
31namespace OpenSim.GridLaunch
32{
33 internal class CommandProcessor
34 {
35 public delegate void CommandLineDelegate(string application, string command, string arguments);
36 public event CommandLineDelegate CommandLine;
37
38 public bool IsCommand(string cmd)
39 {
40 if (cmd.Trim().StartsWith("/"))
41 return true;
42 return false;
43 }
44
45 public static readonly char[] cmdSplit = new char[] { ' ' };
46 public bool Process(string app, string command)
47 {
48 // Only process commands
49 if (!IsCommand(command))
50 return false;
51
52 // Remove first /
53 command = command.Trim().Remove(0, 1);
54
55 // Split cmd and args
56 string[] carg = command.Split(cmdSplit, 2);
57 if (carg.Length == 0)
58 return true;
59
60 string cmd = carg[0]; // Command
61 string arg = "";
62 if (carg.Length > 1)
63 arg = carg[1]; // Arguments
64
65 // Do we have a command?
66 if (string.IsNullOrEmpty(cmd))
67 return true;
68
69 // All is fine
70 if (CommandLine != null)
71 CommandLine(app, cmd, arg);
72 return true;
73 }
74
75 }
76}