forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAgentBridge.swift
More file actions
2216 lines (2081 loc) · 77.3 KB
/
Copy pathAgentBridge.swift
File metadata and controls
2216 lines (2081 loc) · 77.3 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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import Foundation
struct AgentExecutionProfile: Equatable, Sendable {
enum CredentialScope: String, Sendable {
case managedCloud = "managed_cloud"
case localUser = "local_user"
}
enum ExecutionRole: String, Sendable {
case coordinator
case leaf
}
let profileGeneration: Int
let adapterId: String
let credentialScope: CredentialScope
let modelProfile: String?
let workingDirectory: String
let executionRole: ExecutionRole
init?(dictionary: [String: Any]) {
guard
let profileGeneration = dictionary["profileGeneration"] as? Int,
let adapterId = dictionary["adapterId"] as? String,
let credentialScopeValue = dictionary["credentialScope"] as? String,
let credentialScope = CredentialScope(rawValue: credentialScopeValue),
let workingDirectory = dictionary["workingDirectory"] as? String,
let executionRoleValue = dictionary["executionRole"] as? String,
let executionRole = ExecutionRole(rawValue: executionRoleValue)
else { return nil }
self.profileGeneration = profileGeneration
self.adapterId = adapterId
self.credentialScope = credentialScope
self.modelProfile = dictionary["modelProfile"] as? String
self.workingDirectory = workingDirectory
self.executionRole = executionRole
}
}
enum AgentExecutionProfileLifecycle {
static let defaultPreferenceAppliesTo = "new_sessions"
static let defaultPreferenceChangeRequiresDaemonRestart = false
}
struct AgentDefaultExecutionProfile: Equatable, Sendable {
let preferenceGeneration: Int
let adapterId: String
let credentialScope: AgentExecutionProfile.CredentialScope
let modelProfile: String?
let workingDirectory: String
let appliesTo: String
init?(dictionary: [String: Any]) {
guard
let preferenceGeneration = dictionary["preferenceGeneration"] as? Int,
let adapterId = dictionary["adapterId"] as? String,
let credentialScopeValue = dictionary["credentialScope"] as? String,
let credentialScope = AgentExecutionProfile.CredentialScope(rawValue: credentialScopeValue),
let workingDirectory = dictionary["workingDirectory"] as? String,
let appliesTo = dictionary["appliesTo"] as? String,
appliesTo == AgentExecutionProfileLifecycle.defaultPreferenceAppliesTo
else { return nil }
self.preferenceGeneration = preferenceGeneration
self.adapterId = adapterId
self.credentialScope = credentialScope
self.modelProfile = dictionary["modelProfile"] as? String
self.workingDirectory = workingDirectory
self.appliesTo = appliesTo
}
}
struct AgentSurfaceSession: Equatable, Sendable {
let created: Bool
let conversationId: String
let sessionId: String
let profile: AgentExecutionProfile
init(created: Bool, conversationId: String, sessionId: String, profile: AgentExecutionProfile) {
self.created = created
self.conversationId = conversationId
self.sessionId = sessionId
self.profile = profile
}
init?(dictionary: [String: Any]) {
guard
let created = dictionary["created"] as? Bool,
let conversationId = dictionary["conversationId"] as? String,
let sessionId = dictionary["sessionId"] as? String,
let profileDictionary = dictionary["profile"] as? [String: Any],
let profile = AgentExecutionProfile(dictionary: profileDictionary)
else { return nil }
self.created = created
self.conversationId = conversationId
self.sessionId = sessionId
self.profile = profile
}
}
struct LegacyMainChatSessionAliasEntry: Equatable, Hashable, Sendable {
let chatId: String
let agentSessionId: String
var dictionary: [String: String] {
["chatId": chatId, "agentSessionId": agentSessionId]
}
}
struct LegacyMainChatSessionImportReceipt: Equatable, Sendable {
let ownerId: String
let acceptedEntries: [LegacyMainChatSessionAliasEntry]
let importedCount: Int
init(
ownerId: String,
acceptedEntries: [LegacyMainChatSessionAliasEntry],
importedCount: Int
) {
self.ownerId = ownerId
self.acceptedEntries = acceptedEntries
self.importedCount = importedCount
}
init?(dictionary: [String: Any]) {
guard
let rawOwnerId = dictionary["ownerId"] as? String,
!rawOwnerId.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty,
let acceptedCount = dictionary["acceptedCount"] as? Int,
let importedCount = dictionary["importedCount"] as? Int,
importedCount >= 0,
importedCount <= acceptedCount,
let rawEntries = dictionary["acceptedEntries"] as? [[String: Any]]
else { return nil }
let entries = rawEntries.compactMap { raw -> LegacyMainChatSessionAliasEntry? in
guard
let rawChatId = raw["chatId"] as? String,
let rawSessionId = raw["agentSessionId"] as? String
else { return nil }
let chatId = rawChatId.trimmingCharacters(in: .whitespacesAndNewlines)
let agentSessionId = rawSessionId.trimmingCharacters(in: .whitespacesAndNewlines)
guard !chatId.isEmpty, !agentSessionId.isEmpty else { return nil }
return LegacyMainChatSessionAliasEntry(chatId: chatId, agentSessionId: agentSessionId)
}
guard
entries.count == rawEntries.count,
entries.count == acceptedCount,
Set(entries.map(\.chatId)).count == entries.count
else { return nil }
ownerId = rawOwnerId.trimmingCharacters(in: .whitespacesAndNewlines)
acceptedEntries = entries
self.importedCount = importedCount
}
}
private struct LegacyAliasDefaultsReference: @unchecked Sendable {
let value: UserDefaults
}
enum LegacyMainChatSessionAliasMigration {
enum Outcome: Equatable, Sendable {
case noAliases
case acknowledged(removedCount: Int)
case retained(reason: String)
}
static let owner = "desktop-agent-bridge"
static let removalCondition =
"all supported desktop versions have imported UserDefaults main-chat session aliases into omi-agentd"
static let removeBy = "2026-10-01"
static let defaultsKey = "mainChatRuntimeSessionIdsByOwnerAndChat"
private struct PendingAlias: Sendable {
let defaultsKey: String
let storedSessionId: String
let entry: LegacyMainChatSessionAliasEntry
}
static func migrate(
ownerId: String,
defaults: UserDefaults,
isAuthorizationCurrent: @escaping @Sendable () -> Bool = { true },
importer:
@Sendable ([LegacyMainChatSessionAliasEntry]) async throws ->
LegacyMainChatSessionImportReceipt
) async -> Outcome {
let ownerId = ownerId.trimmingCharacters(in: .whitespacesAndNewlines)
guard !ownerId.isEmpty else { return .retained(reason: "invalid_owner") }
guard isAuthorizationCurrent() else {
return .retained(reason: "owner_authorization_revoked")
}
guard let rawMap = defaults.dictionary(forKey: defaultsKey), !rawMap.isEmpty else {
return .noAliases
}
var map: [String: String] = [:]
for (key, value) in rawMap {
guard let sessionId = value as? String else {
return .retained(reason: "invalid_defaults_payload")
}
map[key] = sessionId
}
let prefix = "\(ownerId)|"
var pending: [PendingAlias] = []
var seenChatIds = Set<String>()
for key in map.keys.filter({ $0.hasPrefix(prefix) }).sorted() {
guard let storedSessionId = map[key] else { continue }
let suffix = String(key.dropFirst(prefix.count))
let chatId = suffix.isEmpty ? "default" : suffix.trimmingCharacters(in: .whitespacesAndNewlines)
let agentSessionId = storedSessionId.trimmingCharacters(in: .whitespacesAndNewlines)
guard !chatId.isEmpty, !agentSessionId.isEmpty, seenChatIds.insert(chatId).inserted else {
return .retained(reason: "invalid_alias_entry")
}
pending.append(
PendingAlias(
defaultsKey: key,
storedSessionId: storedSessionId,
entry: LegacyMainChatSessionAliasEntry(chatId: chatId, agentSessionId: agentSessionId)
))
}
guard !pending.isEmpty else { return .noAliases }
let entries = pending.map(\.entry)
let receipt: LegacyMainChatSessionImportReceipt
do {
receipt = try await importer(entries)
} catch {
return .retained(reason: "kernel_import_failed")
}
guard receipt.ownerId == ownerId, receipt.acceptedEntries == entries else {
return .retained(reason: "invalid_kernel_receipt")
}
let authorization = LocalMutationAuthorization(isAuthorizationCurrent)
let defaultsReference = LegacyAliasDefaultsReference(value: defaults)
let pendingAliases = pending
do {
let removedCount = try await authorization.withCommitLease {
try authorization.require()
var latest = defaultsReference.value.dictionary(forKey: defaultsKey) ?? [:]
var removedCount = 0
for alias in pendingAliases
where latest[alias.defaultsKey] as? String == alias.storedSessionId {
latest.removeValue(forKey: alias.defaultsKey)
removedCount += 1
}
if latest.isEmpty {
defaultsReference.value.removeObject(forKey: defaultsKey)
} else {
defaultsReference.value.set(latest, forKey: defaultsKey)
}
return removedCount
}
return .acknowledged(removedCount: removedCount)
} catch LocalMutationAuthorizationError.revoked {
return .retained(reason: "owner_authorization_revoked")
} catch {
return .retained(reason: "defaults_commit_failed")
}
}
}
struct AgentSessionCreationProfile: Equatable, Sendable {
let adapterId: String
let modelProfile: String?
let workingDirectory: String
var dictionary: [String: Any] {
[
"adapterId": adapterId,
"modelProfile": modelProfile ?? NSNull(),
"workingDirectory": workingDirectory,
]
}
}
struct AgentSessionProfileMigration: Equatable, Sendable {
let sessionId: String
let previousProfileGeneration: Int
let profile: AgentExecutionProfile
let staleBindingIds: [String]
init?(dictionary: [String: Any]) {
guard
let sessionId = dictionary["sessionId"] as? String,
let previousProfileGeneration = dictionary["previousProfileGeneration"] as? Int,
let profileDictionary = dictionary["profile"] as? [String: Any],
let profile = AgentExecutionProfile(dictionary: profileDictionary),
let staleBindingIds = dictionary["staleBindingIds"] as? [String]
else { return nil }
self.sessionId = sessionId
self.previousProfileGeneration = previousProfileGeneration
self.profile = profile
self.staleBindingIds = staleBindingIds
}
}
enum AgentContextSource: String, CaseIterable, Sendable {
case identity
case memories
case goals
case tasks
case screen
case workspace
case surface
}
enum AgentContextSourceOutcome: String, Sendable {
case available
case empty
case unavailable
case redacted
}
struct AgentContextSourceUpdateReceipt: Equatable, Sendable {
let sessionId: String
let source: AgentContextSource
let sourceRevision: String
let changed: Bool
let snapshotVersion: String
let snapshotGeneration: Int
let rendererFingerprint: String
init?(dictionary: [String: Any]) {
guard
let sessionId = dictionary["sessionId"] as? String,
let sourceValue = dictionary["source"] as? String,
let source = AgentContextSource(rawValue: sourceValue),
let sourceRevision = dictionary["sourceRevision"] as? String,
let changed = dictionary["changed"] as? Bool,
let snapshotVersion = dictionary["snapshotVersion"] as? String,
let snapshotGeneration = dictionary["snapshotGeneration"] as? Int,
let rendererFingerprint = dictionary["rendererFingerprint"] as? String
else { return nil }
self.sessionId = sessionId
self.source = source
self.sourceRevision = sourceRevision
self.changed = changed
self.snapshotVersion = snapshotVersion
self.snapshotGeneration = snapshotGeneration
self.rendererFingerprint = rendererFingerprint
}
}
struct AgentContextRecentTurn: Equatable, Sendable {
let turnId: String
let turnSeq: Int
let role: String
let content: String
let status: String
let origin: String
let createdAtMs: Int
init(
turnId: String,
turnSeq: Int,
role: String,
content: String,
status: String,
origin: String,
createdAtMs: Int
) {
self.turnId = turnId
self.turnSeq = turnSeq
self.role = role
self.content = content
self.status = status
self.origin = origin
self.createdAtMs = createdAtMs
}
init?(dictionary: [String: Any]) {
guard
let turnId = dictionary["turnId"] as? String,
let turnSeq = dictionary["turnSeq"] as? Int,
let role = dictionary["role"] as? String,
let content = dictionary["content"] as? String,
let status = dictionary["status"] as? String,
let origin = dictionary["origin"] as? String,
let createdAtMs = dictionary["createdAtMs"] as? Int
else { return nil }
self.turnId = turnId
self.turnSeq = turnSeq
self.role = role
self.content = content
self.status = status
self.origin = origin
self.createdAtMs = createdAtMs
}
}
struct AgentContextSnapshot: @unchecked Sendable {
let snapshotId: String
let version: String
let snapshotGeneration: Int
let rendererPolicyVersion: String
let rendererFingerprint: String
let capabilityVersion: String
let renderedContext: String
let ownerId: String
let sessionId: String
let conversationId: String
let recentTurns: [[String: Any]]
let sourceOutcomes: [[String: Any]]
let activeRuns: [[String: Any]]
let capabilities: [String: Any]
let contextPlan: AgentConversationContextPlan
init?(dictionary: [String: Any]) {
guard
let snapshotId = dictionary["snapshotId"] as? String,
let version = dictionary["version"] as? String,
let snapshotGeneration = dictionary["snapshotGeneration"] as? Int,
let rendererPolicyVersion = dictionary["rendererPolicyVersion"] as? String,
let rendererFingerprint = dictionary["rendererFingerprint"] as? String,
let capabilityVersion = dictionary["capabilityVersion"] as? String,
let renderedContext = dictionary["renderedContext"] as? String,
let ownerId = dictionary["ownerId"] as? String,
let sessionId = dictionary["sessionId"] as? String,
let conversationId = dictionary["conversationId"] as? String,
let recentTurns = dictionary["recentTurns"] as? [[String: Any]],
let sourceOutcomes = dictionary["sourceOutcomes"] as? [[String: Any]],
let activeRuns = dictionary["activeRuns"] as? [[String: Any]],
let capabilities = dictionary["capabilities"] as? [String: Any],
let contextPlanDictionary = dictionary["contextPlan"] as? [String: Any],
let contextPlan = AgentConversationContextPlan(dictionary: contextPlanDictionary),
capabilities["executionRole"] as? String != nil,
capabilities["manifestVersion"] as? Int != nil,
capabilities["manifestDigest"] as? String != nil,
capabilities["allowedToolNames"] as? [String] != nil
else { return nil }
self.snapshotId = snapshotId
self.version = version
self.snapshotGeneration = snapshotGeneration
self.rendererPolicyVersion = rendererPolicyVersion
self.rendererFingerprint = rendererFingerprint
self.capabilityVersion = capabilityVersion
self.renderedContext = renderedContext
self.ownerId = ownerId
self.sessionId = sessionId
self.conversationId = conversationId
self.recentTurns = recentTurns
self.sourceOutcomes = sourceOutcomes
self.activeRuns = activeRuns
self.capabilities = capabilities
self.contextPlan = contextPlan
}
var freshness: AgentContextFreshness {
AgentContextFreshness(
version: version,
generation: snapshotGeneration,
rendererFingerprint: rendererFingerprint,
capabilityVersion: capabilityVersion)
}
func sourceRevision(for source: AgentContextSource) -> String? {
sourceOutcomes.first(where: { $0["source"] as? String == source.rawValue })?["sourceRevision"] as? String
}
var typedRecentTurns: [AgentContextRecentTurn] {
recentTurns.compactMap(AgentContextRecentTurn.init(dictionary:))
}
}
struct AgentConversationContextPlan: Equatable, Sendable {
let version: Int
let planId: String
let semanticGuidanceVersion: String
let semanticGuidance: String
let retainedTurnStartSeq: Int?
let retainedTurnEndSeq: Int?
let retainedTurnCount: Int
let totalTurnCount: Int
let omittedTurnCount: Int
let olderHistoryStrategy: String
let stableCacheIdentity: String
let dynamicContextIdentity: String
init?(dictionary: [String: Any]) {
guard
let version = dictionary["version"] as? Int,
version == 1,
let planId = dictionary["planId"] as? String,
let semanticGuidanceVersion = dictionary["semanticGuidanceVersion"] as? String,
let semanticGuidance = dictionary["semanticGuidance"] as? String,
let retainedTurnCount = dictionary["retainedTurnCount"] as? Int,
let totalTurnCount = dictionary["totalTurnCount"] as? Int,
let omittedTurnCount = dictionary["omittedTurnCount"] as? Int,
let olderHistoryStrategy = dictionary["olderHistoryStrategy"] as? String,
["none", "truncated"].contains(olderHistoryStrategy),
let stableCacheIdentity = dictionary["stableCacheIdentity"] as? String,
let dynamicContextIdentity = dictionary["dynamicContextIdentity"] as? String,
retainedTurnCount >= 0, totalTurnCount >= retainedTurnCount,
omittedTurnCount == totalTurnCount - retainedTurnCount,
olderHistoryStrategy == (omittedTurnCount > 0 ? "truncated" : "none")
else { return nil }
let retainedTurnStartSeq = dictionary["retainedTurnStartSeq"] as? Int
let retainedTurnEndSeq = dictionary["retainedTurnEndSeq"] as? Int
guard
retainedTurnCount == 0
? retainedTurnStartSeq == nil && retainedTurnEndSeq == nil
: retainedTurnStartSeq != nil && retainedTurnEndSeq != nil
else { return nil }
self.version = version
self.planId = planId
self.semanticGuidanceVersion = semanticGuidanceVersion
self.semanticGuidance = semanticGuidance
self.retainedTurnStartSeq = retainedTurnStartSeq
self.retainedTurnEndSeq = retainedTurnEndSeq
self.retainedTurnCount = retainedTurnCount
self.totalTurnCount = totalTurnCount
self.omittedTurnCount = omittedTurnCount
self.olderHistoryStrategy = olderHistoryStrategy
self.stableCacheIdentity = stableCacheIdentity
self.dynamicContextIdentity = dynamicContextIdentity
}
}
struct AgentQueryAttachment: Equatable, Sendable {
let attachmentId: String
let displayName: String
let mimeType: String
let sizeBytes: Int?
let uri: String?
var dictionary: [String: Any] {
var value: [String: Any] = [
"attachmentId": attachmentId,
"displayName": displayName,
"mimeType": mimeType,
]
if let sizeBytes { value["sizeBytes"] = sizeBytes }
if let uri { value["uri"] = uri }
return value
}
}
struct AgentContextFreshness: Equatable, Sendable {
let version: String
let generation: Int
let rendererFingerprint: String
let capabilityVersion: String
}
enum AgentQueryTerminalStatus: Equatable, Sendable {
case succeeded
case failed
case timedOut
case orphaned
case cancelled
case invalid(String?)
init(wireValue: String?) {
switch wireValue {
case "succeeded": self = .succeeded
case "failed": self = .failed
case "timed_out": self = .timedOut
case "orphaned": self = .orphaned
case "cancelled": self = .cancelled
default: self = .invalid(wireValue)
}
}
var wireValue: String? {
switch self {
case .succeeded: return "succeeded"
case .failed: return "failed"
case .timedOut: return "timed_out"
case .orphaned: return "orphaned"
case .cancelled: return "cancelled"
case .invalid(let value): return value
}
}
}
/// Lightweight client handle for the shared Node.js agent runtime.
actor AgentBridge {
typealias TextDeltaHandler = @Sendable (String) -> Void
typealias ToolCallHandler = @Sendable (String, String, [String: Any]) async -> String
typealias ToolActivityHandler = @Sendable (String, String, String?, [String: Any]?) -> Void
typealias TurnActivityHandler = @Sendable () -> Void
typealias ThinkingDeltaHandler = @Sendable (String) -> Void
typealias ToolResultDisplayHandler = @Sendable (String, String, String) -> Void
typealias AuthRequiredHandler = @Sendable ([[String: Any]], String?) -> Void
typealias AuthSuccessHandler = @Sendable () -> Void
private final class BridgeOutputTracker: @unchecked Sendable {
private let lock = NSLock()
private var _hasOutput = false
var hasOutput: Bool {
lock.lock()
defer { lock.unlock() }
return _hasOutput
}
func markOutput() {
lock.lock()
_hasOutput = true
lock.unlock()
}
}
private struct OwnerBoundQuota {
let authorizationSnapshot: RuntimeOwnerAuthorizationSnapshot
let quota: APIClient.ChatUsageQuota
}
private enum LifecycleOperationKind {
case start
case restart
}
private struct LifecycleFlight {
let id: UUID
let kind: LifecycleOperationKind
let generation: UInt64
let authorizationSnapshot: RuntimeOwnerAuthorizationSnapshot
let requiresCredentials: Bool
var waiters: [CheckedContinuation<Void, Error>] = []
}
let harnessMode: String
let clientId = UUID().uuidString
let runtime: AgentRuntimeProcess
private var registered = false
private var synchronizedRuntimeAuthorityEpoch: UInt64?
private var synchronizedRuntimeAuthorityOwnerID: String?
private var activeRequestId: String?
private var realtimeChatLaneInterrupt = RealtimeChatLaneInterruptBinding()
private var lastKnownQuota: OwnerBoundQuota?
private var tokenRefreshTask: Task<Void, Never>?
private var tokenRefreshTaskID: UUID?
private var tokenRefreshAuthorizationSnapshot: RuntimeOwnerAuthorizationSnapshot?
private var stopTask: Task<Void, Never>?
private var lifecycleGeneration: UInt64 = 0
private var lifecycleFlight: LifecycleFlight?
private var globalAuthRequiredHandler: AuthRequiredHandler?
private var globalAuthSuccessHandler: AuthSuccessHandler?
var isAlive: Bool {
get async {
await runtime.isAlive
}
}
init(harnessMode: String = "piMono", runtime: AgentRuntimeProcess = .shared) {
self.harnessMode = harnessMode
self.runtime = runtime
}
private var isPiMonoHarness: Bool {
AgentRuntimeProcess.adapterId(forHarnessMode: harnessMode) == AgentAdapterId.piMono.rawValue
}
private func captureAuthorization(
expectedOwnerID: String? = nil
) throws -> RuntimeOwnerAuthorizationSnapshot {
guard
let snapshot = RuntimeOwnerIdentity.captureAuthorizationSnapshot(
expectedOwnerID: expectedOwnerID)
else {
throw BridgeError.authMissing
}
return snapshot
}
func resolveAuthorization(
_ supplied: RuntimeOwnerAuthorizationSnapshot?,
expectedOwnerID: String? = nil
) throws -> RuntimeOwnerAuthorizationSnapshot {
guard let supplied else { return try captureAuthorization(expectedOwnerID: expectedOwnerID) }
guard expectedOwnerID == nil || supplied.ownerID == expectedOwnerID,
RuntimeOwnerIdentity.isAuthorizationCurrent(supplied)
else {
throw BridgeError.authMissing
}
return supplied
}
func setGlobalAuthHandlers(
onAuthRequired: AuthRequiredHandler?,
onAuthSuccess: AuthSuccessHandler?
) async {
globalAuthRequiredHandler = onAuthRequired
globalAuthSuccessHandler = onAuthSuccess
guard registered else { return }
guard let authorization = RuntimeOwnerIdentity.captureAuthorizationSnapshot() else {
_ = await runtime.setGlobalAuthHandlers(
clientId: clientId,
authorizationSnapshot: nil,
onAuthRequired: nil,
onAuthSuccess: nil)
return
}
let guardedAuthRequired: AuthRequiredHandler?
if let onAuthRequired {
guardedAuthRequired = { methods, authURL in
guard RuntimeOwnerIdentity.isAuthorizationCurrent(authorization) else { return }
onAuthRequired(methods, authURL)
}
} else {
guardedAuthRequired = nil
}
let guardedAuthSuccess: AuthSuccessHandler?
if let onAuthSuccess {
guardedAuthSuccess = {
guard RuntimeOwnerIdentity.isAuthorizationCurrent(authorization) else { return }
onAuthSuccess()
}
} else {
guardedAuthSuccess = nil
}
_ = await runtime.setGlobalAuthHandlers(
clientId: clientId,
authorizationSnapshot: authorization,
onAuthRequired: guardedAuthRequired,
onAuthSuccess: guardedAuthSuccess
)
}
func start() async throws {
let authorizationSnapshot = try captureAuthorization()
try await start(authorizationSnapshot: authorizationSnapshot, requiresCredentials: true)
}
func start(
authorizationSnapshot: RuntimeOwnerAuthorizationSnapshot,
requiresCredentials: Bool = true
) async throws {
try await runLifecycleOperation(
.start,
authorizationSnapshot: authorizationSnapshot,
requiresCredentials: requiresCredentials)
}
private func startJournalControl(
authorizationSnapshot: RuntimeOwnerAuthorizationSnapshot
) async throws {
guard AppBuild.isNonProduction else {
throw BridgeError.agentError("Journal control is disabled on production bundles")
}
try await start(authorizationSnapshot: authorizationSnapshot, requiresCredentials: false)
}
private func runLifecycleOperation(
_ requestedKind: LifecycleOperationKind,
authorizationSnapshot: RuntimeOwnerAuthorizationSnapshot,
requiresCredentials: Bool = true
) async throws {
while let flight = lifecycleFlight {
guard flight.authorizationSnapshot == authorizationSnapshot else {
throw BridgeError.authMissing
}
try await waitForLifecycleFlight(id: flight.id)
guard lifecycleGeneration == flight.generation, stopTask == nil,
RuntimeOwnerIdentity.isAuthorizationCurrent(authorizationSnapshot)
else {
throw BridgeError.stopped
}
if requestedKind == .start, !requiresCredentials || flight.requiresCredentials {
return
}
if flight.kind == .restart { return }
}
guard stopTask == nil else { throw BridgeError.restarting }
let flightID = UUID()
let generation = lifecycleGeneration
lifecycleFlight = LifecycleFlight(
id: flightID,
kind: requestedKind,
generation: generation,
authorizationSnapshot: authorizationSnapshot,
requiresCredentials: requiresCredentials)
do {
switch requestedKind {
case .start:
try await performStart(
authorizationSnapshot: authorizationSnapshot,
flightID: flightID,
generation: generation,
requiresCredentials: requiresCredentials)
case .restart:
try await performRestart(
authorizationSnapshot: authorizationSnapshot,
flightID: flightID,
generation: generation)
}
finishLifecycleFlight(id: flightID, error: nil)
} catch {
finishLifecycleFlight(id: flightID, error: error)
throw error
}
}
private func performStart(
authorizationSnapshot: RuntimeOwnerAuthorizationSnapshot,
flightID: UUID,
generation: UInt64,
requiresCredentials: Bool
) async throws {
let ownerID = authorizationSnapshot.ownerID
let processWasAlive = await runtime.isAlive
try assertLifecycleFlightCurrent(
id: flightID,
generation: generation,
authorizationSnapshot: authorizationSnapshot)
let registeredThisCall = !registered || !processWasAlive
let hermeticFaultModelToken = AgentRuntimeCredentialPolicy.hermeticFaultModelToken(
isNonProduction: AppBuild.isNonProduction,
bundleIdentifier: AppBuild.bundleIdentifier)
let shouldFetchManagedToken = AgentRuntimeCredentialPolicy.requiresManagedCredentials(
requestedCredentials: requiresCredentials,
isNonProduction: AppBuild.isNonProduction,
hermeticFaultModelToken: hermeticFaultModelToken)
let requiresPiMonoCredentials = AgentRuntimeCredentialPolicy.shouldRequirePiMonoCredentials(
preferredAdapterIsPiMono: isPiMonoHarness,
requestedCredentials: requiresCredentials,
isNonProduction: AppBuild.isNonProduction,
hermeticFaultModelToken: hermeticFaultModelToken)
var acquiredRegistration = false
do {
if registeredThisCall {
try await runtime.registerClient(
clientId: clientId,
harnessMode: harnessMode,
authorizationSnapshot: authorizationSnapshot,
requiresCredentials: requiresCredentials)
acquiredRegistration = true
try assertLifecycleFlightCurrent(
id: flightID,
generation: generation,
authorizationSnapshot: authorizationSnapshot)
}
try await applyGlobalAuthHandlers(authorizationSnapshot: authorizationSnapshot)
try assertLifecycleFlightCurrent(
id: flightID,
generation: generation,
authorizationSnapshot: authorizationSnapshot)
let status = await runtime.runtimeOwnerAuthorityStatus()
try assertLifecycleFlightCurrent(
id: flightID,
generation: generation,
authorizationSnapshot: authorizationSnapshot)
let authorityNeedsSynchronization =
!status.isSynchronized(
ownerID: ownerID,
requiresCredentials: requiresPiMonoCredentials)
|| synchronizedRuntimeAuthorityEpoch != status.epoch
|| synchronizedRuntimeAuthorityOwnerID != ownerID
|| (shouldFetchManagedToken && status.credentialOwnerID != ownerID)
if authorityNeedsSynchronization {
await synchronizeRuntimeAuthority(
authorizationSnapshot: authorizationSnapshot,
requiresCredentials: shouldFetchManagedToken)
try assertLifecycleFlightCurrent(
id: flightID,
generation: generation,
authorizationSnapshot: authorizationSnapshot)
let synchronized = await runtime.runtimeOwnerAuthorityStatus()
try assertLifecycleFlightCurrent(
id: flightID,
generation: generation,
authorizationSnapshot: authorizationSnapshot)
guard
synchronized.isSynchronized(
ownerID: ownerID,
requiresCredentials: requiresPiMonoCredentials)
else {
throw BridgeError.authMissing
}
synchronizedRuntimeAuthorityEpoch = synchronized.epoch
synchronizedRuntimeAuthorityOwnerID = ownerID
}
if registeredThisCall || authorityNeedsSynchronization {
await migrateLegacyMainChatSessionsIfNeeded(
authorizationSnapshot: authorizationSnapshot)
try assertLifecycleFlightCurrent(
id: flightID,
generation: generation,
authorizationSnapshot: authorizationSnapshot)
}
registered = true
} catch {
if acquiredRegistration {
await runtime.unregisterClient(clientId: clientId)
}
throw error
}
}
func restart() async throws {
guard let authorizationSnapshot = RuntimeOwnerIdentity.captureAuthorizationSnapshot() else {
throw BridgeError.authMissing
}
try await runLifecycleOperation(
.restart,
authorizationSnapshot: authorizationSnapshot)
}
private func performRestart(
authorizationSnapshot: RuntimeOwnerAuthorizationSnapshot,
flightID: UUID,
generation: UInt64
) async throws {
let processIsAlive = await runtime.isAlive
try assertLifecycleFlightCurrent(
id: flightID,
generation: generation,
authorizationSnapshot: authorizationSnapshot)
guard registered, processIsAlive else {
try await performStart(
authorizationSnapshot: authorizationSnapshot,
flightID: flightID,
generation: generation,
requiresCredentials: true)
return
}
try await runtime.restart(
clientId: clientId,
harnessMode: harnessMode,
authorizationSnapshot: authorizationSnapshot)
try assertLifecycleFlightCurrent(
id: flightID,
generation: generation,
authorizationSnapshot: authorizationSnapshot)
synchronizedRuntimeAuthorityEpoch = nil
synchronizedRuntimeAuthorityOwnerID = nil
try await applyGlobalAuthHandlers(authorizationSnapshot: authorizationSnapshot)
try assertLifecycleFlightCurrent(
id: flightID,
generation: generation,
authorizationSnapshot: authorizationSnapshot)
let hermeticFaultModelToken = AgentRuntimeCredentialPolicy.hermeticFaultModelToken(
isNonProduction: AppBuild.isNonProduction,
bundleIdentifier: AppBuild.bundleIdentifier)
let shouldFetchManagedToken = AgentRuntimeCredentialPolicy.requiresManagedCredentials(
requestedCredentials: true,
isNonProduction: AppBuild.isNonProduction,
hermeticFaultModelToken: hermeticFaultModelToken)
let requiresPiMonoCredentials = AgentRuntimeCredentialPolicy.shouldRequirePiMonoCredentials(
preferredAdapterIsPiMono: isPiMonoHarness,
requestedCredentials: true,
isNonProduction: AppBuild.isNonProduction,
hermeticFaultModelToken: hermeticFaultModelToken)
await synchronizeRuntimeAuthority(
authorizationSnapshot: authorizationSnapshot,
requiresCredentials: shouldFetchManagedToken)
try assertLifecycleFlightCurrent(
id: flightID,
generation: generation,
authorizationSnapshot: authorizationSnapshot)
let ownerID = authorizationSnapshot.ownerID
let status = await runtime.runtimeOwnerAuthorityStatus()
try assertLifecycleFlightCurrent(
id: flightID,
generation: generation,
authorizationSnapshot: authorizationSnapshot)
guard
status.isSynchronized(
ownerID: ownerID,
requiresCredentials: requiresPiMonoCredentials)
else {
throw BridgeError.authMissing
}
synchronizedRuntimeAuthorityEpoch = status.epoch
synchronizedRuntimeAuthorityOwnerID = ownerID
await migrateLegacyMainChatSessionsIfNeeded(
authorizationSnapshot: authorizationSnapshot)
try assertLifecycleFlightCurrent(
id: flightID,
generation: generation,
authorizationSnapshot: authorizationSnapshot)
registered = true
}
private func assertLifecycleFlightCurrent(
id: UUID,
generation: UInt64,
authorizationSnapshot: RuntimeOwnerAuthorizationSnapshot
) throws {
try Task.checkCancellation()
guard lifecycleFlight?.id == id, lifecycleGeneration == generation, stopTask == nil else {
throw BridgeError.stopped
}
guard RuntimeOwnerIdentity.isAuthorizationCurrent(authorizationSnapshot) else {
throw BridgeError.authMissing
}
}
private func waitForLifecycleFlight(id: UUID) async throws {
try await withCheckedThrowingContinuation {
(continuation: CheckedContinuation<Void, Error>) in
guard var flight = lifecycleFlight, flight.id == id else {
continuation.resume(throwing: BridgeError.stopped)