mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 07:45:54 +01:00
120 lines
3.2 KiB
ObjectPascal
120 lines
3.2 KiB
ObjectPascal
program OutputCompressionSample;
|
|
|
|
{$APPTYPE CONSOLE}
|
|
|
|
uses
|
|
System.SysUtils,
|
|
MVCFramework.Logger,
|
|
MVCFramework.Commons,
|
|
MVCFramework.REPLCommandsHandlerU,
|
|
Web.ReqMulti,
|
|
Web.WebReq,
|
|
Web.WebBroker,
|
|
IdHTTPWebBrokerBridge,
|
|
MainControllerU in 'MainControllerU.pas',
|
|
WebModuleU in 'WebModuleU.pas' {MyWebModule: TWebModule},
|
|
InMemoryDataU in '..\renders\InMemoryDataU.pas',
|
|
BusinessObjectsU in '..\commons\BusinessObjectsU.pas',
|
|
RandomUtilsU in '..\commons\RandomUtilsU.pas';
|
|
|
|
{$R *.res}
|
|
|
|
procedure RunServer(APort: Integer);
|
|
var
|
|
lServer: TIdHTTPWebBrokerBridge;
|
|
lCustomHandler: TMVCCustomREPLCommandsHandler;
|
|
lCmd: string;
|
|
begin
|
|
Writeln('** DMVCFramework Server ** build ' + DMVCFRAMEWORK_VERSION);
|
|
if ParamCount >= 1 then
|
|
lCmd := ParamStr(1)
|
|
else
|
|
lCmd := 'start';
|
|
|
|
lCustomHandler := function(const Value: string; const Server: TIdHTTPWebBrokerBridge; out Handled: Boolean): THandleCommandResult
|
|
begin
|
|
Handled := False;
|
|
Result := THandleCommandResult.Unknown;
|
|
|
|
// Write here your custom command for the REPL using the following form...
|
|
// ***
|
|
// Handled := False;
|
|
// if (Value = 'apiversion') then
|
|
// begin
|
|
// REPLEmit('Print my API version number');
|
|
// Result := THandleCommandResult.Continue;
|
|
// Handled := True;
|
|
// end
|
|
// else if (Value = 'datetime') then
|
|
// begin
|
|
// REPLEmit(DateTimeToStr(Now));
|
|
// Result := THandleCommandResult.Continue;
|
|
// Handled := True;
|
|
// end;
|
|
end;
|
|
|
|
LServer := TIdHTTPWebBrokerBridge.Create(nil);
|
|
try
|
|
LServer.DefaultPort := APort;
|
|
|
|
{ more info about MaxConnections
|
|
http://www.indyproject.org/docsite/html/frames.html?frmname=topic&frmfile=TIdCustomTCPServer_MaxConnections.html }
|
|
LServer.MaxConnections := 0;
|
|
|
|
{ more info about ListenQueue
|
|
http://www.indyproject.org/docsite/html/frames.html?frmname=topic&frmfile=TIdCustomTCPServer_ListenQueue.html }
|
|
LServer.ListenQueue := 200;
|
|
|
|
{ ************* }
|
|
WriteLn('To test the compression middleware call the following URL:');
|
|
WriteLn(' http://localhost:8080/customers (compression enabled)');
|
|
WriteLn(' http://localhost:8080/tallcustomers (compression disable because response length < 1024 bytes)');
|
|
{ ************* }
|
|
|
|
WriteLn('Write "quit" or "exit" to shutdown the server');
|
|
repeat
|
|
if lCmd.IsEmpty then
|
|
begin
|
|
write('-> ');
|
|
ReadLn(lCmd)
|
|
end;
|
|
try
|
|
case HandleCommand(lCmd.ToLower, LServer, lCustomHandler) of
|
|
THandleCommandResult.Continue:
|
|
begin
|
|
Continue;
|
|
end;
|
|
THandleCommandResult.Break:
|
|
begin
|
|
Break;
|
|
end;
|
|
THandleCommandResult.Unknown:
|
|
begin
|
|
REPLEmit('Unknown command: ' + lCmd);
|
|
end;
|
|
end;
|
|
finally
|
|
lCmd := '';
|
|
end;
|
|
until false;
|
|
|
|
finally
|
|
LServer.Free;
|
|
end;
|
|
end;
|
|
|
|
begin
|
|
ReportMemoryLeaksOnShutdown := True;
|
|
IsMultiThread := True;
|
|
try
|
|
if WebRequestHandler <> nil then
|
|
WebRequestHandler.WebModuleClass := WebModuleClass;
|
|
WebRequestHandlerProc.MaxConnections := 1024;
|
|
RunServer(8080);
|
|
except
|
|
on E: Exception do
|
|
Writeln(E.ClassName, ': ', E.Message);
|
|
end;
|
|
|
|
end.
|