aboutsummarylogtreecommitdiffstats
path: root/launch_web_servers.pas
blob: cfc58adbd70d2812ed7d764f0c093a6b74e44675 (plain)
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
unit launch_web_servers;

{$mode ObjFPC}{$H+}

interface

uses
  Classes, StdCtrls, SysUtils, UTF8Process,
   blcksock, sockets,
  Synautil, synaip, synsock, ftpsend;
type

{ TPythonServerLauncher }

TPythonServerLauncher = class(TThread)
 private
   p : TProcessUTF8;
 protected
   procedure Execute; override;
 public
   port : String;
   ipaddress : String;
   dirpath : String;

 end;


{ TPhpServerLauncher }

TPhpServerLauncher = class(TThread)
 private
   p : TProcessUTF8;
 protected
   procedure Execute; override;
 public
   port : String;
   ipaddress : String;
   dirpath : String;
 end;

{ TOwnServerLauncher }

TOwnServerLauncher = class(TThread)
 private
   p : TProcessUTF8;

    procedure ThreadDone(Sender: TObject);


 protected
   procedure Execute; override;
 public
   { Кеш - для веб сервера }
    Cache: TStringList;
   port : String;
   ipaddress : String;
   dirpath : String;
   PrefferedExtension : String;
      { Сокеты для сетевых соединений }
    ListenerSocket, ConnectionSocket: TTCPBlockSocket;
     { Обработчик подключений к локальному серверу}
      constructor Create(CreateSuspended: Boolean);
      destructor Destroy;
    procedure AttendConnection(ASocket: TTCPBlockSocket);
    procedure initCache;
    procedure StartOwnServer;
   procedure StopOwnServer;
   function OutputHTMLFile(uri: string): string;
 end;

implementation

{ TPythonServerLauncher }

procedure TPythonServerLauncher.Execute;
begin
  p := TProcessUTF8.Create(nil);
  p.executable:='konsole';
  p.parameters.Add('-e');
  p.Parameters.Add('/usr/bin/python');
  p.parameters.add('-m');
  p.Parameters.add('http.server');
  p.Parameters.Add('-b');
  p.Parameters.Add(ipaddress);
  p.Parameters.Add(port);
  p.Parameters.Add('-d');
  p.Parameters.Add(dirpath);





  p.execute;

  while not Self.Terminated do begin
        p.WaitOnExit();
        while p.Active do if Self.Terminated then
              break;
        if p.Active = False then
           break;
        end;


  //p.Free;
  //output.Free;
end;

{ TPhpServerLauncher }

procedure TPhpServerLauncher.Execute;

begin

  p := TProcessUTF8.Create(nil);
  p.executable:='konsole';
  p.parameters.Add('-e');
  p.Parameters.Add('/usr/bin/php');
  p.parameters.add('-S');;
  p.Parameters.Add(ipaddress+':'+port);
  p.Parameters.Add('-t');
  p.Parameters.Add(dirpath);





  p.execute;
  while p.Active do ;

 // p.Free;
 // output.Free;
end;

{ TOwnServerLauncher }


function TOwnServerLauncher.OutputHTMLFile(uri: string): string;

var
  path, fullq: string;
  Buf: TStringList;
  r: string;
begin
  if uri = '/' then
    uri := '/index.' + PrefferedExtension;

  path := dirpath;
  Buf := TStringList.Create;
  r := '';
  fullq := path + uri;

  try
    if Cache.Values[uri] <> '' then
      r := Cache.Values[uri]
    else if FileExists(fullq) then
    begin
      Buf.LoadFromFile(fullq);
      Cache.Values[uri] := Buf.Text;
      r := Buf.Text;
    end;
  finally
    Buf.Free;
  end;

  Result := r;
end;

procedure TOwnServerLauncher.StartOwnServer;
begin
  ListenerSocket := TTCPBlockSocket.Create;
  ConnectionSocket := TTCPBlockSocket.Create;

  try
    ListenerSocket.CreateSocket;
    ListenerSocket.setLinger(True, 10);
    ListenerSocket.bind(ipaddress, port);
    ListenerSocket.listen;

    repeat
      if ListenerSocket.canread(512) then
      begin
        ConnectionSocket.Socket := ListenerSocket.accept;
        AttendConnection(ConnectionSocket);
      end;
    until ListenerSocket.StopFlag or ConnectionSocket.StopFlag;
  finally
    ListenerSocket.CloseSocket;
    ConnectionSocket.CloseSocket;

    if Assigned(ListenerSocket) then
      ListenerSocket.Free;

    if Assigned(ConnectionSocket) then
      ConnectionSocket.Free;

    ListenerSocket := nil;
    ConnectionSocket := nil;
  end;
end;

procedure TOwnServerLauncher.ThreadDone(Sender: TObject);
begin
  StopOwnServer;

  if Assigned(ListenerSocket) then
    ListenerSocket.Free;

  if Assigned(ConnectionSocket) then
    ConnectionSocket.Free;
end;

procedure TOwnServerLauncher.Execute;
begin


  startOwnServer;

end;

constructor TOwnServerLauncher.Create(CreateSuspended: Boolean);
begin
    inherited Create(CreateSuspended);
    OnTerminate := @ThreadDone;
    initCache;
end;

destructor TOwnServerLauncher.Destroy;
begin
    Cache.Free;
  inherited Destroy;
end;


procedure TOwnServerLauncher.AttendConnection(ASocket: TTCPBlockSocket);
var
  timeout: integer;
  s, method, uri, protocol, OutputDataString, content_type: string;
  ResultCode: integer;
  test_flag: boolean;
  i: integer;
  valid_extensions: array[0..7] of string = ('.jpg', '.gif', '.png', '.htm',
    '.html', '.css', '.js', '/');
begin
  timeout := 120000;

  // Read request line
  s := ASocket.RecvString(timeout);
  method := fetch(s, ' ');
  uri := fetch(s, ' ');
  protocol := fetch(s, ' ');

  // Read request headers
  repeat
    s := ASocket.RecvString(Timeout);
  until s = '';

  // Determine content type
  content_type := 'text/html';
  if Pos('.css', uri) > 0 then content_type := 'text/css'
  else if Pos('.jpg', uri) > 0 then content_type := 'image/jpeg'
  else if Pos('.png', uri) > 0 then content_type := 'image/png'
  else if Pos('.gif', uri) > 0 then content_type := 'image/gif'
  else if Pos('.js', uri) > 0 then content_type := 'application/javascript';

  // Check if URI is valid
  test_flag := False;
  for i := Low(valid_extensions) to High(valid_extensions) do
    if Pos(valid_extensions[i], uri) > 0 then
    begin
      test_flag := True;
      Break;
    end;

  if test_flag then
  begin
    OutputDataString := OutputHTMLFile(uri) + CRLF;
    ASocket.SendString('HTTP/1.0 200' + CRLF);
    ASocket.SendString('Content-type: ' + content_type + CRLF);
    ASocket.SendString('Content-length: ' + IntToStr(Length(OutputDataString)) + CRLF);
    ASocket.SendString('Connection: close' + CRLF);
    ASocket.SendString('Date: ' + Rfc822DateTime(Now) + CRLF);
    ASocket.SendString('Server: HtmlBuilder' + CRLF);
    ASocket.SendString('' + CRLF);
    ASocket.SendString(OutputDataString);
  end
  else
    ASocket.SendString('HTTP/1.0 404' + CRLF);
end;

procedure TOwnServerLauncher.initCache;
begin
  Cache := TStringList.Create;
end;

procedure TOwnServerLauncher.StopOwnServer;
begin
ListenerSocket.AbortSocket;
 ConnectionSocket.AbortSocket;
end;

end.