Exemplo n.º 1
0
        public static void HandleListRequest(System.IO.TextWriter stream, HttpListenerRequest request)
        {
                        #if DEBUG
            Debug.Log("Processing list request");
                        #endif

            PerLogicalIdParams param = null;
            try
            {
                param = new PerLogicalIdParams(request);
            }
            catch (Exception e)
            {
                Debug.LogException(e);
                throw new HttpServer.HttpException(400);
            }

            var objects = new Dictionary <string, Json.Node>();
            RemotableContainer.Instance.Walk(
                (obj, logicalId) => GetOrCreate(objects, logicalId).Add(obj.GetType().FullName, BuildObjectDescription(obj, param.TryGet(logicalId))));
            var result = new Json.Object();
            result.Add("objects", new Json.Object(objects));

            var idMapping = new Dictionary <string, Json.Node>();
            foreach (var kv in RemotableContainer.Instance.logicalIdNames)
            {
                idMapping.Add(kv.Key, new Json.String(kv.Value));
            }
            result.Add("objectNames", new Json.Object(idMapping));

            result.Write(stream);
        }
Exemplo n.º 2
0
        public static void HandleListRequest(System.IO.TextWriter stream, HttpListenerRequest request)
        {
            #if DEBUG
            Debug.Log("Processing list request");
            #endif

            PerLogicalIdParams param = null;
            try
            {
                param = new PerLogicalIdParams(request);
            }
            catch (Exception e)
            {
                Debug.LogException(e);
                throw new HttpServer.HttpException(400);
            }

            var objects = new Dictionary<string, Json.Node>();
            RemotableContainer.Instance.Walk(
                (obj, logicalId) =>	GetOrCreate(objects, logicalId).Add(obj.GetType().FullName, BuildObjectDescription(obj, param.TryGet(logicalId))));
            var result = new Json.Object();
            result.Add("objects", new Json.Object(objects));

            var idMapping = new Dictionary<string, Json.Node>();
            foreach (var kv in RemotableContainer.Instance.logicalIdNames)
            {
                idMapping.Add(kv.Key, new Json.String(kv.Value));
            }
            result.Add("objectNames", new Json.Object(idMapping));

            result.Write(stream);
        }
Exemplo n.º 3
0
 static Json.Object GetOrCreate(Dictionary <string, Json.Node> container, string key)
 {
     Json.Node res;
     if (!container.TryGetValue(key, out res))
     {
         res            = new Json.Object();
         container[key] = res;
     }
     return(res as Json.Object);
 }
Exemplo n.º 4
0
        static Json.Node BuildMember(RemotableDetails details, object obj, bool fieldAllowed)
        {
            var info    = details.Info;
            var content = new Json.Object();

            if (info is FieldInfo)
            {
                content.Add("type", Json.Node.MakeValue("field"));
                fieldAllowed = true;
            }
            else if (info is PropertyInfo)
            {
                content.Add("type", Json.Node.MakeValue("property"));
            }
            else if (info is MethodInfo)
            {
                content.Add("type", Json.Node.MakeValue("method"));
                content.Add(
                    "parameters",
                    new Json.List(
                        details.parameters.Select(
                            p => Json.Node.MakeValue(p.GetType().FullName)).ToList()
                        )
                    );
            }
            else
            {
                content.Add("type", Json.Node.MakeValue("unknown"));
                fieldAllowed = false;
            }

            if (details.valueType != null)
            {
                content.Add("valueType", Json.Node.MakeValue(details.valueType.FullName));
            }

            if (fieldAllowed)
            {
                if (details.AsDouble != null)
                {
                    content.Add("value", Json.Node.MakeValue(details.AsDouble(obj)));
                }
                else if (details.AsString != null)
                {
                    content.Add("value", Json.Node.MakeValue(details.AsString(obj)));
                }
            }

            if (details.DisplayName != null)
            {
                content.Add("displayName", Json.Node.MakeValue(details.DisplayName));
            }

            return(content);
        }
Exemplo n.º 5
0
        static Json.Node BuildMember(RemotableDetails details, object obj, bool fieldAllowed)
        {
            var info = details.Info;
            var content = new Json.Object();
            if (info is FieldInfo)
            {
                content.Add("type", Json.Node.MakeValue("field"));
                fieldAllowed = true;
            }
            else if (info is PropertyInfo)
                content.Add("type", Json.Node.MakeValue("property"));
            else if (info is MethodInfo)
            {
                content.Add("type", Json.Node.MakeValue("method"));
                content.Add(
                    "parameters",
                    new Json.List(
                        details.parameters.Select(
                            p => Json.Node.MakeValue(p.GetType().FullName)).ToList()
                    )
                );
            }
            else
            {
                content.Add("type", Json.Node.MakeValue("unknown"));
                fieldAllowed = false;
            }

            if (details.valueType != null)
                content.Add("valueType", Json.Node.MakeValue(details.valueType.FullName));

            if (fieldAllowed)
            {
                if (details.AsDouble != null)
                    content.Add("value", Json.Node.MakeValue(details.AsDouble(obj)));
                else if (details.AsString != null)
                    content.Add("value", Json.Node.MakeValue(details.AsString(obj)));
            }

            if (details.DisplayName != null)
            {
                content.Add("displayName", Json.Node.MakeValue(details.DisplayName));
            }

            return content;
        }
Exemplo n.º 6
0
        static Json.Node BuildObjectDescription(object obj, PerObjectParams param)
        {
            var type        = obj.GetType();
            var description = new Json.Object();
            HashSet <string> allowedFields = param?.TryGet(type.FullName);

            foreach (var kv in RemotableContent.Get(type).Exported)
            {
                description.Add(
                    kv.Key,
                    BuildMember(
                        kv.Value,
                        obj,
                        allowedFields?.Contains(kv.Key) ?? false));
            }

            return(description);
        }
Exemplo n.º 7
0
        static Json.Node BuildObjectDescription(object obj, PerObjectParams param)
        {
            var type = obj.GetType();
            var description = new Json.Object();
            HashSet<string> allowedFields = param?.TryGet(type.FullName);

            foreach (var kv in RemotableContent.Get(type).Exported)
                description.Add(
                    kv.Key,
                    BuildMember(
                        kv.Value,
                        obj,
                        allowedFields?.Contains(kv.Key) ?? false));

            return description;
        }
Exemplo n.º 8
0
 static Json.Object GetOrCreate(Dictionary<string, Json.Node> container, string key)
 {
     Json.Node res;
     if (!container.TryGetValue(key, out res))
     {
         res = new Json.Object();
         container[key] = res;
     }
     return res as Json.Object;
 }