|
| 1 | +import NIOCore |
| 2 | + |
| 3 | +public extension MutagenDaemon { |
| 4 | + func refreshSessions() async { |
| 5 | + guard case .running = state else { return } |
| 6 | + let sessions: Synchronization_ListResponse |
| 7 | + do { |
| 8 | + sessions = try await client!.sync.list(Synchronization_ListRequest.with { req in |
| 9 | + req.selection = .with { selection in |
| 10 | + selection.all = true |
| 11 | + } |
| 12 | + }) |
| 13 | + } catch { |
| 14 | + state = .failed(.grpcFailure(error)) |
| 15 | + return |
| 16 | + } |
| 17 | + sessionState = sessions.sessionStates.map { FileSyncSession(state: $0) } |
| 18 | + } |
| 19 | + |
| 20 | + func createSession( |
| 21 | + localPath: String, |
| 22 | + agentHost: String, |
| 23 | + remotePath: String |
| 24 | + ) async throws(DaemonError) { |
| 25 | + if case .stopped = state { |
| 26 | + do throws(DaemonError) { |
| 27 | + try await start() |
| 28 | + } catch { |
| 29 | + state = .failed(error) |
| 30 | + throw error |
| 31 | + } |
| 32 | + } |
| 33 | + let (stream, promptID) = try await host() |
| 34 | + defer { stream.cancel() } |
| 35 | + let req = Synchronization_CreateRequest.with { req in |
| 36 | + req.prompter = promptID |
| 37 | + req.specification = .with { spec in |
| 38 | + spec.alpha = .with { alpha in |
| 39 | + alpha.protocol = .local |
| 40 | + alpha.path = localPath |
| 41 | + } |
| 42 | + spec.beta = .with { beta in |
| 43 | + beta.protocol = .ssh |
| 44 | + beta.host = agentHost |
| 45 | + beta.path = remotePath |
| 46 | + } |
| 47 | + // TODO: Ingest a config from somewhere |
| 48 | + spec.configuration = Synchronization_Configuration() |
| 49 | + spec.configurationAlpha = Synchronization_Configuration() |
| 50 | + spec.configurationBeta = Synchronization_Configuration() |
| 51 | + } |
| 52 | + } |
| 53 | + do { |
| 54 | + // The first creation will need to transfer the agent binary |
| 55 | + // TODO: Because this is pretty long, we should show progress updates |
| 56 | + // using the prompter messages |
| 57 | + _ = try await client!.sync.create(req, callOptions: .init(timeLimit: .timeout(sessionMgmtReqTimeout * 4))) |
| 58 | + } catch { |
| 59 | + throw .grpcFailure(error) |
| 60 | + } |
| 61 | + await refreshSessions() |
| 62 | + } |
| 63 | + |
| 64 | + func deleteSessions(ids: [String]) async throws(DaemonError) { |
| 65 | + // Terminating sessions does not require prompting, according to the |
| 66 | + // Mutagen CLI |
| 67 | + let (stream, promptID) = try await host(allowPrompts: false) |
| 68 | + defer { stream.cancel() } |
| 69 | + guard case .running = state else { return } |
| 70 | + do { |
| 71 | + _ = try await client!.sync.terminate(Synchronization_TerminateRequest.with { req in |
| 72 | + req.prompter = promptID |
| 73 | + req.selection = .with { selection in |
| 74 | + selection.specifications = ids |
| 75 | + } |
| 76 | + }, callOptions: .init(timeLimit: .timeout(sessionMgmtReqTimeout))) |
| 77 | + } catch { |
| 78 | + throw .grpcFailure(error) |
| 79 | + } |
| 80 | + await refreshSessions() |
| 81 | + } |
| 82 | + |
| 83 | + func pauseSessions(ids: [String]) async throws(DaemonError) { |
| 84 | + // Pausing sessions does not require prompting, according to the |
| 85 | + // Mutagen CLI |
| 86 | + let (stream, promptID) = try await host(allowPrompts: false) |
| 87 | + defer { stream.cancel() } |
| 88 | + guard case .running = state else { return } |
| 89 | + do { |
| 90 | + _ = try await client!.sync.pause(Synchronization_PauseRequest.with { req in |
| 91 | + req.prompter = promptID |
| 92 | + req.selection = .with { selection in |
| 93 | + selection.specifications = ids |
| 94 | + } |
| 95 | + }, callOptions: .init(timeLimit: .timeout(sessionMgmtReqTimeout))) |
| 96 | + } catch { |
| 97 | + throw .grpcFailure(error) |
| 98 | + } |
| 99 | + await refreshSessions() |
| 100 | + } |
| 101 | + |
| 102 | + func resumeSessions(ids: [String]) async throws(DaemonError) { |
| 103 | + // Resuming sessions does not require prompting, according to the |
| 104 | + // Mutagen CLI |
| 105 | + let (stream, promptID) = try await host(allowPrompts: false) |
| 106 | + defer { stream.cancel() } |
| 107 | + guard case .running = state else { return } |
| 108 | + do { |
| 109 | + _ = try await client!.sync.resume(Synchronization_ResumeRequest.with { req in |
| 110 | + req.prompter = promptID |
| 111 | + req.selection = .with { selection in |
| 112 | + selection.specifications = ids |
| 113 | + } |
| 114 | + }, callOptions: .init(timeLimit: .timeout(sessionMgmtReqTimeout))) |
| 115 | + } catch { |
| 116 | + throw .grpcFailure(error) |
| 117 | + } |
| 118 | + await refreshSessions() |
| 119 | + } |
| 120 | +} |
0 commit comments