Just checking if there's any best practice when writing a Windows Service.
The Service (Single-thread) needs to work at specified time intervals, right now I can only think of:
- Use sleep(), then check the time in a loop?
- Use a TTimer?
Any advice?
|
|
|
Does this need to be a service? Could you maybe setup a scheduled task in Windows? |
|||||
|
|
It doesn't really matter that your service is single-threaded, as a service will have its code always called in different thread contexts:
Whether to use Sleep() or timer messages does also depend on the availability of a message pump in the service threads. If you don't have a message pump you should use Sleep() or timer callbacks. If you have a message pump anyway, because you need to communicate with other processes or threads via Windows messages, or you need to do OLE stuff, then it may be easiest to use timer messages. A few years ago I wrote a service for timed background execution of tasks, similar to the Windows
This uses Sleep() in a loop, but a solution using
would work just as well, and then Windows timer messages could be used. |
|||||
|
|
I would use the sleep. Both options have no exact time guarantee, but sleep gives resources back to other processes. |
|||||
|
|
TTimer is not threadsafe. If you have to use TTimer-like approach in a thread, I'd suggest TDSiTimer from DSiWin32. |
|||
|
|
|
Never use a TTimer in a service, it will not always behave as you expect, and it is not threadsafe. Within a service I always use my own time interval variables, and sleep in between task execution times. In order to keep the service responsive, I sleep for short periods, 1-2000 ms typically, and then process messages before checking my interval to know if it is time to execute the 'task'. If it is not yet time, go back to sleep, and check again after - in a loop. In this way, you give back resources, but are also able to respond to user input (Stop, Pause) before the next task executes. |
|||
|
|
|
I alwasy use something like this in a Service:
Of course, I had some Try..Catch in most places along with writing to logs and emailing.... I've got a service running using these techniques for over a year now. By no means is it the rule. Please tell me if there is a better way. I'm always looking for ways to improve my Delphi knowledge. Also, sorry if I missed the deadline for posting to a question. -Trey Aughenbaugh |
|||
|
|