-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDW.Server.pas
239 lines (199 loc) · 5.98 KB
/
DW.Server.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
unit DW.Server;
interface
uses Classes, Forms, System.SysUtils, OverbyteIcsHttpAppServer, DWHttpServer,
OverbyteIcsFtpSrvT, DWForm;
type
TDWServerClient = class(THttpAppSrvConnection)
private
FResponseHeader: string;
procedure SetResponseHeader(const Value: string);
protected
public
CStartTick: longword ;
CLastRead: int64 ;
CLastWrite: int64 ;
constructor Create(AOwner: TComponent); override;
//header of response
property ReplyHeader:string read FResponseHeader write SetResponseHeader;
end;
TDatamoduleClass = class of TDataModule;
TDWServer = class(TComponent)
private
FHttpSrv: TDWHttpServer;
FMainForm: TDWFormClass;
FLibDir: string;
FUrlBase: string;
FRefreshCacheParam:string;
FUserDataModule: TDatamoduleClass;
procedure SetDocDir(const Value: string);
procedure SetPort(const Value: String);
procedure SetTemplateDir(const Value: string);
function GetDocDir: string;
function GetPort: String;
function GetTemplateDir: string;
procedure SetMainForm(const Value: TDWFormClass);
procedure DoAddUrlHandlers;
procedure SetLibDir(const Value: string);
procedure SetUrlBase(const Value: string);
function GetUrlBase: string;
procedure HttpAppSrvBeforeProcessRequest(Sender, Client: TObject);
procedure HttpAppSrvClientConnect(Sender, Client: TObject; Error: Word);
procedure SetUserDataModule(const Value: TDatamoduleClass);
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure Start;
procedure Stop;
function AppPath: string;
class function GetDWServer: TDWServer;
published
property Port: String read GetPort write SetPort;
property DocDir: string read GetDocDir write SetDocDir;
property TemplateDir: string read GetTemplateDir write SetTemplateDir;
property LibDir: string read FLibDir write SetLibDir;
property MainForm: TDWFormClass read FMainForm write SetMainForm;
property UrlBase: string read GetUrlBase write SetUrlBase;
property RefreshCacheParam:string read FRefreshCacheParam;
property UserDataModule:TDatamoduleClass read FUserDataModule write SetUserDataModule;
property HttpServer:TDWHttpServer read FHttpSrv;
end;
implementation
uses DWUrlHandlerForms;
var
gDWServer: TDWServer;
{ TDWServer }
function TDWServer.AppPath: string;
begin
Result := ExtractFilePath(Application.ExeName);
end;
constructor TDWServer.Create(AOwner: TComponent);
begin
inherited;
FHttpSrv := TDWHttpServer.Create(Self);
with FHttpSrv do
begin
ClientClass:= TDWServerClient;
Port := '80';
DocDir := AppPath + 'wwwroot';
TemplateDir := AppPath + 'wwwroot\templates';
DefaultDoc:= 'index.html';
AddGetAllowedPath('/', afBeginBy);
ForceDirectories(AppPath + 'wwwroot');
ForceDirectories(AppPath + 'wwwroot\templates');
DoAddUrlHandlers;
OnBeforeProcessRequest:= HttpAppSrvBeforeProcessRequest;
OnClientConnect:= HttpAppSrvClientConnect;
end;
gDWServer := Self;
FLibDir := AppPath + 'wwwroot\dwlib';
FUrlBase := '';
end;
destructor TDWServer.Destroy;
begin
FHttpSrv.Stop;
FHttpSrv.Free;
inherited;
end;
procedure TDWServer.DoAddUrlHandlers;
begin
// Add all dynamic webpage handlers
end;
class function TDWServer.GetDWServer: TDWServer;
begin
Result := gDWServer;
end;
function TDWServer.GetDocDir: string;
begin
Result := FHttpSrv.DocDir;
end;
function TDWServer.GetPort: String;
begin
Result := FHttpSrv.Port;
end;
function TDWServer.GetTemplateDir: string;
begin
Result := FHttpSrv.TemplateDir;
end;
function TDWServer.GetUrlBase: string;
begin
if FUrlbase <> '' then
Result:= FUrlBase
else
begin
if FHttpSrv.Addr <> '' then
begin
Result:= 'http://'+ FHttpSrv.Addr + ':' + FHttpSrv.Port;
end;
end;
end;
procedure TDWServer.SetDocDir(const Value: string);
begin
if FHttpSrv.DocDir <> Value then
FHttpSrv.DocDir := Value;
end;
procedure TDWServer.SetLibDir(const Value: string);
begin
FLibDir := Value;
end;
procedure TDWServer.SetMainForm(const Value: TDWFormClass);
begin
FMainForm := Value;
end;
procedure TDWServer.SetPort(const Value: String);
begin
if FHttpSrv.Port <> Value then
FHttpSrv.Port := Value;
end;
procedure TDWServer.SetTemplateDir(const Value: string);
begin
if FHttpSrv.TemplateDir <> Value then
FHttpSrv.TemplateDir := Value;
end;
procedure TDWServer.SetUrlBase(const Value: string);
begin
FUrlBase := Value;
end;
procedure TDWServer.SetUserDataModule(const Value: TDatamoduleClass);
begin
FUserDataModule := Value;
end;
procedure TDWServer.Start;
begin
FRefreshCacheParam:= FormatDateTime('yyyymmddhhnnsszzz', now);
FHttpSrv.Start;
end;
procedure TDWServer.Stop;
begin
FHttpSrv.Stop;
end;
procedure TDWServer.HttpAppSrvBeforeProcessRequest(Sender, Client: TObject);
var
RemoteClient: TDWServerClient;
begin
RemoteClient := TDWServerClient(Client) ;
RemoteClient.CStartTick := IcsGetTickCountX ;
RemoteClient.CLastWrite := RemoteClient.WriteCount ;
end;
procedure TDWServer.HttpAppSrvClientConnect(Sender, Client: TObject;
Error: Word);
var
ClientCnx : THttpAppSrvConnection;
begin
ClientCnx := Client as THttpAppSrvConnection;
ClientCnx.WSessionCookie := 'OverbyteIcsWebAppServer' + FHttpSrv.Port;
end;
{ TAppHttpConnection }
constructor TDWServerClient.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
{ keep alive means connection may be used for multiple requests so we must track how much
data is sent before and after each request }
CLastRead := 0 ;
CLastWrite := 0 ;
FResponseHeader:='';
end;
procedure TDWServerClient.SetResponseHeader(const Value: string);
begin
FResponseHeader := Value;
end;
end.