web-dev-qa-db-ja.com

指定された時間に機能を実行するWindowsサービス

特定の時間に機能を毎日実行するために、Windowsサービスを開始したかったのです。

これを実装するにはどのような方法を検討する必要がありますか?タイマーまたはスレッドを使用していますか?

21
Ziyad Ahmad

(1)最初の起動時に、_timer.Intervalをサービスの開始時刻とスケジュール時刻の間のミリ秒数に設定します。このサンプルでは、​​_scheduleTime = DateTime.Today.AddDays(1).AddHours(7);としてスケジュール時刻を午前7時に設定しています。

(2)Timer_Elapsedで、現在の間隔が24時間でない場合、_timer.Intervalを24時間(ミリ秒単位)にリセットします。

_System.Timers.Timer _timer;
DateTime _scheduleTime; 

public WinService()
{
    InitializeComponent();
    _timer = new System.Timers.Timer();
    _scheduleTime = DateTime.Today.AddDays(1).AddHours(7); // Schedule to run once a day at 7:00 a.m.
}

protected override void OnStart(string[] args)
{           
    // For first time, set amount of seconds between current time and schedule time
    _timer.Enabled = true;
    _timer.Interval = _scheduleTime.Subtract(DateTime.Now).TotalSeconds * 1000;                                          
    _timer.Elapsed += new System.Timers.ElapsedEventHandler(Timer_Elapsed);
}

protected void Timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
    // 1. Process Schedule Task
    // ----------------------------------
    // Add code to Process your task here
    // ----------------------------------


    // 2. If tick for the first time, reset next run to every 24 hours
    if (_timer.Interval != 24 * 60 * 60 * 1000)
    {
        _timer.Interval = 24 * 60 * 60 * 1000;
    }  
}
_

編集:

時には、明日ではなく日から開始するようにサービスをスケジュールしたい場合があります。そのため、DateTime.Today.AddDays(0)を変更します。負の数の間隔。

_//Test if its a time in the past and protect setting _timer.Interval with a negative number which causes an error.
double tillNextInterval = _scheduleTime.Subtract(DateTime.Now).TotalSeconds * 1000;
if (tillNextInterval < 0) tillNextInterval += new TimeSpan(24, 0, 0).TotalSeconds * 1000;
_timer.Interval = tillNextInterval;
_
67
Settapon H

良い答え(私はあなたのコードを使用しました)が、この行の1つの問題:

_timer.Interval = _scheduleTime.Subtract(DateTime.Now).TotalSeconds * 1000;

DateTime.nowがscheduleTimeより遅い場合、負の値になり、timer.Intervalに割り当てるときに例外が生成されます。

私が使用した:

if (DateTime.now > scheduleTime)
    scheduleTime = scheduleTime.AddHours(24);

次に、減算を行います。

7
Evan

タスクスケジューラに組み込まれたWindows( http://windows.Microsoft.com/en-us/windows7/schedule-a-task )またはQuartz.netを使用します。

...ほかの多くの処理を行っているサービスがあり、常に実行する必要がある場合は、タイマーが適切である可能性があります。

3
Ian Mercer

1日1回だけ実行されるサービスが必要ですか?

たぶん、Windowsタスクスケジュールがより良い解決策でしょうか?

2

スレッドとイベントでそれを行うことができます。タイマーは必要ありません。

using System;
using System.ServiceProcess;
using System.Threading;

partial class Service : ServiceBase
{
    Thread Thread;

    readonly AutoResetEvent StopEvent;

    public Service()
    {
        InitializeComponent();

        StopEvent = new AutoResetEvent(initialState: false);
    }

    protected override void Dispose(bool disposing)
    {
        if (disposing)
        {
            StopEvent.Dispose();

            components?.Dispose();
        }

        base.Dispose(disposing);
    }

    protected override void OnStart(string[] args)
    {
        Thread = new Thread(ThreadStart);

        Thread.Start(TimeSpan.Parse(args[0]));
    }

    protected override void OnStop()
    {
        if (!StopEvent.Set())
            Environment.FailFast("failed setting stop event");

        Thread.Join();
    }

    void ThreadStart(object parameter)
    {
        while (!StopEvent.WaitOne(Timeout(timeOfDay: (TimeSpan)parameter)))
        {
            // do work here...
        }
    }

    static TimeSpan Timeout(TimeSpan timeOfDay)
    {
        var timeout = timeOfDay - DateTime.Now.TimeOfDay;

        if (timeout < TimeSpan.Zero)
            timeout += TimeSpan.FromDays(1);

        return timeout;
    }
}
0
drowa
private static double scheduledHour = 10;
private static DateTime scheduledTime;

public WinService()
{
     scheduledTime = DateTime.Today.AddHours(scheduledHour);//setting 10 am of today as scheduled time- service start date
}

private void timer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
      DateTime now = DateTime.Now;
      if (scheduledTime < DateTime.Now)
      {
         TimeSpan span = now - DateTime.Now;
         scheduledTime = scheduledTime.AddMilliseconds(span.Milliseconds).AddDays(1);// this will set scheduled time to 10 am of next day while correcting the milliseconds
         //do the scheduled task here
      }  
}
0
Binish Babu