From 1c70790a8f7afba93e977bcad926198b9bba58b3 Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Tue, 10 Mar 2009 20:42:44 +0000 Subject: * Cleanup and CCC (Code Convention Conformance) --- .../ApplicationPlugins/Rest/Regions/POSTHandler.cs | 24 +++++---- OpenSim/ApplicationPlugins/Rest/RestPlugin.cs | 59 ++++++++++++---------- 2 files changed, 46 insertions(+), 37 deletions(-) (limited to 'OpenSim/ApplicationPlugins/Rest') diff --git a/OpenSim/ApplicationPlugins/Rest/Regions/POSTHandler.cs b/OpenSim/ApplicationPlugins/Rest/Regions/POSTHandler.cs index aa93f28..c689daa 100644 --- a/OpenSim/ApplicationPlugins/Rest/Regions/POSTHandler.cs +++ b/OpenSim/ApplicationPlugins/Rest/Regions/POSTHandler.cs @@ -34,10 +34,10 @@ using OpenSim.Region.Framework.Scenes; namespace OpenSim.ApplicationPlugins.Rest.Regions { - public partial class RestRegionPlugin : RestPlugin { #region POST methods + public string PostHandler(string request, string path, string param, OSHttpRequest httpRequest, OSHttpResponse httpResponse) { @@ -59,24 +59,26 @@ namespace OpenSim.ApplicationPlugins.Rest.Regions if (String.IsNullOrEmpty(param)) return CreateRegion(httpRequest, httpResponse); // Parse region ID and other parameters - param = param.TrimEnd(new char[]{'/'}); + param = param.TrimEnd(new char[] {'/'}); string[] comps = param.Split('/'); - UUID regionID = (UUID)comps[0]; + UUID regionID = (UUID) comps[0]; m_log.DebugFormat("{0} POST region UUID {1}", MsgID, regionID.ToString()); if (UUID.Zero == regionID) throw new Exception("missing region ID"); Scene scene = null; App.SceneManager.TryGetScene(regionID, out scene); - if (null == scene) return Failure(httpResponse, OSHttpStatusCode.ClientErrorNotFound, - "POST", "cannot find region {0}", regionID.ToString()); + if (null == scene) + return Failure(httpResponse, OSHttpStatusCode.ClientErrorNotFound, + "POST", "cannot find region {0}", regionID.ToString()); - if (2 == comps.Length) { + if (2 == comps.Length) + { // check for {prims} switch (comps[1].ToLower()) { - case "prims": - return LoadPrims(request, httpRequest, httpResponse, scene); + case "prims": + return LoadPrims(request, httpRequest, httpResponse, scene); } } @@ -106,12 +108,12 @@ namespace OpenSim.ApplicationPlugins.Rest.Regions public string LoadPrims(string requestBody, OSHttpRequest request, OSHttpResponse response, Scene scene) { IRegionSerialiserModule serialiser = scene.RequestModuleInterface(); - if (serialiser != null) + if (serialiser != null) serialiser.LoadPrimsFromXml2(scene, new StringReader(requestBody), true); - + return ""; } #endregion POST methods } -} +} \ No newline at end of file diff --git a/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs b/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs index a0d4209..f3c3016 100644 --- a/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs +++ b/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs @@ -45,18 +45,18 @@ namespace OpenSim.ApplicationPlugins.Rest protected static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); - private IConfig _config; // Configuration source: Rest Plugins - private IConfig _pluginConfig; // Configuration source: Plugin specific - private OpenSimBase _app; // The 'server' - private BaseHttpServer _httpd; // The server's RPC interface - private string _prefix; // URL prefix below - // which all REST URLs - // are living - private StringWriter _sw = null; + private IConfig _config; // Configuration source: Rest Plugins + private IConfig _pluginConfig; // Configuration source: Plugin specific + private OpenSimBase _app; // The 'server' + private BaseHttpServer _httpd; // The server's RPC interface + private string _prefix; // URL prefix below + // which all REST URLs + // are living + private StringWriter _sw = null; private RestXmlWriter _xw = null; private string _godkey; - private int _reqk; + private int _reqk; [ThreadStatic] private static string _threadRequestID = String.Empty; @@ -150,14 +150,16 @@ namespace OpenSim.ApplicationPlugins.Rest public XmlTextWriter XmlWriter { - get { + get + { if (null == _xw) { _sw = new StringWriter(); _xw = new RestXmlWriter(_sw); _xw.Formatting = Formatting.Indented; } - return _xw; } + return _xw; + } } public string XmlWriterResult @@ -171,19 +173,23 @@ namespace OpenSim.ApplicationPlugins.Rest return _sw.ToString(); } } - #endregion properties + #endregion properties #region methods + // TODO: required by IPlugin, but likely not at all right - string m_version = "0.0"; + private string m_version = "0.0"; - public string Version { get { return m_version; } } + public string Version + { + get { return m_version; } + } - public void Initialise() - { + public void Initialise() + { m_log.Info("[RESTPLUGIN]: " + Name + " cannot be default-initialized!"); - throw new PluginNotInitialisedException (Name); + throw new PluginNotInitialisedException(Name); } /// @@ -250,8 +256,8 @@ namespace OpenSim.ApplicationPlugins.Rest { } - private List _handlers = new List(); - private Dictionary _agents = new Dictionary(); + private List _handlers = new List(); + private Dictionary _agents = new Dictionary(); /// /// Add a REST stream handler to the underlying HTTP server. @@ -327,7 +333,7 @@ namespace OpenSim.ApplicationPlugins.Rest if (null == keys) return false; // we take the last key supplied - return keys[keys.Length-1] == _godkey; + return keys[keys.Length - 1] == _godkey; } /// @@ -351,11 +357,11 @@ namespace OpenSim.ApplicationPlugins.Rest _httpd.RemoveStreamHandler(h.HttpMethod, h.Path); } _handlers = null; - foreach (KeyValuePair h in _agents) + foreach (KeyValuePair h in _agents) { - _httpd.RemoveAgentHandler(h.Key,h.Value); + _httpd.RemoveAgentHandler(h.Key, h.Value); } - _agents = null; + _agents = null; } public virtual void Dispose() @@ -375,7 +381,7 @@ namespace OpenSim.ApplicationPlugins.Rest { string m = String.Format(format, msg); - response.StatusCode = (int)status; + response.StatusCode = (int) status; response.StatusDescription = m; m_log.ErrorFormat("{0} {1} failed: {2}", MsgID, method, m); @@ -394,7 +400,7 @@ namespace OpenSim.ApplicationPlugins.Rest { string m = String.Format("exception occurred: {0}", e.Message); - response.StatusCode = (int)status; + response.StatusCode = (int) status; response.StatusDescription = m; m_log.DebugFormat("{0} {1} failed: {2}", MsgID, method, e.ToString()); @@ -402,6 +408,7 @@ namespace OpenSim.ApplicationPlugins.Rest return String.Format("{0}", e.Message); } + #endregion methods } -} +} \ No newline at end of file -- cgit v1.1