123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426 |
- /*
- * Copyright (c) Contributors, http://opensimulator.org/
- * See CONTRIBUTORS.TXT for a full list of copyright holders.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * * Neither the name of the OpenSimulator Project nor the
- * names of its contributors may be used to endorse or promote products
- * derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Net;
- using System.Reflection;
- using System.Xml;
- using log4net;
- using Nini.Config;
- using OpenMetaverse;
- using OpenSim.Framework;
- using OpenSim.Framework.Communications;
- using OpenSim.Region.DataSnapshot.Interfaces;
- using OpenSim.Region.Framework.Interfaces;
- using OpenSim.Region.Framework.Scenes;
- namespace OpenSim.Region.DataSnapshot
- {
- public class DataSnapshotManager : IRegionModule, IDataSnapshot
- {
- #region Class members
- //Information from config
- private bool m_enabled = false;
- private bool m_configLoaded = false;
- private List<string> m_disabledModules = new List<string>();
- private Dictionary<string, string> m_gridinfo = new Dictionary<string, string>();
- private string m_snapsDir = "DataSnapshot";
- private string m_exposure_level = "minimum";
- //Lists of stuff we need
- private List<Scene> m_scenes = new List<Scene>();
- private List<IDataSnapshotProvider> m_dataproviders = new List<IDataSnapshotProvider>();
- //Various internal objects
- private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- internal object m_syncInit = new object();
- //DataServices and networking
- private string m_dataServices = "noservices";
- public string m_listener_port = ConfigSettings.DefaultRegionHttpPort.ToString();
- public string m_hostname = "127.0.0.1";
- //Update timers
- private int m_period = 20; // in seconds
- private int m_maxStales = 500;
- private int m_stales = 0;
- private int m_lastUpdate = 0;
- //Program objects
- private SnapshotStore m_snapStore = null;
- #endregion
- #region Properties
- public string ExposureLevel
- {
- get { return m_exposure_level; }
- }
- #endregion
- #region IRegionModule
- public void Initialise(Scene scene, IConfigSource config)
- {
- if (!m_configLoaded)
- {
- m_configLoaded = true;
- //m_log.Debug("[DATASNAPSHOT]: Loading configuration");
- //Read from the config for options
- lock (m_syncInit)
- {
- try
- {
- m_enabled = config.Configs["DataSnapshot"].GetBoolean("index_sims", m_enabled);
- IConfig conf = config.Configs["GridService"];
- if (conf != null)
- m_gridinfo.Add("gridserverURL", conf.GetString("GridServerURI", "http://127.0.0.1:8003"));
- m_gridinfo.Add(
- "Name", config.Configs["DataSnapshot"].GetString("gridname", "the lost continent of hippo"));
- m_exposure_level = config.Configs["DataSnapshot"].GetString("data_exposure", m_exposure_level);
- m_period = config.Configs["DataSnapshot"].GetInt("default_snapshot_period", m_period);
- m_maxStales = config.Configs["DataSnapshot"].GetInt("max_changes_before_update", m_maxStales);
- m_snapsDir = config.Configs["DataSnapshot"].GetString("snapshot_cache_directory", m_snapsDir);
- m_dataServices = config.Configs["DataSnapshot"].GetString("data_services", m_dataServices);
- m_listener_port = config.Configs["Network"].GetString("http_listener_port", m_listener_port);
- String[] annoying_string_array = config.Configs["DataSnapshot"].GetString("disable_modules", "").Split(".".ToCharArray());
- foreach (String bloody_wanker in annoying_string_array)
- {
- m_disabledModules.Add(bloody_wanker);
- }
- m_lastUpdate = Environment.TickCount;
- }
- catch (Exception)
- {
- m_log.Warn("[DATASNAPSHOT]: Could not load configuration. DataSnapshot will be disabled.");
- m_enabled = false;
- return;
- }
- }
- if (m_enabled)
- {
- //Hand it the first scene, assuming that all scenes have the same BaseHTTPServer
- new DataRequestHandler(scene, this);
- m_hostname = scene.RegionInfo.ExternalHostName;
- m_snapStore = new SnapshotStore(m_snapsDir, m_gridinfo, m_listener_port, m_hostname);
- MakeEverythingStale();
- if (m_dataServices != "" && m_dataServices != "noservices")
- NotifyDataServices(m_dataServices, "online");
- }
- }
- if (m_enabled)
- {
- m_log.Info("[DATASNAPSHOT]: Scene added to module.");
- m_snapStore.AddScene(scene);
- m_scenes.Add(scene);
- Assembly currentasm = Assembly.GetExecutingAssembly();
- foreach (Type pluginType in currentasm.GetTypes())
- {
- if (pluginType.IsPublic)
- {
- if (!pluginType.IsAbstract)
- {
- if (pluginType.GetInterface("IDataSnapshotProvider") != null)
- {
- IDataSnapshotProvider module = (IDataSnapshotProvider)Activator.CreateInstance(pluginType);
- module.Initialize(scene, this);
- module.OnStale += MarkDataStale;
- m_dataproviders.Add(module);
- m_snapStore.AddProvider(module);
- m_log.Info("[DATASNAPSHOT]: Added new data provider type: " + pluginType.Name);
- }
- }
- }
- }
- //scene.OnRestart += OnSimRestart;
- scene.EventManager.OnShutdown += delegate() { OnSimRestart(scene.RegionInfo); };
- }
- else
- {
- //m_log.Debug("[DATASNAPSHOT]: Data snapshot disabled, not adding scene to module (or anything else).");
- }
- }
- public void Close()
- {
- if (m_enabled && m_dataServices != "" && m_dataServices != "noservices")
- NotifyDataServices(m_dataServices, "offline");
- }
- public bool IsSharedModule
- {
- get { return true; }
- }
- public string Name
- {
- get { return "External Data Generator"; }
- }
- public void PostInitialise()
- {
- }
- #endregion
- #region Associated helper functions
- public Scene SceneForName(string name)
- {
- foreach (Scene scene in m_scenes)
- if (scene.RegionInfo.RegionName == name)
- return scene;
- return null;
- }
- public Scene SceneForUUID(UUID id)
- {
- foreach (Scene scene in m_scenes)
- if (scene.RegionInfo.RegionID == id)
- return scene;
- return null;
- }
- #endregion
- #region [Public] Snapshot storage functions
- /**
- * Reply to the http request
- */
- public XmlDocument GetSnapshot(string regionName)
- {
- CheckStale();
- XmlDocument requestedSnap = new XmlDocument();
- requestedSnap.AppendChild(requestedSnap.CreateXmlDeclaration("1.0", null, null));
- requestedSnap.AppendChild(requestedSnap.CreateWhitespace("\r\n"));
- XmlNode regiondata = requestedSnap.CreateNode(XmlNodeType.Element, "regiondata", "");
- try
- {
- if (regionName == null || regionName == "")
- {
- XmlNode timerblock = requestedSnap.CreateNode(XmlNodeType.Element, "expire", "");
- timerblock.InnerText = m_period.ToString();
- regiondata.AppendChild(timerblock);
- regiondata.AppendChild(requestedSnap.CreateWhitespace("\r\n"));
- foreach (Scene scene in m_scenes)
- {
- regiondata.AppendChild(m_snapStore.GetScene(scene, requestedSnap));
- }
- }
- else
- {
- Scene scene = SceneForName(regionName);
- regiondata.AppendChild(m_snapStore.GetScene(scene, requestedSnap));
- }
- requestedSnap.AppendChild(regiondata);
- regiondata.AppendChild(requestedSnap.CreateWhitespace("\r\n"));
- }
- catch (XmlException e)
- {
- m_log.Warn("[DATASNAPSHOT]: XmlException while trying to load snapshot: " + e.ToString());
- requestedSnap = GetErrorMessage(regionName, e);
- }
- catch (Exception e)
- {
- m_log.Warn("[DATASNAPSHOT]: Caught unknown exception while trying to load snapshot: " + e.StackTrace);
- requestedSnap = GetErrorMessage(regionName, e);
- }
- return requestedSnap;
- }
- private XmlDocument GetErrorMessage(string regionName, Exception e)
- {
- XmlDocument errorMessage = new XmlDocument();
- XmlNode error = errorMessage.CreateNode(XmlNodeType.Element, "error", "");
- XmlNode region = errorMessage.CreateNode(XmlNodeType.Element, "region", "");
- region.InnerText = regionName;
- XmlNode exception = errorMessage.CreateNode(XmlNodeType.Element, "exception", "");
- exception.InnerText = e.ToString();
- error.AppendChild(region);
- error.AppendChild(exception);
- errorMessage.AppendChild(error);
- return errorMessage;
- }
- #endregion
- #region External data services
- private void NotifyDataServices(string servicesStr, string serviceName)
- {
- Stream reply = null;
- string delimStr = ";";
- char [] delimiter = delimStr.ToCharArray();
- string[] services = servicesStr.Split(delimiter);
- for (int i = 0; i < services.Length; i++)
- {
- string url = services[i].Trim();
- RestClient cli = new RestClient(url);
- cli.AddQueryParameter("service", serviceName);
- cli.AddQueryParameter("host", m_hostname);
- cli.AddQueryParameter("port", m_listener_port);
- cli.RequestMethod = "GET";
- try
- {
- reply = cli.Request();
- }
- catch (WebException)
- {
- m_log.Warn("[DATASNAPSHOT]: Unable to notify " + url);
- }
- catch (Exception e)
- {
- m_log.Warn("[DATASNAPSHOT]: Ignoring unknown exception " + e.ToString());
- }
- byte[] response = new byte[1024];
- // int n = 0;
- try
- {
- // n = reply.Read(response, 0, 1024);
- reply.Read(response, 0, 1024);
- }
- catch (Exception e)
- {
- m_log.WarnFormat("[DATASNAPSHOT]: Unable to decode reply from data service. Ignoring. {0}", e.StackTrace);
- }
- // This is not quite working, so...
- // string responseStr = Util.UTF8.GetString(response);
- m_log.Info("[DATASNAPSHOT]: data service notified: " + url);
- }
- }
- #endregion
- #region Latency-based update functions
- public void MarkDataStale(IDataSnapshotProvider provider)
- {
- //Behavior here: Wait m_period seconds, then update if there has not been a request in m_period seconds
- //or m_maxStales has been exceeded
- m_stales++;
- }
- private void CheckStale()
- {
- // Wrap check
- if (Environment.TickCount < m_lastUpdate)
- {
- m_lastUpdate = Environment.TickCount;
- }
- if (m_stales >= m_maxStales)
- {
- if (Environment.TickCount - m_lastUpdate >= 20000)
- {
- m_stales = 0;
- m_lastUpdate = Environment.TickCount;
- MakeEverythingStale();
- }
- }
- else
- {
- if (m_lastUpdate + 1000 * m_period < Environment.TickCount)
- {
- m_stales = 0;
- m_lastUpdate = Environment.TickCount;
- MakeEverythingStale();
- }
- }
- }
- public void MakeEverythingStale()
- {
- m_log.Debug("[DATASNAPSHOT]: Marking all scenes as stale.");
- foreach (Scene scene in m_scenes)
- {
- m_snapStore.ForceSceneStale(scene);
- }
- }
- #endregion
- public void OnSimRestart(RegionInfo thisRegion)
- {
- m_log.Info("[DATASNAPSHOT]: Region " + thisRegion.RegionName + " is restarting, removing from indexing");
- Scene restartedScene = SceneForUUID(thisRegion.RegionID);
- m_scenes.Remove(restartedScene);
- m_snapStore.RemoveScene(restartedScene);
- //Getting around the fact that we can't remove objects from a collection we are enumerating over
- List<IDataSnapshotProvider> providersToRemove = new List<IDataSnapshotProvider>();
- foreach (IDataSnapshotProvider provider in m_dataproviders)
- {
- if (provider.GetParentScene == restartedScene)
- {
- providersToRemove.Add(provider);
- }
- }
- foreach (IDataSnapshotProvider provider in providersToRemove)
- {
- m_dataproviders.Remove(provider);
- m_snapStore.RemoveProvider(provider);
- }
- m_snapStore.RemoveScene(restartedScene);
- }
- }
- }
|