From a71f4c021b8d2fcf0e121145428aa797b8f7ca19 Mon Sep 17 00:00:00 2001
From: MW
Date: Fri, 7 Dec 2007 22:29:16 +0000
Subject: "Borrowed" the LLSD class from a older version of libsl, so that our
LLSD decoding (used by CAPS) works again.
---
.../Framework/Communications/Capabilities/Caps.cs | 10 +-
.../Framework/Communications/Capabilities/LLSD.cs | 648 +++++++++++++++++++++
.../Communications/Capabilities/LLSDCapsDetails.cs | 3 +-
.../Communications/Capabilities/LLSDHelpers.cs | 20 +-
.../Capabilities/LLSDStreamHandler.cs | 6 +-
5 files changed, 672 insertions(+), 15 deletions(-)
create mode 100644 OpenSim/Framework/Communications/Capabilities/LLSD.cs
(limited to 'OpenSim/Framework')
diff --git a/OpenSim/Framework/Communications/Capabilities/Caps.cs b/OpenSim/Framework/Communications/Capabilities/Caps.cs
index f7cb20c..dd30e9f 100644
--- a/OpenSim/Framework/Communications/Capabilities/Caps.cs
+++ b/OpenSim/Framework/Communications/Capabilities/Caps.cs
@@ -55,7 +55,7 @@ namespace OpenSim.Region.Capabilities
private string m_requestPath = "0000/";
private string m_mapLayerPath = "0001/";
private string m_newInventory = "0002/";
- //private string m_requestTexture = "0003/";
+ //private string m_requestTexture = "0003/";
private string m_notecardUpdatePath = "0004/";
//private string eventQueue = "0100/";
private BaseHttpServer m_httpListener;
@@ -125,7 +125,7 @@ namespace OpenSim.Region.Capabilities
///
public string CapsRequest(string request, string path, string param)
{
- // Console.WriteLine("caps request " + request);
+ //Console.WriteLine("caps request " + request);
string result = LLSDHelpers.SerialiseLLSDReply(GetCapabilities());
return result;
}
@@ -140,10 +140,11 @@ namespace OpenSim.Region.Capabilities
string capsBaseUrl = "http://" + m_httpListenerHostName + ":" + m_httpListenPort.ToString() + "/CAPS/" +
m_capsObjectPath;
caps.MapLayer = capsBaseUrl + m_mapLayerPath;
- // caps.RequestTextureDownload = capsBaseUrl + m_requestTexture;
+ // caps.RequestTextureDownload = capsBaseUrl + m_requestTexture;
caps.NewFileAgentInventory = capsBaseUrl + m_newInventory;
caps.UpdateNotecardAgentInventory = capsBaseUrl + m_notecardUpdatePath;
caps.UpdateScriptAgentInventory = capsBaseUrl + m_notecardUpdatePath;
+ // caps.UpdateScriptTaskInventory = capsBaseUrl + m_requestTexture;
return caps;
}
@@ -258,7 +259,8 @@ namespace OpenSim.Region.Capabilities
///
public string NoteCardAgentInventory(string request, string path, string param)
{
- libsecondlife.StructuredData.LLSDMap hash = (libsecondlife.StructuredData.LLSDMap)libsecondlife.StructuredData.LLSDParser.DeserializeBinary(Helpers.StringToField(request));
+ //libsecondlife.StructuredData.LLSDMap hash = (libsecondlife.StructuredData.LLSDMap)libsecondlife.StructuredData.LLSDParser.DeserializeBinary(Helpers.StringToField(request));
+ Hashtable hash = (Hashtable)LLSD.LLSDDeserialize(Helpers.StringToField(request));
LLSDItemUpdate llsdRequest = new LLSDItemUpdate();
LLSDHelpers.DeserialiseLLSDMap(hash, llsdRequest);
diff --git a/OpenSim/Framework/Communications/Capabilities/LLSD.cs b/OpenSim/Framework/Communications/Capabilities/LLSD.cs
new file mode 100644
index 0000000..60b5f75
--- /dev/null
+++ b/OpenSim/Framework/Communications/Capabilities/LLSD.cs
@@ -0,0 +1,648 @@
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Xml;
+using System.IO;
+using libsecondlife;
+using System.Security.Cryptography;
+using System.Text;
+
+namespace OpenSim.Region.Capabilities
+{
+ ///
+ ///
+ ///
+ public static class LLSD
+ {
+ ///
+ ///
+ ///
+ public class LLSDParseException : Exception
+ {
+ public LLSDParseException(string message) : base(message) { }
+ }
+
+ ///
+ ///
+ ///
+ public class LLSDSerializeException : Exception
+ {
+ public LLSDSerializeException(string message) : base(message) { }
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ public static object LLSDDeserialize(byte[] b)
+ {
+ return LLSDDeserialize(new MemoryStream(b, false));
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ public static object LLSDDeserialize(Stream st)
+ {
+ XmlTextReader reader = new XmlTextReader(st);
+ reader.Read();
+ SkipWS(reader);
+
+ if (reader.NodeType != XmlNodeType.Element || reader.LocalName != "llsd")
+ throw new LLSDParseException("Expected ");
+
+ reader.Read();
+ object ret = LLSDParseOne(reader);
+ SkipWS(reader);
+
+ if (reader.NodeType != XmlNodeType.EndElement || reader.LocalName != "llsd")
+ throw new LLSDParseException("Expected ");
+
+ return ret;
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ public static byte[] LLSDSerialize(object obj)
+ {
+ StringWriter sw = new StringWriter();
+ XmlTextWriter writer = new XmlTextWriter(sw);
+ writer.Formatting = Formatting.None;
+
+ writer.WriteStartElement(String.Empty, "llsd", String.Empty);
+ LLSDWriteOne(writer, obj);
+ writer.WriteEndElement();
+
+ writer.Close();
+
+ return Encoding.UTF8.GetBytes(sw.ToString());
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ public static void LLSDWriteOne(XmlTextWriter writer, object obj)
+ {
+ if (obj == null)
+ {
+ writer.WriteStartElement(String.Empty, "undef", String.Empty);
+ writer.WriteEndElement();
+ return;
+ }
+
+ if (obj is string)
+ {
+ writer.WriteStartElement(String.Empty, "string", String.Empty);
+ writer.WriteString((string)obj);
+ writer.WriteEndElement();
+ }
+ else if (obj is int)
+ {
+ writer.WriteStartElement(String.Empty, "integer", String.Empty);
+ writer.WriteString(obj.ToString());
+ writer.WriteEndElement();
+ }
+ else if (obj is double)
+ {
+ writer.WriteStartElement(String.Empty, "real", String.Empty);
+ writer.WriteString(obj.ToString());
+ writer.WriteEndElement();
+ }
+ else if (obj is bool)
+ {
+ bool b = (bool)obj;
+ writer.WriteStartElement(String.Empty, "boolean", String.Empty);
+ writer.WriteString(b ? "1" : "0");
+ writer.WriteEndElement();
+ }
+ else if (obj is ulong)
+ {
+ throw new Exception("ulong in LLSD is currently not implemented, fix me!");
+ }
+ else if (obj is LLUUID)
+ {
+ LLUUID u = (LLUUID)obj;
+ writer.WriteStartElement(String.Empty, "uuid", String.Empty);
+ writer.WriteString(u.ToStringHyphenated());
+ writer.WriteEndElement();
+ }
+ else if (obj is Hashtable)
+ {
+ Hashtable h = obj as Hashtable;
+ writer.WriteStartElement(String.Empty, "map", String.Empty);
+ foreach (string key in h.Keys)
+ {
+ writer.WriteStartElement(String.Empty, "key", String.Empty);
+ writer.WriteString(key);
+ writer.WriteEndElement();
+ LLSDWriteOne(writer, h[key]);
+ }
+ writer.WriteEndElement();
+ }
+ else if (obj is ArrayList)
+ {
+ ArrayList a = obj as ArrayList;
+ writer.WriteStartElement(String.Empty, "array", String.Empty);
+ foreach (object item in a)
+ {
+ LLSDWriteOne(writer, item);
+ }
+ writer.WriteEndElement();
+ }
+ else if (obj is byte[])
+ {
+ byte[] b = obj as byte[];
+ writer.WriteStartElement(String.Empty, "binary", String.Empty);
+
+ writer.WriteStartAttribute(String.Empty, "encoding", String.Empty);
+ writer.WriteString("base64");
+ writer.WriteEndAttribute();
+
+ //// Calculate the length of the base64 output
+ //long length = (long)(4.0d * b.Length / 3.0d);
+ //if (length % 4 != 0) length += 4 - (length % 4);
+
+ //// Create the char[] for base64 output and fill it
+ //char[] tmp = new char[length];
+ //int i = Convert.ToBase64CharArray(b, 0, b.Length, tmp, 0);
+
+ //writer.WriteString(new String(tmp));
+
+ writer.WriteString(Convert.ToBase64String(b));
+ writer.WriteEndElement();
+ }
+ else
+ {
+ throw new LLSDSerializeException("Unknown type " + obj.GetType().Name);
+ }
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ public static object LLSDParseOne(XmlTextReader reader)
+ {
+ SkipWS(reader);
+ if (reader.NodeType != XmlNodeType.Element)
+ throw new LLSDParseException("Expected an element");
+
+ string dtype = reader.LocalName;
+ object ret = null;
+
+ switch (dtype)
+ {
+ case "undef":
+ {
+ if (reader.IsEmptyElement)
+ {
+ reader.Read();
+ return null;
+ }
+
+ reader.Read();
+ SkipWS(reader);
+ ret = null;
+ break;
+ }
+ case "boolean":
+ {
+ if (reader.IsEmptyElement)
+ {
+ reader.Read();
+ return false;
+ }
+
+ reader.Read();
+ string s = reader.ReadString().Trim();
+
+ if (s == String.Empty || s == "false" || s == "0")
+ ret = false;
+ else if (s == "true" || s == "1")
+ ret = true;
+ else
+ throw new LLSDParseException("Bad boolean value " + s);
+
+ break;
+ }
+ case "integer":
+ {
+ if (reader.IsEmptyElement)
+ {
+ reader.Read();
+ return 0;
+ }
+
+ reader.Read();
+ ret = Convert.ToInt32(reader.ReadString().Trim());
+ break;
+ }
+ case "real":
+ {
+ if (reader.IsEmptyElement)
+ {
+ reader.Read();
+ return 0.0f;
+ }
+
+ reader.Read();
+ ret = Convert.ToDouble(reader.ReadString().Trim());
+ break;
+ }
+ case "uuid":
+ {
+ if (reader.IsEmptyElement)
+ {
+ reader.Read();
+ return LLUUID.Zero;
+ }
+
+ reader.Read();
+ ret = new LLUUID(reader.ReadString().Trim());
+ break;
+ }
+ case "string":
+ {
+ if (reader.IsEmptyElement)
+ {
+ reader.Read();
+ return String.Empty;
+ }
+
+ reader.Read();
+ ret = reader.ReadString();
+ break;
+ }
+ case "binary":
+ {
+ if (reader.IsEmptyElement)
+ {
+ reader.Read();
+ return new byte[0];
+ }
+
+ if (reader.GetAttribute("encoding") != null &&
+ reader.GetAttribute("encoding") != "base64")
+ {
+ throw new LLSDParseException("Unknown encoding: " + reader.GetAttribute("encoding"));
+ }
+
+ reader.Read();
+ FromBase64Transform b64 = new FromBase64Transform(FromBase64TransformMode.IgnoreWhiteSpaces);
+ byte[] inp = Encoding.ASCII.GetBytes(reader.ReadString());
+ ret = b64.TransformFinalBlock(inp, 0, inp.Length);
+ break;
+ }
+ case "date":
+ {
+ reader.Read();
+ throw new Exception("LLSD TODO: date");
+ }
+ case "map":
+ {
+ return LLSDParseMap(reader);
+ }
+ case "array":
+ {
+ return LLSDParseArray(reader);
+ }
+ default:
+ throw new LLSDParseException("Unknown element <" + dtype + ">");
+ }
+
+ if (reader.NodeType != XmlNodeType.EndElement || reader.LocalName != dtype)
+ {
+ throw new LLSDParseException("Expected " + dtype + ">");
+ }
+
+ reader.Read();
+ return ret;
+ }
+
+ ///
+ ///
+ ///
+ ///
+ ///
+ public static Hashtable LLSDParseMap(XmlTextReader reader)
+ {
+ Hashtable ret = new Hashtable();
+
+ if (reader.NodeType != XmlNodeType.Element || reader.LocalName != "map")
+ throw new LLSDParseException("Expected