@optimystic/db-p2p 0.13.5 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (342) hide show
  1. package/README.md +6 -6
  2. package/dist/src/cluster/block-transfer-service.d.ts +67 -8
  3. package/dist/src/cluster/block-transfer-service.d.ts.map +1 -1
  4. package/dist/src/cluster/block-transfer-service.js +101 -62
  5. package/dist/src/cluster/block-transfer-service.js.map +1 -1
  6. package/dist/src/cluster/client.d.ts +18 -1
  7. package/dist/src/cluster/client.d.ts.map +1 -1
  8. package/dist/src/cluster/client.js +55 -39
  9. package/dist/src/cluster/client.js.map +1 -1
  10. package/dist/src/cluster/cluster-error.d.ts +38 -0
  11. package/dist/src/cluster/cluster-error.d.ts.map +1 -0
  12. package/dist/src/cluster/cluster-error.js +51 -0
  13. package/dist/src/cluster/cluster-error.js.map +1 -0
  14. package/dist/src/cluster/cluster-repo.d.ts +135 -3
  15. package/dist/src/cluster/cluster-repo.d.ts.map +1 -1
  16. package/dist/src/cluster/cluster-repo.js +333 -58
  17. package/dist/src/cluster/cluster-repo.js.map +1 -1
  18. package/dist/src/cluster/commit-cert.d.ts +63 -0
  19. package/dist/src/cluster/commit-cert.d.ts.map +1 -0
  20. package/dist/src/cluster/commit-cert.js +108 -0
  21. package/dist/src/cluster/commit-cert.js.map +1 -0
  22. package/dist/src/cluster/service.d.ts +46 -11
  23. package/dist/src/cluster/service.d.ts.map +1 -1
  24. package/dist/src/cluster/service.js +97 -33
  25. package/dist/src/cluster/service.js.map +1 -1
  26. package/dist/src/cluster/spread-on-churn.d.ts +13 -0
  27. package/dist/src/cluster/spread-on-churn.d.ts.map +1 -1
  28. package/dist/src/cluster/spread-on-churn.js +34 -4
  29. package/dist/src/cluster/spread-on-churn.js.map +1 -1
  30. package/dist/src/cohort-topic/bootstrap-evidence-builder.d.ts +59 -0
  31. package/dist/src/cohort-topic/bootstrap-evidence-builder.d.ts.map +1 -0
  32. package/dist/src/cohort-topic/bootstrap-evidence-builder.js +79 -0
  33. package/dist/src/cohort-topic/bootstrap-evidence-builder.js.map +1 -0
  34. package/dist/src/cohort-topic/bootstrap-evidence-verifiers.d.ts +81 -0
  35. package/dist/src/cohort-topic/bootstrap-evidence-verifiers.d.ts.map +1 -0
  36. package/dist/src/cohort-topic/bootstrap-evidence-verifiers.js +93 -0
  37. package/dist/src/cohort-topic/bootstrap-evidence-verifiers.js.map +1 -0
  38. package/dist/src/cohort-topic/bootstrap-parent-reference.d.ts +108 -0
  39. package/dist/src/cohort-topic/bootstrap-parent-reference.d.ts.map +1 -0
  40. package/dist/src/cohort-topic/bootstrap-parent-reference.js +108 -0
  41. package/dist/src/cohort-topic/bootstrap-parent-reference.js.map +1 -0
  42. package/dist/src/cohort-topic/change-bridge.d.ts +65 -0
  43. package/dist/src/cohort-topic/change-bridge.d.ts.map +1 -0
  44. package/dist/src/cohort-topic/change-bridge.js +76 -0
  45. package/dist/src/cohort-topic/change-bridge.js.map +1 -0
  46. package/dist/src/cohort-topic/cohort-gossip-driver.d.ts +74 -0
  47. package/dist/src/cohort-topic/cohort-gossip-driver.d.ts.map +1 -0
  48. package/dist/src/cohort-topic/cohort-gossip-driver.js +87 -0
  49. package/dist/src/cohort-topic/cohort-gossip-driver.js.map +1 -0
  50. package/dist/src/cohort-topic/cohort-gossip-transport.d.ts +42 -0
  51. package/dist/src/cohort-topic/cohort-gossip-transport.d.ts.map +1 -0
  52. package/dist/src/cohort-topic/cohort-gossip-transport.js +57 -0
  53. package/dist/src/cohort-topic/cohort-gossip-transport.js.map +1 -0
  54. package/dist/src/cohort-topic/fret-trust-anchor.d.ts +100 -0
  55. package/dist/src/cohort-topic/fret-trust-anchor.d.ts.map +1 -0
  56. package/dist/src/cohort-topic/fret-trust-anchor.js +115 -0
  57. package/dist/src/cohort-topic/fret-trust-anchor.js.map +1 -0
  58. package/dist/src/cohort-topic/host.d.ts +573 -0
  59. package/dist/src/cohort-topic/host.d.ts.map +1 -0
  60. package/dist/src/cohort-topic/host.js +1460 -0
  61. package/dist/src/cohort-topic/host.js.map +1 -0
  62. package/dist/src/cohort-topic/index.d.ts +14 -0
  63. package/dist/src/cohort-topic/index.d.ts.map +1 -0
  64. package/dist/src/cohort-topic/index.js +14 -0
  65. package/dist/src/cohort-topic/index.js.map +1 -0
  66. package/dist/src/cohort-topic/membership-publish-sink.d.ts +14 -0
  67. package/dist/src/cohort-topic/membership-publish-sink.d.ts.map +1 -0
  68. package/dist/src/cohort-topic/membership-publish-sink.js +17 -0
  69. package/dist/src/cohort-topic/membership-publish-sink.js.map +1 -0
  70. package/dist/src/cohort-topic/membership-source.d.ts +36 -0
  71. package/dist/src/cohort-topic/membership-source.d.ts.map +1 -0
  72. package/dist/src/cohort-topic/membership-source.js +58 -0
  73. package/dist/src/cohort-topic/membership-source.js.map +1 -0
  74. package/dist/src/cohort-topic/peer-codec.d.ts +18 -0
  75. package/dist/src/cohort-topic/peer-codec.d.ts.map +1 -0
  76. package/dist/src/cohort-topic/peer-codec.js +26 -0
  77. package/dist/src/cohort-topic/peer-codec.js.map +1 -0
  78. package/dist/src/cohort-topic/peer-sig.d.ts +52 -0
  79. package/dist/src/cohort-topic/peer-sig.d.ts.map +1 -0
  80. package/dist/src/cohort-topic/peer-sig.js +83 -0
  81. package/dist/src/cohort-topic/peer-sig.js.map +1 -0
  82. package/dist/src/cohort-topic/protocols.d.ts +49 -0
  83. package/dist/src/cohort-topic/protocols.d.ts.map +1 -0
  84. package/dist/src/cohort-topic/protocols.js +58 -0
  85. package/dist/src/cohort-topic/protocols.js.map +1 -0
  86. package/dist/src/cohort-topic/reactivity-membership-gate.d.ts +49 -0
  87. package/dist/src/cohort-topic/reactivity-membership-gate.d.ts.map +1 -0
  88. package/dist/src/cohort-topic/reactivity-membership-gate.js +42 -0
  89. package/dist/src/cohort-topic/reactivity-membership-gate.js.map +1 -0
  90. package/dist/src/cohort-topic/size-estimator.d.ts +16 -0
  91. package/dist/src/cohort-topic/size-estimator.d.ts.map +1 -0
  92. package/dist/src/cohort-topic/size-estimator.js +16 -0
  93. package/dist/src/cohort-topic/size-estimator.js.map +1 -0
  94. package/dist/src/cohort-topic/stream-util.d.ts +19 -0
  95. package/dist/src/cohort-topic/stream-util.d.ts.map +1 -0
  96. package/dist/src/cohort-topic/stream-util.js +76 -0
  97. package/dist/src/cohort-topic/stream-util.js.map +1 -0
  98. package/dist/src/cohort-topic/threshold-crypto.d.ts +94 -0
  99. package/dist/src/cohort-topic/threshold-crypto.d.ts.map +1 -0
  100. package/dist/src/cohort-topic/threshold-crypto.js +178 -0
  101. package/dist/src/cohort-topic/threshold-crypto.js.map +1 -0
  102. package/dist/src/cohort-topic/topic-router.d.ts +41 -0
  103. package/dist/src/cohort-topic/topic-router.d.ts.map +1 -0
  104. package/dist/src/cohort-topic/topic-router.js +63 -0
  105. package/dist/src/cohort-topic/topic-router.js.map +1 -0
  106. package/dist/src/dispute/cascade.d.ts +179 -0
  107. package/dist/src/dispute/cascade.d.ts.map +1 -0
  108. package/dist/src/dispute/cascade.js +315 -0
  109. package/dist/src/dispute/cascade.js.map +1 -0
  110. package/dist/src/dispute/client.d.ts +2 -1
  111. package/dist/src/dispute/client.d.ts.map +1 -1
  112. package/dist/src/dispute/client.js +12 -3
  113. package/dist/src/dispute/client.js.map +1 -1
  114. package/dist/src/dispute/dispute-service.d.ts +41 -1
  115. package/dist/src/dispute/dispute-service.d.ts.map +1 -1
  116. package/dist/src/dispute/dispute-service.js +147 -21
  117. package/dist/src/dispute/dispute-service.js.map +1 -1
  118. package/dist/src/dispute/index.d.ts +2 -0
  119. package/dist/src/dispute/index.d.ts.map +1 -1
  120. package/dist/src/dispute/index.js +2 -0
  121. package/dist/src/dispute/index.js.map +1 -1
  122. package/dist/src/dispute/invalidation.d.ts +266 -0
  123. package/dist/src/dispute/invalidation.d.ts.map +1 -0
  124. package/dist/src/dispute/invalidation.js +405 -0
  125. package/dist/src/dispute/invalidation.js.map +1 -0
  126. package/dist/src/dispute/types.d.ts +14 -0
  127. package/dist/src/dispute/types.d.ts.map +1 -1
  128. package/dist/src/dispute/types.js.map +1 -1
  129. package/dist/src/index.d.ts +4 -0
  130. package/dist/src/index.d.ts.map +1 -1
  131. package/dist/src/index.js +4 -0
  132. package/dist/src/index.js.map +1 -1
  133. package/dist/src/libp2p-key-network.d.ts +7 -0
  134. package/dist/src/libp2p-key-network.d.ts.map +1 -1
  135. package/dist/src/libp2p-key-network.js +49 -5
  136. package/dist/src/libp2p-key-network.js.map +1 -1
  137. package/dist/src/libp2p-node-base.d.ts +45 -3
  138. package/dist/src/libp2p-node-base.d.ts.map +1 -1
  139. package/dist/src/libp2p-node-base.js +522 -5
  140. package/dist/src/libp2p-node-base.js.map +1 -1
  141. package/dist/src/matchmaking/aggregate-counts.d.ts +67 -0
  142. package/dist/src/matchmaking/aggregate-counts.d.ts.map +1 -0
  143. package/dist/src/matchmaking/aggregate-counts.js +60 -0
  144. package/dist/src/matchmaking/aggregate-counts.js.map +1 -0
  145. package/dist/src/matchmaking/index.d.ts +20 -0
  146. package/dist/src/matchmaking/index.d.ts.map +1 -0
  147. package/dist/src/matchmaking/index.js +20 -0
  148. package/dist/src/matchmaking/index.js.map +1 -0
  149. package/dist/src/matchmaking/module.d.ts +181 -0
  150. package/dist/src/matchmaking/module.d.ts.map +1 -0
  151. package/dist/src/matchmaking/module.js +221 -0
  152. package/dist/src/matchmaking/module.js.map +1 -0
  153. package/dist/src/matchmaking/protocols.d.ts +37 -0
  154. package/dist/src/matchmaking/protocols.d.ts.map +1 -0
  155. package/dist/src/matchmaking/protocols.js +42 -0
  156. package/dist/src/matchmaking/protocols.js.map +1 -0
  157. package/dist/src/matchmaking/provider-manager.d.ts +52 -0
  158. package/dist/src/matchmaking/provider-manager.d.ts.map +1 -0
  159. package/dist/src/matchmaking/provider-manager.js +74 -0
  160. package/dist/src/matchmaking/provider-manager.js.map +1 -0
  161. package/dist/src/matchmaking/query-handler.d.ts +34 -0
  162. package/dist/src/matchmaking/query-handler.d.ts.map +1 -0
  163. package/dist/src/matchmaking/query-handler.js +62 -0
  164. package/dist/src/matchmaking/query-handler.js.map +1 -0
  165. package/dist/src/matchmaking/query-transport.d.ts +180 -0
  166. package/dist/src/matchmaking/query-transport.d.ts.map +1 -0
  167. package/dist/src/matchmaking/query-transport.js +315 -0
  168. package/dist/src/matchmaking/query-transport.js.map +1 -0
  169. package/dist/src/matchmaking/seeker-manager.d.ts +39 -0
  170. package/dist/src/matchmaking/seeker-manager.d.ts.map +1 -0
  171. package/dist/src/matchmaking/seeker-manager.js +49 -0
  172. package/dist/src/matchmaking/seeker-manager.js.map +1 -0
  173. package/dist/src/matchmaking/seeker-walk-client.d.ts +127 -0
  174. package/dist/src/matchmaking/seeker-walk-client.d.ts.map +1 -0
  175. package/dist/src/matchmaking/seeker-walk-client.js +189 -0
  176. package/dist/src/matchmaking/seeker-walk-client.js.map +1 -0
  177. package/dist/src/matchmaking/traffic-validation.d.ts +128 -0
  178. package/dist/src/matchmaking/traffic-validation.d.ts.map +1 -0
  179. package/dist/src/matchmaking/traffic-validation.js +105 -0
  180. package/dist/src/matchmaking/traffic-validation.js.map +1 -0
  181. package/dist/src/network/network-manager-service.d.ts +4 -2
  182. package/dist/src/network/network-manager-service.d.ts.map +1 -1
  183. package/dist/src/network/network-manager-service.js +9 -3
  184. package/dist/src/network/network-manager-service.js.map +1 -1
  185. package/dist/src/protocol-client.d.ts +13 -0
  186. package/dist/src/protocol-client.d.ts.map +1 -1
  187. package/dist/src/protocol-client.js +74 -2
  188. package/dist/src/protocol-client.js.map +1 -1
  189. package/dist/src/reactivity/forwarder-host.d.ts +198 -0
  190. package/dist/src/reactivity/forwarder-host.d.ts.map +1 -0
  191. package/dist/src/reactivity/forwarder-host.js +355 -0
  192. package/dist/src/reactivity/forwarder-host.js.map +1 -0
  193. package/dist/src/reactivity/index.d.ts +19 -0
  194. package/dist/src/reactivity/index.d.ts.map +1 -0
  195. package/dist/src/reactivity/index.js +19 -0
  196. package/dist/src/reactivity/index.js.map +1 -0
  197. package/dist/src/reactivity/notify-transport.d.ts +70 -0
  198. package/dist/src/reactivity/notify-transport.d.ts.map +1 -0
  199. package/dist/src/reactivity/notify-transport.js +111 -0
  200. package/dist/src/reactivity/notify-transport.js.map +1 -0
  201. package/dist/src/reactivity/origination-manager.d.ts +110 -0
  202. package/dist/src/reactivity/origination-manager.d.ts.map +1 -0
  203. package/dist/src/reactivity/origination-manager.js +129 -0
  204. package/dist/src/reactivity/origination-manager.js.map +1 -0
  205. package/dist/src/reactivity/protocols.d.ts +43 -0
  206. package/dist/src/reactivity/protocols.d.ts.map +1 -0
  207. package/dist/src/reactivity/protocols.js +50 -0
  208. package/dist/src/reactivity/protocols.js.map +1 -0
  209. package/dist/src/reactivity/push-state-gossip.d.ts +132 -0
  210. package/dist/src/reactivity/push-state-gossip.d.ts.map +1 -0
  211. package/dist/src/reactivity/push-state-gossip.js +231 -0
  212. package/dist/src/reactivity/push-state-gossip.js.map +1 -0
  213. package/dist/src/reactivity/recover-transport.d.ts +167 -0
  214. package/dist/src/reactivity/recover-transport.d.ts.map +1 -0
  215. package/dist/src/reactivity/recover-transport.js +308 -0
  216. package/dist/src/reactivity/recover-transport.js.map +1 -0
  217. package/dist/src/reactivity/rotation-rereg-scheduler.d.ts +142 -0
  218. package/dist/src/reactivity/rotation-rereg-scheduler.d.ts.map +1 -0
  219. package/dist/src/reactivity/rotation-rereg-scheduler.js +223 -0
  220. package/dist/src/reactivity/rotation-rereg-scheduler.js.map +1 -0
  221. package/dist/src/reactivity/subscriber-registry.d.ts +47 -0
  222. package/dist/src/reactivity/subscriber-registry.d.ts.map +1 -0
  223. package/dist/src/reactivity/subscriber-registry.js +87 -0
  224. package/dist/src/reactivity/subscriber-registry.js.map +1 -0
  225. package/dist/src/reactivity/subscription-manager.d.ts +221 -0
  226. package/dist/src/reactivity/subscription-manager.d.ts.map +1 -0
  227. package/dist/src/reactivity/subscription-manager.js +302 -0
  228. package/dist/src/reactivity/subscription-manager.js.map +1 -0
  229. package/dist/src/reactivity/topic-bytes.d.ts +32 -0
  230. package/dist/src/reactivity/topic-bytes.d.ts.map +1 -0
  231. package/dist/src/reactivity/topic-bytes.js +34 -0
  232. package/dist/src/reactivity/topic-bytes.js.map +1 -0
  233. package/dist/src/repo/client.d.ts.map +1 -1
  234. package/dist/src/repo/client.js +51 -23
  235. package/dist/src/repo/client.js.map +1 -1
  236. package/dist/src/repo/service.d.ts +46 -1
  237. package/dist/src/repo/service.d.ts.map +1 -1
  238. package/dist/src/repo/service.js +79 -45
  239. package/dist/src/repo/service.js.map +1 -1
  240. package/dist/src/rpc-deadline.d.ts +37 -0
  241. package/dist/src/rpc-deadline.d.ts.map +1 -0
  242. package/dist/src/rpc-deadline.js +31 -0
  243. package/dist/src/rpc-deadline.js.map +1 -0
  244. package/dist/src/storage/block-storage.d.ts +2 -0
  245. package/dist/src/storage/block-storage.d.ts.map +1 -1
  246. package/dist/src/storage/block-storage.js +95 -2
  247. package/dist/src/storage/block-storage.js.map +1 -1
  248. package/dist/src/storage/i-block-storage.d.ts +25 -0
  249. package/dist/src/storage/i-block-storage.d.ts.map +1 -1
  250. package/dist/src/storage/storage-repo.d.ts +53 -2
  251. package/dist/src/storage/storage-repo.d.ts.map +1 -1
  252. package/dist/src/storage/storage-repo.js +193 -9
  253. package/dist/src/storage/storage-repo.js.map +1 -1
  254. package/dist/src/sync/client.d.ts +4 -1
  255. package/dist/src/sync/client.d.ts.map +1 -1
  256. package/dist/src/sync/client.js +5 -2
  257. package/dist/src/sync/client.js.map +1 -1
  258. package/dist/src/testing/cohort-topic-mesh-harness.d.ts +219 -0
  259. package/dist/src/testing/cohort-topic-mesh-harness.d.ts.map +1 -0
  260. package/dist/src/testing/cohort-topic-mesh-harness.js +467 -0
  261. package/dist/src/testing/cohort-topic-mesh-harness.js.map +1 -0
  262. package/dist/src/testing/matchmaking-mesh-harness.d.ts +187 -0
  263. package/dist/src/testing/matchmaking-mesh-harness.d.ts.map +1 -0
  264. package/dist/src/testing/matchmaking-mesh-harness.js +358 -0
  265. package/dist/src/testing/matchmaking-mesh-harness.js.map +1 -0
  266. package/dist/src/testing/mesh-harness.d.ts.map +1 -1
  267. package/dist/src/testing/mesh-harness.js +23 -1
  268. package/dist/src/testing/mesh-harness.js.map +1 -1
  269. package/dist/src/testing/reactivity-mesh-harness.d.ts +298 -0
  270. package/dist/src/testing/reactivity-mesh-harness.d.ts.map +1 -0
  271. package/dist/src/testing/reactivity-mesh-harness.js +663 -0
  272. package/dist/src/testing/reactivity-mesh-harness.js.map +1 -0
  273. package/package.json +7 -4
  274. package/src/cluster/block-transfer-service.ts +133 -68
  275. package/src/cluster/client.ts +64 -45
  276. package/src/cluster/cluster-error.ts +64 -0
  277. package/src/cluster/cluster-repo.ts +405 -55
  278. package/src/cluster/commit-cert.ts +139 -0
  279. package/src/cluster/service.ts +116 -44
  280. package/src/cluster/spread-on-churn.ts +328 -285
  281. package/src/cohort-topic/bootstrap-evidence-builder.ts +122 -0
  282. package/src/cohort-topic/bootstrap-evidence-verifiers.ts +132 -0
  283. package/src/cohort-topic/bootstrap-parent-reference.ts +159 -0
  284. package/src/cohort-topic/change-bridge.ts +109 -0
  285. package/src/cohort-topic/cohort-gossip-driver.ts +144 -0
  286. package/src/cohort-topic/cohort-gossip-transport.ts +74 -0
  287. package/src/cohort-topic/fret-trust-anchor.ts +153 -0
  288. package/src/cohort-topic/host.ts +2175 -0
  289. package/src/cohort-topic/index.ts +13 -0
  290. package/src/cohort-topic/membership-publish-sink.ts +20 -0
  291. package/src/cohort-topic/membership-source.ts +68 -0
  292. package/src/cohort-topic/peer-codec.ts +31 -0
  293. package/src/cohort-topic/peer-sig.ts +86 -0
  294. package/src/cohort-topic/protocols.ts +71 -0
  295. package/src/cohort-topic/reactivity-membership-gate.ts +77 -0
  296. package/src/cohort-topic/size-estimator.ts +16 -0
  297. package/src/cohort-topic/stream-util.ts +87 -0
  298. package/src/cohort-topic/threshold-crypto.ts +239 -0
  299. package/src/cohort-topic/topic-router.ts +77 -0
  300. package/src/dispute/cascade.ts +517 -0
  301. package/src/dispute/client.ts +12 -2
  302. package/src/dispute/dispute-service.ts +171 -24
  303. package/src/dispute/index.ts +42 -0
  304. package/src/dispute/invalidation.ts +587 -0
  305. package/src/dispute/types.ts +14 -0
  306. package/src/index.ts +4 -0
  307. package/src/libp2p-key-network.ts +49 -6
  308. package/src/libp2p-node-base.ts +620 -12
  309. package/src/matchmaking/aggregate-counts.ts +104 -0
  310. package/src/matchmaking/index.ts +20 -0
  311. package/src/matchmaking/module.ts +363 -0
  312. package/src/matchmaking/protocols.ts +51 -0
  313. package/src/matchmaking/provider-manager.ts +95 -0
  314. package/src/matchmaking/query-handler.ts +88 -0
  315. package/src/matchmaking/query-transport.ts +483 -0
  316. package/src/matchmaking/seeker-manager.ts +64 -0
  317. package/src/matchmaking/seeker-walk-client.ts +293 -0
  318. package/src/matchmaking/traffic-validation.ts +195 -0
  319. package/src/network/network-manager-service.ts +9 -2
  320. package/src/protocol-client.ts +64 -3
  321. package/src/reactivity/forwarder-host.ts +438 -0
  322. package/src/reactivity/index.ts +19 -0
  323. package/src/reactivity/notify-transport.ts +144 -0
  324. package/src/reactivity/origination-manager.ts +192 -0
  325. package/src/reactivity/protocols.ts +61 -0
  326. package/src/reactivity/push-state-gossip.ts +291 -0
  327. package/src/reactivity/recover-transport.ts +408 -0
  328. package/src/reactivity/rotation-rereg-scheduler.ts +256 -0
  329. package/src/reactivity/subscriber-registry.ts +96 -0
  330. package/src/reactivity/subscription-manager.ts +450 -0
  331. package/src/reactivity/topic-bytes.ts +37 -0
  332. package/src/repo/client.ts +54 -23
  333. package/src/repo/service.ts +90 -42
  334. package/src/rpc-deadline.ts +45 -0
  335. package/src/storage/block-storage.ts +106 -3
  336. package/src/storage/i-block-storage.ts +27 -0
  337. package/src/storage/storage-repo.ts +209 -13
  338. package/src/sync/client.ts +5 -2
  339. package/src/testing/cohort-topic-mesh-harness.ts +613 -0
  340. package/src/testing/matchmaking-mesh-harness.ts +475 -0
  341. package/src/testing/mesh-harness.ts +22 -2
  342. package/src/testing/reactivity-mesh-harness.ts +922 -0
@@ -0,0 +1,96 @@
1
+ /**
2
+ * Reactivity — node-level subscriber registry (the socket-delivery → subscription-manager seam).
3
+ *
4
+ * A {@link import("./subscription-manager.js").ReactivitySubscriptionManager} owns the verify/dedupe/deliver
5
+ * path for one subscription but is transport-agnostic: it exposes `onNotification(n)` and never touches a
6
+ * socket. This registry is the routing table that connects a socket-delivered {@link NotificationV1} to the
7
+ * right manager(s): the forwarder host's `deliverLocal(topicId, n)` looks topic up here and invokes every
8
+ * manager registered for it, and a constructed manager registers its `onNotification` keyed by the reactivity
9
+ * `topicId` it subscribed under.
10
+ *
11
+ * Keyed by topicId-base64url. A manager subscribes under `topicId = reactivityTopicId(reactivityTailBytes(
12
+ * tailId))` (the same anchor origination derives), so a notification's topic — derived by the forwarder host
13
+ * from the notification's tail anchor — routes to exactly the managers watching that tail's collection.
14
+ *
15
+ * **Scope.** This delivers socket-routed notifications into a manager that was *already constructed* and
16
+ * registered. Constructing the manager from a Quereus `Database.watch` (the application bridge) stays the
17
+ * backlog item `optimystic-network-reactive-watch-integration-test`; this registry is the plug it will use.
18
+ */
19
+
20
+ import { bytesToB64url, type NotificationV1 } from "@optimystic/db-core";
21
+ import { createLogger } from "../logger.js";
22
+
23
+ const log = createLogger("reactivity-subscribers");
24
+
25
+ /** A subscriber's inbound seam — a manager's `onNotification` (which returns a delivery outcome promise). */
26
+ export type ReactivityNotificationHandler = (n: NotificationV1) => void | Promise<unknown>;
27
+
28
+ /**
29
+ * The node's `topicId → subscriber handlers` table. Exposed on the node as `reactivitySubscribers` so a
30
+ * subscribe factory can register a {@link import("./subscription-manager.js").ReactivitySubscriptionManager}
31
+ * and have socket-delivered notifications routed to it.
32
+ */
33
+ export class ReactivitySubscriberRegistry {
34
+ private readonly byTopic = new Map<string, Set<ReactivityNotificationHandler>>();
35
+
36
+ /**
37
+ * Register `onNotification` to receive every notification the node delivers for `topicId`. Multiple
38
+ * managers may register for one topic (each gets every notification). Returns an idempotent unregister.
39
+ */
40
+ register(topicId: Uint8Array, onNotification: ReactivityNotificationHandler): () => void {
41
+ const key = bytesToB64url(topicId);
42
+ let handlers = this.byTopic.get(key);
43
+ if (handlers === undefined) {
44
+ handlers = new Set();
45
+ this.byTopic.set(key, handlers);
46
+ }
47
+ handlers.add(onNotification);
48
+ return (): void => this.unregister(topicId, onNotification);
49
+ }
50
+
51
+ /** Drop a previously-registered handler; idempotent (a no-op if it was never registered / already gone). */
52
+ unregister(topicId: Uint8Array, onNotification: ReactivityNotificationHandler): void {
53
+ const key = bytesToB64url(topicId);
54
+ const handlers = this.byTopic.get(key);
55
+ if (handlers === undefined) {
56
+ return;
57
+ }
58
+ handlers.delete(onNotification);
59
+ if (handlers.size === 0) {
60
+ this.byTopic.delete(key);
61
+ }
62
+ }
63
+
64
+ /**
65
+ * Deliver `n` to every handler registered for `topicId` (the forwarder host's `deliverLocal` seam). Each
66
+ * handler is isolated: a synchronous throw or a rejected delivery promise is logged, never propagated —
67
+ * one faulty subscriber must not break delivery to the rest or the fan-out loop that called this.
68
+ */
69
+ deliver(topicId: Uint8Array, n: NotificationV1): void {
70
+ const handlers = this.byTopic.get(bytesToB64url(topicId));
71
+ if (handlers === undefined) {
72
+ return;
73
+ }
74
+ // Snapshot: a handler that unregisters itself on delivery would otherwise mutate the live set.
75
+ for (const handler of [...handlers]) {
76
+ try {
77
+ const result = handler(n);
78
+ if (result instanceof Promise) {
79
+ result.catch((err: unknown) => log("subscriber delivery rejected (isolated) for rev=%d: %o", n.revision, err));
80
+ }
81
+ } catch (err) {
82
+ log("subscriber handler threw (isolated) for rev=%d: %o", n.revision, err);
83
+ }
84
+ }
85
+ }
86
+
87
+ /** Number of topics with at least one registered subscriber (diagnostic / test). */
88
+ get topicCount(): number {
89
+ return this.byTopic.size;
90
+ }
91
+
92
+ /** Whether any subscriber is registered for `topicId` (diagnostic / test). */
93
+ has(topicId: Uint8Array): boolean {
94
+ return this.byTopic.has(bytesToB64url(topicId));
95
+ }
96
+ }
@@ -0,0 +1,450 @@
1
+ /**
2
+ * Reactivity — subscription manager (db-p2p, wires to the cohort-topic substrate).
3
+ *
4
+ * Drives a subscriber's lifecycle against the participant-facing {@link CohortTopicService}: register at
5
+ * cohort-topic tier **T3 (luxury)** with the reactivity `appPayload`, renew to keep the registration
6
+ * alive within its TTL (Edge 60 s / Core 90 s), and withdraw by ceasing renewal — all the cohort-topic
7
+ * standard (`docs/reactivity.md` §Subscription). The reactivity-specific shape lives in db-core: the
8
+ * tail-anchored `topicId = H(tailId ‖ "reactivity")`, the {@link SubscribeAppPayloadV1}, and the
9
+ * subscriber-side verify/deliver path ({@link ReactivitySubscriber}).
10
+ *
11
+ * Inbound notifications are handed to {@link ReactivitySubscriptionManager.onNotification}, which runs
12
+ * the db-core delivery path (verify against the cached tail-cohort `MembershipCertV1` with one
13
+ * fetch-and-retry, revision-contiguity, gap → backfill seam, `(collectionId, revision)` dedupe, surface).
14
+ * The notification transport (the reactivity application protocol that delivers `NotificationV1` frames
15
+ * to a subscriber's primary) is the sibling tickets' concern; this manager owns attach + delivery logic.
16
+ */
17
+
18
+ import {
19
+ Tier,
20
+ reactivityTopicId,
21
+ subscribeAppPayloadBytes,
22
+ subscriberTtlForProfile,
23
+ deltaMaxForProfile,
24
+ createNotificationVerifier,
25
+ createReactivitySubscriber,
26
+ createBackfillRequester,
27
+ createStickyCohortHintCache,
28
+ createRejoinJitter,
29
+ applyResumeReply,
30
+ detectRotation,
31
+ planReRegistration,
32
+ bytesToB64url,
33
+ type CohortTopicService,
34
+ type NodeProfile,
35
+ type NotificationV1,
36
+ type DeliveryOutcome,
37
+ type ReactivitySubscriber,
38
+ type NotificationVerifier,
39
+ type RegistrationHandle,
40
+ type BackfillV1,
41
+ type BackfillReplyV1,
42
+ type BackfillTransport,
43
+ type ResumeV1,
44
+ type ResumeReplyV1,
45
+ type ResumeApplyOutcome,
46
+ type StickyCohortHintCache,
47
+ type CheckpointSummary,
48
+ type RejoinJitter,
49
+ type ReRegistrationPlan,
50
+ } from "@optimystic/db-core";
51
+ import { RotationRedirectError } from "./recover-transport.js";
52
+ import { createLogger } from "../logger.js";
53
+
54
+ const log = createLogger("reactivity-subscription");
55
+
56
+ /** Sends a {@link ResumeV1} to the serving cohort and awaits its classified {@link ResumeReplyV1}. */
57
+ export type ResumeTransport = (req: ResumeV1) => Promise<ResumeReplyV1>;
58
+
59
+ /**
60
+ * A detected tail rotation surfaced to the host so it can schedule the jittered re-registration timer
61
+ * (`docs/reactivity.md` §Tail rotation). The manager has already invalidated the sticky cohort-hint cache
62
+ * (the cached primary is under the old tree).
63
+ */
64
+ export interface RotationNotice {
65
+ /** The new tail block id the topic rotated to, base64url. */
66
+ readonly newTailId: string;
67
+ /** True iff this was a pre-announce (`rotationHint` on a still-current-tail notification). */
68
+ readonly preAnnounced: boolean;
69
+ /** The jittered re-registration plan (new topicId + `fireAt` + carried `lastRevision`) for the host to schedule. */
70
+ readonly plan: ReRegistrationPlan;
71
+ }
72
+
73
+ /** Construction inputs for a {@link ReactivitySubscriptionManager}. */
74
+ export interface ReactivitySubscriptionManagerOptions {
75
+ /** Participant-facing cohort-topic substrate API. */
76
+ readonly service: CohortTopicService;
77
+ /** Stable collection identity (the collection's id block id, raw bytes). */
78
+ readonly collectionId: Uint8Array;
79
+ /**
80
+ * Tail block id at attach time (raw bytes); anchors the rotating topic (`reactivityTopicId` is applied to
81
+ * it) and detects rotation.
82
+ *
83
+ * **Load-bearing encoding contract.** When a production subscribe factory converts a `BlockId` tail to
84
+ * these bytes it MUST use `reactivityTailBytes(tailId)` (`reactivity/topic-bytes.ts`) — the SAME function
85
+ * origination's membership gate uses — NOT db-core's `blockIdToBytes` (which `sha256`s first → a double
86
+ * hash). Origination derives the topic's `coord_0` cohort from `reactivityTopicId(reactivityTailBytes(
87
+ * tailId))`; if this side feeds differently-encoded bytes it subscribes to a *different* coord and
88
+ * origination silently never reaches it (the `topic-bytes-encoding` spec pins the coord-equality).
89
+ */
90
+ readonly tailIdAtAttach: Uint8Array;
91
+ /** Surface a verified, contiguous notification to the application. */
92
+ readonly deliver: (n: NotificationV1) => void;
93
+ /**
94
+ * Explicit backfill seam — used only when {@link backfillTransport} is **not** supplied. When a
95
+ * transport is given, the manager builds the db-core {@link createBackfillRequester} driver instead and
96
+ * this is ignored.
97
+ */
98
+ readonly requestBackfill?: (from: number, to: number) => void;
99
+ /**
100
+ * Backfill RPC transport (the reactivity application protocol dialing the serving cohort). When
101
+ * supplied, the manager wires the subscriber's gap-detection seam to the {@link BackfillV1} RPC,
102
+ * replaying the reply through the delivery path. Requires {@link signBackfill}.
103
+ */
104
+ readonly backfillTransport?: BackfillTransport;
105
+ /** Sign a {@link BackfillV1} over its unsigned image (subscriber peer key); base64url. */
106
+ readonly signBackfill?: (req: Omit<BackfillV1, "signature">) => string;
107
+ /** Resume RPC transport (mobile wake). When supplied, {@link resume} is available. Requires {@link signResume}. */
108
+ readonly resumeTransport?: ResumeTransport;
109
+ /** Sign a {@link ResumeV1} over its unsigned image (subscriber peer key); base64url. */
110
+ readonly signResume?: (req: Omit<ResumeV1, "signature">) => string;
111
+ /**
112
+ * The subscriber's **real ring coordinate**, base64url (the `participantCoord` it registers under at the
113
+ * cohort-topic tier), carried in the signed {@link ResumeV1}. The recover transport replies on the same
114
+ * stream, so this is not used for reply routing today; still, the production factory should source it
115
+ * correctly so the signed field is meaningful and a future out-of-band reply path is unblocked. Absent ⇒
116
+ * the manager falls back to the collection id as a placeholder and logs (the signed field is then merely
117
+ * a stable per-collection token, not the ring coord).
118
+ */
119
+ readonly subscriberCoord?: string;
120
+ /**
121
+ * Application-level re-attempts the backfill escalation makes after a **transport failure** before giving
122
+ * up to a resume/chain-read (the sticky-hint dial + one cohort-walk fallback already live in the
123
+ * transport, so this is a small outer retry). Default `1`. Distinct from the `available`-window underflow
124
+ * path ({@link onBackfillUnderflow}), which escalates immediately without retrying.
125
+ */
126
+ readonly backfillMaxRetries?: number;
127
+ /** Apply a verified checkpoint's merged digest on a `checkpoint_window` resume. */
128
+ readonly onCheckpointDigest?: (summary: CheckpointSummary) => void;
129
+ /** Chain-read + fresh subscribe fallback (out_of_window, or an untrusted checkpoint). */
130
+ readonly onChainRead?: (currentTailId: string | undefined, currentRevision: number | undefined) => void;
131
+ /** Re-register under the rotated tail (tail_rotated); also invalidates the sticky cohort-hint cache. */
132
+ readonly onTailRotated?: (newTailId: string, newRevisionAtRotation: number) => void;
133
+ /** Escalation when a backfill's `available` window fell past the gap's low edge (escalate to resume/chain). */
134
+ readonly onBackfillUnderflow?: (requested: { from: number; to: number }, available: { fromRevision: number; toRevision: number }) => void;
135
+ /** Sticky cohort-hint cache for one-RT resume after a flap; defaults to a fresh per-manager cache (Edge). */
136
+ readonly cohortHintCache?: StickyCohortHintCache;
137
+ /**
138
+ * Tail-rotation observer (`docs/reactivity.md` §Tail rotation). Fired once per successor tail when an
139
+ * inbound notification reveals a rotation (delivered `tailId` differs, or a `rotationHint` pre-announce):
140
+ * the manager invalidates the sticky cohort-hint cache and hands the host a jittered re-registration plan
141
+ * to schedule. Absent ⇒ rotation is detected and the cache invalidated, but no plan is surfaced.
142
+ */
143
+ readonly onRotation?: (notice: RotationNotice) => void;
144
+ /** Re-registration jitter for the rotation plan's `fireAt`; defaults to the `T_rejoin_jitter` curve. */
145
+ readonly rejoinJitter?: RejoinJitter;
146
+ /** Unix-ms clock for resume timestamps (injected for deterministic tests). Default `Date.now`. */
147
+ readonly clock?: () => number;
148
+ /** Last revision already held; `0` (default) for a fresh subscribe. */
149
+ readonly lastKnownRev?: number;
150
+ /** Max delta bytes accepted; defaults to `0` on Edge, `delta_max` on Core via {@link profile}. */
151
+ readonly deltaMaxBytes?: number;
152
+ /** Subscription TTL (ms). Default: derived from {@link profile} (Core 90 s / Edge 60 s). */
153
+ readonly ttlMs?: number;
154
+ /** Node profile used to derive the TTL / delta budget when not given explicitly. */
155
+ readonly profile?: NodeProfile;
156
+ }
157
+
158
+ /** Wires one reactivity subscription to the cohort-topic substrate at tier T3. */
159
+ export class ReactivitySubscriptionManager {
160
+ private readonly service: CohortTopicService;
161
+ private readonly collectionId: Uint8Array;
162
+ private readonly collectionIdB64: string;
163
+ private readonly tailIdAtAttach: Uint8Array;
164
+ private readonly topicId: Uint8Array;
165
+ private readonly ttlMs: number;
166
+ private readonly deltaMaxBytes: number;
167
+ private readonly lastKnownRev: number;
168
+ private readonly subscriber: ReactivitySubscriber;
169
+ private readonly verifier: NotificationVerifier;
170
+ private readonly options: ReactivitySubscriptionManagerOptions;
171
+ private readonly cohortHintCache: StickyCohortHintCache;
172
+ private readonly clock: () => number;
173
+ private readonly tailIdAtAttachB64: string;
174
+ private readonly rejoinJitter: RejoinJitter;
175
+ /** Resolved ring coordinate signed into a {@link ResumeV1} (real coord, or the collectionId placeholder). */
176
+ private readonly subscriberCoord: string;
177
+ /** True iff {@link subscriberCoord} fell back to the collectionId placeholder (no real coord supplied). */
178
+ private readonly subscriberCoordIsFallback: boolean;
179
+ /** The successor tail a rotation has already been surfaced for, so the notice fires once per rotation. */
180
+ private rotationHandledFor?: string;
181
+ /** Memoized db-core backfill driver (built on first gap, once `this.subscriber` is assigned). */
182
+ private backfillRequester?: (from: number, to: number) => Promise<BackfillReplyV1>;
183
+ private handle?: RegistrationHandle;
184
+
185
+ constructor(options: ReactivitySubscriptionManagerOptions) {
186
+ this.options = options;
187
+ this.service = options.service;
188
+ this.collectionId = options.collectionId;
189
+ this.collectionIdB64 = bytesToB64url(options.collectionId);
190
+ this.tailIdAtAttach = options.tailIdAtAttach;
191
+ this.topicId = reactivityTopicId(options.tailIdAtAttach);
192
+ this.ttlMs = options.ttlMs ?? (options.profile !== undefined ? subscriberTtlForProfile(options.profile) : undefined) ?? DEFAULT_SUBSCRIBER_TTL_MS;
193
+ this.deltaMaxBytes = options.deltaMaxBytes ?? (options.profile !== undefined ? deltaMaxForProfile(options.profile) : DEFAULT_EDGE_SAFE_DELTA_MAX);
194
+ this.lastKnownRev = options.lastKnownRev ?? 0;
195
+ this.cohortHintCache = options.cohortHintCache ?? createStickyCohortHintCache();
196
+ this.clock = options.clock ?? ((): number => Date.now());
197
+ this.tailIdAtAttachB64 = bytesToB64url(options.tailIdAtAttach);
198
+ this.rejoinJitter = options.rejoinJitter ?? createRejoinJitter();
199
+ this.subscriberCoordIsFallback = options.subscriberCoord === undefined;
200
+ this.subscriberCoord = options.subscriberCoord ?? this.collectionIdB64;
201
+ // Verify against the tail cohort's membership cert (the verifier owns the one fetch-and-retry).
202
+ this.verifier = createNotificationVerifier({ verifier: this.service.verifier(), tier: Tier.T3 });
203
+ this.subscriber = createReactivitySubscriber({
204
+ collectionId: this.collectionIdB64,
205
+ verifier: this.verifier,
206
+ deliver: options.deliver,
207
+ // Bind the seam to a method so it resolves the (possibly transport-backed) driver lazily —
208
+ // `this.subscriber` is not yet assigned during this very call.
209
+ requestBackfill: (from, to): void => this.onBackfillGap(from, to),
210
+ lastKnownRev: this.lastKnownRev,
211
+ });
212
+ }
213
+
214
+ /**
215
+ * The subscriber detected a revision gap. When a {@link ReactivitySubscriptionManagerOptions.backfillTransport}
216
+ * + signer are configured, drive the db-core {@link createBackfillRequester} (build → sign → send →
217
+ * replay reply through delivery → underflow escalation, built lazily once); otherwise fall back to the
218
+ * explicit {@link ReactivitySubscriptionManagerOptions.requestBackfill} callback (or no-op).
219
+ */
220
+ private onBackfillGap(from: number, to: number): void {
221
+ const { backfillTransport, signBackfill } = this.options;
222
+ if (backfillTransport !== undefined && signBackfill !== undefined) {
223
+ if (this.backfillRequester === undefined) {
224
+ this.backfillRequester = createBackfillRequester({
225
+ collectionId: this.collectionIdB64,
226
+ sign: signBackfill,
227
+ transport: backfillTransport,
228
+ subscriber: this.subscriber,
229
+ clock: this.clock,
230
+ onUnderflow: this.options.onBackfillUnderflow,
231
+ });
232
+ }
233
+ // Fire-and-forget off the gap seam (NOT the deliver path — backfill is hint-only and must never
234
+ // block or fault commit/delivery). The driver resolves (no throw) on an `available`-window
235
+ // underflow — that path is handled by `onBackfillUnderflow`; only a genuine **transport failure**
236
+ // rejects, which escalates here. `escalateBackfill` never rejects, so nothing leaks as an
237
+ // unhandled rejection.
238
+ void this.backfillRequester(from, to).catch(() => { void this.escalateBackfill(from, to); });
239
+ return;
240
+ }
241
+ this.options.requestBackfill?.(from, to);
242
+ }
243
+
244
+ /**
245
+ * A backfill RPC failed at the transport (the sticky-hint dial + cohort-walk fallback inside the
246
+ * transport were already exhausted). Re-attempt up to {@link ReactivitySubscriptionManagerOptions.backfillMaxRetries}
247
+ * times, then escalate to {@link resume} (when a resume transport is configured) and finally to
248
+ * {@link ReactivitySubscriptionManagerOptions.onChainRead}. Never rejects (it runs detached off the gap
249
+ * seam) and never touches the commit/delivery path.
250
+ */
251
+ private async escalateBackfill(from: number, to: number): Promise<void> {
252
+ const max = this.options.backfillMaxRetries ?? DEFAULT_BACKFILL_MAX_RETRIES;
253
+ for (let attempt = 1; attempt <= max; attempt++) {
254
+ try {
255
+ await this.backfillRequester!(from, to);
256
+ return; // a re-attempt closed (or underflow-escalated) the gap
257
+ } catch (err) {
258
+ if (err instanceof RotationRedirectError) {
259
+ // The serving cohort's outgoing tail rotated: move to the new tree (no chain-read fallback).
260
+ this.honorRotationRedirect(err);
261
+ return;
262
+ }
263
+ log("backfill retry %d/%d for [%d,%d] failed: %o", attempt, max, from, to, err);
264
+ }
265
+ }
266
+ // Still failing after the bounded retries: fall back to a resume (a wider recovery window) when one is
267
+ // wired, else signal a chain read. Distinct from the underflow seam, which carries the held window.
268
+ if (this.options.resumeTransport !== undefined && this.options.signResume !== undefined) {
269
+ try {
270
+ await this.resume();
271
+ return;
272
+ } catch (err) {
273
+ log("backfill escalation to resume() failed for [%d,%d]: %o", from, to, err);
274
+ }
275
+ }
276
+ this.options.onChainRead?.(undefined, undefined);
277
+ }
278
+
279
+ /** The live registration handle, or `undefined` before the first {@link register}. */
280
+ get registration(): RegistrationHandle | undefined {
281
+ return this.handle;
282
+ }
283
+
284
+ /** Last contiguously-delivered revision. */
285
+ get lastRevision(): number {
286
+ return this.subscriber.lastRevision;
287
+ }
288
+
289
+ /** Register the subscriber at tier T3 with the reactivity `appPayload`. */
290
+ async register(): Promise<RegistrationHandle> {
291
+ const appPayload = subscribeAppPayloadBytes({
292
+ collectionId: bytesToB64url(this.collectionId),
293
+ tailIdAtAttach: bytesToB64url(this.tailIdAtAttach),
294
+ lastKnownRev: this.lastKnownRev,
295
+ deltaMaxBytes: this.deltaMaxBytes,
296
+ });
297
+ this.handle = await this.service.register({
298
+ topicId: this.topicId,
299
+ tier: Tier.T3,
300
+ appPayload,
301
+ ttl: this.ttlMs,
302
+ });
303
+ return this.handle;
304
+ }
305
+
306
+ /** Run one renewal cycle (keep-alive touch). No-op before the first {@link register}. */
307
+ async renew(): Promise<void> {
308
+ if (this.handle === undefined) {
309
+ return;
310
+ }
311
+ await this.service.renew(this.handle);
312
+ }
313
+
314
+ /** Withdraw: stop renewing and send a best-effort signed tombstone so the cohort frees the
315
+ * registration immediately (TTL expiry remains the fallback if the primary is unreachable). */
316
+ async withdraw(): Promise<void> {
317
+ if (this.handle !== undefined) {
318
+ await this.service.withdraw(this.handle);
319
+ }
320
+ }
321
+
322
+ /**
323
+ * Resume after a sleep/flap (`docs/reactivity.md` §Resume). Sends one {@link ResumeV1} from
324
+ * `lastRevision + 1` to the serving cohort over the injected {@link ResumeTransport} and applies the
325
+ * classified reply via the db-core {@link applyResumeReply}: a `backfill` / `checkpoint_window` reply
326
+ * replays its entries through the delivery path (verified, deduped); `out_of_window` and an untrusted
327
+ * checkpoint escalate to {@link ReactivitySubscriptionManagerOptions.onChainRead}; `tail_rotated`
328
+ * escalates to {@link ReactivitySubscriptionManagerOptions.onTailRotated} and invalidates the sticky
329
+ * cohort-hint cache (the cached primary is under the old tree). Throws if no resume transport/signer
330
+ * was configured.
331
+ *
332
+ * The sticky cohort-hint cache (Edge) lets a resume after a brief flap dial the cached primary directly
333
+ * for a one-RT recovery instead of re-walking from `d_max`; it is the transport's to consult via
334
+ * {@link cohortHint}.
335
+ */
336
+ async resume(): Promise<ResumeApplyOutcome> {
337
+ const { resumeTransport, signResume } = this.options;
338
+ if (resumeTransport === undefined || signResume === undefined) {
339
+ throw new Error("ReactivitySubscriptionManager.resume: no resumeTransport/signResume configured");
340
+ }
341
+ if (this.subscriberCoordIsFallback) {
342
+ log("resume: no real ring coordinate supplied; signing ResumeV1 with the collectionId as a placeholder subscriberCoord (collection=%s)", this.collectionIdB64);
343
+ }
344
+ const unsigned: Omit<ResumeV1, "signature"> = {
345
+ v: 1,
346
+ collectionId: this.collectionIdB64,
347
+ fromRevision: this.subscriber.lastRevision + 1,
348
+ latestKnownTailId: bytesToB64url(this.tailIdAtAttach),
349
+ subscriberCoord: this.subscriberCoord,
350
+ timestamp: this.clock(),
351
+ };
352
+ const req: ResumeV1 = { ...unsigned, signature: signResume(unsigned) };
353
+ let reply: ResumeReplyV1;
354
+ try {
355
+ reply = await resumeTransport(req);
356
+ } catch (err) {
357
+ if (err instanceof RotationRedirectError) {
358
+ // The resume reached the serving cohort's outgoing (draining) tail: honor the redirect (surface
359
+ // the rotation through onRotation, invalidate the sticky cache) and resolve as a tail rotation —
360
+ // never throw the redirect out to the caller / the gap seam's commit-delivery path.
361
+ this.honorRotationRedirect(err);
362
+ return "tail_rotated";
363
+ }
364
+ throw err;
365
+ }
366
+ return applyResumeReply(reply, {
367
+ subscriber: this.subscriber,
368
+ verifier: this.verifier,
369
+ onCheckpointDigest: this.options.onCheckpointDigest,
370
+ onChainRead: this.options.onChainRead,
371
+ onTailRotated: (newTailId, newRevisionAtRotation): void => {
372
+ // The cached primary is under the now-stale tree; drop it so the re-registration re-walks.
373
+ this.cohortHintCache.invalidate(this.collectionIdB64);
374
+ this.options.onTailRotated?.(newTailId, newRevisionAtRotation);
375
+ },
376
+ });
377
+ }
378
+
379
+ /** The sticky cohort-hint cache backing one-RT resume after a flap (Edge). */
380
+ get cohortHint(): StickyCohortHintCache {
381
+ return this.cohortHintCache;
382
+ }
383
+
384
+ /**
385
+ * Run the db-core delivery path for one inbound notification, then check for tail rotation
386
+ * (`docs/reactivity.md` §Tail rotation): a delivered `tailId` that differs from `tailIdAtAttach`, or a
387
+ * `rotationHint` pre-announce, invalidates the sticky cohort-hint cache (the cached primary is under the
388
+ * old tree) and surfaces a jittered re-registration plan via {@link ReactivitySubscriptionManagerOptions.onRotation}.
389
+ * Fired at most once per successor tail.
390
+ */
391
+ async onNotification(n: NotificationV1): Promise<DeliveryOutcome> {
392
+ const outcome = await this.subscriber.onNotification(n);
393
+ this.checkRotation(n);
394
+ return outcome;
395
+ }
396
+
397
+ /** Detect a tail rotation from an inbound notification and surface it once per successor tail. */
398
+ private checkRotation(n: NotificationV1): void {
399
+ const detection = detectRotation(this.tailIdAtAttachB64, n);
400
+ if (!detection.rotated || detection.newTailId === undefined) {
401
+ return;
402
+ }
403
+ this.surfaceRotation(detection.newTailId, detection.preAnnounced);
404
+ }
405
+
406
+ /**
407
+ * Surface a rotation to the host **once per successor tail** (`docs/reactivity.md` §Tail rotation):
408
+ * invalidate the sticky cohort-hint cache (the cached primary is under the now-stale tree, so a later
409
+ * resume re-walks) and — when an {@link ReactivitySubscriptionManagerOptions.onRotation} observer is
410
+ * configured — hand it a jittered re-registration plan carrying `lastRevision` (continuous across the
411
+ * rotation). The single seam both the notification-driven detection ({@link checkRotation}) and the
412
+ * recover-driven {@link RotationRedirectError} ({@link honorRotationRedirect}) end in; the
413
+ * {@link rotationHandledFor} guard self-corrects across a chained OLD→A→B rotation.
414
+ */
415
+ private surfaceRotation(newTailId: string, preAnnounced: boolean): void {
416
+ if (newTailId === this.rotationHandledFor) {
417
+ return; // already surfaced this successor
418
+ }
419
+ this.rotationHandledFor = newTailId;
420
+ // The cached primary is under the now-stale tree; drop it so the re-registration re-walks.
421
+ this.cohortHintCache.invalidate(this.collectionIdB64);
422
+ if (this.options.onRotation === undefined) {
423
+ return;
424
+ }
425
+ const plan = planReRegistration({
426
+ hint: { newTailId },
427
+ lastRevision: this.subscriber.lastRevision,
428
+ now: this.clock(),
429
+ jitter: this.rejoinJitter,
430
+ });
431
+ this.options.onRotation({ newTailId, preAnnounced, plan });
432
+ }
433
+
434
+ /**
435
+ * Honor a recover-surfaced {@link RotationRedirectError}: the serving cohort's outgoing tail rotated and
436
+ * bounced this request to the new tree. Route it through the **same** {@link surfaceRotation} seam a
437
+ * delivered pre-announce uses (`preAnnounced: false`), so both the notify-driven and recover-driven
438
+ * rotation paths converge on one `RotationNotice` for the host's re-registration scheduler to consume.
439
+ */
440
+ private honorRotationRedirect(err: RotationRedirectError): void {
441
+ this.surfaceRotation(err.redirect.newTailId, false);
442
+ }
443
+ }
444
+
445
+ /** Default application-level backfill re-attempts after a transport failure before escalating to resume/chain. */
446
+ const DEFAULT_BACKFILL_MAX_RETRIES = 1;
447
+ /** Fallback subscriber TTL when neither `ttlMs` nor `profile` is supplied (Core default). */
448
+ const DEFAULT_SUBSCRIBER_TTL_MS = 90_000;
449
+ /** Edge-safe delta budget when neither `deltaMaxBytes` nor `profile` is supplied: decline deltas. */
450
+ const DEFAULT_EDGE_SAFE_DELTA_MAX = 0;
@@ -0,0 +1,37 @@
1
+ /**
2
+ * Reactivity — the one pinned `BlockId` → raw tail-bytes encoding, shared by origination and subscription.
3
+ *
4
+ * `reactivityTopicId` (db-core) hashes `H(tailBytes ‖ "reactivity")` to derive the topic's `coord_0`
5
+ * cohort. Origination (the cohort-change membership gate, {@link
6
+ * import("../cohort-topic/reactivity-membership-gate.js").createReactivitySelfMembershipGate}) and the
7
+ * subscriber side (the production subscribe factory that converts a `BlockId` `tailIdAtAttach` to the bytes
8
+ * {@link import("./subscription-manager.js").ReactivitySubscriptionManager} feeds `reactivityTopicId`) MUST
9
+ * feed it the **same** bytes for a given tail, or they resolve different coords and origination silently
10
+ * never reaches subscribers (green tests, dead feature).
11
+ *
12
+ * This module is that single source of truth: `reactivityTailBytes(tailId) = TextEncoder().encode(tailId)`,
13
+ * the synchronous block-id→bytes convention the rest of db-p2p already uses for ring hashing of tail ids
14
+ * (`cluster/client.ts`, `repo/client.ts`). db-core's async `blockIdToBytes` (which `sha256`s the utf8 bytes
15
+ * first) is deliberately NOT used: it would (a) double-hash relative to the spec's `H(tailId ‖ "reactivity")`
16
+ * and (b) force the synchronous origination gate to become async.
17
+ *
18
+ * It lives in the reactivity surface (not buried in the gate) so the subscribe path and the gate import the
19
+ * exact same function rather than re-deriving the encoding independently. The
20
+ * `cohort-topic/reactivity-membership-gate.ts` module re-exports it for its existing callers.
21
+ */
22
+
23
+ import type { BlockId } from "@optimystic/db-core";
24
+
25
+ const utf8 = new TextEncoder();
26
+
27
+ /**
28
+ * The pinned `BlockId` → raw tail bytes encoding fed into `reactivityTopicId`: the **raw** utf8 bytes of the
29
+ * tail block-id string (NOT a pre-hashed routing key, NOT db-core's double-hashing `blockIdToBytes`).
30
+ *
31
+ * Load-bearing: origination and the subscriber side must call this **same** function for a given tail (see
32
+ * the module doc) — a mismatch resolves different `coord_0`s and origination silently never reaches
33
+ * subscribers. The `topic-bytes-encoding` spec pins the coord-equality both ways.
34
+ */
35
+ export function reactivityTailBytes(tailId: BlockId): Uint8Array {
36
+ return utf8.encode(tailId);
37
+ }