File: RubyRepresenter.cs

package info (click to toggle)
dlr-languages 20090805%2Bgit.e6b28d27%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 51,484 kB
  • ctags: 59,257
  • sloc: cs: 298,829; ruby: 159,643; xml: 19,872; python: 2,820; yacc: 1,960; makefile: 96; sh: 65
file content (176 lines) | stat: -rw-r--r-- 6,990 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/* ****************************************************************************
 *
 * Copyright (c) Microsoft Corporation. 
 *
 * This source code is subject to terms and conditions of the Microsoft Public License. A 
 * copy of the license can be found in the License.html file at the root of this distribution. If 
 * you cannot locate the  Microsoft Public License, please send an email to 
 * ironruby@microsoft.com. By using this source code in any fashion, you are agreeing to be bound 
 * by the terms of the Microsoft Public License.
 *
 * You must not remove this notice, or any other, from this software.
 *
 *
 * ***************************************************************************/

using System;
using System.Runtime.CompilerServices;
using IronRuby.Builtins;
using IronRuby.Runtime;
using IronRuby.Runtime.Calls;
using Microsoft.Scripting;
using Microsoft.Scripting.Runtime;
using System.Collections;
using System.Collections.Generic;

namespace IronRuby.StandardLibrary.Yaml {

    [RubyClass("Out")]
    public class RubyRepresenter : Representer {
        private readonly RubyContext/*!*/ _context;
        private readonly CallSite<Func<CallSite, object, object>> _TagUri;
        private readonly CallSite<Func<CallSite, object, object>> _ToYamlStyle;
        private readonly CallSite<Func<CallSite, object, RubyRepresenter, object>> _ToYamlNode;
        private readonly CallSite<Func<CallSite, object, RubyRepresenter, object>> _ToYaml;
        private readonly CallSite<Func<CallSite, object, object>> _ToYamlProperties;

        private RubyMemberInfo _objectToYamlMethod;

        public RubyContext/*!*/ Context {
            get { return _context; }
        }

        public RubyRepresenter(RubyContext/*!*/ context, Serializer/*!*/ serializer, YamlOptions/*!*/ opts)
            : base(serializer, opts) {
            _context = context;
            _objectToYamlMethod = context.GetClass(typeof(object)).ResolveMethod("to_yaml", VisibilityContext.AllVisible).Info;

             _TagUri =
                CallSite<Func<CallSite, object, object>>.Create(
                RubyCallAction.Make(context, "taguri", RubyCallSignature.WithImplicitSelf(0))
            );

            _ToYamlStyle =
                CallSite<Func<CallSite, object, object>>.Create(
                RubyCallAction.Make(context, "to_yaml_style", RubyCallSignature.WithImplicitSelf(0))
            );

            _ToYamlNode =
                CallSite<Func<CallSite, object, RubyRepresenter, object>>.Create(
                RubyCallAction.Make(context, "to_yaml_node", RubyCallSignature.WithImplicitSelf(1))
            );

            _ToYaml =
                CallSite<Func<CallSite, object, RubyRepresenter, object>>.Create(
                RubyCallAction.Make(context, "to_yaml", RubyCallSignature.WithImplicitSelf(0))
            );

            _ToYamlProperties = 
                CallSite<Func<CallSite, object, object>>.Create(
                RubyCallAction.Make(context, "to_yaml_properties", RubyCallSignature.WithImplicitSelf(0))
            );
        }

        #region dynamic sites

        internal MutableString GetTagUri(object obj) {
            return (MutableString)_TagUri.Target(_TagUri, obj);
        }

        internal MutableString ToYamlStyle(object obj) {
            return (MutableString)_ToYamlStyle.Target(_ToYamlStyle, obj);
        }

        internal RubyArray ToYamlProperties(object obj) {
            return (RubyArray)_ToYamlProperties.Target(_ToYamlProperties, obj);
        }

        #endregion

        protected override Node CreateNode(object data) {
            RubyMemberInfo method = _context.GetImmediateClassOf(data).ResolveMethodForSite("to_yaml", VisibilityContext.AllVisible).Info;

            if (method == _objectToYamlMethod) {
                return (Node)_ToYamlNode.Target(_ToYamlNode, data, this);
            } else {
                // TODO: this is not correct:
                return (Node)_ToYaml.Target(_ToYaml, data, this);
            }
        }

        protected override bool IgnoreAliases(object data) {
 	         return RubyUtils.IsRubyValueType(data) || base.IgnoreAliases(data);
        }

        internal Node Scalar(MutableString taguri, MutableString value, SymbolId style) {
            return Scalar(
                taguri != null ? taguri.ConvertToString() : "",
                value != null ? value.ConvertToString() : "",
                //It's not clear what style argument really means, it seems to be always :plain
                //for now we are ignoring it, defaulting to \0 (see Representer class)
                '\0'
            );
        }

        internal Node Scalar(object self, MutableString value) {
            MutableString taguri = GetTagUri(self);
            MutableString styleStr = ToYamlStyle(self);

            char style = '\0';
            if (!MutableString.IsNullOrEmpty(styleStr)) {
                style = styleStr.GetChar(0);
            }

            return Scalar(
                taguri != null ? taguri.ConvertToString() : "",
                value != null ? value.ConvertToString() : "",
                style
            );
        }

        internal Node/*!*/ Map(object self, IDictionary/*!*/ map) {
            MutableString taguri = GetTagUri(self);
            object style = ToYamlStyle(self);
            return Map(taguri, style, map);
        }

        internal Node/*!*/ Map(MutableString taguri, object to_yaml_style, IDictionary/*!*/ map) {
            return Map(
                taguri != null ? taguri.ConvertToString() : "tag:yaml.org,2002:map",
                map,
                RubyOps.IsTrue(to_yaml_style)
            );
        }

        [RubyMethod("map")]
        public static Node/*!*/ Map(RubyContext/*!*/ context, [NotNull]BlockParam/*!*/ block, RubyRepresenter/*!*/ self, [DefaultProtocol]MutableString taguri, object to_yaml_style) {
            var map = new Dictionary<object, object>();
            object blockResult;
            block.Yield(map, out blockResult);
            return self.Map(taguri, to_yaml_style ?? false, map);
        }

        internal Node Sequence(object self, RubyArray seq) {
            MutableString taguri = GetTagUri(self);
            MutableString style = ToYamlStyle(self);

            return Sequence(
                taguri != null ? taguri.ConvertToString() : "",
                seq,
                style != null
            );
        }


        internal void AddYamlProperties(object self, Dictionary<MutableString, object>/*!*/ map) {
            AddYamlProperties(self, map, ToYamlProperties(self));
        }

        internal void AddYamlProperties(object self, Dictionary<MutableString, object>/*!*/ map, RubyArray/*!*/ props) {
            foreach (object prop in props) {
                string p = prop.ToString();
                map[MutableString.Create(p.Substring(1))] = KernelOps.InstanceVariableGet(_context, self, p);
            }
        }
    }
}