-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMycat.SQLEngine.pas
317 lines (300 loc) · 8.88 KB
/
Mycat.SQLEngine.pas
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
unit Mycat.SQLEngine;
interface
uses
System.Classes, System.SysUtils, System.Generics.Collections,
MyCat.Net.CrossSocket.Base,
Mycat.BackEnd.Mysql.CrossSocket.Handler, Mycat.BackEnd.DataSource;
type
TEngineCtx = class;
IAllJobFinishedListener = interface
procedure OnAllJobFinished(Ctx: TEngineCtx);
end;
ISQLJobHandler = interface
procedure OnHeader(DataNode: string; Header: Tbytes; Fields: TList<Tbytes>);
function OnRowData(DataNode: string; RowData: Tbytes): Boolean;
procedure Finished(DataNode: string; Failed: Boolean; ErrorMsg: String);
end;
TSQLJob = class(TThread, IResponseHandler)
private
FSql: string;
FdataNodeOrDatabase: string;
FConnection: ICrossConnection;
FJobHandler: ISQLJobHandler;
FCtx: TEngineCtx;
FDS: TPhysicalDataSource;
FID: Integer;
Finished: Boolean;
end;
TBatchSQLJob = class
private
FRunningJobs: TThreadDictionary<Integer, TSQLJob>;
protected
{ protected declarations }
public
{ public declarations }
published
{ published declarations }
end;
// public class {
//
// private ConcurrentHashMap<Integer, SQLJob> = new ConcurrentHashMap<Integer, SQLJob>();
// private ConcurrentLinkedQueue<SQLJob> waitingJobs = new ConcurrentLinkedQueue<SQLJob>();
// private volatile boolean noMoreJobInput = false;
// /*
// *
// * parallExecute: 是否可以并行执行
// * */
// public void addJob(SQLJob newJob, boolean parallExecute) {
//
// if (parallExecute) {
// runJob(newJob);
// } else {
// waitingJobs.offer(newJob);
// if (runningJobs.isEmpty()) {
// SQLJob job = waitingJobs.poll();
// if (job != null) {
// runJob(job);
// }
// }
// }
// }
// //设置批量任务已经不会在添加任务了。
// public void setNoMoreJobInput(boolean noMoreJobInput) {
// this.noMoreJobInput = noMoreJobInput;
// }
// //执行任务
// private void runJob(SQLJob newJob) {
// // EngineCtx.LOGGER.info("run job " + newJob);
// runningJobs.put(newJob.getId(), newJob);
// MycatServer.getInstance().getBusinessExecutor().execute(newJob);
// }
// //单个的任务执行完毕。 等待任务列表中有任务, 继续执行下一个任务。
// //返回: 是否所有的任务执行完毕。
// public boolean jobFinished(SQLJob sqlJob) {
// if (EngineCtx.LOGGER.isDebugEnabled()) {
// EngineCtx.LOGGER.info("job finished " + sqlJob);
// }
// runningJobs.remove(sqlJob.getId());
// SQLJob job = waitingJobs.poll();
// if (job != null) {
// runJob(job);
// return false;
// } else {
// if (noMoreJobInput) {
// return runningJobs.isEmpty() && waitingJobs.isEmpty();
// } else {
// return false;
// }
// }
//
// }
// }
//
// 任务的进行的调用,
// 向mysqlClient 写数据。
TEngineCtx = class
private
// private final BatchSQLJob bachJob;
// private AtomicInteger jobId = new AtomicInteger(0);
// AtomicInteger packetId = new AtomicInteger(0);
// private final NonBlockingSession session;
// private AtomicBoolean finished = new AtomicBoolean(false);
// private AllJobFinishedListener allJobFinishedListener;
// private AtomicBoolean headerWrited = new AtomicBoolean();
// private final ReentrantLock writeLock = new ReentrantLock();
// private volatile boolean hasError = false;
// private volatile RouteResultset rrs;
// private volatile boolean isStreamOutputResult = true; //是否流式输出。
protected
{ protected declarations }
public
{ public declarations }
published
{ published declarations }
end;
// public class EngineCtx {
// public static final Logger LOGGER = LoggerFactory.getLogger(ConfFileHandler.class);
// public EngineCtx(NonBlockingSession session) {
// this.bachJob = new BatchSQLJob();
// this.session = session;
// }
//
// public boolean getIsStreamOutputResult(){
// return isStreamOutputResult;
// }
// public void setIsStreamOutputResult(boolean isStreamOutputResult){
// this. isStreamOutputResult = isStreamOutputResult;
// }
// public byte incPackageId() {
// return (byte) packetId.incrementAndGet();
// }
// /*
// * 将sql 发送到所有的dataNodes分片
// * 顺序执行
// * */
// public void executeNativeSQLSequnceJob(String[] dataNodes, String sql,
// SQLJobHandler jobHandler) {
// for (String dataNode : dataNodes) {
// SQLJob job = new SQLJob(jobId.incrementAndGet(), sql, dataNode,
// jobHandler, this);
// bachJob.addJob(job, false);
//
// }
// }
//
// public ReentrantLock getWriteLock() {
// return writeLock;
// }
// /*
// * 所有任务完成的回调
// * */
// public void setAllJobFinishedListener(
// AllJobFinishedListener allJobFinishedListener) {
// this.allJobFinishedListener = allJobFinishedListener;
// }
// /*
// * 将sql 发送到所有的dataNodes分片
// * 可以并行执行
// * */
// public void executeNativeSQLParallJob(String[] dataNodes, String sql,
// SQLJobHandler jobHandler) {
// for (String dataNode : dataNodes) {
// SQLJob job = new SQLJob(jobId.incrementAndGet(), sql, dataNode,
// jobHandler, this);
// bachJob.addJob(job, true);
//
// }
// }
//
// /**
// * set no more jobs created
// */
// public void endJobInput() {
// bachJob.setNoMoreJobInput(true);
// }
// //a 表和 b表的字段的信息合并在一块。
// //向mysql client 输出。
// public void writeHeader(List<byte[]> afields, List<byte[]> bfields) {
// if (headerWrited.compareAndSet(false, true)) {
// try {
// writeLock.lock();
// // write new header
// ResultSetHeaderPacket headerPkg = new ResultSetHeaderPacket();
// headerPkg.fieldCount = afields.size() +bfields.size()-1;
// headerPkg.packetId = incPackageId();
// LOGGER.debug("packge id " + headerPkg.packetId);
// ServerConnection sc = session.getSource();
// ByteBuffer buf = headerPkg.write(sc.allocate(), sc, true);
// // wirte a fields
// for (byte[] field : afields) {
// field[3] = incPackageId();
// buf = sc.writeToBuffer(field, buf);
// }
// // write b field
// for (int i=1;i<bfields.size();i++) {
// byte[] bfield = bfields.get(i);
// bfield[3] = incPackageId();
// buf = sc.writeToBuffer(bfield, buf);
// }
// // write field eof
// EOFPacket eofPckg = new EOFPacket();
// eofPckg.packetId = incPackageId();
// buf = eofPckg.write(buf, sc, true);
// sc.write(buf);
// //LOGGER.info("header outputed ,packgId:" + eofPckg.packetId);
// } finally {
// writeLock.unlock();
// }
// }
//
// }
//
// public void writeHeader(List<byte[]> afields) {
// if (headerWrited.compareAndSet(false, true)) {
// try {
// writeLock.lock();
// // write new header
// ResultSetHeaderPacket headerPkg = new ResultSetHeaderPacket();
// headerPkg.fieldCount = afields.size();// -1;
// headerPkg.packetId = incPackageId();
// LOGGER.debug("packge id " + headerPkg.packetId);
// ServerConnection sc = session.getSource();
// ByteBuffer buf = headerPkg.write(sc.allocate(), sc, true);
// // wirte a fields
// for (byte[] field : afields) {
// field[3] = incPackageId();
// buf = sc.writeToBuffer(field, buf);
// }
//
// // write field eof
// EOFPacket eofPckg = new EOFPacket();
// eofPckg.packetId = incPackageId();
// buf = eofPckg.write(buf, sc, true);
// sc.write(buf);
// //LOGGER.info("header outputed ,packgId:" + eofPckg.packetId);
// } finally {
// writeLock.unlock();
// }
// }
//
// }
//
// public void writeRow(RowDataPacket rowDataPkg) {
// ServerConnection sc = session.getSource();
// try {
// writeLock.lock();
// rowDataPkg.packetId = incPackageId();
// // 输出完整的 记录到客户端
// ByteBuffer buf = rowDataPkg.write(sc.allocate(), sc, true);
// sc.write(buf);
// //LOGGER.info("write row ,packgId:" + rowDataPkg.packetId);
// } finally {
// writeLock.unlock();
// }
// }
//
// public void writeEof() {
// ServerConnection sc = session.getSource();
// EOFPacket eofPckg = new EOFPacket();
// eofPckg.packetId = incPackageId();
// ByteBuffer buf = eofPckg.write(sc.allocate(), sc, false);
// sc.write(buf);
// LOGGER.info("write eof ,packgId:" + eofPckg.packetId);
// }
//
//
// public NonBlockingSession getSession() {
// return session;
// }
// //单个sqlJob任务完成之后调用的。
// //全部任务完成之后 回调allJobFinishedListener 这个函数。
// public void onJobFinished(SQLJob sqlJob) {
//
// boolean allFinished = bachJob.jobFinished(sqlJob);
// if (allFinished && finished.compareAndSet(false, true)) {
// if(!hasError){
// LOGGER.info("all job finished for front connection: "
// + session.getSource());
// allJobFinishedListener.onAllJobFinished(this);
// }else{
// LOGGER.info("all job finished with error for front connection: "
// + session.getSource());
// }
// }
//
// }
//
// public boolean isHasError() {
// return hasError;
// }
//
// public void setHasError(boolean hasError) {
// this.hasError = hasError;
// }
//
// public void setRouteResultset(RouteResultset rrs){
// this.rrs = rrs;
// }
// }
implementation
end.