ServicesServerBase.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  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 OpenSimulator 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. using System;
  28. using System.Collections.Generic;
  29. using System.IO;
  30. using System.Reflection;
  31. using System.Threading;
  32. using System.Text;
  33. using System.Xml;
  34. using OpenSim.Framework;
  35. using OpenSim.Framework.Console;
  36. using OpenSim.Framework.Monitoring;
  37. using OpenSim.Framework.Servers;
  38. using log4net;
  39. using log4net.Config;
  40. using log4net.Appender;
  41. using log4net.Core;
  42. using log4net.Repository;
  43. using Nini.Config;
  44. namespace OpenSim.Server.Base
  45. {
  46. public class ServicesServerBase : ServerBase
  47. {
  48. // Logger
  49. //
  50. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  51. // Command line args
  52. //
  53. protected string[] m_Arguments;
  54. protected string m_configDirectory = ".";
  55. // Run flag
  56. //
  57. private bool m_Running = true;
  58. #if (_MONO)
  59. private static Mono.Unix.UnixSignal[] signals;
  60. #endif
  61. // Handle all the automagical stuff
  62. //
  63. public ServicesServerBase(string prompt, string[] args) : base()
  64. {
  65. // Save raw arguments
  66. m_Arguments = args;
  67. // Read command line
  68. ArgvConfigSource argvConfig = new ArgvConfigSource(args);
  69. argvConfig.AddSwitch("Startup", "console", "c");
  70. argvConfig.AddSwitch("Startup", "logfile", "l");
  71. argvConfig.AddSwitch("Startup", "inifile", "i");
  72. argvConfig.AddSwitch("Startup", "prompt", "p");
  73. argvConfig.AddSwitch("Startup", "logconfig", "g");
  74. // Automagically create the ini file name
  75. string fileName = "";
  76. if (Assembly.GetEntryAssembly() != null)
  77. fileName = Path.GetFileNameWithoutExtension(Assembly.GetEntryAssembly().Location);
  78. string iniFile = fileName + ".ini";
  79. string logConfig = null;
  80. IConfig startupConfig = argvConfig.Configs["Startup"];
  81. if (startupConfig != null)
  82. {
  83. // Check if a file name was given on the command line
  84. iniFile = startupConfig.GetString("inifile", iniFile);
  85. // Check if a prompt was given on the command line
  86. prompt = startupConfig.GetString("prompt", prompt);
  87. // Check for a Log4Net config file on the command line
  88. logConfig =startupConfig.GetString("logconfig", logConfig);
  89. }
  90. Config = ReadConfigSource(iniFile);
  91. List<string> sources = new List<string>();
  92. sources.Add(iniFile);
  93. int sourceIndex = 1;
  94. while (AddIncludes(Config, sources))
  95. {
  96. for ( ; sourceIndex < sources.Count ; ++sourceIndex)
  97. {
  98. IConfigSource s = ReadConfigSource(sources[sourceIndex]);
  99. Config.Merge(s);
  100. }
  101. }
  102. // Merge OpSys env vars
  103. Console.WriteLine("[CONFIG]: Loading environment variables for Config");
  104. Util.MergeEnvironmentToConfig(Config);
  105. // Merge the configuration from the command line into the loaded file
  106. Config.Merge(argvConfig);
  107. Config.ReplaceKeyValues();
  108. // Refresh the startupConfig post merge
  109. if (Config.Configs["Startup"] != null)
  110. {
  111. startupConfig = Config.Configs["Startup"];
  112. }
  113. if (startupConfig != null)
  114. {
  115. m_configDirectory = startupConfig.GetString("ConfigDirectory", m_configDirectory);
  116. prompt = startupConfig.GetString("Prompt", prompt);
  117. }
  118. // Allow derived classes to load config before the console is opened.
  119. ReadConfig();
  120. // Create main console
  121. string consoleType = "local";
  122. if (startupConfig != null)
  123. consoleType = startupConfig.GetString("console", consoleType);
  124. if (consoleType == "basic")
  125. {
  126. MainConsole.Instance = new CommandConsole(prompt);
  127. }
  128. else if (consoleType == "rest")
  129. {
  130. MainConsole.Instance = new RemoteConsole(prompt);
  131. ((RemoteConsole)MainConsole.Instance).ReadConfig(Config);
  132. }
  133. else if (consoleType == "mock")
  134. {
  135. MainConsole.Instance = new MockConsole();
  136. }
  137. else if (consoleType == "local")
  138. {
  139. MainConsole.Instance = new LocalConsole(prompt, startupConfig);
  140. }
  141. m_console = MainConsole.Instance;
  142. if (logConfig != null)
  143. {
  144. FileInfo cfg = new FileInfo(logConfig);
  145. XmlConfigurator.Configure(cfg);
  146. }
  147. else
  148. {
  149. XmlConfigurator.Configure();
  150. }
  151. LogEnvironmentInformation();
  152. RegisterCommonAppenders(startupConfig);
  153. if (startupConfig.GetString("PIDFile", String.Empty) != String.Empty)
  154. {
  155. CreatePIDFile(startupConfig.GetString("PIDFile"));
  156. }
  157. RegisterCommonCommands();
  158. RegisterCommonComponents(Config);
  159. #if (_MONO)
  160. Thread signal_thread = new Thread (delegate ()
  161. {
  162. while (true)
  163. {
  164. // Wait for a signal to be delivered
  165. int index = Mono.Unix.UnixSignal.WaitAny (signals, -1);
  166. //Mono.Unix.Native.Signum signal = signals [index].Signum;
  167. ShutdownSpecific();
  168. m_Running = false;
  169. Environment.Exit(0);
  170. }
  171. });
  172. if(!Util.IsWindows())
  173. {
  174. try
  175. {
  176. // linux mac os specifics
  177. signals = new Mono.Unix.UnixSignal[]
  178. {
  179. new Mono.Unix.UnixSignal(Mono.Unix.Native.Signum.SIGTERM)
  180. };
  181. signal_thread.Start();
  182. }
  183. catch (Exception e)
  184. {
  185. m_log.Info("Could not set up UNIX signal handlers. SIGTERM will not");
  186. m_log.InfoFormat("shut down gracefully: {0}", e.Message);
  187. m_log.Debug("Exception was: ", e);
  188. }
  189. }
  190. #endif
  191. // Allow derived classes to perform initialization that
  192. // needs to be done after the console has opened
  193. Initialise();
  194. }
  195. public bool Running
  196. {
  197. get { return m_Running; }
  198. }
  199. public virtual int Run()
  200. {
  201. Watchdog.Enabled = true;
  202. MemoryWatchdog.Enabled = true;
  203. while (m_Running)
  204. {
  205. try
  206. {
  207. MainConsole.Instance.Prompt();
  208. }
  209. catch (Exception e)
  210. {
  211. m_log.ErrorFormat("Command error: {0}", e);
  212. }
  213. }
  214. RemovePIDFile();
  215. return 0;
  216. }
  217. protected override void ShutdownSpecific()
  218. {
  219. m_Running = false;
  220. m_log.Info("[CONSOLE] Quitting");
  221. base.ShutdownSpecific();
  222. }
  223. protected virtual void ReadConfig()
  224. {
  225. }
  226. protected virtual void Initialise()
  227. {
  228. }
  229. /// <summary>
  230. /// Adds the included files as ini configuration files
  231. /// </summary>
  232. /// <param name="sources">List of URL strings or filename strings</param>
  233. private bool AddIncludes(IConfigSource configSource, List<string> sources)
  234. {
  235. bool sourcesAdded = false;
  236. //loop over config sources
  237. foreach (IConfig config in configSource.Configs)
  238. {
  239. // Look for Include-* in the key name
  240. string[] keys = config.GetKeys();
  241. foreach (string k in keys)
  242. {
  243. if (k.StartsWith("Include-"))
  244. {
  245. // read the config file to be included.
  246. string file = config.GetString(k);
  247. if (IsUri(file))
  248. {
  249. if (!sources.Contains(file))
  250. {
  251. sourcesAdded = true;
  252. sources.Add(file);
  253. }
  254. }
  255. else
  256. {
  257. string basepath = Path.GetFullPath(m_configDirectory);
  258. // Resolve relative paths with wildcards
  259. string chunkWithoutWildcards = file;
  260. string chunkWithWildcards = string.Empty;
  261. int wildcardIndex = file.IndexOfAny(new char[] { '*', '?' });
  262. if (wildcardIndex != -1)
  263. {
  264. chunkWithoutWildcards = file.Substring(0, wildcardIndex);
  265. chunkWithWildcards = file.Substring(wildcardIndex);
  266. }
  267. string path = Path.Combine(basepath, chunkWithoutWildcards);
  268. path = Path.GetFullPath(path) + chunkWithWildcards;
  269. string[] paths = Util.Glob(path);
  270. // If the include path contains no wildcards, then warn the user that it wasn't found.
  271. if (wildcardIndex == -1 && paths.Length == 0)
  272. {
  273. Console.WriteLine("[CONFIG]: Could not find include file {0}", path);
  274. }
  275. else
  276. {
  277. foreach (string p in paths)
  278. {
  279. if (!sources.Contains(p))
  280. {
  281. sourcesAdded = true;
  282. sources.Add(p);
  283. }
  284. }
  285. }
  286. }
  287. }
  288. }
  289. }
  290. return sourcesAdded;
  291. }
  292. /// <summary>
  293. /// Check if we can convert the string to a URI
  294. /// </summary>
  295. /// <param name="file">String uri to the remote resource</param>
  296. /// <returns>true if we can convert the string to a Uri object</returns>
  297. bool IsUri(string file)
  298. {
  299. Uri configUri;
  300. return Uri.TryCreate(file, UriKind.Absolute,
  301. out configUri) && configUri.Scheme == Uri.UriSchemeHttp;
  302. }
  303. IConfigSource ReadConfigSource(string iniFile)
  304. {
  305. // Find out of the file name is a URI and remote load it if possible.
  306. // Load it as a local file otherwise.
  307. Uri configUri;
  308. IConfigSource s = null;
  309. try
  310. {
  311. if (Uri.TryCreate(iniFile, UriKind.Absolute, out configUri) &&
  312. configUri.Scheme == Uri.UriSchemeHttp)
  313. {
  314. XmlReader r = XmlReader.Create(iniFile);
  315. s = new XmlConfigSource(r);
  316. }
  317. else
  318. {
  319. s = new IniConfigSource(iniFile);
  320. }
  321. }
  322. catch (Exception e)
  323. {
  324. System.Console.WriteLine("Error reading from config source. {0}", e.Message);
  325. Environment.Exit(1);
  326. }
  327. return s;
  328. }
  329. }
  330. }