Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add MutagenSdk project #48

Merged
merged 6 commits into from
Mar 11, 2025
Merged

chore: add MutagenSdk project #48

merged 6 commits into from
Mar 11, 2025

Conversation

deansheather
Copy link
Member

@deansheather deansheather commented Mar 10, 2025

Contains a gRPC client for mutagen's synchronization API.

All required .proto files are vendored using a new script Update-Proto.ps1, which finds all required files by scanning import directives.

The vendored files are modified to add csharp_namespace and a MIT license header from mutagen.

Example usage:

using var client = new MutagenClient(@"C:\Users\dean\.mutagen");
var res = await client.Synchronization.ListAsync(new ListRequest
{
    Selection = new Selection
    {
        All = true,
    },
});

foreach (var state in res.SessionStates)
    Console.WriteLine(state);

Close coder/internal#378

Contains a gRPC client for mutagen's synchronization API.

All required .proto files are vendored using a new script
`Update-Proto.ps1`, which finds all required files by scanning `import`
directives.

The vendored files are modified to add `csharp_namespace` and a MIT
license header from mutagen.
@deansheather deansheather marked this pull request as ready for review March 10, 2025 03:58
Copy link
Collaborator

@spikecurtis spikecurtis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Few nits and suggestions inline

& git.exe clone `
--depth 1 `
--branch $mutagenTag `
"https://github.com/mutagen-io/mutagen.git" `
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should use Coder's fork: https://github.com/coder/mutagen

Unfortunately, we are going to have to modify Mutagen and build our own releases to work around the SSH directory bug.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't have a v0.18.1 tag in our fork. We probably need to resync it so we get all of the tags etc.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Once we sort out the tags I'd be down to fix this in a follow up

if ($LASTEXITCODE -ne 0) { throw "Failed to checkout $mutagenTag" }
}
}
finally {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

man, PowerShell is so much nicer than bash

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

isn't the throw/try/catch/finally stuff just the best! I just wish they didn't go whole hog on making their own (usually worse) version of utilities that are available on Linux. At least curl.exe is available or I would cry

@deansheather
Copy link
Member Author

@spikecurtis the Join-Path fix was added in Powershell 6.0 but Windows 11 ships with 5.1 (or at least that's what I have installed). It's like macos vs linux bash all over again

@deansheather deansheather enabled auto-merge (squash) March 11, 2025 00:29
@deansheather deansheather merged commit 8e6ec03 into main Mar 11, 2025
3 checks passed
@deansheather deansheather deleted the dean/mutagen-sdk branch March 11, 2025 00:30
ethanndickson added a commit to coder/coder-desktop-macos that referenced this pull request Mar 18, 2025
Closes coder/internal#379

Much like in coder/coder-desktop-windows#48, this PR adds `mutagen-proto.sh` which finds all required files, following `import`s. 

Right now, we use this client to stop the daemon over gRPC.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add mutagen API client to coder-desktop-windows
2 participants