23 Star 126 Fork 42

IoTSharp / Gateways

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Program.cs 3.58 KB
一键复制 编辑 原始数据 按行查看 历史
麦壳饼 提交于 2022-11-30 15:25 . 上传
using IoTSharp.Gateways.Data;
using IoTSharp.Gateways.Jobs;
using IoTSharp.MqttSdk;
using Microsoft.AspNetCore.Identity;
using Microsoft.EntityFrameworkCore;
using Quartz;
using System.Configuration;
namespace IoTSharp.Gateways
{
public class Program
{
public static void Main(string[] args)
{
System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance);
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
var connectionString = builder.Configuration.GetConnectionString("DefaultConnection") ?? throw new InvalidOperationException("Connection string 'DefaultConnection' not found.");
builder.Services.AddDbContext<ApplicationDbContext>(options =>
options.UseSqlite(connectionString));
builder.Services.AddDatabaseDeveloperPageExceptionFilter();
builder.Services.AddDefaultIdentity<IdentityUser>(options => options.SignIn.RequireConfirmedAccount=false)
.AddEntityFrameworkStores<ApplicationDbContext>();
builder.Services.AddRazorPages();
builder.Services.AddMemoryCache();
builder.Services.AddSingleton<MQTTClient>()
.Configure<MqttSettings>(builder.Configuration)
.AddHostedService<MqttClientHost>();
builder.Services.AddQuartz(q =>
{
q.UseMicrosoftDependencyInjectionJobFactory();
var SystemInfoJobKey = new JobKey("SystemInfoJob");
q.AddJob<SystemInfoJob>(SystemInfoJobKey);
q.AddTrigger(opts => opts
.ForJob(SystemInfoJobKey)
.WithIdentity("SystemInfoJob-trigger")
.WithSimpleSchedule(x => x
.WithIntervalInMinutes(1)
.RepeatForever()).StartNow());
var ModbusSchedulerJobKey = new JobKey("ModbusSchedulerJob");
q.AddJob<SchedulerJob>(opts => opts.WithIdentity(ModbusSchedulerJobKey));
q.AddTrigger(opts => opts
.ForJob(ModbusSchedulerJobKey)
.WithIdentity("ModbusSchedulerJob-trigger")
.WithSimpleSchedule(x => x
.WithIntervalInMinutes(1)
.RepeatForever()).StartNow());
// base quartz scheduler, job and trigger configuration
});
// ASP.NET Core hosting
builder.Services.AddQuartzServer(options =>
{
options.StartDelay = TimeSpan.FromSeconds(10);
// when shutting down we want jobs to complete gracefully
options.WaitForJobsToComplete = true;
});
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseMigrationsEndPoint();
}
else
{
app.UseExceptionHandler("/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseAuthentication();
app.UseAuthorization();
app.MapRazorPages();
app.Run();
}
}
}
C#
1
https://gitee.com/IoTSharp/Gateways.git
git@gitee.com:IoTSharp/Gateways.git
IoTSharp
Gateways
Gateways
master

搜索帮助