DocSpace-buildtools/common/services/ASC.Data.Backup/Program.cs

81 lines
3.0 KiB
C#
Raw Normal View History

2020-06-08 08:17:54 +00:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
2020-06-08 11:57:45 +00:00
using ASC.Common;
using ASC.Common.DependencyInjection;
2020-06-08 08:17:54 +00:00
using ASC.Common.Logging;
2020-06-03 09:15:05 +00:00
using ASC.Common.Threading.Progress;
using ASC.Data.Backup.Service;
2020-06-08 08:17:54 +00:00
2020-06-03 09:15:05 +00:00
using Microsoft.Extensions.Configuration;
2020-06-08 08:17:54 +00:00
using Microsoft.Extensions.DependencyInjection;
2020-06-03 09:15:05 +00:00
using Microsoft.Extensions.Hosting;
namespace ASC.Data.Backup
{
public class Program
{
public static async Task Main(string[] args)
{
var host = Host.CreateDefaultBuilder(args)
.ConfigureAppConfiguration((hostContext, config) =>
{
var buided = config.Build();
var path = buided["pathToConf"];
if (!Path.IsPathRooted(path))
{
path = Path.GetFullPath(Path.Combine(hostContext.HostingEnvironment.ContentRootPath, path));
}
config.SetBasePath(path);
var env = hostContext.Configuration.GetValue("ENVIRONMENT", "Production");
config
.AddInMemoryCollection(new Dictionary<string, string>
{
{"pathToConf", path }
}
)
.AddJsonFile("appsettings.json")
.AddJsonFile($"appsettings.{env}.json", true)
.AddJsonFile($"appsettings.services.json", true)
.AddJsonFile("storage.json")
.AddJsonFile("notify.json")
.AddJsonFile("backup.json")
.AddJsonFile("kafka.json")
.AddJsonFile($"kafka.{env}.json", true)
.AddEnvironmentVariables();
})
.ConfigureServices((hostContext, services) =>
{
var diHelper = new DIHelper(services);
diHelper.AddBackupServiceLauncher();
diHelper.AddNLogManager("ASC.Data.Backup");
services.AddHostedService<BackupServiceLauncher>();
2020-06-08 08:17:54 +00:00
diHelper.Configure<ProgressQueue<BaseBackupProgressItem>>(r =>
2020-06-03 09:15:05 +00:00
{
r.workerCount = 1;
r.waitInterval = (int)TimeSpan.FromMinutes(5).TotalMilliseconds;
r.removeAfterCompleted = true;
r.stopAfterFinsih = false;
r.errorCount = 0;
2020-06-08 11:57:45 +00:00
});
services.AddAutofac(hostContext.Configuration, hostContext.HostingEnvironment.ContentRootPath, false);
2020-06-03 09:15:05 +00:00
})
.UseConsoleLifetime()
.Build();
using (host)
{
// Start the host
await host.StartAsync();
// Wait for the host to shutdown
await host.WaitForShutdownAsync();
}
}
}
}