forked from modelcontextprotocol/csharp-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInMemoryClientTransport.cs
More file actions
228 lines (197 loc) · 7.53 KB
/
InMemoryClientTransport.cs
File metadata and controls
228 lines (197 loc) · 7.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
using ModelContextProtocol.Logging;
using ModelContextProtocol.Protocol.Messages;
using System.Threading.Channels;
namespace ModelContextProtocol.Protocol.Transport;
/// <summary>
/// Provides an in-memory implementation of the MCP client transport.
/// </summary>
public sealed class InMemoryClientTransport : TransportBase, IClientTransport
{
private string EndpointName => $"Client (in memory) for ({_serverName})";
private readonly ILogger _logger;
private readonly string _serverName;
private readonly ChannelWriter<IJsonRpcMessage> _outgoingChannel;
private readonly ChannelReader<IJsonRpcMessage> _incomingChannel;
private CancellationTokenSource? _cancellationTokenSource;
private Task? _readTask;
private readonly SemaphoreSlim _connectLock = new SemaphoreSlim(1, 1);
private volatile bool _disposed;
/// <summary>
/// Gets or sets the server transport this client connects to.
/// </summary>
internal InMemoryServerTransport? ServerTransport { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="InMemoryClientTransport"/> class.
/// </summary>
/// <param name="serverName">The name of the server.</param>
/// <param name="loggerFactory">Optional logger factory for logging transport operations.</param>
/// <param name="outgoingChannel">Channel for sending messages to the server.</param>
/// <param name="incomingChannel">Channel for receiving messages from the server.</param>
internal InMemoryClientTransport(
string serverName,
ILoggerFactory? loggerFactory,
ChannelWriter<IJsonRpcMessage> outgoingChannel,
ChannelReader<IJsonRpcMessage> incomingChannel)
: base(loggerFactory)
{
_logger = loggerFactory?.CreateLogger<InMemoryClientTransport>()
?? NullLogger<InMemoryClientTransport>.Instance;
_serverName = serverName;
_outgoingChannel = outgoingChannel;
_incomingChannel = incomingChannel;
}
/// <inheritdoc/>
public async Task ConnectAsync(CancellationToken cancellationToken = default)
{
await _connectLock.WaitAsync(cancellationToken).ConfigureAwait(false);
try
{
ThrowIfDisposed();
if (IsConnected)
{
_logger.TransportAlreadyConnected(EndpointName);
throw new McpTransportException("Transport is already connected");
}
_logger.TransportConnecting(EndpointName);
try
{
// Start the server if it exists and is not already connected
if (ServerTransport != null && !ServerTransport.IsConnected)
{
await ServerTransport.StartListeningAsync(cancellationToken).ConfigureAwait(false);
}
_cancellationTokenSource = new CancellationTokenSource();
_readTask = Task.Run(() => ReadMessagesAsync(_cancellationTokenSource.Token).ConfigureAwait(false), CancellationToken.None);
SetConnected(true);
}
catch (Exception ex)
{
_logger.TransportConnectFailed(EndpointName, ex);
await CleanupAsync(cancellationToken).ConfigureAwait(false);
throw new McpTransportException("Failed to connect transport", ex);
}
}
finally
{
_connectLock.Release();
}
}
/// <inheritdoc/>
public override async Task SendMessageAsync(IJsonRpcMessage message, CancellationToken cancellationToken = default)
{
ThrowIfDisposed();
if (!IsConnected)
{
_logger.TransportNotConnected(EndpointName);
throw new McpTransportException("Transport is not connected");
}
string id = "(no id)";
if (message is IJsonRpcMessageWithId messageWithId)
{
id = messageWithId.Id.ToString();
}
try
{
_logger.TransportSendingMessage(EndpointName, id);
await _outgoingChannel.WriteAsync(message, cancellationToken).ConfigureAwait(false);
_logger.TransportSentMessage(EndpointName, id);
}
catch (Exception ex)
{
_logger.TransportSendFailed(EndpointName, id, ex);
throw new McpTransportException("Failed to send message", ex);
}
}
/// <inheritdoc/>
public override async ValueTask DisposeAsync()
{
await CleanupAsync(CancellationToken.None).ConfigureAwait(false);
GC.SuppressFinalize(this);
}
private async Task ReadMessagesAsync(CancellationToken cancellationToken)
{
try
{
_logger.TransportEnteringReadMessagesLoop(EndpointName);
await foreach (var message in _incomingChannel.ReadAllAsync(cancellationToken).ConfigureAwait(false))
{
var id = "(no id)";
if (message is IJsonRpcMessageWithId messageWithId)
{
id = messageWithId.Id.ToString();
}
_logger.TransportReceivedMessageParsed(EndpointName, id);
// Write to the base class's message channel that's exposed via MessageReader
await WriteMessageAsync(message, cancellationToken).ConfigureAwait(false);
_logger.TransportMessageWritten(EndpointName, id);
}
_logger.TransportExitingReadMessagesLoop(EndpointName);
}
catch (OperationCanceledException) when (cancellationToken.IsCancellationRequested)
{
_logger.TransportReadMessagesCancelled(EndpointName);
// Normal shutdown
}
catch (Exception ex)
{
_logger.TransportReadMessagesFailed(EndpointName, ex);
}
}
private async Task CleanupAsync(CancellationToken cancellationToken)
{
if (_disposed)
{
return;
}
_disposed = true;
_logger.TransportCleaningUp(EndpointName);
try
{
if (_cancellationTokenSource != null)
{
await _cancellationTokenSource.CancelAsync().ConfigureAwait(false);
_cancellationTokenSource.Dispose();
_cancellationTokenSource = null;
}
if (_readTask != null)
{
try
{
_logger.TransportWaitingForReadTask(EndpointName);
await _readTask.WaitAsync(TimeSpan.FromSeconds(1), cancellationToken).ConfigureAwait(false);
}
catch (TimeoutException)
{
_logger.TransportCleanupReadTaskTimeout(EndpointName);
}
catch (OperationCanceledException)
{
_logger.TransportCleanupReadTaskCancelled(EndpointName);
}
catch (Exception ex)
{
_logger.TransportCleanupReadTaskFailed(EndpointName, ex);
}
finally
{
_readTask = null;
}
}
_connectLock.Dispose();
}
finally
{
SetConnected(false);
_logger.TransportCleanedUp(EndpointName);
}
}
private void ThrowIfDisposed()
{
if (_disposed)
{
throw new ObjectDisposedException(nameof(InMemoryClientTransport));
}
}
}