198 lines
7.5 KiB
C#
198 lines
7.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Oqtane.Models;
|
|
using Oqtane.Repository;
|
|
using Oqtane.Shared;
|
|
|
|
namespace Oqtane.Infrastructure
|
|
{
|
|
public abstract class HostedServiceBase : IHostedService, IDisposable
|
|
{
|
|
private Task _executingTask;
|
|
private readonly CancellationTokenSource _cancellationTokenSource = new CancellationTokenSource();
|
|
private readonly IServiceScopeFactory _serviceScopeFactory;
|
|
|
|
public HostedServiceBase(IServiceScopeFactory serviceScopeFactory)
|
|
{
|
|
_serviceScopeFactory = serviceScopeFactory;
|
|
}
|
|
|
|
// abstract method must be overridden
|
|
public abstract string ExecuteJob(IServiceProvider provider);
|
|
|
|
protected async Task ExecuteAsync(CancellationToken stoppingToken)
|
|
{
|
|
try
|
|
{
|
|
while (!stoppingToken.IsCancellationRequested)
|
|
{
|
|
using (var scope = _serviceScopeFactory.CreateScope())
|
|
{
|
|
// get name of job
|
|
string jobType = Utilities.GetFullTypeName(GetType().AssemblyQualifiedName);
|
|
|
|
// load jobs and find current job
|
|
IJobRepository jobs = scope.ServiceProvider.GetRequiredService<IJobRepository>();
|
|
Job job = jobs.GetJobs().Where(item => item.JobType == jobType).FirstOrDefault();
|
|
if (job != null && job.IsEnabled && !job.IsExecuting)
|
|
{
|
|
// set next execution date
|
|
if (job.NextExecution == null)
|
|
{
|
|
if (job.StartDate != null)
|
|
{
|
|
job.NextExecution = job.StartDate;
|
|
}
|
|
else
|
|
{
|
|
job.NextExecution = DateTime.UtcNow;
|
|
}
|
|
}
|
|
|
|
// determine if the job should be run
|
|
if (job.NextExecution <= DateTime.UtcNow && (job.EndDate == null || job.EndDate >= DateTime.UtcNow))
|
|
{
|
|
IJobLogRepository jobLogs = scope.ServiceProvider.GetRequiredService<IJobLogRepository>();
|
|
|
|
// create a job log entry
|
|
JobLog log = new JobLog();
|
|
log.JobId = job.JobId;
|
|
log.StartDate = DateTime.UtcNow;
|
|
log.FinishDate = null;
|
|
log.Succeeded = false;
|
|
log.Notes = "";
|
|
log = jobLogs.AddJobLog(log);
|
|
|
|
// update the job to indicate it is running
|
|
job.IsExecuting = true;
|
|
jobs.UpdateJob(job);
|
|
|
|
// execute the job
|
|
try
|
|
{
|
|
log.Notes = ExecuteJob(scope.ServiceProvider);
|
|
log.Succeeded = true;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
log.Notes = ex.Message;
|
|
log.Succeeded = false;
|
|
}
|
|
|
|
// update the job log
|
|
log.FinishDate = DateTime.UtcNow;
|
|
jobLogs.UpdateJobLog(log);
|
|
|
|
// update the job
|
|
job.NextExecution = CalculateNextExecution(job.NextExecution.Value, job.Frequency, job.Interval);
|
|
job.IsExecuting = false;
|
|
jobs.UpdateJob(job);
|
|
|
|
// trim the job log
|
|
List<JobLog> logs = jobLogs.GetJobLogs().Where(item => item.JobId == job.JobId)
|
|
.OrderByDescending(item => item.JobLogId).ToList();
|
|
for (int i = logs.Count; i > job.RetentionHistory; i--)
|
|
{
|
|
jobLogs.DeleteJobLog(logs[i - 1].JobLogId);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// wait 1 minute
|
|
await Task.Delay(TimeSpan.FromMinutes(1), stoppingToken);
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
// can occur during the initial installation as there is no DBContext
|
|
}
|
|
|
|
}
|
|
|
|
private DateTime CalculateNextExecution(DateTime nextExecution, string frequency, int interval)
|
|
{
|
|
switch (frequency)
|
|
{
|
|
case "m": // minutes
|
|
nextExecution = nextExecution.AddMinutes(interval);
|
|
break;
|
|
case "H": // hours
|
|
nextExecution = nextExecution.AddHours(interval);
|
|
break;
|
|
case "d": // days
|
|
nextExecution = nextExecution.AddDays(interval);
|
|
break;
|
|
case "M": // months
|
|
nextExecution = nextExecution.AddMonths(interval);
|
|
break;
|
|
}
|
|
if (nextExecution < DateTime.UtcNow)
|
|
{
|
|
nextExecution = DateTime.UtcNow;
|
|
}
|
|
return nextExecution;
|
|
}
|
|
|
|
public Task StartAsync(CancellationToken cancellationToken)
|
|
{
|
|
try
|
|
{
|
|
// set IsExecuting to false in case this job was forcefully terminated previously
|
|
using (var scope = _serviceScopeFactory.CreateScope())
|
|
{
|
|
string jobType = Utilities.GetFullTypeName(GetType().AssemblyQualifiedName);
|
|
IJobRepository jobs = scope.ServiceProvider.GetRequiredService<IJobRepository>();
|
|
Job job = jobs.GetJobs().Where(item => item.JobType == jobType).FirstOrDefault();
|
|
if (job != null)
|
|
{
|
|
job.IsStarted = true;
|
|
job.IsExecuting = false;
|
|
jobs.UpdateJob(job);
|
|
}
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
// can occur during the initial installation as there is no DBContext
|
|
}
|
|
|
|
_executingTask = ExecuteAsync(_cancellationTokenSource.Token);
|
|
|
|
if (_executingTask.IsCompleted)
|
|
{
|
|
return _executingTask;
|
|
}
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public async Task StopAsync(CancellationToken cancellationToken)
|
|
{
|
|
if (_executingTask == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
try
|
|
{
|
|
_cancellationTokenSource.Cancel();
|
|
}
|
|
finally
|
|
{
|
|
await Task.WhenAny(_executingTask, Task.Delay(Timeout.Infinite, cancellationToken));
|
|
}
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
_cancellationTokenSource.Cancel();
|
|
}
|
|
}
|
|
}
|