File: simplewebsrvoptionsframe.pas

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (453 lines) | stat: -rw-r--r-- 12,504 bytes parent folder | download
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
{
  Author: Mattias Gaertner
}
unit SimpleWebSrvOptionsFrame;

{$mode ObjFPC}{$H+}

interface

uses
  Classes, SysUtils, Controls, Graphics, Dialogs, StdCtrls,
  FileUtil, LazFileUtils, IDEOptEditorIntf, IDEDialogs,
  FileProcs, IDEOptionsIntf, MacroIntf,
  SimpleWebSrvStrConsts, SimpleWebSrvOptions, SimpleWebSrvController;

type

  { TSimpleWebSrvOptsFrame }

  TSimpleWebSrvOptsFrame = class(TAbstractIDEOptionsEditor)
    BindAnyCheckBox: TCheckBox;
    BrowseBrowserButton: TButton;
    BrowserKindComboBox: TComboBox;
    BrowserCmdComboBox: TComboBox;
    BrowserLabel: TLabel;
    ServerOptionsMemo: TMemo;
    ServerOptsLabel: TLabel;
    ServerAddrLabel: TLabel;
    ServerAddrComboBox: TComboBox;
    PortComboBox: TComboBox;
    PortLabel: TLabel;
    ServerExeBrowseButton: TButton;
    ServerExeComboBox: TComboBox;
    ServerExeLabel: TLabel;
    procedure BrowseBrowserButtonClick(Sender: TObject);
    procedure BrowserCmdComboBoxChange(Sender: TObject);
    procedure BrowserKindComboBoxSelect(Sender: TObject);
    procedure ServerExeBrowseButtonClick(Sender: TObject);
  private
    FOldOptions: TSimpleWebServerOptions;
    procedure SetCombobox(aComboBox: TComboBox; const aValue: string; ListItems: TStrings);
    procedure SetComboBoxText(aComboBox: TComboBox; const aValue: string);
    procedure BrowserKindComboBoxChanged;
    procedure SetRecentList(Options: TSimpleWebServerOptions; List: TSWSRecentList;
      aComboBox: TComboBox; const aValue: string);
  public
    constructor Create(TheOwner: TComponent); override;
    destructor Destroy; override;
    function Check: Boolean; override;
    function GetTitle: String; override;
    procedure ReadSettings({%H-}AOptions: TAbstractIDEOptions); override;
    procedure Setup({%H-}ADialog: TAbstractOptionsEditorDialog); override;
    class function SupportedOptionsClass: TAbstractIDEOptionsClass; override;
    procedure WriteSettings({%H-}AOptions: TAbstractIDEOptions); override;
    procedure RestoreSettings({%H-}AOptions: TAbstractIDEOptions); override;
    property OldOptions: TSimpleWebServerOptions read FOldOptions;
  end;

var
  SimpleWebSrvOptsFrame: TSimpleWebSrvOptsFrame;
  SimpleWebServerOptionID: integer = 1000; // IDE frame ID, set by Register

implementation

{$R *.lfm}

procedure SetComboBoxText(Box: TComboBox; NewText: string; CaseSensitive: boolean; aCapacity: integer = 30);

  function IsSame(const A,B: string): boolean;
  begin
    if CaseSensitive then
      Result:=A=B
    else
      Result:=SameText(A,B);
  end;

var
  i: Integer;
begin
  if IsSame(Box.Text,NewText) then exit;
  i:=0;
  while (i<Box.Items.Count) and not IsSame(Box.Items[i],NewText) do inc(i);
  if i=Box.Items.Count then
  begin
    Box.Items.Insert(0,NewText);
    i:=0;
    if Box.Items.Count>aCapacity then
      Box.Items.Delete(Box.Items.Count-1);
  end else begin
    // move to top
    Box.Items.Move(i,0);
    i:=0;
  end;

  Box.ItemIndex:=i;
  Box.Text:=NewText;
end;

{ TSimpleWebSrvOptsFrame }

procedure TSimpleWebSrvOptsFrame.ServerExeBrowseButtonClick(Sender: TObject);
var
  Dlg: TOpenDialog;
  ExpExe, ErrMsg: String;
begin
  Dlg:=TOpenDialog.Create(nil);
  try
    Dlg.Title:='Select simpleserver'+GetExeExt;
    Dlg.Options:=Dlg.Options+[ofFileMustExist];
    if not Dlg.Execute then exit;
    ExpExe:=ExpandFileNameUTF8(Dlg.FileName);
    ServerExeComboBox.Text:=ExpExe;
    ErrMsg:=CheckWebServerExeQuality(ExpExe,'',true);
    if ErrMsg<>'' then
      IDEMessageDialog('Invalid simpleserver'+GetExeExt,
        ErrMsg,mtError,[mbOk]);
  finally
    Dlg.Free;
  end;
end;

procedure TSimpleWebSrvOptsFrame.BrowserKindComboBoxSelect(Sender: TObject);
begin
  BrowserKindComboBoxChanged;
end;

procedure TSimpleWebSrvOptsFrame.BrowseBrowserButtonClick(Sender: TObject);
var
  Dlg: TOpenDialog;
  ExpExe, Cmd: String;
  p: Integer;
  c: Char;
begin
  Dlg:=TOpenDialog.Create(nil);
  try
    Dlg.Title:='Select browser executable';
    Dlg.Options:=Dlg.Options+[ofFileMustExist];
    if not Dlg.Execute then exit;
    ExpExe:=ExpandFileNameUTF8(Dlg.FileName);
    if Pos(' ',ExpExe)>0 then
      ExpExe:=StrToCmdLineParam(ExpExe);

    // replace first, keep params
    Cmd:=BrowserCmdComboBox.Text;
    if Cmd='' then
      Cmd:=ExpExe
    else if Cmd[1] in [' ',#9,#10,#13] then
      Cmd:=ExpExe+Cmd
    else begin
      p:=1;
      while p<=length(Cmd) do
      begin
        c:=Cmd[p];
        case c of
        ' ',#9,#10,#13: break;
        '"','''':
          begin
            inc(p);
            while (p<=length(Cmd)) and (Cmd[p]<>c) do inc(p);
          end;
        end;
        inc(p);
      end;
      Cmd:=ExpExe+copy(Cmd,p,length(Cmd));
    end;
    BrowserCmdComboBox.Text:=Cmd;
  finally
    Dlg.Free;
  end;
end;

procedure TSimpleWebSrvOptsFrame.BrowserCmdComboBoxChange(Sender: TObject);
begin

end;

procedure TSimpleWebSrvOptsFrame.SetCombobox(aComboBox: TComboBox;
  const aValue: string; ListItems: TStrings);
begin
  aComboBox.Items.Assign(ListItems);
  SetComboBoxText(aComboBox,aValue);
end;

procedure TSimpleWebSrvOptsFrame.SetComboBoxText(aComboBox: TComboBox;
  const aValue: string);
var
  i: Integer;
begin
  for i:=0 to aComboBox.Items.Count-1 do
    if aComboBox.Items[i]=aValue then
    begin
      aComboBox.ItemIndex:=i;
      exit;
    end;
  aComboBox.Items.Insert(0,aValue);
  aComboBox.ItemIndex:=0;
end;

procedure TSimpleWebSrvOptsFrame.BrowserKindComboBoxChanged;
var
  Kind: TSWSBrowserKind;
begin
  Kind:=StrToBrowserKind(BrowserKindComboBox.Text);
  BrowserCmdComboBox.Enabled:=Kind=swsbkCustom;
end;

procedure TSimpleWebSrvOptsFrame.SetRecentList(
  Options: TSimpleWebServerOptions; List: TSWSRecentList; aComboBox: TComboBox;
  const aValue: string);
var
  i: Integer;
  sl: TStringList;
begin
  sl:=TStringList.Create;
  try
    sl.Assign(aComboBox.Items);
    i:=sl.Count-1;
    while i>=0 do
    begin
      if sl[i]=aValue then
      begin
        if i=0 then exit;
        sl.Move(i,0);
        break;
      end;
      dec(i);
    end;
    if i<0 then
    begin
      sl.Insert(0,aValue);
      if sl.Count>30 then
        sl.Delete(sl.Count-1);
    end;

    aComboBox.Items.Assign(sl);
    aComboBox.ItemIndex:=0;
  finally
    Options.RecentLists[List]:=sl;
    sl.Free;
  end;
end;

constructor TSimpleWebSrvOptsFrame.Create(TheOwner: TComponent);
begin
  inherited Create(TheOwner);
  FOldOptions:=TSimpleWebServerOptions.Create;
end;

destructor TSimpleWebSrvOptsFrame.Destroy;
begin
  FreeAndNil(FOldOptions);
  inherited Destroy;
end;

function TSimpleWebSrvOptsFrame.Check: Boolean;
var
  NewBrowserKind: TSWSBrowserKind;
  NewBrowserCmd, Cmd: TCaption;
  Options: TSimpleWebServerOptions;
  Params: TStringList;
  ExeFilename: String;
begin
  Result:=inherited Check;
  if not Result then exit;

  Options:=SimpleWebServerController.Options;
  NewBrowserKind:=StrToBrowserKind(BrowserKindComboBox.Text);
  NewBrowserCmd:=BrowserCmdComboBox.Text;
  SetRecentList(Options,swsrlBrowserCmd,BrowserCmdComboBox,NewBrowserCmd);

  if (NewBrowserKind<>Options.BrowserKind) or (NewBrowserCmd<>Options.BrowserCmd) then
  begin
    // browser changed -> check
    case NewBrowserKind of
      swsbkDefault: ;
      swsbkFirefox: ;
      swsbkChrome: ;
      swsbkOpera: ;
      swsbkVivaldi: ;
      swsbkCustom:
        begin
          Cmd:=SimpleWebServerController.SubstituteURLMacro(NewBrowserCmd,'Test.html');
          if not IDEMacros.SubstituteMacros(Cmd) then
          begin
            if IDEMessageDialog(rsSWError, rsSWInvalidMacroSee+sLineBreak +
              rsSWToolsOptionsSimpleWebServerBrowser,mtError,[mbIgnore,mbCancel])=mrIgnore then
              exit(true)
            else
              exit(false);
          end;
          Params:=TStringList.Create;
          try
            SplitCmdLineParams(Cmd,Params);
            if Params.Count=0 then begin
              if IDEMessageDialog(rsSWError, rsSWMissingBrowserFilename+
                sLineBreak +
                rsSWToolsOptionsSimpleWebServerBrowser,mtError,[mbIgnore,mbCancel])=mrIgnore then
                exit(true)
              else
                exit(false);
            end;
            ExeFilename:=Params[0];
            if not FilenameIsAbsolute(ExeFilename) then begin
              ExeFilename:=FindDefaultExecutablePath(ExeFilename);
            end;
            if not FileExists(ExeFilename) then begin
              if IDEMessageDialog(rsSWError, Format(rsSWBrowserFileNotFound, [
                Params[0]])+sLineBreak +
                rsSWToolsOptionsSimpleWebServerBrowser,mtError,[mbIgnore,mbCancel])=mrIgnore then
                exit(true)
              else
                exit(false);
            end;
          finally
            Params.Free;
          end;
        end;
    end;
  end;
end;

function TSimpleWebSrvOptsFrame.GetTitle: String;
begin
  Result:=rsSWSTitle;
end;

procedure TSimpleWebSrvOptsFrame.ReadSettings(AOptions: TAbstractIDEOptions);

  procedure AddDefault(sl: TStringList; aValue: string);
  begin
    if sl.IndexOf(aValue)<0 then
      sl.Add(aValue);
  end;

var
  sl: TStringList;
  Options: TSimpleWebServerOptions;
  bk: TSWSBrowserKind;
  i: Integer;
  s: String;
begin
  if not (AOptions is SupportedOptionsClass) then exit;

  Options:=SimpleWebServerController.Options;
  OldOptions.Assign(Options);

  sl:=TStringList.Create;
  try
    sl.Assign(Options.RecentLists[swsrlServerExe]);
    AddDefault(sl,Options.GetDefaultServerExe);
    SetCombobox(ServerExeComboBox,Options.ServerExe,sl);

    sl.Assign(Options.RecentLists[swsrlServerAddr]);
    AddDefault(sl,SWSDefaultServerAddr);
    SetCombobox(ServerAddrComboBox,Options.ServerAddr,sl);

    BindAnyCheckBox.Checked:=Options.BindAny;

    sl.Assign(Options.RecentLists[swsrlServerPort]);
    AddDefault(sl,IntToStr(SWSDefaultServerPort));
    SetCombobox(PortComboBox,IntToStr(Options.ServerPort),sl);

    ServerOptionsMemo.Lines:=Options.ServerOpts;

    sl.Clear;
    for bk in TSWSBrowserKind do
      sl.Add(SWSBrowserKindNames[bk]);
    SetCombobox(BrowserKindComboBox,SWSBrowserKindNames[Options.BrowserKind],sl);

    BrowserCmdComboBox.Enabled:=Options.BrowserKind=swsbkCustom;
    sl.Assign(Options.RecentLists[swsrlBrowserCmd]);
    for i:=sl.Count-1 downto 0 do
      if Trim(sl[i])='' then
        sl.Delete(i);
    s:=Options.BrowserCmd;
    if Trim(s)='' then
      s:=SWSDefaultBrowserCmd;
    AddDefault(sl,s);
    SetCombobox(BrowserCmdComboBox,s,sl);
  finally
    sl.Free;
  end;
end;

procedure TSimpleWebSrvOptsFrame.Setup(ADialog: TAbstractOptionsEditorDialog);
begin
  ServerExeLabel.Caption:=rsSWSPathOfCompileserver;
  ServerAddrLabel.Caption:=rsSWSAddress;

  BindAnyCheckBox.Caption:=rsSWSBindAny+' (0.0.0.0)';

  PortLabel.Caption:=rsSWSPortMacro;

  ServerOptsLabel.Caption:=rsSWServerExtraCommandLineOptionsOnePerLine;
  ServerOptsLabel.Hint:=rsSWAddExtraCommandLineOptionsForTheCommandWhichStarts;

  BrowserLabel.Caption:=rsSWBrowserToOpenHTMLPageMacroSWSBrowser;
  BrowserLabel.Hint:= rsSWUseThisBrowserWhenOpeningTheURLOrHTMLFileOfAWebBro;
  BrowseBrowserButton.Hint:=rsSWForCustomBrowser;
end;

class function TSimpleWebSrvOptsFrame.SupportedOptionsClass: TAbstractIDEOptionsClass;
begin
  Result:=IDEEditorGroups.GetByIndex(GroupEnvironment)^.GroupClass;
end;

procedure TSimpleWebSrvOptsFrame.WriteSettings(AOptions: TAbstractIDEOptions);
var
  Options: TSimpleWebServerOptions;
var
  s: string;
  i: LongInt;
begin
  if not (AOptions is SupportedOptionsClass) then exit;

  Options:=SimpleWebServerController.Options;

  s:=Trim(ServerExeComboBox.Text);
  if s<>'' then
    Options.ServerExe:=s;
  SetRecentList(Options,swsrlServerExe,ServerExeComboBox,Options.ServerExe);

  s:=Trim(ServerAddrComboBox.Text);
  if s<>'' then
    Options.ServerAddr:=s;
  SetRecentList(Options,swsrlServerAddr,ServerAddrComboBox,Options.ServerAddr);

  Options.BindAny:=BindAnyCheckBox.Checked;

  s:=Trim(PortComboBox.Text);
  i:=StrToIntDef(s,0);
  if (i>0) and (i<=65535) then
    Options.ServerPort:=i;
  SetRecentList(Options,swsrlServerPort,PortComboBox,IntToStr(Options.ServerPort));

  Options.BrowserKind:=StrToBrowserKind(BrowserKindComboBox.Text);
  Options.BrowserCmd:=BrowserCmdComboBox.Text;
  SetRecentList(Options,swsrlBrowserCmd,BrowserCmdComboBox,Options.BrowserCmd);

  if Options.Modified then
  begin
    Options.SaveSafe;
    Options.Apply;
  end;
end;

procedure TSimpleWebSrvOptsFrame.RestoreSettings(AOptions: TAbstractIDEOptions);
begin
  inherited RestoreSettings(AOptions);
end;

end.