diff options
* Extracted common superclass for GetAssetStreamHandler and CachedGetAssetStreamHandler
* Added some more tests
Diffstat (limited to 'OpenSim/Framework/Servers/CachedGetAssetStreamHandler.cs')
-rw-r--r-- | OpenSim/Framework/Servers/CachedGetAssetStreamHandler.cs | 173 |
1 files changed, 3 insertions, 170 deletions
diff --git a/OpenSim/Framework/Servers/CachedGetAssetStreamHandler.cs b/OpenSim/Framework/Servers/CachedGetAssetStreamHandler.cs index fb217d1..ef637c5 100644 --- a/OpenSim/Framework/Servers/CachedGetAssetStreamHandler.cs +++ b/OpenSim/Framework/Servers/CachedGetAssetStreamHandler.cs | |||
@@ -25,194 +25,27 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
29 | using System.IO; | ||
30 | using System.Reflection; | 28 | using System.Reflection; |
31 | using System.Text; | ||
32 | using System.Text.RegularExpressions; | ||
33 | using System.Xml; | ||
34 | using System.Xml.Serialization; | ||
35 | using log4net; | 29 | using log4net; |
36 | using OpenMetaverse; | 30 | using OpenMetaverse; |
37 | using OpenSim.Data; | ||
38 | using OpenSim.Framework; | ||
39 | using OpenSim.Framework.Servers; | ||
40 | using OpenSim.Framework.Servers.HttpServer; | ||
41 | using OpenSim.Framework.Statistics; | ||
42 | using System.Net; | ||
43 | 31 | ||
44 | namespace OpenSim.Framework.Servers | 32 | namespace OpenSim.Framework.Servers |
45 | { | 33 | { |
46 | public class CachedGetAssetStreamHandler : BaseStreamHandler | 34 | public class CachedGetAssetStreamHandler : BaseGetAssetStreamHandler |
47 | { | 35 | { |
48 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 36 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
49 | 37 | ||
50 | // private OpenAsset_Main m_assetManager; | ||
51 | private readonly IAssetCache m_assetProvider; | 38 | private readonly IAssetCache m_assetProvider; |
52 | 39 | ||
53 | /// <summary> | ||
54 | /// Constructor. | ||
55 | /// </summary> | ||
56 | /// <param name="assetManager"></param> | ||
57 | /// <param name="assetProvider"></param> | ||
58 | public CachedGetAssetStreamHandler(IAssetCache assetProvider) | 40 | public CachedGetAssetStreamHandler(IAssetCache assetProvider) |
59 | : base("GET", "/assets") | 41 | : base("GET", "/assets") |
60 | { | 42 | { |
61 | // m_log.Info("[REST]: In Get Request"); | ||
62 | // m_assetManager = assetManager; | ||
63 | m_assetProvider = assetProvider; | 43 | m_assetProvider = assetProvider; |
64 | } | 44 | } |
65 | 45 | ||
66 | public override byte[] Handle(string path, Stream request, | 46 | protected override AssetBase GetAsset(UUID assetID) |
67 | OSHttpRequest httpRequest, OSHttpResponse httpResponse) | ||
68 | { | 47 | { |
69 | string param = GetParam(path); | 48 | return m_assetProvider.GetAsset(assetID, true); // TODO IsTexture should be deduced from loaded asset. It is not used in this case. |
70 | byte[] result = new byte[] { }; | ||
71 | |||
72 | string[] p = param.Split(new char[] { '/', '?', '&' }, StringSplitOptions.RemoveEmptyEntries); | ||
73 | |||
74 | if (p.Length > 0) | ||
75 | { | ||
76 | UUID assetID = UUID.Zero; | ||
77 | |||
78 | if (!UUID.TryParse(p[0], out assetID)) | ||
79 | { | ||
80 | m_log.InfoFormat( | ||
81 | "[REST]: GET:/asset ignoring request with malformed UUID {0}", p[0]); | ||
82 | return result; | ||
83 | } | ||
84 | |||
85 | if (StatsManager.AssetStats != null) | ||
86 | StatsManager.AssetStats.AddRequest(); | ||
87 | |||
88 | AssetBase asset = m_assetProvider.GetAsset(assetID,true); // TODO IsTexture should be deduced from loaded asset. It is not used in this case. | ||
89 | |||
90 | if (asset != null) | ||
91 | { | ||
92 | // if (asset.ContainsReferences) | ||
93 | // { | ||
94 | // asset.Data = ProcessOutgoingAssetData(asset.Data); | ||
95 | // } | ||
96 | if (p.Length > 1 && p[1] == "data") | ||
97 | { | ||
98 | httpResponse.StatusCode = (int)HttpStatusCode.OK; | ||
99 | httpResponse.ContentType = SLAssetTypeToContentType(asset.Type); | ||
100 | result = asset.Data; | ||
101 | } | ||
102 | else | ||
103 | { | ||
104 | XmlSerializer xs = new XmlSerializer(typeof(AssetBase)); | ||
105 | MemoryStream ms = new MemoryStream(); | ||
106 | XmlTextWriter xw = new XmlTextWriter(ms, Encoding.UTF8); | ||
107 | xw.Formatting = Formatting.Indented; | ||
108 | xs.Serialize(xw, asset); | ||
109 | xw.Flush(); | ||
110 | |||
111 | ms.Seek(0, SeekOrigin.Begin); | ||
112 | //StreamReader sr = new StreamReader(ms); | ||
113 | |||
114 | result = ms.GetBuffer(); | ||
115 | |||
116 | Array.Resize<byte>(ref result, (int)ms.Length); | ||
117 | } | ||
118 | } | ||
119 | else | ||
120 | { | ||
121 | if (StatsManager.AssetStats != null) | ||
122 | StatsManager.AssetStats.AddNotFoundRequest(); | ||
123 | |||
124 | m_log.InfoFormat("[REST]: GET:/asset failed to find {0}", assetID); | ||
125 | } | ||
126 | } | ||
127 | |||
128 | return result; | ||
129 | } | ||
130 | |||
131 | // private byte[] ProcessOutgoingAssetData(byte[] assetData) | ||
132 | // { | ||
133 | // string data = Encoding.ASCII.GetString(assetData); | ||
134 | |||
135 | // data = ProcessAssetDataString(data); | ||
136 | |||
137 | // return Encoding.ASCII.GetBytes(data); | ||
138 | // } | ||
139 | |||
140 | public string ProcessAssetDataString(string data) | ||
141 | { | ||
142 | Regex regex = new Regex("(creator_id|owner_id)\\s+(\\S+)"); | ||
143 | |||
144 | // IUserService userService = null; | ||
145 | |||
146 | data = regex.Replace(data, delegate(Match m) | ||
147 | { | ||
148 | string result = String.Empty; | ||
149 | |||
150 | // string key = m.Groups[1].Captures[0].Value; | ||
151 | // | ||
152 | // string value = m.Groups[2].Captures[0].Value; | ||
153 | // | ||
154 | // Guid userUri; | ||
155 | // | ||
156 | // switch (key) | ||
157 | // { | ||
158 | // case "creator_id": | ||
159 | // userUri = new Guid(value); | ||
160 | // // result = "creator_url " + userService(userService, userUri); | ||
161 | // break; | ||
162 | // | ||
163 | // case "owner_id": | ||
164 | // userUri = new Guid(value); | ||
165 | // // result = "owner_url " + ResolveUserUri(userService, userUri); | ||
166 | // break; | ||
167 | // } | ||
168 | |||
169 | return result; | ||
170 | }); | ||
171 | |||
172 | return data; | ||
173 | } | ||
174 | |||
175 | private string SLAssetTypeToContentType(int assetType) | ||
176 | { | ||
177 | switch (assetType) | ||
178 | { | ||
179 | case 0: | ||
180 | return "image/jp2"; | ||
181 | case 1: | ||
182 | return "application/ogg"; | ||
183 | case 2: | ||
184 | return "application/x-metaverse-callingcard"; | ||
185 | case 3: | ||
186 | return "application/x-metaverse-landmark"; | ||
187 | case 5: | ||
188 | return "application/x-metaverse-clothing"; | ||
189 | case 6: | ||
190 | return "application/x-metaverse-primitive"; | ||
191 | case 7: | ||
192 | return "application/x-metaverse-notecard"; | ||
193 | case 8: | ||
194 | return "application/x-metaverse-folder"; | ||
195 | case 10: | ||
196 | return "application/x-metaverse-lsl"; | ||
197 | case 11: | ||
198 | return "application/x-metaverse-lso"; | ||
199 | case 12: | ||
200 | return "image/tga"; | ||
201 | case 13: | ||
202 | return "application/x-metaverse-bodypart"; | ||
203 | case 17: | ||
204 | return "audio/x-wav"; | ||
205 | case 19: | ||
206 | return "image/jpeg"; | ||
207 | case 20: | ||
208 | return "application/x-metaverse-animation"; | ||
209 | case 21: | ||
210 | return "application/x-metaverse-gesture"; | ||
211 | case 22: | ||
212 | return "application/x-metaverse-simstate"; | ||
213 | default: | ||
214 | return "application/octet-stream"; | ||
215 | } | ||
216 | } | 49 | } |
217 | } | 50 | } |
218 | } | 51 | } |