disruptor 4.4.0

Low latency inter-thread communication via a ringbuffer (inspired by the LMAX Disruptor).
Documentation
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
//! Module for structs for building a Single Producer Disruptor in a type safe way.
//!
//! To get started building a Single Producer Disruptor, invoke [super::build_single_producer].

use std::{marker::PhantomData, sync::Arc};

use crate::{Sequence, barrier::Barrier, builder::ProcessorSettings, consumer::{MultiConsumerBarrier, SingleConsumerBarrier, event_poller::{EventPoller, Branch}}, producer::single::{SingleProducer, SingleProducerBarrier}, wait_strategies::WaitStrategy};

use super::{Builder, Shared, MC, NC, SC};

/// First step in building a Disruptor with a [SingleProducer].
pub struct SPBuilder<State, E, W, B> {
	state:             PhantomData<State>,
	shared:            Shared<E, W>,
	producer_barrier:  Arc<SingleProducerBarrier>,
	dependent_barrier: Arc<B>,
}

impl<E, W, B, S> ProcessorSettings<E, W> for SPBuilder<S, E, W, B> {
	fn shared(&mut self) -> &mut Shared<E, W> {
		&mut self.shared
	}
}

impl<E, W, B, S> SPBuilder<S, E, W, B>
where
	E: 'static + Send + Sync,
	B: 'static + Barrier,
	W: 'static + WaitStrategy,
{
	/// Branch from the current flow. The [`EventPoller`] for the branch can only be optained when
	/// joining this branch back into the main flow by calling [`join`](Self::join) and passing
	/// the `JoinPromise` returned by this method.
	///
	/// This is intended for building DAG topologies where a branch runs in parallel with multiple
	/// stages, and is only joined back at a later point.
	#[must_use]
	pub fn new_branch(&mut self) -> Branch<E, B> {
		self.build_branch()
	}
}

impl<E, W, B, S> Builder<E, W, B> for SPBuilder<S, E, W, B>
where
	E: 'static + Send + Sync,
	W: 'static + WaitStrategy,
	B: 'static + Barrier,
{
	fn dependent_barrier(&self) -> Arc<B> {
		Arc::clone(&self.dependent_barrier)
	}
}

impl<E, W, B> SPBuilder<NC, E, W, B>
where
	E: 'static + Send + Sync,
	W: 'static + WaitStrategy,
	B: 'static + Barrier,
{
	pub(super) fn new<F>(size: usize, event_factory: F, wait_strategy: W, producer_barrier: Arc<SingleProducerBarrier>, dependent_barrier: Arc<B>) -> Self
	where
		F: FnMut() -> E
	{
		let shared = Shared::new(size, event_factory, wait_strategy);
		Self {
			state: PhantomData,
			shared,
			producer_barrier,
			dependent_barrier,
		}
	}

	/// Transition the builder directly to the multi consumer state (and skip the single consumer optimization).
	///
	/// This is useful if you want to add multiple consumers in e.g. a loop or you only know the number of
	/// consumers at runtime.
	///
	/// # Examples
	///
	/// ```
	///# #[cfg(miri)] fn main() {}
	///# #[cfg(not(miri))]
	///# fn main() {
	///# use disruptor::*;
	///#
	///# struct Event {
	///#     price: f64
	///# }
	///# let factory = || { Event { price: 0.0 }};
	/// let mut builder = build_single_producer(8, factory, BusySpin)
	///     .with_multi_consumer();
	///
	/// let consumer_count = 8; // Could be read from a config file.
	///
	/// // Create a dynamic number of `EventPoller`'s:
	/// let mut pollers = Vec::new();
	/// for _ in 0..consumer_count {
	///     let (poller, next_builder) = builder.new_event_poller();
	///     pollers.push(poller);
	///     builder = next_builder;
	/// }
	///# }
	/// ```
	pub fn with_multi_consumer(self) -> SPBuilder<MC, E, W, B> {
		SPBuilder {
			state:             PhantomData,
			shared:            self.shared,
			producer_barrier:  self.producer_barrier,
			dependent_barrier: self.dependent_barrier,
		}
	}

	/// Get an EventPoller.
	pub fn new_event_poller(mut self) -> (EventPoller<E, B>, SPBuilder<SC, E, W, B>) {
		let event_poller = self.build_event_poller();

		(event_poller,
		SPBuilder {
			state:             PhantomData,
			shared:            self.shared,
			producer_barrier:  self.producer_barrier,
			dependent_barrier: self.dependent_barrier,
		})
	}

	/// Join a branch back into the main flow and get the `EventPoller` for the branch.
	pub fn join<B2>(mut self, branch: Branch<E, B2>) -> (EventPoller<E, B2>, SPBuilder<SC, E, W, B>) {
		self.add_cursor_from_branch(&branch);

		(
			branch.into_poller(),
			SPBuilder {
				state:             PhantomData,
				shared:            self.shared,
				producer_barrier:  self.producer_barrier,
				dependent_barrier: self.dependent_barrier,
			}
		)
	}

	/// Add an event handler.
	pub fn handle_events_with<EH>(mut self, event_handler: EH) -> SPBuilder<SC, E, W, B>
	where
		EH: 'static + Send + FnMut(&E, Sequence, bool)
	{
		self.add_event_handler(event_handler);
		SPBuilder {
			state:             PhantomData,
			shared:            self.shared,
			producer_barrier:  self.producer_barrier,
			dependent_barrier: self.dependent_barrier,
		}
	}

	/// Add an event handler with a processor-specific wait strategy.
	///
	/// Unlike [`handle_events_with`](Self::handle_events_with), this does not use the builder's default strategy.
	pub fn handle_events_with_wait_strategy<EH, PW>(mut self, event_handler: EH, wait_strategy: PW) -> SPBuilder<SC, E, W, B>
	where
		EH: 'static + Send + FnMut(&E, Sequence, bool),
		PW: 'static + WaitStrategy,
	{
		self.add_event_handler_with_wait_strategy(event_handler, wait_strategy);
		SPBuilder {
			state:             PhantomData,
			shared:            self.shared,
			producer_barrier:  self.producer_barrier,
			dependent_barrier: self.dependent_barrier,
		}
	}

	/// Add an event handler with state.
	pub fn handle_events_and_state_with<EH, S, IS>(mut self, event_handler: EH, initialize_state: IS) -> SPBuilder<SC, E, W, B>
	where
		EH: 'static + Send + FnMut(&mut S, &E, Sequence, bool),
		IS: 'static + Send + FnOnce() -> S,
	{
		self.add_event_handler_with_state(event_handler, initialize_state);
		SPBuilder {
			state:             PhantomData,
			shared:            self.shared,
			producer_barrier:  self.producer_barrier,
			dependent_barrier: self.dependent_barrier,
		}
	}

	/// Add an event handler with state and a processor-specific wait strategy.
	///
	/// Unlike [`handle_events_and_state_with`](Self::handle_events_and_state_with), this does not use the builder's default strategy.
	pub fn handle_events_and_state_with_wait_strategy<EH, S, IS, PW>(mut self, event_handler: EH, initialize_state: IS, wait_strategy: PW) -> SPBuilder<SC, E, W, B>
	where
		EH: 'static + Send + FnMut(&mut S, &E, Sequence, bool),
		IS: 'static + Send + FnOnce() -> S,
		PW: 'static + WaitStrategy,
	{
		self.add_event_handler_and_state_with_wait_strategy(event_handler, initialize_state, wait_strategy);
		SPBuilder {
			state:             PhantomData,
			shared:            self.shared,
			producer_barrier:  self.producer_barrier,
			dependent_barrier: self.dependent_barrier,
		}
	}
}

impl <E, W, B> SPBuilder<SC, E, W, B>
where
	E: 'static + Send + Sync,
	W: 'static + WaitStrategy,
	B: 'static + Barrier,
{
	/// Finish the build and get a [`SingleProducer`].
	pub fn build(mut self) -> SingleProducer<E, SingleConsumerBarrier> {
		let mut consumer_cursors = self.shared().current_consumer_cursors.take().unwrap();
		// Guaranteed to be present by construction.
		let consumer_barrier     = SingleConsumerBarrier::new(consumer_cursors.remove(0));
		SingleProducer::new(
			self.shared.shutdown_at_sequence,
			self.shared.ring_buffer,
			self.producer_barrier,
			self.shared.consumers,
			consumer_barrier)
	}

	/// Get an EventPoller.
	pub fn new_event_poller(mut self) -> (EventPoller<E, B>, SPBuilder<MC, E, W, B>) {
		let event_poller = self.build_event_poller();

		(event_poller,
		SPBuilder {
			state:             PhantomData,
			shared:            self.shared,
			producer_barrier:  self.producer_barrier,
			dependent_barrier: self.dependent_barrier,
		})
	}

	/// Join a branch back into the main flow and get the `EventPoller` for the branch.
	pub fn join<B2>(mut self, branch: Branch<E, B2>) -> (EventPoller<E, B2>, SPBuilder<MC, E, W, B>) {
		self.add_cursor_from_branch(&branch);
		
		(
			branch.into_poller(),
			SPBuilder {
				state:             PhantomData,
				shared:            self.shared,
				producer_barrier:  self.producer_barrier,
				dependent_barrier: self.dependent_barrier,
			}
		)
	}

	/// Complete the (concurrent) consumption of events so far and let new consumers process
	/// events after all previous consumers have read them.
	pub fn and_then(mut self) -> SPBuilder<NC, E, W, SingleConsumerBarrier> {
		// Guaranteed to be present by construction.
		let consumer_cursors  = self.shared().current_consumer_cursors.as_mut().unwrap();
		let dependent_barrier = Arc::new(SingleConsumerBarrier::new(consumer_cursors.remove(0)));

		SPBuilder {
			state:            PhantomData,
			shared:           self.shared,
			producer_barrier: self.producer_barrier,
			dependent_barrier,
		}
	}

	/// Add an event handler.
	pub fn handle_events_with<EH>(mut self, event_handler: EH) -> SPBuilder<MC, E, W, B>
	where
		EH: 'static + Send + FnMut(&E, Sequence, bool)
	{
		self.add_event_handler(event_handler);
		SPBuilder {
			state:             PhantomData,
			shared:            self.shared,
			producer_barrier:  self.producer_barrier,
			dependent_barrier: self.dependent_barrier,
		}
	}

	/// Add an event handler with a processor-specific wait strategy.
	///
	/// Unlike [`handle_events_with`](Self::handle_events_with), this does not use the builder's default strategy.
	pub fn handle_events_with_wait_strategy<EH, PW>(mut self, event_handler: EH, wait_strategy: PW) -> SPBuilder<MC, E, W, B>
	where
		EH: 'static + Send + FnMut(&E, Sequence, bool),
		PW: 'static + WaitStrategy,
	{
		self.add_event_handler_with_wait_strategy(event_handler, wait_strategy);
		SPBuilder {
			state:             PhantomData,
			shared:            self.shared,
			producer_barrier:  self.producer_barrier,
			dependent_barrier: self.dependent_barrier,
		}
	}

	/// Add an event handler with state.
	pub fn handle_events_and_state_with<EH, S, IS>(mut self, event_handler: EH, initalize_state: IS) -> SPBuilder<MC, E, W, B>
	where
		EH: 'static + Send + FnMut(&mut S, &E, Sequence, bool),
		IS: 'static + Send + FnOnce() -> S,
	{
		self.add_event_handler_with_state(event_handler, initalize_state);
		SPBuilder {
			state:             PhantomData,
			shared:            self.shared,
			producer_barrier:  self.producer_barrier,
			dependent_barrier: self.dependent_barrier,
		}
	}

	/// Add an event handler with state and a processor-specific wait strategy.
	///
	/// Unlike [`handle_events_and_state_with`](Self::handle_events_and_state_with), this does not use the builder's default strategy.
	pub fn handle_events_and_state_with_wait_strategy<EH, S, IS, PW>(mut self, event_handler: EH, initialize_state: IS, wait_strategy: PW) -> SPBuilder<MC, E, W, B>
	where
		EH: 'static + Send + FnMut(&mut S, &E, Sequence, bool),
		IS: 'static + Send + FnOnce() -> S,
		PW: 'static + WaitStrategy,
	{
		self.add_event_handler_and_state_with_wait_strategy(event_handler, initialize_state, wait_strategy);
		SPBuilder {
			state:             PhantomData,
			shared:            self.shared,
			producer_barrier:  self.producer_barrier,
			dependent_barrier: self.dependent_barrier,
		}
	}
}

impl <E, W, B> SPBuilder<MC, E, W, B>
where
	E: 'static + Send + Sync,
	W: 'static + WaitStrategy,
	B: 'static + Barrier,
{
	/// Get an EventPoller.
	pub fn new_event_poller(mut self) -> (EventPoller<E, B>, SPBuilder<MC, E, W, B>) {
		let event_poller = self.build_event_poller();

		(event_poller,
		SPBuilder {
			state:             PhantomData,
			shared:            self.shared,
			producer_barrier:  self.producer_barrier,
			dependent_barrier: self.dependent_barrier,
		})
	}

	/// Join a branch back into the main flow and get the `EventPoller` for the branch.
	pub fn join<B2>(mut self, branch: Branch<E, B2>) -> (EventPoller<E, B2>, SPBuilder<MC, E, W, B>) {
		self.add_cursor_from_branch(&branch);

		(
			branch.into_poller(),
			SPBuilder {
				state:             PhantomData,
				shared:            self.shared,
				producer_barrier:  self.producer_barrier,
				dependent_barrier: self.dependent_barrier,
			}
		)
	}

	/// Add an event handler.
	pub fn handle_events_with<EH>(mut self, event_handler: EH) -> SPBuilder<MC, E, W, B>
	where
		EH: 'static + Send + FnMut(&E, Sequence, bool)
	{
		self.add_event_handler(event_handler);
		self
	}

	/// Add an event handler with a processor-specific wait strategy.
	///
	/// Unlike [`handle_events_with`](Self::handle_events_with), this does not use the builder's default strategy.
	pub fn handle_events_with_wait_strategy<EH, PW>(mut self, event_handler: EH, wait_strategy: PW) -> SPBuilder<MC, E, W, B>
	where
		EH: 'static + Send + FnMut(&E, Sequence, bool),
		PW: 'static + WaitStrategy,
	{
		self.add_event_handler_with_wait_strategy(event_handler, wait_strategy);
		self
	}

	/// Add an event handler with state.
	pub fn handle_events_and_state_with<EH, S, IS>(mut self, event_handler: EH, initialize_state: IS) -> SPBuilder<MC, E, W, B>
	where
		EH: 'static + Send + FnMut(&mut S, &E, Sequence, bool),
		IS: 'static + Send + FnOnce() -> S,
	{
		self.add_event_handler_with_state(event_handler, initialize_state);
		self
	}

	/// Add an event handler with state and a processor-specific wait strategy.
	///
	/// Unlike [`handle_events_and_state_with`](Self::handle_events_and_state_with), this does not use the builder's default strategy.
	pub fn handle_events_and_state_with_wait_strategy<EH, S, IS, PW>(mut self, event_handler: EH, initialize_state: IS, wait_strategy: PW) -> SPBuilder<MC, E, W, B>
	where
		EH: 'static + Send + FnMut(&mut S, &E, Sequence, bool),
		IS: 'static + Send + FnOnce() -> S,
		PW: 'static + WaitStrategy,
	{
		self.add_event_handler_and_state_with_wait_strategy(event_handler, initialize_state, wait_strategy);
		self
	}

	/// Complete the (concurrent) consumption of events so far and let new consumers process
	/// events after all previous consumers have read them.
	pub fn and_then(mut self) -> SPBuilder<NC, E, W, MultiConsumerBarrier> {
		let consumer_cursors  = self.shared().current_consumer_cursors.replace(vec![]).unwrap();
		let dependent_barrier = Arc::new(MultiConsumerBarrier::new(consumer_cursors));

		SPBuilder {
			dependent_barrier,
			state:            PhantomData,
			shared:           self.shared,
			producer_barrier: self.producer_barrier,
		}
	}

	/// Finish the build and get a [`SingleProducer`].
	pub fn build(mut self) -> SingleProducer<E, MultiConsumerBarrier> {
		let consumer_cursors = self.shared().current_consumer_cursors.take().unwrap();
		let consumer_barrier = MultiConsumerBarrier::new(consumer_cursors);
		SingleProducer::new(
			self.shared.shutdown_at_sequence,
			self.shared.ring_buffer,
			self.producer_barrier,
			self.shared.consumers,
			consumer_barrier)
	}
}