AsyncApiFileSystem 0.0.4
See the version list below for details.
dotnet add package AsyncApiFileSystem --version 0.0.4
NuGet\Install-Package AsyncApiFileSystem -Version 0.0.4
<PackageReference Include="AsyncApiFileSystem" Version="0.0.4" />
paket add AsyncApiFileSystem --version 0.0.4
#r "nuget: AsyncApiFileSystem, 0.0.4"
// Install AsyncApiFileSystem as a Cake Addin #addin nuget:?package=AsyncApiFileSystem&version=0.0.4 // Install AsyncApiFileSystem as a Cake Tool #tool nuget:?package=AsyncApiFileSystem&version=0.0.4
AsyncApiFileSystem
A lightweight library for a simple api for async long running requests, using the file system.
By simply implementing the IJob
interface with a couple of methods, the following features are enabled:
- submit long running processes and fire the execution in the background,
- track execution status of long running processes:
- whether the job is still running or not,
- start and completion time,
- execution errors,
- arbitrary outputs,
- read and/or download result files,
- delete jobs.
Complete auto-generated documentation can be found here: sandcastle-documentation.
Example
The features of the library are illustrated in the Examples project. This is a web api that can directly be started to test the endpoints via swagger.
The example demonstrates a real-life example as follows:
- the custom input is defined here:
Input
, - the custom job is implemented here:
OptimizationJob
, - and the session is constructed here:
OptimizationService
.
This is sufficient to provide the functionality defined by the endpoints in OptimizationService.AddEndpoints
method.
static void AddEndpoints(WebApplication app)
{
// SUBMIT
// once called
// * an optimization run using the input with the provided inputId will be fired in the background,
// * the endpoint will return the auto-generated unique jobId of the optimization run,
// * status of the optimziation run can later be investigated using the jobId.
app.MapGet("/submit/{inputId}",
(int inputId) =>
{
var input = InputsRepo.Get(inputId).IntoRes("input with id: " + inputId);
var resultJobId = input.FlatMap(input => Session.SubmitGetId(new OptimizationJob(), input));
return resultJobId.Match
(
whenOk: id => $"Sumbitted optimization run with id: {id}. Execution directory: {Session.GetJobDir(id)}",
whenErr: err => $"Failed ot submit the optimization run due to the following error. ${err}"
);
});
// * an optimization run using the input with the provided inputId will be fired in the background,
// * the job will get the provided jobId (which can be a meaningful scenario name, etc.)
// * the endpoint will return back the jobId of the optimization run,
// * status of the optimziation run can later be investigated using the jobId.
app.MapGet("/submit-with-jobid/{inputId}/{jobId}",
(int inputId, string jobId) =>
{
var input = InputsRepo.Get(inputId).IntoRes("input with id: " + inputId);
var resultJobId = input.FlatMap(input => Session.SubmitWithId(new OptimizationJob(), input, jobId));
return resultJobId.Match
(
whenOk: id => $"Sumbitted optimization run with id: {id}. Execution directory: {Session.GetJobDir(id)}",
whenErr: err => $"Failed ot submit the optimization run due to the following error. ${err}"
);
});
// STATUS
app.MapGet("/nb-jobs", () => Session.GetNbJobs().IntoHttpResult());
app.MapGet("/ids", () => Session.GetAllIds().IntoHttpResult());
app.MapGet("/ids/running", () =>
{
return Session.GetAllIds()
.FlatMap(ids => ids.Select(id => Session.GetStatus(id)).TryUnwrap())
.Map(statues => statues.Where(s => s.IsRunning).Select(s => s.JobId))
.IntoHttpResult();
});
app.MapGet("/ids/completed", () =>
{
return Session.GetAllIds()
.FlatMap(ids => ids.Select(id => Session.GetStatus(id)).TryUnwrap())
.Map(statues => statues.Where(s => s.IsCompleted).Select(s => s.JobId))
.IntoHttpResult();
});
app.MapGet("/ids/error", () =>
{
return Session.GetAllIds()
.FlatMap(ids => ids.Select(id => Session.GetStatus(id)).TryUnwrap())
.Map(statues => statues.Where(s => s.IsError).Select(s => s.JobId))
.IntoHttpResult();
});
app.MapGet("/status", () =>
{
return Session.GetAllIds()
.FlatMap(ids => ids.Select(id => Session.GetStatus(id)).TryUnwrap())
.IntoHttpResult();
});
app.MapGet("/status/{jobId}", (string jobId) => Session.GetStatus(jobId).Map(s => s.ToJsonFriendly()).IntoHttpResult());
// READ RESULTS
app.MapGet("/flows/{jobId}", (string jobId) => Session.ReadText(jobId, "flows.csv").IntoHttpResult());
app.MapGet("/costs/{jobId}", (string jobId) => Session.ReadText(jobId, "costs.csv").IntoHttpResult());
// DOWNLOAD RESULTS
app.MapGet("/download/flows/{jobId}", (string jobId) => Session.GetDownloadPath(jobId, "flows.csv").IntoFileResult("application/text"));
app.MapGet("/download/costs/{jobId}", (string jobId) => Session.GetDownloadPath(jobId, "costs.csv").IntoFileResult("application/text"));
app.MapGet("/download/all-zipped/{jobId}",
(string jobId) => Session.GetDownloadPathZippedAll(jobId, Some($"results_{jobId}")).IntoFileResult("application/zip"));
// DELETE
app.MapGet("/delete/{jobId}", (string jobId) => Session.Delete(jobId).IntoHttpResult());
app.MapGet("/delete-all", () => Session.DeleteAll().IntoHttpResult());
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- Microsoft.AspNetCore.Http.Abstractions (>= 2.2.0)
- Microsoft.AspNetCore.Http.Features (>= 5.0.17)
- OptRes (>= 6.1.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on AsyncApiFileSystem:
Package | Downloads |
---|---|
AsyncApiFileSystem.Kubernetes
Library for a simple api for async long running requests as kubernetes job, using the file system. |
GitHub repositories
This package is not used by any popular GitHub repositories.