-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathceosserver.pas
371 lines (301 loc) · 9.26 KB
/
ceosserver.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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
{*****************************************************************}
{ ceosserver is part of Ceos middleware/n-tier JSONRPC components }
{ }
{ Beta version }
{ }
{ This library is distributed in the hope that it will be useful, }
{ but WITHOUT ANY WARRANTY; without even the implied warranty of }
{ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. }
{ }
{ by Jose Benedito - [email protected] }
{ www.jbsolucoes.net }
{*****************************************************************}
unit ceosserver;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs, fpjson,
variants, jsonparser, fphttpserver, ceostypes, ceosconsts;
type
THTTPServerThread = class;
TOnCeosGetRequest = procedure(Sender: TObject; const ARequest: TFPHTTPConnectionRequest; var AResponse: TFPHTTPConnectionResponse) of Object;
TOnCeosRequest = procedure(Sender: TObject; const ARequest: TCeosRequestContent; var AResponse: TCeosResponseContent) of Object;
TOnCeosRequestError = procedure(Sender: TObject; const E: exception; var AResponse: TCeosResponseContent) of Object;
TOnCeosException = procedure(Sender: TObject; const E: exception) of Object;
{ TCeosServer }
TCeosServer = class(TComponent)
private
FActive: boolean;
FOnGetRequest: TOnCeosGetRequest;
FPort: integer;
FOnRequestError: TOnCeosRequestError;
FOnException: TOnCeosException;
FOnRequest: TOnCeosRequest;
FOnStart: TNotifyEvent;
FOnStop: TNotifyEvent;
FThrdHTTPServer: THTTPServerThread;
FThreaded: boolean;
function IsPortStored: boolean;
function IsThreadedStored: boolean;
procedure SetPort(AValue: integer);
procedure SetHeader(var AResponse: TFPHTTPConnectionResponse);
procedure DoOnGetRequest(Sender: TObject; var ARequest: TFPHTTPConnectionRequest;
var AResponse: TFPHTTPConnectionResponse);
procedure DoOnRequest(Sender: TObject; var ARequest: TFPHTTPConnectionRequest;
var AResponse: TFPHTTPConnectionResponse);
procedure SetThreaded(AValue: boolean);
{ Private declarations }
protected
{ Protected declarations }
public
{ Public declarations }
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure Start;
procedure Stop;
property Active: boolean read FActive;
published
{ Published declarations }
property Port: integer read FPort write SetPort stored IsPortStored default 8080;
property Threaded: boolean read FThreaded write SetThreaded stored IsThreadedStored default true;
property OnRequestError: TOnCeosRequestError read FOnRequestError write FOnRequestError;
property OnException: TOnCeosException read FOnException write FOnException;
property OnGetRequest: TOnCeosGetRequest read FOnGetRequest write FOnGetRequest;
property OnRequest: TOnCeosRequest read FOnRequest write FOnRequest;
property OnStart: TNotifyEvent read FOnStart write FOnStart;
property OnStop: TNotifyEvent read FOnStop write FOnStop;
end;
{ THTTPServerThread }
THTTPServerThread = class(TThread)
private
FServer: TFPHTTPServer;
FOnException: TOnCeosException;
FActive: boolean;
public
constructor Create(APort: word; const AThreaded: boolean;
const AOnRequest: THTTPServerRequestHandler; const AOnException: TOnCeosException);
destructor Destroy; override;
procedure Execute; override;
procedure DoTerminate; override;
property Active: boolean read FActive write FActive;
property Server: TFPHTTPServer read FServer;
property OnException: TOnCeosException read FOnException write FOnException;
end;
//Do Parse of Request content
procedure DoParseRequest(var ARequest: TCeosRequestContent; AJSONString: TJSONStringType);
var
UsingServerMethods: boolean = false;
procedure Register;
implementation
uses ceosmessages;
procedure DoParseRequest(var ARequest: TCeosRequestContent;
AJSONString: TJSONStringType);
var
parser: TJSONParser;
begin
parser := TJSONParser.Create(AJSONString);
try
try
ARequest := TCeosRequestContent(parser.Parse as TJSONObject);
except on e:exception do
begin
ARequest := nil;
raise exception.create(e.message);
end;
end;
finally
parser.free;
parser := nil;
end;
end;
procedure Register;
begin
{$I ceosserver_icon.lrs}
RegisterComponents('Ceos',[TCeosServer]);
end;
{ TCeosServer }
function TCeosServer.IsPortStored: boolean;
begin
result := true;
end;
function TCeosServer.IsThreadedStored: boolean;
begin
result := true;
end;
procedure TCeosServer.SetPort(AValue: integer);
begin
FPort := AValue;
end;
procedure TCeosServer.SetHeader(var AResponse: TFPHTTPConnectionResponse);
begin
AResponse.CustomHeaders.Clear;
AResponse.SetCustomHeader('Access-Control-Allow-Origin','*');
AResponse.SetCustomHeader('Access-Control-Allow-Credentials','true');
AResponse.CustomHeaders.Add(JSON_HEADER_CONTENT_TYPE);
end;
procedure TCeosServer.DoOnGetRequest(Sender: TObject;
var ARequest: TFPHTTPConnectionRequest;
var AResponse: TFPHTTPConnectionResponse);
begin
try
if assigned(OnGetRequest) then
begin
AResponse.Code := 200;
OnGetRequest(Sender, ARequest, AResponse) ;
exit;
end
else
AResponse.Code := 404;
except on e:exception do
begin
if Assigned(OnException) then
OnException(Sender,e);
AResponse.Code := 500;
end;
end;
end;
procedure TCeosServer.DoOnRequest(Sender: TObject;
var ARequest: TFPHTTPConnectionRequest;
var AResponse: TFPHTTPConnectionResponse);
var
ceosRequest: TCeosRequestContent;
ceosResponse: TCeosResponseContent;
iID: integer;
begin
ceosRequest := nil;
ceosResponse := nil;
if ARequest.Method = 'GET' then
begin
DoOnGetRequest(Sender, ARequest, AResponse);
exit;
end;
SetHeader(AResponse);
try
try
DoParseRequest(ceosRequest, ARequest.Content);
if not UsingServerMethods then
begin
ceosResponse := TCeosResponseContent.create;
ceosResponse.ID := ceosRequest.ID;
end;
if assigned(OnRequest) then
OnRequest(Sender,ceosRequest,ceosResponse);
if not assigned(ceosResponse) then
ceosResponse := JSONRPCResult(TJSONString.create(MSG_NO_RESPONSE),ceosRequest.ID);
except on e:exception do
if Assigned(OnException) then
OnRequestError(Sender,e,ceosResponse)
else
begin
if ceosRequest <> nil then
iID := ceosRequest.ID
else
iID := -1;
ceosResponse := JSONRPCError(ERR_REQUEST_ERROR,ERROR_REQUEST_ERROR,iID);
end;
end;
finally
AResponse.content := ceosResponse.AsJSON;
ceosRequest.free;
ceosRequest := nil;
ceosResponse.free;
ceosResponse := nil;
end;
end;
procedure TCeosServer.SetThreaded(AValue: boolean);
begin
FThreaded := AValue;
end;
constructor TCeosServer.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FPort := CEOS_DEFAULT_PORT;
FThreaded := true;
end;
destructor TCeosServer.Destroy;
begin
if assigned(FThrdHTTPServer) then
begin
FThrdHTTPServer.Terminate;
FThrdHTTPServer.free;
FThrdHTTPServer := nil;
end;
inherited Destroy;
end;
procedure TCeosServer.Start;
begin
try
if Assigned(FThrdHTTPServer) then
FThrdHTTPServer.free;
FThrdHTTPServer := THTTPServerThread.Create(Port, Threaded, @DoOnRequest, OnException);
FActive := FThrdHTTPServer.Active;
if FActive and Assigned(OnStart) then
OnStart(Self);
except on e:exception do
if Assigned(OnException) then
OnException(Self,e)
else
raise exception.create(e.message);
end;
end;
procedure TCeosServer.Stop;
begin
try
FThrdHTTPServer.Terminate;
FThrdHTTPServer.DoTerminate;
if Assigned(OnStop) then
OnStop(Self);
FActive := false;
except on e:exception do
if Assigned(OnException) then
OnException(Self,e)
else
raise exception.create(e.message);
end;
end;
{ THTTPServerThread }
constructor THTTPServerThread.Create(APort: word; const AThreaded: boolean;
const AOnRequest: THTTPServerRequestHandler; const AOnException: TOnCeosException);
begin
FServer := TFPHTTPServer.Create(nil);
FServer.Active := false;
FServer.Port := APort;
FServer.Threaded := AThreaded;
FServer.OnRequest := AOnRequest;
FActive := true;
OnException := AOnException;
inherited Create(False);
end;
destructor THTTPServerThread.Destroy;
begin
if assigned(FServer) then
begin
FServer.free;
FServer := nil;
end;
inherited Destroy;
end;
procedure THTTPServerThread.Execute;
begin
try
try
FServer.Active := True;
except on e:exception do
begin
FActive := false;
FServer.Active := false;
if assigned(OnException) then
OnException(Self,e);
end;
end;
finally
FreeAndNil(FServer);
end;
end;
procedure THTTPServerThread.DoTerminate;
begin
inherited DoTerminate;
if assigned(FServer) then
FServer.Active := False;
end;
end.