nanoFramework.Hosting/README.md

202 строки
8.2 KiB
Markdown
Исходник Постоянная ссылка Обычный вид История

2022-07-10 09:58:40 +03:00
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_nanoFramework.Hosting&metric=alert_status)](https://sonarcloud.io/dashboard?id=nanoframework_nanoFramework.Hosting) [![Reliability Rating](https://sonarcloud.io/api/project_badges/measure?project=nanoframework_nanoFramework.Hosting&metric=reliability_rating)](https://sonarcloud.io/dashboard?id=nanoframework_nanoFramework.Hosting) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) [![NuGet](https://img.shields.io/nuget/dt/nanoFramework.Hosting.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.Hosting/) [![#yourfirstpr](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://github.com/nanoframework/Home/blob/main/CONTRIBUTING.md) [![Discord](https://img.shields.io/discord/478725473862549535.svg?logo=discord&logoColor=white&label=Discord&color=7289DA)](https://discord.gg/gCyBu8T)
2022-06-26 02:45:48 +03:00
![nanoFramework logo](https://raw.githubusercontent.com/nanoframework/Home/main/resources/logo/nanoFramework-repo-logo.png)
-----
2022-07-10 09:58:40 +03:00
# Welcome to the .NET nanoFramework Generic Host Library repository
2022-07-10 19:09:35 +03:00
The .NET nanoFramework Generic Host provides convenience methods for creating [dependency injection (DI)](https://github.com/nanoframework/nanoFramework.DependencyInjection/tree/main) application containers with preconfigured defaults.
2022-06-26 02:45:48 +03:00
## Build status
| Component | Build Status | NuGet Package |
|:-|---|---|
| nanoFramework.Hosting | [![Build Status](https://dev.azure.com/nanoframework/nanoFramework.Hosting/_apis/build/status/nanoFramework.Hosting?branchName=main)](https://dev.azure.com/nanoframework/nanoFramework.Hosting/_build/latest?definitionId=96&branchName=main) | [![NuGet](https://img.shields.io/nuget/v/nanoFramework.Hosting.svg?label=NuGet&style=flat&logo=nuget)](https://www.nuget.org/packages/nanoFramework.Hosting/) |
2022-06-26 02:45:48 +03:00
## Samples
2022-07-10 09:58:40 +03:00
[Hosting Samples](https://github.com/nanoframework/Samples/tree/main/samples/Hosting)
2022-06-26 02:45:48 +03:00
2022-07-10 09:58:40 +03:00
[Hosting Unit Tests](https://github.com/nanoframework/nanoFramework.Hosting/tree/main/tests)
2022-06-26 02:45:48 +03:00
2022-07-10 19:09:35 +03:00
## Generic Host
2022-07-12 17:20:51 +03:00
A Generic Host configures a DI application container as well as provides services in the DI container which handle the the application lifetime. When a host starts it calls `Start()` on each implementation of `IHostedService` registered in the service container's collection of hosted services. In the application container all `IHostedService` object that inherent `BackgroundService` or `SchedulerService` have their `ExecuteAsync()` methods called.
2022-07-10 09:58:40 +03:00
This API mirrors as close as possible the official .NET
[Generic Host](https://docs.microsoft.com/en-us/dotnet/core/extensions/generic-host).
2022-06-26 02:45:48 +03:00
2022-07-10 09:58:40 +03:00
```csharp
2022-06-26 02:45:48 +03:00
using nanoFramework.Hosting;
2022-07-10 19:52:18 +03:00
using nanoFramework.DependencyInjection;
2022-06-26 02:45:48 +03:00
namespace Hosting
{
public class Program
{
public static void Main()
{
2022-07-10 09:58:40 +03:00
IHost host = CreateHostBuilder().Build();
// starts application and blocks the main calling thread
2022-06-26 02:45:48 +03:00
host.Run();
}
2022-07-10 09:58:40 +03:00
public static IHostBuilder CreateHostBuilder() =>
2022-06-26 02:45:48 +03:00
Host.CreateDefaultBuilder()
.ConfigureServices(services =>
{
2022-07-10 19:52:18 +03:00
services.AddSingleton(typeof(BackgroundQueue));
2022-07-10 09:58:40 +03:00
services.AddHostedService(typeof(SensorService));
services.AddHostedService(typeof(DisplayService));
});
2022-06-26 02:45:48 +03:00
}
2022-07-10 09:58:40 +03:00
}
```
2022-06-26 02:45:48 +03:00
2022-07-12 17:20:51 +03:00
## IHostedService interface
2022-07-15 04:37:54 +03:00
When you register an `IHostedService` the host builder will call the `Start()` and `Stop()` methods of `IHostedService` during application start and stop respectively. You can create multiple implementations of `IHostedService` and register them using the `ConfigureService()` method in the DI container. All hosted services will be started and stopped along with the application.
2022-07-12 17:20:51 +03:00
```csharp
public class CustomService : IHostedService
{
public void Start() { }
public void Stop() { }
}
```
2022-07-10 09:58:40 +03:00
## BackgroundService base class
2022-06-26 02:45:48 +03:00
2022-07-12 17:20:51 +03:00
Provides a base class for implementing a long running `IHostedService`. The method `ExecuteAsync()` is called asynchronously to run the background service. Your implementation of `ExecuteAsync()` should finish promptly when the `CancellationRequested` is fired in order to gracefully shut down the service.
2022-06-26 02:45:48 +03:00
2022-07-10 09:58:40 +03:00
```csharp
public class SensorService : BackgroundService
{
protected override void ExecuteAsync()
{
while (!CancellationRequested)
2022-06-26 02:45:48 +03:00
{
2022-07-10 09:58:40 +03:00
// to allow other threads time to process include
// at least one millsecond sleep in loop
Thread.Sleep(1);
2022-06-26 02:45:48 +03:00
}
}
2022-07-10 09:58:40 +03:00
}
```
2022-06-26 02:45:48 +03:00
2022-07-10 09:58:40 +03:00
## SchedulerService base class
2022-07-11 02:59:20 +03:00
2022-07-12 17:20:51 +03:00
Provides a base class for implementing a scheduled [Timer](https://docs.nanoframework.net/api/System.Threading.Timer.html) running `IHostedServce`. The timer triggers at a specified time and interval the `ExecuteAsync()` method. The timer is disabled on `Stop()` and disposed when the service container is disposed.
2022-06-26 02:45:48 +03:00
2022-07-10 09:58:40 +03:00
```csharp
public class DisplayService : SchedulerService
{
// represents a timer control that involks ExecuteAsync at a
// specified interval of time repeatedly
public DisplayService() : base(TimeSpan.FromSeconds(1)) {}
2022-06-26 02:45:48 +03:00
2022-07-10 09:58:40 +03:00
protected override void ExecuteAsync(object state)
{
}
}
```
2022-06-26 02:45:48 +03:00
2022-07-11 02:59:20 +03:00
## IServiceCollection extensions method
Extending `IServiceCollection` is a pretty straightforward way to add additional features to the application container.
```csharp
public static IServiceCollection AddLogging(this IServiceCollection services, LogLevel level)
{
if (services == null)
{
throw new ArgumentNullException();
}
var loggerFactory = new DebugLoggerFactory();
LogDispatcher.LoggerFactory = loggerFactory;
var logger = (DebugLogger)loggerFactory.GetCurrentClassLogger();
logger.MinLogLevel = level;
2022-07-12 17:20:51 +03:00
// using TryAdd prevents duplicate logging objects if AddLogging()
// is added more then once to ConfigureServices
2022-07-11 02:59:20 +03:00
services.TryAdd(new ServiceDescriptor(typeof(ILogger), logger));
services.TryAdd(new ServiceDescriptor(typeof(ILoggerFactory), loggerFactory));
return services;
}
```
2022-07-12 17:20:51 +03:00
The extension can then be registered like this:
2022-07-11 02:59:20 +03:00
```csharp
public static IHostBuilder CreateHostBuilder() =>
Host.CreateDefaultBuilder()
.ConfigureServices(services =>
{
services.AddLogging(LogLevel.Debug);
2022-07-12 17:20:51 +03:00
services.AddSingleton(typeof(LoggingService));
2022-07-11 02:59:20 +03:00
});
```
And used like this:
```csharp
public class LoggingService : IHostedService
{
private ILogger Logger { get; set; }
public LoggingService(ILogger logger)
{
Logger = logger;
}
public void Start()
{
Logger.Log(LogLevel.Information, new EventId(10, "Start"), "Logging started", null);
}
public void Stop()
{
Logger.Log(LogLevel.Information, new EventId(11, "Stop"), "Logging stopped", null);
}
}
```
2022-07-12 17:20:51 +03:00
## Validate On Build
2022-07-15 04:37:54 +03:00
The default builder enables DI validation when the debugger is attached. This check is performed to ensure that all services registered with the container can actually be created. This can be particularly useful during development to fail fast and allow developers to fix issues. The setting can be modified by using the `UseDefaultServiceProvider()` method.
2022-07-12 17:20:51 +03:00
```csharp
public static IHostBuilder CreateHostBuilder() =>
Host.CreateDefaultBuilder()
.UseDefaultServiceProvider(options =>
{
options.ValidateOnBuild = false;
});
```
2022-06-26 02:45:48 +03:00
## Feedback and documentation
For documentation, providing feedback, issues and finding out how to contribute please refer to the [Home repo](https://github.com/nanoframework/Home).
Join our Discord community [here](https://discord.gg/gCyBu8T).
## Credits
The list of contributors to this project can be found at [CONTRIBUTORS](https://github.com/nanoframework/Home/blob/main/CONTRIBUTORS.md).
## License
The **nanoFramework** Class Libraries are licensed under the [MIT license](LICENSE.md).
## Code of Conduct
This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behaviour in our community.
For more information see the [.NET Foundation Code of Conduct](https://dotnetfoundation.org/code-of-conduct).
### .NET Foundation
This project is supported by the [.NET Foundation](https://dotnetfoundation.org).