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
// Copyright The Pit Project Owners. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Please see https://github.com/openpitkit and the OWNERS file for details.
//! Internal-lock abstraction for [`MarketDataService`](super::MarketDataService).
//!
//! [`MarketDataLock`] abstracts the per-field synchronization primitive that
//! the market-data service uses for its registry, slot vector, and per-slot
//! state. The concrete primitive is selected by a
//! [`MarketDataSync`](super::MarketDataSync) mode: a genuine no-op for
//! single-thread embeddings, a `parking_lot::RwLock` for thread-safe
//! embeddings, or a runtime-branched lock chosen by the binding layer.
//!
//! [`ServiceTtlGate`] abstracts the monotonic "any service-level TTL set?"
//! flag the service consults to skip the service-level cascade tiers: a plain
//! [`Cell`](std::cell::Cell) for single-thread modes, an
//! [`AtomicBool`](std::sync::atomic::AtomicBool) for the thread-shared modes.
use ;
use ;
use ;
use ;
/// Read/write lock over a `T` used by the market-data service internals.
///
/// # Safety
///
/// The service relies on the lock to uphold the following invariants:
///
/// * While any [`Self::ReadGuard`] is alive, no thread mutates the protected
/// `T`.
/// * While any [`Self::WriteGuard`] is alive, no other thread holds any guard
/// for the same lock.
///
/// The built-in implementations supplied with this crate
/// ([`NoopLock`] and [`RwLock`]) honour these invariants. A no-op
/// implementation honours them vacuously by constraining the owning service
/// to single-threaded use (the service handle is `!Send`/`!Sync` in that
/// mode); getting the invariants wrong leads to undefined behaviour.
pub unsafe
// ─── NoopLock ────────────────────────────────────────────────────────────────
/// No-synchronization lock used by single-thread market-data services.
///
/// Stores the value in an [`UnsafeCell`] and hands out `&T` / `&mut T`
/// directly with no runtime synchronization. Sound only because the owning
/// service is constrained to single-threaded use (its handle is `Rc`, hence
/// `!Send`/`!Sync`, in [`LocalSync`](crate::LocalSync) mode; the binding
/// layer enforces the same constraint at runtime in no-sync mode).
/// Read guard handed out by [`NoopLock`].
/// Write guard handed out by [`NoopLock`].
// SAFETY: every access is a no-op that hands out a `&T`/`&mut T` borrowed
// from the `UnsafeCell`. The owning service is constrained to a single
// thread (`Rc` handle is `!Send`/`!Sync` under `LocalSync`; the binding
// layer constrains to single-threaded use in no-sync mode), so no two
// threads ever observe the same `NoopLock` concurrently. The guard
// lifetimes confine the borrows to the duration of the access, and the
// service never holds overlapping `write` guards on the same lock, so the
// `&mut T` never aliases. This is the same `UnsafeCell` contract that
// `NoLocking` relies on for storage.
unsafe
// ─── RwLock (parking_lot) ─────────────────────────────────────────────────────
// SAFETY: `parking_lot::RwLock` upholds the standard reader-writer
// invariants, which is exactly what the `MarketDataLock` contract requires.
unsafe
// ─── RuntimeLock ───────────────────────────────────────────────────────────────
/// Runtime-branched market-data lock for the binding layer.
///
/// Mirrors the storage `StorageLockingPolicy` pattern: a discriminant chosen
/// at construction time selects either a genuine no-op (single-thread no-sync
/// mode) or a real `parking_lot::RwLock` (`Full`/`Account` modes). The binding
/// crate selects the variant per service from its runtime sync mode.
// SAFETY: the binding layer drives the soundness story (mirroring
// `EngineHandle`/`StorageLockingPolicy`):
// - `Locked` wraps a `parking_lot::RwLock`, which is `Send + Sync` for
// `T: Send + Sync` and synchronizes all access at runtime.
// - `Noop` wraps an `UnsafeCell`; it is only constructed in no-sync mode,
// where the binding layer constrains the owning service to single-threaded
// use, so no two threads ever observe the same `RuntimeLock` concurrently.
// We require `T: Send` so ownership transfer across threads is sound; `Sync`
// is claimed under the binding threading contract even without `T: Sync`,
// exactly as the interop `EngineHandle` does for its `Arc`.
unsafe
unsafe
/// Read guard handed out by [`RuntimeLock`].
/// Write guard handed out by [`RuntimeLock`].
// SAFETY:
// - `Locked` delegates to `parking_lot::RwLock`, which upholds the
// reader-writer invariants the `MarketDataLock` contract requires.
// - `Noop` hands out borrows from an `UnsafeCell`; it is constructed only in
// the binding no-sync mode, where the binding layer constrains the owning
// service to single-threaded use, so no two threads observe the same lock
// and the service never holds overlapping `write` guards. Same `UnsafeCell`
// contract as `NoopLock` and the storage no-sync policy.
unsafe
// ─── ServiceTtlGate ────────────────────────────────────────────────────────────
/// Monotonic gate guarding the service-level TTL cascade tiers.
///
/// The market-data service keeps a single such gate, flipped from "unset" to
/// "present" the first time a service-level account/group TTL is inserted. The
/// common deployment never sets one, so the read path can consult the gate and
/// skip the service-level tiers (two map lookups behind shared locks, plus a
/// lazy group resolution) entirely.
///
/// # Contract
///
/// The flag is **strictly monotonic**: once [`mark_present`](Self::mark_present)
/// has been called it must keep reporting "present" forever. The service never
/// resets it (leaving it set after a `clear_*` is conservatively correct: it
/// only forgoes the optimization), so racing setters and readers always resolve
/// to the safe side. For the thread-shared implementation `mark_present` must
/// also publish, with release ordering, every write made before it, so that a
/// reader observing "present" (with acquire ordering) is guaranteed to see the
/// inserted entry.
///
/// The [`Send`] supertrait keeps the owning service `Send` when the mode is
/// thread-shareable; the single-thread implementation is deliberately `!Sync`,
/// matching the rest of that mode's no-synchronization primitives.
// SAFETY-of-ordering: `mark_present` stores with `Release` and
// `is_possibly_present` loads with `Acquire`, so a reader observing `true` is
// guaranteed to see every write that happened-before the setter — including the
// map insert the service performs just before calling `mark_present`.
/// Single-thread [`ServiceTtlGate`]: a plain [`Cell<bool>`](Cell), no atomics.
///
/// Sound only in the strictly single-threaded modes, where the owning service
/// is already `!Sync` (its no-op locks store state in [`UnsafeCell`]); the
/// `Cell` adds no further synchronization and needs none.
;