cloudflight
2023-12-02 1a5ef6b2bf25de50b685b44299d9a049a2feac80
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
 
namespace dict_py_Inner
{
 
    [Serializable]
    public class dict : Dictionary<string, dynamic>
    {
        public dict() : base()
        {
        }
 
        public dict(int capacity) : base(capacity)
        {
        }
 
        public dict(IEqualityComparer<string> comparer) : base(comparer)
        {
        }
        public dict(IDictionary<string, dynamic> dictionary) : base(dictionary)
        {
        }
        public dict(int capacity, IEqualityComparer<string> comparer) : base(capacity, comparer)
        {
        }
        public dict(IDictionary<string, dynamic> dictionary, IEqualityComparer<string> comparer) : base(dictionary, comparer)
        {
        }
        protected dict(SerializationInfo info, StreamingContext context)
            : base(info, context)
        {
            Value = info.GetBoolean("Test_Value");
        }
 
        public override void GetObjectData(SerializationInfo info, StreamingContext context)
        {
            base.GetObjectData(info, context);
            info.AddValue("Test_Value", Value);
        }
        //public Dictionary<string, object> Dictionary()
        //{
        //    Dictionary<string, object> dc = new Dictionary<string, object>(this);
        //    return dc;
        //}
        public bool Value { get; set; }
 
        public bool SetKey(string key, dynamic Value)
        {
            if (this.Contains(key))
            {
                this[key] = Value;
                return false;
            }
            else
            {
                this.Add(key, Value);
                return true;
            }
        }
        public string[] GetKeys()
        {
            return this.Keys.ToArray();
        }
        public List<TempForEnum> items()
        {
            var temp_list = new List<TempForEnum>();
            foreach (var Pair in this)
            {
                temp_list.Add(new TempForEnum(Pair.Key, Pair.Value));
            }
            return temp_list;
        }
        public bool Contains(string[] keys)
        {
            foreach (var key in keys)
                if (!this.Contains(key)) return false;
            return true;
        }
        public bool Contains(string key)
        {
            return this.ContainsKey(key);
        }
        public bool Contains(KeyValuePair<string, dynamic> key)
        {
            return this.ContainsKey(key.Key);
        }
        public dynamic Get(string key, dynamic @default = null)
        {
            if (this.Contains(key))
                return this[key];//obj.FirstOrDefault((k) => k.Key == key);
            else
                return @default;
        }
        public dynamic Get(KeyValuePair<string, dynamic> key, dynamic @default = null)
        {
            if (this.Contains(key))
                return this[key];//obj.FirstOrDefault((k) => k.Key == key);
            else
                return @default;
        }
        public dynamic pop(string key, dynamic @default = null)
        {
            if (this.Contains(key))
            {
                var temp = this[key];
                this.Remove(key);
                return temp;//obj.FirstOrDefault((k) => k.Key == key);
            }
            else
                return @default;
        }
        public dynamic pop(KeyValuePair<string, dynamic> key, dynamic @default = null)
        {
            if (this.Contains(key))
            {
                var temp = this[key];
                this.Remove(key);
                return temp;//obj.FirstOrDefault((k) => k.Key == key);
            }
            else
                return @default;
        }
        public dynamic this[KeyValuePair<string, dynamic> key]
        {
            get { return this[key.Key]; }
            set { this[key.Key] = value; }
        }
        public new dynamic this[string key]
        {
            get { return base[key]; }
            set
            {
                if (this.ContainsKey(key)) base[key] = value;
                else this.Add(key, value);
            }
        }
        public dynamic this[Type key_Type]
        {
            get { return base[key_Type.Name]; }
            set
            {
                if (this.ContainsKey(key_Type.Name)) base[key_Type.Name] = value;
                else
                {
                    this.Add(key_Type.Name, value);
                    if (this.dic_Type == null)
                        dic_Type = new dict();
                    if (!this.dic_Type.ContainsKey(key_Type.Name))
                        this.dic_Type.Add(key_Type.Name, key_Type);
                }
            }
        }
        public dict dic_Type;
        public bool Remove(KeyValuePair<string, dynamic> key)
        {
            return this.Remove(key.Key);
        }
 
        public List<string> keys()
        {
            return this.Keys.ToList();
        }
        public List<dynamic> values()
        {
            return this.Values.ToList();
        }
 
        #region 将Session的元素简单放进dict中,简单处理方便使用
 
        public Task finish()
        {
            return Task.Run(() => { });
        }
        public string msg
        {
            get { return this.Get("message"); }
        }
        public string msg_text
        {
            get { return this.Get("message"); }
        }
        public string current_arg_text
        {
            get { return this.Get("current_arg_text"); }
        }
        public dict ctx
        {
            get { return this; }
        }
 
        #endregion
 
        #region IntentCommand
        public double confidence;
        public string methodName;
        public dict args;
        public string current_arg;
        //current_arg: str = ''
        public dict(double confidence, string methodName, string current_arg = "", dict args = null)
        {
            this.confidence = confidence;
            this.methodName = methodName;
            this.args = args;
            this.current_arg = current_arg;
        }
        #endregion
 
    }
 
    public class TempForEnum
    {
        public string Item1;
        public dynamic Item2;
        public TempForEnum(string key, dynamic value)
        {
            Item1 = key;
            Item2 = value;
        }
    }
}