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
//! # Rill Core
//!
//! The core of the Rill ecosystem. Provides fundamental traits, types,
//! and utilities for building real-time signal processing applications.
//!
//! ## Architecture Overview
//!
//! ```text
//! rill-core/
//! ├── traits/ # Core traits (SignalNode, Source, Processor, Sink, etc.)
//! ├── math/ # Mathematical abstractions (Scalar, Transcendental, Vector)
//! │ └── vector/ # Vector types, SIMD abstractions, slice operations
//! ├── buffer/ # Lock-free signal buffers with AtomicCell safety
//! ├── queues/ # Real-time safe command queues
//! └── time/ # Time and clock abstractions (ClockTick, SystemClock)
//! ```
//!
//! ## Key Concepts
//!
//! - **Scalar**: Base numeric trait for any type (floats and integers)
//! - **Transcendental**: Float numeric abstraction with sin/cos/sqrt
//! - **AtomicCell**: Safe atomic wrapper for lock-free data structures
//! - **SignalNode**: Base trait for all nodes in the signal graph
//! - **Source**: Active generators (oscillators, file readers)
//! - **Processor**: Passive processors (filters, effects)
//! - **Sink**: Active outputs (sound cards, file writers)
//! - **PipeBuffer**: Zero-copy connections between nodes
//! - **CommandQueue**: Real-time safe parameter automation
//! - **ClockTick**: Sample-accurate timing for synchronization
//!
//! ## Example
//!
//! ```rust
//! use rill_core::prelude::*;
//! use rill_core::Port;
//! use rill_core::traits::node;
//!
//! // Create a simple sine source
//! struct MySine<T: Transcendental, const BUF_SIZE: usize> {
//! frequency: T,
//! amplitude: T,
//! phase: T,
//! sample_rate: T,
//! }
//!
//! impl<T: Transcendental, const BUF_SIZE: usize> SignalNode<T, BUF_SIZE> for MySine<T, BUF_SIZE> {
//! fn metadata(&self) -> NodeMetadata {
//! NodeMetadata {
//! name: "Sine".to_string(),
//! type_name: None,
//! category: NodeCategory::Source,
//! description: "Sine wave oscillator".to_string(),
//! author: "Rill".to_string(),
//! version: env!("CARGO_PKG_VERSION").to_string(),
//! signal_inputs: 0,
//! signal_outputs: 1,
//! control_inputs: 0,
//! control_outputs: 0,
//! clock_inputs: 1,
//! clock_outputs: 0,
//! feedback_ports: 0,
//! parameters: vec![],
//! }
//! }
//!
//! fn init(&mut self, sample_rate: f32) {
//! self.sample_rate = T::from_f32(sample_rate);
//! }
//!
//! fn reset(&mut self) {
//! self.phase = T::ZERO;
//! }
//!
//! fn get_parameter(&self, _id: &ParameterId) -> Option<ParamValue> {
//! None
//! }
//!
//! fn set_parameter(&mut self, _id: &ParameterId, _value: ParamValue) -> ProcessResult<()> {
//! Ok(())
//! }
//!
//! fn id(&self) -> NodeId { NodeId(0) }
//! fn set_id(&mut self, _id: NodeId) {}
//!
//! fn input_port(&self, _index: usize) -> Option<&Port<T, BUF_SIZE>> { None }
//! fn input_port_mut(&mut self, _index: usize) -> Option<&mut Port<T, BUF_SIZE>> { None }
//! fn output_port(&self, _index: usize) -> Option<&Port<T, BUF_SIZE>> { None }
//! fn output_port_mut(&mut self, _index: usize) -> Option<&mut Port<T, BUF_SIZE>> { None }
//! fn control_port(&self, _index: usize) -> Option<&Port<T, BUF_SIZE>> { None }
//! fn control_port_mut(&mut self, _index: usize) -> Option<&mut Port<T, BUF_SIZE>> { None }
//!
//! fn state(&self) -> &node::NodeState<T,BUF_SIZE> {
//! unimplemented!()
//! }
//!
//! fn state_mut(&mut self) -> &mut node::NodeState<T,BUF_SIZE> {
//! unimplemented!()
//! }
//! }
//!
//! impl<T: Transcendental, const BUF_SIZE: usize> Source<T, BUF_SIZE> for MySine<T, BUF_SIZE> {
//! fn generate(
//! &mut self,
//! clock: &ClockTick,
//! _control_inputs: &[T],
//! _clock_inputs: &[ClockTick],
//! ) -> ProcessResult<()> {
//! let two_pi = T::from_f32(2.0 * std::f32::consts::PI);
//! let phase_inc = self.frequency / T::from_f32(clock.sample_rate);
//! let amp = self.amplitude;
//!
//! let mut temp = [T::ZERO; BUF_SIZE];
//! for i in 0..BUF_SIZE {
//! let phase_rad = self.phase * two_pi;
//! temp[i] = phase_rad.sin() * amp;
//! self.phase = self.phase + phase_inc;
//! if self.phase >= T::from_f32(1.0) {
//! self.phase = self.phase - T::from_f32(1.0);
//! }
//! }
//! *self.output_port_mut(0).unwrap().buffer.as_mut_array() = temp;
//! Ok(())
//! }
//!
//! fn num_signal_outputs(&self) -> usize { 1 }
//! fn num_control_inputs(&self) -> usize { 0 }
//! fn num_clock_inputs(&self) -> usize { 1 }
//! }
//! ```
// ============================================================================
// Core Modules
// ============================================================================
/// Core traits for the Rill ecosystem
/// Mathematical abstractions for signal processing
/// Lock-free, real-time safe signal buffers
/// Real-time safe command queues for automation
/// Time and clock abstractions for synchronization
pub use vector as vector;
/// Macros for node creation and boilerplate reduction
/// Convenience prelude for importing common types
/// Fractional-index interpolation trait for slice-like types
/// Graph executor for driving signal processing
// ============================================================================
// Error Types
// ============================================================================
/// Core error types for the Rill ecosystem
pub use *;
// ============================================================================
// Re-exports for Convenience
// ============================================================================
// Re-export core traits
pub use ;
// Re-export math abstractions
pub use ;
// Re-export buffer types with AtomicCell safety
pub use ;
// Re-export queue types (from rill-patchbay integration)
pub use ;
// Re-export time abstractions
pub use ;
// ============================================================================
// Constants
// ============================================================================
/// Current version of rill-core
pub const VERSION: &str = env!;
/// Maximum supported sample rate
pub const MAX_SAMPLE_RATE: f32 = 384_000.0;
/// Minimum supported sample rate
pub const MIN_SAMPLE_RATE: f32 = 8_000.0;
/// Default sample rate (44.1 kHz)
pub const DEFAULT_SAMPLE_RATE: f32 = 44_100.0;
/// Default block size for signal processing
pub const DEFAULT_BLOCK_SIZE: usize = 64;
/// Maximum block size
pub const MAX_BLOCK_SIZE: usize = 8192;
/// Minimum block size
pub const MIN_BLOCK_SIZE: usize = 16;
/// Default buffer size for most use cases
pub const DEFAULT_BUFFER_SIZE: usize = 1024;
/// Maximum buffer size (2^16 = 65536 samples)
pub const MAX_BUFFER_SIZE: usize = 65536;
/// Minimum buffer size
pub const MIN_BUFFER_SIZE: usize = 16;
/// Cache line size for alignment (64 bytes on x86_64)
pub const CACHE_LINE_SIZE: usize = 64;
// ============================================================================
// Utility Functions
// ============================================================================
/// Utility functions for common operations
// ============================================================================
// Version Information
// ============================================================================
/// Get detailed version information
/// Detailed version information
// ============================================================================
// Tests
// ============================================================================
// ============================================================================
// Documentation Tests
// ============================================================================