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. MainConsole.Instance = new CommandConsole(prompt);
  126. else if (consoleType == "rest")
  127. MainConsole.Instance = new RemoteConsole(prompt);
  128. else if (consoleType == "mock")
  129. MainConsole.Instance = new MockConsole();
  130. else if (consoleType == "local")
  131. MainConsole.Instance = new LocalConsole(prompt, startupConfig);
  132. MainConsole.Instance.ReadConfig(Config);
  133. m_console = MainConsole.Instance;
  134. if (logConfig != null)
  135. {
  136. FileInfo cfg = new FileInfo(logConfig);
  137. XmlConfigurator.Configure(cfg);
  138. }
  139. else
  140. {
  141. XmlConfigurator.Configure();
  142. }
  143. LogEnvironmentInformation();
  144. RegisterCommonAppenders(startupConfig);
  145. if (startupConfig.GetString("PIDFile", String.Empty) != String.Empty)
  146. {
  147. CreatePIDFile(startupConfig.GetString("PIDFile"));
  148. }
  149. RegisterCommonCommands();
  150. RegisterCommonComponents(Config);
  151. #if (_MONO)
  152. Thread signal_thread = new Thread (delegate ()
  153. {
  154. while (true)
  155. {
  156. // Wait for a signal to be delivered
  157. int index = Mono.Unix.UnixSignal.WaitAny (signals, -1);
  158. //Mono.Unix.Native.Signum signal = signals [index].Signum;
  159. ShutdownSpecific();
  160. m_Running = false;
  161. Environment.Exit(0);
  162. }
  163. });
  164. if(!Util.IsWindows())
  165. {
  166. try
  167. {
  168. // linux mac os specifics
  169. signals = new Mono.Unix.UnixSignal[]
  170. {
  171. new Mono.Unix.UnixSignal(Mono.Unix.Native.Signum.SIGTERM)
  172. };
  173. ignal_thread.IsBackground = true;
  174. signal_thread.Start();
  175. }
  176. catch (Exception e)
  177. {
  178. m_log.Info("Could not set up UNIX signal handlers. SIGTERM will not");
  179. m_log.InfoFormat("shut down gracefully: {0}", e.Message);
  180. m_log.Debug("Exception was: ", e);
  181. }
  182. }
  183. #endif
  184. // Allow derived classes to perform initialization that
  185. // needs to be done after the console has opened
  186. Initialise();
  187. }
  188. public bool Running
  189. {
  190. get { return m_Running; }
  191. }
  192. public virtual int Run()
  193. {
  194. Watchdog.Enabled = true;
  195. MemoryWatchdog.Enabled = true;
  196. while (m_Running)
  197. {
  198. try
  199. {
  200. MainConsole.Instance.Prompt();
  201. }
  202. catch (Exception e)
  203. {
  204. m_log.ErrorFormat("Command error: {0}", e);
  205. }
  206. }
  207. MainServer.Stop();
  208. MemoryWatchdog.Enabled = false;
  209. Watchdog.Enabled = false;
  210. WorkManager.Stop();
  211. RemovePIDFile();
  212. return 0;
  213. }
  214. protected override void ShutdownSpecific()
  215. {
  216. if(!m_Running)
  217. return;
  218. m_Running = false;
  219. m_log.Info("[CONSOLE] Quitting");
  220. base.ShutdownSpecific();
  221. }
  222. protected virtual void ReadConfig()
  223. {
  224. }
  225. protected virtual void Initialise()
  226. {
  227. }
  228. /// <summary>
  229. /// Adds the included files as ini configuration files
  230. /// </summary>
  231. /// <param name="sources">List of URL strings or filename strings</param>
  232. private bool AddIncludes(IConfigSource configSource, List<string> sources)
  233. {
  234. bool sourcesAdded = false;
  235. //loop over config sources
  236. foreach (IConfig config in configSource.Configs)
  237. {
  238. // Look for Include-* in the key name
  239. string[] keys = config.GetKeys();
  240. foreach (string k in keys)
  241. {
  242. if (k.StartsWith("Include-"))
  243. {
  244. // read the config file to be included.
  245. string file = config.GetString(k);
  246. if (IsUri(file))
  247. {
  248. if (!sources.Contains(file))
  249. {
  250. sourcesAdded = true;
  251. sources.Add(file);
  252. }
  253. }
  254. else
  255. {
  256. string basepath = Path.GetFullPath(m_configDirectory);
  257. // Resolve relative paths with wildcards
  258. string chunkWithoutWildcards = file;
  259. string chunkWithWildcards = string.Empty;
  260. int wildcardIndex = file.IndexOfAny(new char[] { '*', '?' });
  261. if (wildcardIndex != -1)
  262. {
  263. chunkWithoutWildcards = file.Substring(0, wildcardIndex);
  264. chunkWithWildcards = file.Substring(wildcardIndex);
  265. }
  266. string path = Path.Combine(basepath, chunkWithoutWildcards);
  267. path = Path.GetFullPath(path) + chunkWithWildcards;
  268. string[] paths = Util.Glob(path);
  269. // If the include path contains no wildcards, then warn the user that it wasn't found.
  270. if (wildcardIndex == -1 && paths.Length == 0)
  271. {
  272. Console.WriteLine("[CONFIG]: Could not find include file {0}", path);
  273. }
  274. else
  275. {
  276. foreach (string p in paths)
  277. {
  278. if (!sources.Contains(p))
  279. {
  280. sourcesAdded = true;
  281. sources.Add(p);
  282. }
  283. }
  284. }
  285. }
  286. }
  287. }
  288. }
  289. return sourcesAdded;
  290. }
  291. /// <summary>
  292. /// Check if we can convert the string to a URI
  293. /// </summary>
  294. /// <param name="file">String uri to the remote resource</param>
  295. /// <returns>true if we can convert the string to a Uri object</returns>
  296. bool IsUri(string file)
  297. {
  298. Uri configUri;
  299. return Uri.TryCreate(file, UriKind.Absolute,
  300. out configUri) && configUri.Scheme == Uri.UriSchemeHttp;
  301. }
  302. IConfigSource ReadConfigSource(string iniFile)
  303. {
  304. // Find out of the file name is a URI and remote load it if possible.
  305. // Load it as a local file otherwise.
  306. Uri configUri;
  307. IConfigSource s = null;
  308. try
  309. {
  310. if (Uri.TryCreate(iniFile, UriKind.Absolute, out configUri) &&
  311. configUri.Scheme == Uri.UriSchemeHttp)
  312. {
  313. XmlReader r = XmlReader.Create(iniFile);
  314. s = new XmlConfigSource(r);
  315. }
  316. else
  317. {
  318. s = new IniConfigSource(iniFile);
  319. }
  320. }
  321. catch (Exception e)
  322. {
  323. System.Console.WriteLine("Error reading from config source. {0}", e.Message);
  324. Environment.Exit(1);
  325. }
  326. return s;
  327. }
  328. }
  329. }