vote up 1 vote down star
1

I have code which is used both in services and within VCL Form applications (win32 application). How can I determine if the underlying application is running as a NT Service or as an application?

Thanks.

flag

53% accept rate
1  
I'm curious about what your code does such that it would need to know the difference. – Rob Kennedy Oct 14 at 15:20
@Rob -- Actually I could see this as an issue where you have a common routine that is used in BOTH application and a service...when running as a service errors should be logged, but when running as an application errors should also be displayed to the user. – skamradt Oct 14 at 15:31
2  
The application code should display or log the exception. The library code should do neither. If the library code must do one of those things, it can provide a callback function for the application code to set. The application knows whether it's a service intrinsically. – Rob Kennedy Oct 14 at 15:35

6 Answers

vote up 2 vote down

I doubt that

System.IsConsole
System.IsLibrary

will give you the expected results.

All I can think of is to pass an Application object as TObject to the method where you need to make that distinction and test for the passed object's classname being a

TServiceApplication 
or
TApplication

That said, there shouldn't be a need for you to know if your code is running in a service or a GUI. You should probably rethink your design and make the caller to pass an object to handle messages you want (or don't want) to show. (I assume it is for showing messages/exceptions you'd like to know).

link|flag
Unfortunately Application is declared in BOTH Forms and SvcMgr and just using either automatically creates an instance so you can't check application directly. – skamradt Oct 14 at 16:08
@skamradt, if you pass it as a TObject and check on classname there's no need to use SvcMgr and/or Forms, hence they don't get created automatically. The calling code offcourse uses either SvcMgr or Forms. – Lieven Oct 14 at 17:17
vote up 2 vote down

You can try something like this

Function IsMyformInsideaWindowsService(aForm:TObject) :Boolean;
Begin
   Result:=aForm.ClassParent.ClassName='TService';  //When a form is running under a service the Class Parent is a TService
End;
link|flag
The problem with the second function is one of scope and order of units in the uses clause. If you use forms after svcmgr in your uses clause then this will ALWAYS return false, or vice versa. – skamradt Oct 14 at 16:06
skamradt, you're right, I just delete the second option. – RRUZ Oct 14 at 16:24
vote up 4 vote down

The application object (Forms.application) mainform will be nil if it is not a forms based application.

uses
  Forms, ... ;

function IsFormBased : boolean;
begin
  Result := Assigned(Forms.Application.MainForm);
end;
link|flag
vote up 0 vote down check

I actually ended up checking the application.showmainform variable.

The problem with skamradt's isFormBased is that some of this code is called before the main form is created.

I am using a software library called SvCom_NTService from aldyn-software. One of purposes is for errors; either to log them or show a message. I totally agree with @Rob; our code should be better maintained and handle this outside of the functions.

The other intention is for failed database connections and queries; I have different logic in my functions to open queries. If it is a service then it will return nil but continue the process. But if failed queries/connections occur in an application then I would like to display a messaage and halt the application.

link|flag
vote up 2 vote down

You can check if the parent process is SCM (service control manager). If you are running as service this is always the case and never the case if running as standard application. Also I think that SCM has always the same PID.

You can check it like this:

  PL := TProcessList.Create;
  try
    PL.CreateSnapshot;
    MyProcessId := GetCurrentProcessId;

    MyProcess := PL.FindProcess(MyProcessId);
    if MyProcess <> nil then
    begin
      ParentProcess := PL.FindProcess(MyProcess^.th32ParentProcessID);
      if ParentProcess <> nil then
      begin
        GrandParentProcess := PL.FindProcess(ParentProcess^.th32ParentProcessID);

        if GrandParentProcess <> nil then
        begin
          Result := SameText(string(ParentProcess^.szExeFile), 'services.exe') and
            SameText(string(GrandParentProcess^.szExeFile), 'winlogon.exe');
        end;
      end;
    end;
  finally
    PL.Free;
  end;
link|flag
+1, much better approach (even though the whole idea of checking for execution in a service isn't sound). I have a service coded without any VCL support for services, so most of the other checks would fail for it. – mghie Oct 14 at 21:23
I agree, the whole idea is a little hack. But the reality is, that there are legitimate reasons for checking sometimes. – Runner Oct 15 at 6:24
How can you check the "Parent Process"? – M Schenkel Oct 16 at 14:05
I edited my answer with the solution – Runner Oct 16 at 17:30
vote up 1 vote down

A single project cannot (or I should say ideally is not) both a service and a forms application, at least not if you are able to distinguish between the Forms Application object and the SvcMgr Application object - you must presumably have separate projects for the forms code and the service code.

So perhaps the easiest solution is a project conditional define. i.e. in your project settings for the service project add "SERVICEAPP" to the Conditional Defines.

Then whenever you need to change behaviour simply:

{$ifdef SERVICEAPP}
{$else}
{$endif}

For belts and braces you might adopt one of the previously described tests within some startup code to ensure that your project has been compiled with the expected symbol defined.

program ... ;

 :

begin
{$ifdef SERVICEAPP}
  // test for service app - ASSERT if not
{$else}
  // test for forms app - ASSERT if not
{$endif}
  :
end.

It is possible that your Forms app is actually running as a service, using the crude technique that allows any application to be running as a service.

In that case of course your app will always be a Forms application and the easiest way to handle that situation is to have a command line switch that you specify only in the service definition for your executable so that your app can respond appropriate by testing for that command line switch.

This does allow you to more easily test your "service mode" behaviour of course, since you can run your app in "debug" mode with that switch defined from within the IDE, but it's not an ideal way to build a service application so I would not recommend it on the strength of that alone. It's a technique that is usually only used when you have an EXE that you wish to run as a service but have no way to modify the source code to turn it into a "proper" service.

link|flag
It is possible (with some conditional code in the dpr) to create a single EXE which acts as both a service and GUI application - not always a good idea, but possible. – Gerry Oct 14 at 20:37
Yes it's possible, for example see the socket server (scktsrvr.dpr). – TOndrej Oct 15 at 2:01
We have used the conditional defines in the past. The problem is, sometimes we forgot to include it. But I think your "assert" is a good "check". – M Schenkel Oct 16 at 14:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.