aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Framework/Console/CommandConsole.cs2
-rw-r--r--OpenSim/Servers/Base/ServicesServerBase.cs225
-rw-r--r--prebuild.xml26
3 files changed, 252 insertions, 1 deletions
diff --git a/OpenSim/Framework/Console/CommandConsole.cs b/OpenSim/Framework/Console/CommandConsole.cs
index 0c314b9..3c79fba 100644
--- a/OpenSim/Framework/Console/CommandConsole.cs
+++ b/OpenSim/Framework/Console/CommandConsole.cs
@@ -430,7 +430,7 @@ namespace OpenSim.Framework.Console
430 430
431 if (line != String.Empty) 431 if (line != String.Empty)
432 { 432 {
433 m_log.Info("Invalid command"); 433 m_log.Info("[CONSOLE] Invalid command");
434 } 434 }
435 } 435 }
436 436
diff --git a/OpenSim/Servers/Base/ServicesServerBase.cs b/OpenSim/Servers/Base/ServicesServerBase.cs
new file mode 100644
index 0000000..cc9b778
--- /dev/null
+++ b/OpenSim/Servers/Base/ServicesServerBase.cs
@@ -0,0 +1,225 @@
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 */
27
28using System;
29using System.Xml;
30using System.Threading;
31using System.Reflection;
32using OpenSim.Framework.Console;
33using log4net;
34using log4net.Config;
35using log4net.Appender;
36using log4net.Core;
37using log4net.Repository;
38using Nini.Config;
39
40namespace OpenSim.Servers.Base
41{
42 public class ServicesServerBase
43 {
44 // Logger
45 //
46 private static readonly ILog m_log =
47 LogManager.GetLogger(
48 MethodBase.GetCurrentMethod().DeclaringType);
49
50 // Command line args
51 //
52 protected string[] m_Arguments;
53
54 // Configuration
55 //
56 IConfigSource m_Config = null;
57
58 // Run flag
59 //
60 private bool m_Running = true;
61
62 // Handle all the automagical stuff
63 //
64 public ServicesServerBase(string prompt, string[] args)
65 {
66 // Save raw arguments
67 //
68 m_Arguments = args;
69
70 // Read command line
71 //
72 ArgvConfigSource argvConfig = new ArgvConfigSource(args);
73
74 argvConfig.AddSwitch("Startup", "console", "c");
75 argvConfig.AddSwitch("Startup", "logfile", "l");
76 argvConfig.AddSwitch("Startup", "inifile", "i");
77
78 // Automagically create the ini file name
79 //
80 string fullName = Assembly.GetEntryAssembly().FullName;
81 AssemblyName assemblyName = new AssemblyName(fullName);
82
83 string iniFile = assemblyName.Name + ".ini";
84
85 // Check if a file name was given on the command line
86 //
87 IConfig startupConfig = argvConfig.Configs["Startup"];
88 if (startupConfig != null)
89 iniFile = startupConfig.GetString("inifile", iniFile);
90
91 // Find out of the file name is a URI and remote load it
92 // if it's possible. Load it as a local file otherwise.
93 //
94 Uri configUri;
95
96 try
97 {
98 if (Uri.TryCreate(iniFile, UriKind.Absolute, out configUri) &&
99 configUri.Scheme == Uri.UriSchemeHttp)
100 {
101 XmlReader r = XmlReader.Create(iniFile);
102 m_Config = new XmlConfigSource(r);
103 }
104 else
105 {
106 m_Config = new IniConfigSource(iniFile);
107 }
108 }
109 catch (Exception)
110 {
111 System.Console.WriteLine("Error reading from config source {0}",
112 iniFile);
113 Thread.CurrentThread.Abort();
114 }
115
116 // Merge the configuration from the command line into the
117 // loaded file
118 //
119 m_Config.Merge(argvConfig);
120
121 // Refresh the startupConfig post merge
122 //
123 startupConfig = argvConfig.Configs["Startup"];
124
125 // Allow derived classes to load config before the console is
126 // opened.
127 //
128 ReadConfig();
129
130 // Create main console
131 //
132 string consoleType = "local";
133 if (startupConfig != null)
134 consoleType = startupConfig.GetString("console", consoleType);
135
136 if (consoleType == "basic")
137 {
138 MainConsole.Instance = new CommandConsole(prompt);
139 }
140 else
141 {
142 MainConsole.Instance = new LocalConsole(prompt);
143 }
144
145 // Configure the appenders for log4net
146 //
147 OpenSimAppender consoleAppender = null;
148 FileAppender fileAppender = null;
149
150 XmlConfigurator.Configure();
151
152 ILoggerRepository repository = LogManager.GetRepository();
153 IAppender[] appenders = repository.GetAppenders();
154
155 foreach (IAppender appender in appenders)
156 {
157 if (appender.Name == "Console")
158 {
159 consoleAppender = (OpenSimAppender)appender;
160 }
161 if (appender.Name == "LogFileAppender")
162 {
163 fileAppender = (FileAppender)appender;
164 }
165 }
166
167 if (consoleAppender == null)
168 {
169 System.Console.WriteLine("No console appender found. Server can't start");
170 Thread.CurrentThread.Abort();
171 }
172 else
173 {
174 consoleAppender.Console = MainConsole.Instance;
175
176 if (null == consoleAppender.Threshold)
177 consoleAppender.Threshold = Level.All;
178 }
179
180 // Set log file
181 //
182 if (fileAppender != null)
183 {
184 if (startupConfig != null)
185 fileAppender.File = startupConfig.GetString("logfile",
186 assemblyName.Name + ".log");
187 }
188
189 // Register the quit command
190 //
191 MainConsole.Instance.Commands.AddCommand("base", false, "quit",
192 "quit",
193 "Quit the application", HandleQuit);
194
195 // Allow derived classes to perform initialization that
196 // needs to be done after the console has opened
197 //
198 Initialise();
199 }
200
201 public virtual int Run()
202 {
203 while (m_Running)
204 {
205 MainConsole.Instance.Prompt();
206 }
207
208 return 0;
209 }
210
211 protected virtual void HandleQuit(string module, string[] args)
212 {
213 m_Running = false;
214 m_log.Info("[CONSOLE] Quitting");
215 }
216
217 protected virtual void ReadConfig()
218 {
219 }
220
221 protected virtual void Initialise()
222 {
223 }
224 }
225}
diff --git a/prebuild.xml b/prebuild.xml
index a950fcf..4b1fec9 100644
--- a/prebuild.xml
+++ b/prebuild.xml
@@ -2802,6 +2802,32 @@
2802 </Files> 2802 </Files>
2803 </Project> 2803 </Project>
2804 2804
2805 <Project name="OpenSim.Servers.Base" path="OpenSim/Servers/Base" type="Library">
2806 <Configuration name="Debug">
2807 <Options>
2808 <OutputPath>../../../bin/</OutputPath>
2809 </Options>
2810 </Configuration>
2811 <Configuration name="Release">
2812 <Options>
2813 <OutputPath>../../../bin/</OutputPath>
2814 </Options>
2815 </Configuration>
2816
2817 <ReferencePath>../../../bin/</ReferencePath>
2818 <Reference name="System"/>
2819 <Reference name="OpenMetaverseTypes.dll"/>
2820 <Reference name="OpenMetaverse.dll"/>
2821 <Reference name="OpenSim.Framework"/>
2822 <Reference name="OpenSim.Framework.Console"/>
2823 <Reference name="Nini.dll" />
2824 <Reference name="log4net.dll"/>
2825
2826 <Files>
2827 <Match pattern="*.cs" recurse="true"/>
2828 </Files>
2829 </Project>
2830
2805 <!-- Tools --> 2831 <!-- Tools -->
2806 2832
2807 <Project name="pCampBot" path="OpenSim/Tools/pCampBot" type="Exe"> 2833 <Project name="pCampBot" path="OpenSim/Tools/pCampBot" type="Exe">