一个独立的Delphi应用程序,也可以作为Windows服务安装

时间:2010-03-05 14:30:03

标签: windows delphi windows-services

在Delphi中,您可以创建独立的Windows VCL Forms应用程序。您还可以创建Windows服务应用程序。

是否可以将这两者组合在一个可以作为独立应用程序运行的应用程序中,也可以作为Windows服务安装?

5 个答案:

答案 0 :(得分:49)

完全可能。当你想作为一个应用程序运行时,编辑.dpr来创建主表单,当你想作为服务运行时,编辑服务表单。像这样:

if SvComFindCommand('config') then begin
  //When run with the /config switch, display the configuration dialog.
  Forms.Application.Initialize;
  Forms.Application.CreateForm(TfrmConfig, frmConfig);
  Forms.Application.Run;
end
else begin
  SvCom_NTService.Application.Initialize;
  SvCom_NTService.Application.CreateForm(TscmServiceSvc, scmServiceSvc);
  SvCom_NTService.Application.Run;
end;

上面的代码使用SvCom来运行服务,但使用标准TService可以达到完全相同的效果。

多年前我为“德尔福杂志”写了一篇关于这篇文章的文章。你可以在这里阅读:Many Faces Of An Application

答案 1 :(得分:9)

很难解释,但我会尝试:)

我在我的项目中完成了这个(Delphi 5):

program TestSvc;
uses SvcMgr, 
     SvcMain, //the unit for TTestService inherited from TService
     ...
     ;

var
  IsDesktopMode : Boolean;

function IsServiceRunning : Boolean;
var
  Svc: Integer;
  SvcMgr: Integer;
  ServSt : TServiceStatus;
begin
  Result := False;
  SvcMgr := OpenSCManager(nil, nil, SC_MANAGER_CONNECT);
  if SvcMgr = 0 then Exit;
  try
    Svc := OpenService(SvcMgr, 'TestService', SERVICE_QUERY_STATUS);
    if Svc = 0 then Exit;
    try
      if not QueryServiceStatus(Svc, ServSt) then Exit;
      Result := (ServSt.dwCurrentState = SERVICE_RUNNING) or (ServSt.dwCurrentState = SERVICE_START_PENDING);
    finally
      CloseServiceHandle(Svc);
    end;
  finally
    CloseServiceHandle(SvcMgr);
  end;
end;


begin
  if (Win32Platform <> VER_PLATFORM_WIN32_NT) or FindCmdLineSwitch('S', ['-', '/'], True)  then
    IsDesktopMode := True
  else begin
    IsDesktopMode := not FindCmdLineSwitch('INSTALL', ['-', '/'], True) and
      not FindCmdLineSwitch('UNINSTALL', ['-', '/'], True) and
      not IsServiceRunning;
  end;

  if IsDesktopMode then begin //desktop mode
    Forms.Application.Initialize;
    Forms.Application.Title := 'App. Title';
    ShowTrayIcon(Forms.Application.Icon.Handle, NIM_ADD); // This function for create an icon to tray. You can create a popupmenu for the Icon.

    while GetMessage(Msg, 0, 0, 0) do begin
      TranslateMessage(Msg);
      DispatchMessage(Msg);
    end;

    ShowTrayIcon(Forms.Application.Icon.Handle, NIM_DELETE); // for delete the tray Icon
  end else begin // Service mode
    SvcMgr.Application.Initialize;
    SvcMgr.Application.CreateForm(TTestService, TestService);
    SvcMgr.Application.Run;
  end;
end.

答案 2 :(得分:3)

http://cc.embarcadero.com/item/19703提供了另一个更简单的选项,您只需要包含一个单元并将DPR更改为:

begin
  if CiaStartService('SERVICE NAME') then begin
    CiaService.CreateForm(TMain, Main);
    CiaService.Run;
    Exit;
  end;

  Application.Initialize;
  Application.Title := 'SERVICE NAME';
  Application.CreateForm(TMain, Main);
  Application.Run;
end.

虽然这个例子现在很陈旧,但这个技术很简单,即使使用Delphi XE2它仍然有效。有了这个,您的应用程序将继续作为非服务运行,直到您使用“ / install ”参数(在提升的命令提示符下)。之后,它将作为服务运行,直到您使用“ / uninstall ”参数(也在提升的命令提示符下)。

答案 3 :(得分:2)

无需编写任何代码即可解决此问题。这取决于你的应用程序,但通常它是可以实现的。试试这个:http://iain.cx/src/nssm。在将应用程序作为服务启动之前,不要忘记启动应用程序所依赖的所有服务。谷歌周围有关如何做到这一点的信息。

答案 4 :(得分:1)

这是可能的,但在这种情况下,您无法使用正常的TServiceApplication和TService。您应该自己实现所有特定于服务的代码。

我们有一个类似的问题并制作了两个框架应用程序:一个用于单独的沙子,另一个用于服务。现在我们可以创建一个嵌入在两个容器中的单个BPL / DLL。

如果你想花一些钱:你应该看看SvCOM,我认为他们有解决问题的方法。