mirror of
https://github.com/FastTunnel/FastTunnel.git
synced 2025-02-08 10:59:31 +08:00
113 lines
3.5 KiB
C#
113 lines
3.5 KiB
C#
using Microsoft;
|
|
using Microsoft.AspNetCore.Connections.Features;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Net.WebSockets;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FastTunnel.Core.Forwarder
|
|
{
|
|
sealed class WebSocketStream : Stream
|
|
{
|
|
private readonly Stream readStream;
|
|
private readonly Stream wirteStream;
|
|
private readonly IConnectionLifetimeFeature lifetimeFeature;
|
|
|
|
public WebSocketStream(IConnectionLifetimeFeature lifetimeFeature, IConnectionTransportFeature transportFeature)
|
|
{
|
|
this.readStream = transportFeature.Transport.Input.AsStream();
|
|
this.wirteStream = transportFeature.Transport.Output.AsStream();
|
|
this.lifetimeFeature = lifetimeFeature;
|
|
}
|
|
|
|
public WebSocketStream(Stream stream)
|
|
{
|
|
this.readStream = stream;
|
|
this.wirteStream = stream;
|
|
this.lifetimeFeature = null;
|
|
}
|
|
|
|
public override bool CanRead => true;
|
|
|
|
public override bool CanSeek => false;
|
|
|
|
public override bool CanWrite => true;
|
|
|
|
public override long Length => throw new NotSupportedException();
|
|
|
|
public override long Position
|
|
{
|
|
get => throw new NotSupportedException();
|
|
set => throw new NotSupportedException();
|
|
}
|
|
|
|
public override void Flush()
|
|
{
|
|
this.wirteStream.Flush();
|
|
}
|
|
|
|
public override Task FlushAsync(CancellationToken cancellationToken)
|
|
{
|
|
return this.wirteStream.FlushAsync(cancellationToken);
|
|
}
|
|
|
|
public override long Seek(long offset, SeekOrigin origin)
|
|
{
|
|
throw new NotSupportedException();
|
|
}
|
|
|
|
public override void SetLength(long value)
|
|
{
|
|
throw new NotSupportedException();
|
|
}
|
|
|
|
public override int Read(byte[] buffer, int offset, int count)
|
|
{
|
|
return this.readStream.Read(buffer, offset, count);
|
|
}
|
|
public override void Write(byte[] buffer, int offset, int count)
|
|
{
|
|
this.wirteStream.Write(buffer, offset, count);
|
|
}
|
|
public override ValueTask<int> ReadAsync(Memory<byte> buffer, CancellationToken cancellationToken = default)
|
|
{
|
|
return this.readStream.ReadAsync(buffer, cancellationToken);
|
|
}
|
|
|
|
public override Task<int> ReadAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
|
|
{
|
|
return this.readStream.ReadAsync(buffer, offset, count, cancellationToken);
|
|
}
|
|
|
|
public override void Write(ReadOnlySpan<byte> buffer)
|
|
{
|
|
this.wirteStream.Write(buffer);
|
|
}
|
|
|
|
public override Task WriteAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
|
|
{
|
|
return this.wirteStream.WriteAsync(buffer, offset, count, cancellationToken);
|
|
}
|
|
|
|
public override async ValueTask WriteAsync(ReadOnlyMemory<byte> buffer, CancellationToken cancellationToken = default)
|
|
{
|
|
await this.wirteStream.WriteAsync(buffer, cancellationToken);
|
|
}
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
this.lifetimeFeature?.Abort();
|
|
}
|
|
|
|
public override ValueTask DisposeAsync()
|
|
{
|
|
this.lifetimeFeature?.Abort();
|
|
return ValueTask.CompletedTask;
|
|
}
|
|
}
|
|
}
|