forked from ferventdesert/Hawk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExtendMethod.cs
More file actions
196 lines (174 loc) · 6.03 KB
/
Copy pathExtendMethod.cs
File metadata and controls
196 lines (174 loc) · 6.03 KB
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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Hawk.Core.Connectors;
using Hawk.Core.Utils.Plugins;
namespace Hawk.Core.Utils
{
public enum ScriptWorkMode
{
不进行转换,
文档列表,
单文档
}
public class DisposeHelper : IDisposable
{
private readonly Action action;
public DisposeHelper(Action action2)
{
action = action2;
}
public void Dispose()
{
action();
}
}
public class ScriptHelper
{
public static FreeDocument ToDocument(dynamic obj)
{
var free = new FreeDocument();
if (obj is IEnumerable)
{
foreach (var item in obj)
{
free.Add(item.Key, item.Value);
}
return free;
}
return free;
}
public static List<FreeDocument> ToDocuments(dynamic obj)
{
var documents = new List<FreeDocument>();
if (obj is IEnumerable)
{
foreach (var value in obj)
{
var free = new FreeDocument();
if (value is IEnumerable)
{
foreach (var item in value)
{
if (item is string)
{
free.Add(item, value[item]);
}
else
free.Add(item.Key, item.Value);
}
}
documents.Add(free);
}
}
return documents;
}
}
public static class ExtendMethods
{
/// <summary>
/// 添加一个新实例
/// </summary>
/// <param name="value">要添加的类型</param>
public static T Add<T>(this ICollection<T> collection, Type value)
{
var instance = (T) Activator.CreateInstance(value);
collection.Add(instance);
return instance;
}
/// <summary>
/// 添加一个新实例
/// </summary>
/// <param name="value">要添加的类型</param>
/// <param name="args">自动添加的数据参数 </param>
public static void Add<T>(this ICollection<T> collection, Type value, params object[] args)
{
var instance = (T) Activator.CreateInstance(value, args);
collection.Add(instance);
}
/// <summary>
/// 添加一个新实例
/// </summary>
/// <param name="value">要添加的类型</param>
public static void Add<T>(this ICollection<T> collection, string name) where T : class
{
var item = PluginProvider.GetObjectInstance<T>(name);
if (item == null)
return;
collection.Add(item);
}
/// <summary>
/// 添加新实例
/// </summary>
/// <param name="index"></param>
public static void Add<T>(this ICollection<T> collection, int index)
{
T instance;
try
{
instance = (T) PluginProvider.GetObjectInstance(typeof (T), index);
}
catch (Exception ex)
{
throw;
}
if (instance != null)
{
// instance.Init();
collection.Add(instance);
}
}
/// <summary>
/// 在集合中获取一个实例,若无该实例,将搜索插件,并自动添加之
/// </summary>
/// <param name="name"></param>
/// <param name="isAddToList">是否要加入列表,被托管 </param>
/// <returns></returns>
public static T Get<T>(this ICollection<T> collection, string name, bool? isAddToList = true)
where T : class, IProcess
{
var process = collection.FirstOrDefault(d => name == d.TypeName);
if (process != null) return process;
var newProcess =
PluginProvider.GetPluginCollection(typeof (T)).FirstOrDefault(d => d.Name == name);
if (newProcess == null)
{
// throw new Exception(string.Format("要获取的插件{0}无法在插件集合中找到"));
return null;
}
if (isAddToList == true)
{
collection.Add(newProcess.MyType);
var newone = collection.FirstOrDefault(d => name == d.TypeName);
return newone;
}
var plugin = PluginProvider.GetObjectInstance(newProcess.MyType) as T;
return plugin;
}
public static IEnumerable<int> InserDataCollection(this IDataBaseConnector connector, DataCollection collection,
string tableName = null, int batchMount = 1000)
{
if (tableName == null)
tableName = collection.Name;
if (connector.RefreshTableNames().FirstOrDefault(d => d.Name == tableName) == null)
{
connector.CreateTable(collection.ComputeData.First(), tableName);
}
var i = 0;
var list = new List<IFreeDocument>();
while (i < collection.Count)
{
list.Add(collection.ComputeData[i]);
if (list.Count == batchMount)
{
connector.BatchInsert(list, tableName);
list = new List<IFreeDocument>();
yield return i;
}
i++;
}
connector.BatchInsert(list, collection.Name);
}
}
}