summaryrefslogtreecommitdiff
path: root/packages/fcl-process/examples/simpleipcserver.lpr
blob: cd81f838cfadafb285c5e48e52a16e45d67289b7 (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
program simpleipcserver;

{$mode objfpc}{$H+}

uses
  {$IFDEF UNIX}
  BaseUnix,
  {$ENDIF}
  {$IFDEF windows}
  Windows,
  {$ENDIF}
  Classes, SysUtils, CustApp, simpleipc, Crt;

type

  { TSimpleIPCServerApp }

  TSimpleIPCServerApp = class(TCustomApplication)
  protected
    procedure DoRun; override;
  public
    constructor Create(TheOwner: TComponent); override;
  end;

{ TSimpleIPCServerApp }

procedure TSimpleIPCServerApp.DoRun;
var
  IPCServer: TSimpleIPCServer;
  Key: Char;
  NullObj: TObject;
begin
  IPCServer := TSimpleIPCServer.Create(nil);
  IPCServer.ServerID:='ipc_test_crash';
  IPCServer.Global:=True;
  IPCServer.StartServer;
  NullObj := nil;

  WriteLn('Server started');
  WriteLn('  Press e to finish with an exception');
  WriteLn('  Press t to terminate through OS api - ', {$IFDEF UNIX}'Kill'{$ELSE}'TerminateProcess'{$ENDIF});
  WriteLn('  Press any other key to finish normally');
  Key := ReadKey;

  case Key of
    'e':
      begin
        NullObj.AfterConstruction;
      end;
    't':
      begin
        {$ifdef unix}
        FpKill(FpGetpid, 9);
        {$endif}
        {$ifdef windows}
        TerminateProcess(GetCurrentProcess, 0);
        {$endif}
      end;
  end;

  IPCServer.Active:=False;
  WriteLn('Server stopped');
  IPCServer.Destroy;
  Terminate;
end;

constructor TSimpleIPCServerApp.Create(TheOwner: TComponent);
begin
  inherited Create(TheOwner);
  StopOnException:=True;
end;

var
  Application: TSimpleIPCServerApp;
begin
  Application:=TSimpleIPCServerApp.Create(nil);
  Application.Title:='IPC Server';
  Application.Run;
  Application.Free;
end.