-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMutagenClient.cs
55 lines (46 loc) · 2.19 KB
/
MutagenClient.cs
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
using Coder.Desktop.MutagenSdk.Proto.Service.Synchronization;
using Grpc.Core;
using Grpc.Net.Client;
namespace Coder.Desktop.MutagenSdk;
public class MutagenClient : IDisposable
{
private readonly GrpcChannel _channel;
public readonly Synchronization.SynchronizationClient Synchronization;
public MutagenClient(string dataDir)
{
// Check for the lock file first, since it should exist if it's running.
var daemonLockFile = Path.Combine(dataDir, "daemon", "daemon.lock");
if (!File.Exists(daemonLockFile))
throw new FileNotFoundException(
"Mutagen daemon lock file not found, did the mutagen daemon start successfully?", daemonLockFile);
// Read the IPC named pipe address from the sock file.
var daemonSockFile = Path.Combine(dataDir, "daemon", "daemon.sock");
if (!File.Exists(daemonSockFile))
throw new FileNotFoundException(
"Mutagen daemon socket file not found, did the mutagen daemon start successfully?", daemonSockFile);
var daemonSockAddress = File.ReadAllText(daemonSockFile).Trim();
if (string.IsNullOrWhiteSpace(daemonSockAddress))
throw new InvalidOperationException(
"Mutagen daemon socket address is empty, did the mutagen daemon start successfully?");
const string namedPipePrefix = @"\\.\pipe\";
if (!daemonSockAddress.StartsWith(namedPipePrefix))
throw new InvalidOperationException("Mutagen daemon socket address is not a named pipe address");
var pipeName = daemonSockAddress[namedPipePrefix.Length..];
var connectionFactory = new NamedPipesConnectionFactory(pipeName);
var socketsHttpHandler = new SocketsHttpHandler
{
ConnectCallback = connectionFactory.ConnectAsync,
};
_channel = GrpcChannel.ForAddress("http://localhost", new GrpcChannelOptions
{
Credentials = ChannelCredentials.Insecure,
HttpHandler = socketsHttpHandler,
});
Synchronization = new Synchronization.SynchronizationClient(_channel);
}
public void Dispose()
{
_channel.Dispose();
GC.SuppressFinalize(this);
}
}