cloudflight
2023-12-02 c0f9915265878e56e91ee97f7f8d925db1e12626
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using Newtonsoft.Json;
using System.Diagnostics;
using System.Data;
//using 文件读写;
 
 
namespace CommonBase
{
 
    [Serializable]
    public class dict : Dictionary<string, dynamic>
    {
        public bool emptyCreate = false;
        List<dict> _list = null;
        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 dynamic this[string key]
        {
            get
            {
                if (this.ContainsKey(key))
                    return base[key];
                else
                {
                    //this.Add(key,);
                    return new dict { emptyCreate = true };
                }
 
            }
            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 dynamic this[int index]
        {
            get
            {
                if (this._list == null)
                    _list = new List<dict>();
                if (_list.Count <= index)
                {
                    int count = _list.Count;
                    for (int i = count; i <= index; i++) _list.Add(new dict { emptyCreate = true });
                }
                return this._list[index];
            }
            set
            {
                if (this._list == null)
                    _list = new List<dict>();
                if (_list.Count <= index)
                {
                    int count = _list.Count;
                    for (int i = count; i <= index; i++) _list.Add(new dict { emptyCreate = true });
                }
                this._list[index] = value;
            }
        }
        public override string ToString()
        {
            return JsonConvert.SerializeObject(this);
        }
        public void LoadFromString(string s)
        {
            dict d= JsonConvert.DeserializeObject<dict>(s);
            this.Clear();
            foreach(var kp in d)
            {
                this.Add(kp.Key,kp.Value);
            }
            
        }
        public void ExportToExcel()
        {
            DataTable dt = new DataTable();
            dt.Columns.Add("Key");
            dt.Columns.Add("Value",typeof(double));
            foreach (var kp in this)
            {
                dt.Rows.Add(kp.Key, kp.Value);
            }
            ExcelExport.DtToExcel(dt);
        }
        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中,简单处理方便使用
        private DateTime 发送计时;
        private string msgList = "";
        private System.Timers.Timer t = new System.Timers.Timer();
        //public Task send(dynamic returnMsg)
        //{
        //    Trace.WriteLine("收集信息send");
        //    发送计时 = DateTime.Now;
        //    if (msgList != "") msgList += "\n";
        //    msgList += returnMsg;
 
 
        //    //return Task.Run(() => { bot.nonebot.Send(returnMsg, this.Get("group_id").ToString()); });
        //    return Task.Run(() => { });
        //}
        //public Task finish(string returnMsg)
        //{
        //    if (bot.msgHandler.AutoSetCurrentGroup && !string.IsNullOrEmpty(this.Get("group_id").ToString()))
        //        bot.nonebot.SetCurrentActiveGroup(this.Get("group_id").ToString());
        //    return Task.Run(() => { bot.nonebot.Send(returnMsg, this.Get("group_id").ToString()); });
        //}
        //public Task finish()
        //{
        //    Trace.WriteLine("发送信息");
        //    //return Task.Run(() => {  });
        //    if (bot.msgHandler.AutoSetCurrentGroup && !string.IsNullOrEmpty(this.Get("group_id").ToString()))
        //        bot.nonebot.SetCurrentActiveGroup(this.Get("group_id").ToString());
        //    return Task.Run(() => { bot.nonebot.Send(msgList, this.Get("group_id").ToString()); msgList = ""; });
        //}
        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;
        }
    }
 
 
    public static class DictionaryEx
    {
        public static variable Get(this Dictionary<string,variable> dict,string key)
        {
            if (dict != null && dict.ContainsKey(key))
                return dict[key];
            else
                return null;
        }
    }
}