zrx-scheduler 0.0.21

Scheduler for workflow execution
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
// Copyright (c) 2025-2026 Zensical and contributors

// SPDX-License-Identifier: MIT
// All contributions are certified under the DCO

// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
// deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:

// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.

// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
// IN THE SOFTWARE.

// ----------------------------------------------------------------------------

//! Key.

use ahash::AHasher;
use std::fmt::{self, Debug, Display};
use std::hash::{Hash, Hasher};
use std::ops::Index;
use std::slice::Iter;
use std::sync::Arc;

use super::value::Value;

mod error;
mod id;

pub use error::{Error, Result};
pub use id::Id;

// ----------------------------------------------------------------------------
// Structs
// ----------------------------------------------------------------------------

/// Key.
///
/// Keys represent hierarchies of identifiers, which are a fundamental tool for
/// representing the hierarchical structure of computations and relations. A key
/// can consist of a single identifier, or arbitrary long chains of multiple
/// identifiers to model derivations and dependencies.
///
/// # Examples
///
/// ```
/// use zrx_scheduler::Key;
///
/// // Create and transform key
/// let key = Key::from_iter([1, 2, 3]);
/// assert_eq!(
///     key.rotate_left(1),
///     Key::from_iter([2, 3, 1])
/// );
/// ```
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord)]
pub struct Key<I> {
    /// Path.
    path: Arc<[I]>,
    /// Precomputed hash.
    hash: u64,
}

// ----------------------------------------------------------------------------
// Implementations
// ----------------------------------------------------------------------------

impl<I> Key<I> {
    /// Returns the identifier, if key has length 1.
    ///
    /// # Errors
    ///
    /// Returns [`Error::Empty`] if the key is empty, and [`Error::Depth`] if
    /// the key is deeper than one level, containing multiple identifiers.
    ///
    /// # Examples
    ///
    /// ```
    /// # use std::error::Error;
    /// # fn main() -> Result<(), Box<dyn Error>> {
    /// use zrx_scheduler::Key;
    ///
    /// // Create key
    /// let key = Key::from(42);
    ///
    /// // Obtain identifier
    /// assert_eq!(key.try_as_id()?, &42);
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn try_as_id(&self) -> Result<&I> {
        match &*self.path {
            [id] => Ok(id),
            [] => Err(Error::Empty),
            _ => Err(Error::Depth),
        }
    }
}

impl<I> Key<I>
where
    I: Id,
{
    /// Concatenates the key with another key.
    ///
    /// # Examples
    ///
    /// ```
    /// use zrx_scheduler::Key;
    ///
    /// // Create and concat keys
    /// let key = Key::from(1);
    /// assert_eq!(
    ///     key.concat(Key::from_iter([2, 3])),
    ///     Key::from_iter([1, 2, 3])
    /// );
    /// ```
    #[must_use]
    pub fn concat<K>(&self, tail: K) -> Self
    where
        K: AsRef<Self>,
    {
        let tail = tail.as_ref();

        // Concatenate paths and return key
        let iter = self.path.iter().chain(tail.path.iter());
        let path = iter.cloned().collect();
        Self { hash: hash(&path), path }
    }

    /// Reverses the key.
    ///
    /// # Examples
    ///
    /// ```
    /// use zrx_scheduler::Key;
    ///
    /// // Create and transform key
    /// let key = Key::from_iter([1, 2, 3]);
    /// assert_eq!(
    ///     key.reverse(),
    ///     Key::from_iter([3, 2, 1])
    /// );
    /// ```
    #[must_use]
    pub fn reverse(&self) -> Self {
        let iter = self.path.iter().rev();
        iter.cloned().collect()
    }

    /// Rotates the key left by `n` positions.
    ///
    /// # Panics
    ///
    /// Panics if the index is out of bounds.
    ///
    /// # Examples
    ///
    /// ```
    /// use zrx_scheduler::Key;
    ///
    /// // Create and transform key
    /// let key = Key::from_iter([1, 2, 3]);
    /// assert_eq!(
    ///     key.rotate_left(1),
    ///     Key::from_iter([2, 3, 1])
    /// );
    /// ```
    #[must_use]
    pub fn rotate_left(&self, n: usize) -> Self {
        let iter = self.path[n..].iter().chain(self.path[..n].iter());
        iter.cloned().collect()
    }

    /// Rotates the key right by `n` positions.
    ///
    /// # Panics
    ///
    /// Panics if the index is out of bounds.
    ///
    /// # Examples
    ///
    /// ```
    /// use zrx_scheduler::Key;
    ///
    /// // Create and transform key
    /// let key = Key::from_iter([1, 2, 3]);
    /// assert_eq!(
    ///     key.rotate_right(1),
    ///     Key::from_iter([3, 1, 2])
    /// );
    /// ```
    #[inline]
    #[must_use]
    pub fn rotate_right(&self, n: usize) -> Self {
        self.rotate_left(self.path.len() - n)
    }

    /// Creates an iterator over the key.
    ///
    /// # Examples
    ///
    /// ```
    /// use zrx_scheduler::Key;
    ///
    /// // Create key from iterator
    /// let key = Key::from_iter([1, 2, 3]);
    ///
    /// // Create iterator over key
    /// for id in &key {
    ///     println!("{id}");
    /// }
    /// ```
    #[inline]
    pub fn iter(&self) -> Iter<'_, I> {
        self.path.iter()
    }
}

// ----------------------------------------------------------------------------
// Trait implementations
// ----------------------------------------------------------------------------

impl<I> Value for Key<I> where I: Value {}

// ----------------------------------------------------------------------------

impl<I> AsRef<Key<I>> for Key<I> {
    /// Returns a reference to the key.
    #[inline]
    fn as_ref(&self) -> &Key<I> {
        self
    }
}

// ----------------------------------------------------------------------------

impl<I> From<I> for Key<I>
where
    I: Id,
{
    /// Creates a key from an identifier.
    ///
    /// # Examples
    ///
    /// ```
    /// use zrx_scheduler::Key;
    ///
    /// // Create key
    /// let key = Key::from(42);
    /// ```
    #[inline]
    fn from(id: I) -> Self {
        let path = Arc::from([id]);
        Self { hash: hash(&path), path }
    }
}

// ----------------------------------------------------------------------------

impl<I> FromIterator<I> for Key<I>
where
    I: Id,
{
    /// Creates a key from an iterator.
    ///
    /// # Examples
    ///
    /// ```
    /// use zrx_scheduler::Key;
    ///
    /// // Create key from iterator
    /// let key = Key::from_iter([1, 2, 3]);
    /// ```
    fn from_iter<T>(iter: T) -> Self
    where
        T: IntoIterator<Item = I>,
    {
        let path = iter.into_iter().collect();
        Self { hash: hash(&path), path }
    }
}

impl<'a, I> IntoIterator for &'a Key<I>
where
    I: Id,
{
    type Item = &'a I;
    type IntoIter = Iter<'a, I>;

    /// Creates an iterator over the key.
    ///
    /// # Examples
    ///
    /// ```
    /// use zrx_scheduler::Key;
    ///
    /// // Create key from iterator
    /// let key = Key::from_iter([1, 2, 3]);
    ///
    /// // Create iterator over key
    /// for id in &key {
    ///     println!("{id}");
    /// }
    /// ```
    #[inline]
    fn into_iter(self) -> Self::IntoIter {
        self.iter()
    }
}

// ----------------------------------------------------------------------------

impl<I> Index<usize> for Key<I> {
    type Output = I;

    /// Returns a reference to the identifier at the index.
    ///
    /// # Panics
    ///
    /// Panics if the index is out of bounds.
    #[inline]
    fn index(&self, index: usize) -> &Self::Output {
        &self.path[index]
    }
}

// ----------------------------------------------------------------------------

impl<I> Hash for Key<I> {
    /// Hashes the key.
    ///
    /// Since key paths are immutable, we can use a precomputed hash for fast
    /// hashing. This is especially useful when key paths are used as keys in
    /// hash maps or hash sets, where hashing is a frequent operation, as the
    /// performance gains are significant with constant time.
    #[inline]
    fn hash<H>(&self, state: &mut H)
    where
        H: Hasher,
    {
        state.write_u64(self.hash);
    }
}

// ----------------------------------------------------------------------------

impl<I> Display for Key<I>
where
    I: Display,
{
    /// Formats the key for display.
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        for (i, item) in self.path.iter().enumerate() {
            Display::fmt(item, f)?;

            // Write slash if not last
            if i < self.path.len() - 1 {
                f.write_str(" / ")?;
            }
        }

        // No errors occurred
        Ok(())
    }
}

impl<I> Debug for Key<I>
where
    I: Debug,
{
    // Formats the key for debugging.
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_list().entry(&self.path).finish()
    }
}

// ----------------------------------------------------------------------------
// Functions
// ----------------------------------------------------------------------------

/// Precomputes the hash for the given path - this is used for fast hashing of
/// keys, since key paths are immutable, meaning hashes can be precomputed.
#[inline]
fn hash<P>(path: &P) -> u64
where
    P: Hash,
{
    let mut hasher = AHasher::default();
    path.hash(&mut hasher);
    hasher.finish()
}