diff options
author | Sean Dague | 2008-05-15 11:32:28 +0000 |
---|---|---|
committer | Sean Dague | 2008-05-15 11:32:28 +0000 |
commit | 0307ad11531efb2fe95dab5dc489e37cb5bbb542 (patch) | |
tree | 1ab2444d259661cb27f5922fd476c245d450214b /OpenSim/ApplicationPlugins/Rest/Regions/RestRegionPlugin.cs | |
parent | * Added about half of the planned ODE physics options to OpenSim.ini.example. (diff) | |
download | opensim-SC_OLD-0307ad11531efb2fe95dab5dc489e37cb5bbb542.zip opensim-SC_OLD-0307ad11531efb2fe95dab5dc489e37cb5bbb542.tar.gz opensim-SC_OLD-0307ad11531efb2fe95dab5dc489e37cb5bbb542.tar.bz2 opensim-SC_OLD-0307ad11531efb2fe95dab5dc489e37cb5bbb542.tar.xz |
Damn, forgot to manually add these as I keep forgetting that
svn patches don't do adds. :(
Diffstat (limited to 'OpenSim/ApplicationPlugins/Rest/Regions/RestRegionPlugin.cs')
-rw-r--r-- | OpenSim/ApplicationPlugins/Rest/Regions/RestRegionPlugin.cs | 162 |
1 files changed, 162 insertions, 0 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/Regions/RestRegionPlugin.cs b/OpenSim/ApplicationPlugins/Rest/Regions/RestRegionPlugin.cs new file mode 100644 index 0000000..8a6fb09 --- /dev/null +++ b/OpenSim/ApplicationPlugins/Rest/Regions/RestRegionPlugin.cs | |||
@@ -0,0 +1,162 @@ | |||
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 | */ | ||
28 | |||
29 | using System; | ||
30 | using System.Threading; | ||
31 | using System.Collections; | ||
32 | using System.Collections.Generic; | ||
33 | using System.IO; | ||
34 | using System.Net; | ||
35 | using System.Reflection; | ||
36 | using System.Text.RegularExpressions; | ||
37 | using System.Timers; | ||
38 | using System.Xml; | ||
39 | using System.Xml.Serialization; | ||
40 | using libsecondlife; | ||
41 | using Mono.Addins; | ||
42 | using Nwc.XmlRpc; | ||
43 | using Nini.Config; | ||
44 | using OpenSim.Framework; | ||
45 | using OpenSim.Framework.Console; | ||
46 | using OpenSim.Framework.Servers; | ||
47 | using OpenSim.Framework.Communications; | ||
48 | using OpenSim.Region.Environment.Scenes; | ||
49 | using OpenSim.ApplicationPlugins.Rest; | ||
50 | |||
51 | [assembly : Addin] | ||
52 | [assembly : AddinDependency("OpenSim", "0.5")] | ||
53 | |||
54 | namespace OpenSim.ApplicationPlugins.Rest.Regions | ||
55 | { | ||
56 | |||
57 | [Extension("/OpenSim/Startup")] | ||
58 | public class RestRegionPlugin : RestPlugin | ||
59 | { | ||
60 | private static readonly log4net.ILog _log = | ||
61 | log4net.LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
62 | |||
63 | #region overriding properties | ||
64 | public override string Name | ||
65 | { | ||
66 | get { return "REGION"; } | ||
67 | } | ||
68 | |||
69 | public override string ConfigName | ||
70 | { | ||
71 | get { return "RestRegionPlugin"; } | ||
72 | } | ||
73 | #endregion overriding properties | ||
74 | |||
75 | #region overriding methods | ||
76 | /// <summary> | ||
77 | /// This method is called by OpenSimMain immediately after loading the | ||
78 | /// plugin and after basic server setup, but before running any server commands. | ||
79 | /// </summary> | ||
80 | /// <remarks> | ||
81 | /// Note that entries MUST be added to the active configuration files before | ||
82 | /// the plugin can be enabled. | ||
83 | /// </remarks> | ||
84 | public override void Initialise(OpenSimMain openSim) | ||
85 | { | ||
86 | try | ||
87 | { | ||
88 | base.Initialise(openSim); | ||
89 | if (IsEnabled) | ||
90 | m_log.InfoFormat("{0} Rest Plugins Enabled", MsgID); | ||
91 | else | ||
92 | m_log.WarnFormat("{0} Rest Plugins are disabled", MsgID); | ||
93 | |||
94 | // add REST method handlers | ||
95 | AddRestStreamHandler("GET", "/regions/", GetHandler); | ||
96 | } | ||
97 | catch (Exception e) | ||
98 | { | ||
99 | _log.WarnFormat("{0} Initialization failed: {1}", MsgID, e.Message); | ||
100 | _log.DebugFormat("{0} Initialization failed: {1}", MsgID, e.ToString()); | ||
101 | } | ||
102 | } | ||
103 | |||
104 | public override void Close() | ||
105 | { | ||
106 | } | ||
107 | #endregion overriding methods | ||
108 | |||
109 | #region methods | ||
110 | public string GetHandler(string request, string path, string param) | ||
111 | { | ||
112 | m_log.DebugFormat("{0} GET path {1} param {2}", MsgID, path, param); | ||
113 | |||
114 | // param empty: regions list | ||
115 | if (String.IsNullOrEmpty(param)) return GetHandlerRegions(); | ||
116 | |||
117 | return GetHandlerRegion(param); | ||
118 | } | ||
119 | |||
120 | public string GetHandlerRegions() | ||
121 | { | ||
122 | StringWriter sw = new StringWriter(); | ||
123 | XmlTextWriter xw = new XmlTextWriter(sw); | ||
124 | xw.Formatting = Formatting.Indented; | ||
125 | |||
126 | xw.WriteStartElement(String.Empty, "regions", String.Empty); | ||
127 | foreach (Scene s in App.SceneManager.Scenes) | ||
128 | { | ||
129 | xw.WriteStartElement(String.Empty, "uuid", String.Empty); | ||
130 | xw.WriteString(s.RegionInfo.RegionID.ToString()); | ||
131 | xw.WriteEndElement(); | ||
132 | } | ||
133 | xw.WriteEndElement(); | ||
134 | xw.Close(); | ||
135 | |||
136 | return sw.ToString(); | ||
137 | } | ||
138 | |||
139 | public string GetHandlerRegion(string param) | ||
140 | { | ||
141 | string[] comps = param.Split('/'); | ||
142 | LLUUID regionID = (LLUUID)comps[0]; | ||
143 | _log.DebugFormat("{0} region UUID {1}", MsgID, regionID.ToString()); | ||
144 | |||
145 | if (LLUUID.Zero == regionID) throw new Exception("missing region ID"); | ||
146 | |||
147 | Scene scene = null; | ||
148 | App.SceneManager.TryGetScene(regionID, out scene); | ||
149 | |||
150 | XmlSerializer xs = new XmlSerializer(typeof(RegionDetails)); | ||
151 | StringWriter sw = new StringWriter(); | ||
152 | XmlTextWriter xw = new XmlTextWriter(sw); | ||
153 | xw.Formatting = Formatting.Indented; | ||
154 | |||
155 | xs.Serialize(xw, new RegionDetails(scene.RegionInfo)); | ||
156 | xw.Close(); | ||
157 | |||
158 | return sw.ToString(); | ||
159 | } | ||
160 | #endregion methods | ||
161 | } | ||
162 | } | ||