mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-05-06 03:32:57 +00:00
76 lines
1.7 KiB
C#
76 lines
1.7 KiB
C#
using Esiur.ASPNet;
|
|
using Esiur.Core;
|
|
using Esiur.Net.IIP;
|
|
using Esiur.Net.Sockets;
|
|
using Esiur.Resource;
|
|
using Esiur.Stores;
|
|
using Microsoft.AspNetCore.Hosting.Server;
|
|
using System.Net.WebSockets;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// Add services to the container.
|
|
|
|
//builder.Services.AddControllers();
|
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
|
//builder.Services.AddEndpointsApiExplorer();
|
|
//builder.Services.AddSwaggerGen();
|
|
|
|
builder.WebHost.UseUrls("http://localhost:8080");
|
|
|
|
var app = builder.Build();
|
|
|
|
var webSocketOptions = new WebSocketOptions()
|
|
{
|
|
KeepAliveInterval = TimeSpan.FromSeconds(120),
|
|
};
|
|
|
|
app.UseWebSockets(webSocketOptions);
|
|
|
|
|
|
// Configure the HTTP request pipeline.
|
|
//if (app.Environment.IsDevelopment())
|
|
//{
|
|
// app.UseSwagger();
|
|
// app.UseSwaggerUI();
|
|
//}
|
|
|
|
//app.UseHttpsRedirection();
|
|
|
|
//app.UseAuthorization();
|
|
|
|
//app.MapControllers();
|
|
|
|
|
|
await Warehouse.Put("sys", new MemoryStore());
|
|
await Warehouse.Put("sys/service", new MyResource());
|
|
var server = await Warehouse.Put("sys/server", new DistributedServer());
|
|
|
|
await Warehouse.Open();
|
|
|
|
app.Use(async (context, next) =>
|
|
{
|
|
var buffer = new ArraySegment<byte>(new byte[10240]);
|
|
|
|
if (context.WebSockets.IsWebSocketRequest)
|
|
{
|
|
var webSocket = await context.WebSockets.AcceptWebSocketAsync("iip");
|
|
var socket = new FrameworkWebSocket(webSocket);
|
|
var iipConnection = new DistributedConnection();
|
|
server.Add(iipConnection);
|
|
iipConnection.Assign(socket);
|
|
socket.Begin();
|
|
|
|
while (webSocket.State == WebSocketState.Open) ;
|
|
}
|
|
else
|
|
{
|
|
await next(context);
|
|
}
|
|
});
|
|
|
|
|
|
await app.RunAsync();
|