drasi-lib 0.6.0

Embedded Drasi for in-process data change processing using continuous queries
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
// Copyright 2025 The Drasi Authors.
//
// 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.

//! Runtime context types for plugin service injection.
//!
//! This module provides `SourceRuntimeContext` and `ReactionRuntimeContext` structs
//! that contain `Arc<T>` instances for drasi-lib provided services. These contexts
//! are provided to plugins when they are added to DrasiLib via the `initialize()` method.
//!
//! # Overview
//!
//! Instead of multiple `inject_*` methods, plugins now receive all services through
//! a single `initialize(context)` call. This provides:
//!
//! - **Single initialization point**: One call instead of multiple inject calls
//! - **Guaranteed complete initialization**: Context is complete or doesn't exist
//! - **Clearer API contract**: All available services visible at a glance
//! - **Extensibility**: New services can be added without changing traits
//!
//! # Example - Source Plugin
//!
//! ```ignore
//! use drasi_lib::context::SourceRuntimeContext;
//!
//! #[async_trait]
//! impl Source for MySource {
//!     async fn initialize(&self, context: SourceRuntimeContext) {
//!         // Store context for later use
//!         self.base.initialize(context).await;
//!     }
//!     // ...
//! }
//! ```
//!
//! # Example - Reaction Plugin
//!
//! ```ignore
//! use drasi_lib::context::ReactionRuntimeContext;
//!
//! #[async_trait]
//! impl Reaction for MyReaction {
//!     async fn initialize(&self, context: ReactionRuntimeContext) {
//!         // Store context for later use
//!         self.base.initialize(context).await;
//!     }
//!     // ...
//! }
//! ```

use std::sync::Arc;

use crate::component_graph::ComponentUpdateSender;
use crate::identity::IdentityProvider;
use crate::state_store::StateStoreProvider;

/// Context provided to Source plugins during initialization.
///
/// Contains `Arc<T>` instances for all drasi-lib provided services.
/// DrasiLib constructs this context when a source is added via `add_source()`.
///
/// # Available Services
///
/// - `instance_id`: The DrasiLib instance ID (for log routing isolation)
/// - `source_id`: The unique identifier for this source instance
/// - `state_store`: Optional persistent state storage (if configured)
/// - `update_tx`: mpsc sender for fire-and-forget status updates to the component graph
///
/// # Clone
///
/// This struct implements `Clone` and all fields use `Arc` internally,
/// making cloning cheap (just reference count increments).
#[derive(Clone)]
pub struct SourceRuntimeContext {
    /// DrasiLib instance ID (for log routing isolation)
    pub instance_id: String,

    /// Unique identifier for this source instance
    pub source_id: String,

    /// Optional persistent state storage.
    ///
    /// This is `Some` if a state store provider was configured on DrasiLib,
    /// otherwise `None`. Sources can use this to persist state across restarts.
    pub state_store: Option<Arc<dyn StateStoreProvider>>,

    /// mpsc sender for fire-and-forget component status updates.
    ///
    /// Status changes sent here are applied to the component graph by the
    /// graph update loop, which emits broadcast events to all subscribers.
    pub update_tx: ComponentUpdateSender,

    /// Optional identity provider for credential injection.
    ///
    /// This is `Some` if the host has configured an identity provider for this component.
    /// Sources can use this to obtain authentication credentials (passwords, tokens,
    /// certificates) for connecting to external systems.
    pub identity_provider: Option<Arc<dyn IdentityProvider>>,
}

impl SourceRuntimeContext {
    /// Create a new source runtime context.
    ///
    /// This is typically called by `SourceManager` when adding a source to DrasiLib.
    /// Plugin developers do not need to call this directly.
    ///
    /// # Arguments
    ///
    /// * `instance_id` - The DrasiLib instance ID
    /// * `source_id` - The unique identifier for this source
    /// * `state_store` - Optional persistent state storage
    /// * `update_tx` - mpsc sender for status updates to the component graph
    /// * `identity_provider` - Optional identity provider for credential injection
    pub fn new(
        instance_id: impl Into<String>,
        source_id: impl Into<String>,
        state_store: Option<Arc<dyn StateStoreProvider>>,
        update_tx: ComponentUpdateSender,
        identity_provider: Option<Arc<dyn IdentityProvider>>,
    ) -> Self {
        Self {
            instance_id: instance_id.into(),
            source_id: source_id.into(),
            state_store,
            update_tx,
            identity_provider,
        }
    }

    /// Get the DrasiLib instance ID.
    pub fn instance_id(&self) -> &str {
        &self.instance_id
    }

    /// Get the source's unique identifier.
    pub fn source_id(&self) -> &str {
        &self.source_id
    }

    /// Get a reference to the state store if configured.
    ///
    /// Returns `Some(&Arc<dyn StateStoreProvider>)` if a state store was configured,
    /// otherwise `None`.
    pub fn state_store(&self) -> Option<&Arc<dyn StateStoreProvider>> {
        self.state_store.as_ref()
    }
}

impl std::fmt::Debug for SourceRuntimeContext {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("SourceRuntimeContext")
            .field("instance_id", &self.instance_id)
            .field("source_id", &self.source_id)
            .field(
                "state_store",
                &self.state_store.as_ref().map(|_| "<StateStoreProvider>"),
            )
            .field("update_tx", &"<ComponentUpdateSender>")
            .field(
                "identity_provider",
                &self
                    .identity_provider
                    .as_ref()
                    .map(|_| "<IdentityProvider>"),
            )
            .finish()
    }
}

/// Context provided to Reaction plugins during initialization.
///
/// Contains `Arc<T>` instances for all drasi-lib provided services.
/// DrasiLib constructs this context when a reaction is added via `add_reaction()`.
///
/// # Available Services
///
/// - `instance_id`: The DrasiLib instance ID (for log routing isolation)
/// - `reaction_id`: The unique identifier for this reaction instance
/// - `state_store`: Optional persistent state storage (if configured)
/// - `update_tx`: mpsc sender for fire-and-forget status updates to the component graph
/// - `identity_provider`: Optional identity provider for credential injection
///
/// # Clone
///
/// This struct implements `Clone` and all fields use `Arc` internally,
/// making cloning cheap (just reference count increments).
#[derive(Clone)]
pub struct ReactionRuntimeContext {
    /// DrasiLib instance ID (for log routing isolation)
    pub instance_id: String,

    /// Unique identifier for this reaction instance
    pub reaction_id: String,

    /// Optional persistent state storage.
    ///
    /// This is `Some` if a state store provider was configured on DrasiLib,
    /// otherwise `None`. Reactions can use this to persist state across restarts.
    pub state_store: Option<Arc<dyn StateStoreProvider>>,

    /// mpsc sender for fire-and-forget component status updates.
    ///
    /// Status changes sent here are applied to the component graph by the
    /// graph update loop, which emits broadcast events to all subscribers.
    pub update_tx: ComponentUpdateSender,

    /// Optional identity provider for credential injection.
    ///
    /// This is `Some` if the host has configured an identity provider for this component.
    /// Reactions can use this to obtain authentication credentials (passwords, tokens,
    /// certificates) for connecting to external systems.
    pub identity_provider: Option<Arc<dyn IdentityProvider>>,
}

impl ReactionRuntimeContext {
    /// Create a new reaction runtime context.
    ///
    /// This is typically called by `ReactionManager` when adding a reaction to DrasiLib.
    /// Plugin developers do not need to call this directly.
    ///
    /// # Arguments
    ///
    /// * `instance_id` - The DrasiLib instance ID
    /// * `reaction_id` - The unique identifier for this reaction
    /// * `state_store` - Optional persistent state storage
    /// * `update_tx` - mpsc sender for status updates to the component graph
    /// * `identity_provider` - Optional identity provider for credential injection
    pub fn new(
        instance_id: impl Into<String>,
        reaction_id: impl Into<String>,
        state_store: Option<Arc<dyn StateStoreProvider>>,
        update_tx: ComponentUpdateSender,
        identity_provider: Option<Arc<dyn IdentityProvider>>,
    ) -> Self {
        Self {
            instance_id: instance_id.into(),
            reaction_id: reaction_id.into(),
            state_store,
            update_tx,
            identity_provider,
        }
    }

    /// Get the DrasiLib instance ID.
    pub fn instance_id(&self) -> &str {
        &self.instance_id
    }

    /// Get the reaction's unique identifier.
    pub fn reaction_id(&self) -> &str {
        &self.reaction_id
    }

    /// Get a reference to the state store if configured.
    pub fn state_store(&self) -> Option<&Arc<dyn StateStoreProvider>> {
        self.state_store.as_ref()
    }
}

impl std::fmt::Debug for ReactionRuntimeContext {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("ReactionRuntimeContext")
            .field("instance_id", &self.instance_id)
            .field("reaction_id", &self.reaction_id)
            .field(
                "state_store",
                &self.state_store.as_ref().map(|_| "<StateStoreProvider>"),
            )
            .field("update_tx", &"<ComponentUpdateSender>")
            .field(
                "identity_provider",
                &self
                    .identity_provider
                    .as_ref()
                    .map(|_| "<IdentityProvider>"),
            )
            .finish()
    }
}

/// Context provided to Query components during initialization.
///
/// Contains the DrasiLib instance ID and update channel for status reporting.
/// Constructed by `QueryManager` when a query is added via `add_query()`.
///
/// Unlike sources and reactions, queries are internal to drasi-lib (not plugins),
/// but still follow the same context-based initialization pattern for consistency.
///
/// # Clone
///
/// This struct implements `Clone` and uses `Arc` internally for the update channel,
/// making cloning cheap (just reference count increments).
#[derive(Clone)]
pub struct QueryRuntimeContext {
    /// DrasiLib instance ID (for log routing isolation)
    pub instance_id: String,

    /// Unique identifier for this query instance
    pub query_id: String,

    /// mpsc sender for fire-and-forget component status updates.
    ///
    /// Status changes sent here are applied to the component graph by the
    /// graph update loop, which emits broadcast events to all subscribers.
    pub update_tx: ComponentUpdateSender,
}

impl QueryRuntimeContext {
    /// Create a new query runtime context.
    ///
    /// This is typically called by `QueryManager` when adding a query to DrasiLib.
    ///
    /// # Arguments
    ///
    /// * `instance_id` - The DrasiLib instance ID
    /// * `query_id` - The unique identifier for this query
    /// * `update_tx` - mpsc sender for status updates to the component graph
    pub fn new(
        instance_id: impl Into<String>,
        query_id: impl Into<String>,
        update_tx: ComponentUpdateSender,
    ) -> Self {
        Self {
            instance_id: instance_id.into(),
            query_id: query_id.into(),
            update_tx,
        }
    }

    /// Get the DrasiLib instance ID.
    pub fn instance_id(&self) -> &str {
        &self.instance_id
    }

    /// Get the query's unique identifier.
    pub fn query_id(&self) -> &str {
        &self.query_id
    }
}

impl std::fmt::Debug for QueryRuntimeContext {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("QueryRuntimeContext")
            .field("instance_id", &self.instance_id)
            .field("query_id", &self.query_id)
            .field("update_tx", &"<ComponentUpdateSender>")
            .finish()
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::component_graph::ComponentGraph;
    use crate::state_store::MemoryStateStoreProvider;
    use std::sync::Arc;

    fn test_update_tx() -> ComponentUpdateSender {
        let (graph, _rx) = ComponentGraph::new("test-instance");
        graph.update_sender()
    }

    #[tokio::test]
    async fn test_source_runtime_context_creation() {
        let state_store = Arc::new(MemoryStateStoreProvider::new());
        let update_tx = test_update_tx();

        let context = SourceRuntimeContext::new(
            "test-instance",
            "test-source",
            Some(state_store),
            update_tx,
            None,
        );

        assert_eq!(context.instance_id(), "test-instance");
        assert_eq!(context.source_id(), "test-source");
        assert!(context.state_store().is_some());
    }

    #[tokio::test]
    async fn test_source_runtime_context_without_state_store() {
        let update_tx = test_update_tx();

        let context =
            SourceRuntimeContext::new("test-instance", "test-source", None, update_tx, None);

        assert_eq!(context.source_id(), "test-source");
        assert!(context.state_store().is_none());
    }

    #[tokio::test]
    async fn test_source_runtime_context_clone() {
        let state_store = Arc::new(MemoryStateStoreProvider::new());
        let update_tx = test_update_tx();

        let context = SourceRuntimeContext::new(
            "test-instance",
            "test-source",
            Some(state_store),
            update_tx,
            None,
        );

        let cloned = context.clone();
        assert_eq!(cloned.source_id(), context.source_id());
    }

    #[tokio::test]
    async fn test_reaction_runtime_context_creation() {
        let state_store = Arc::new(MemoryStateStoreProvider::new());
        let update_tx = test_update_tx();

        let context = ReactionRuntimeContext::new(
            "test-instance",
            "test-reaction",
            Some(state_store),
            update_tx,
            None,
        );

        assert_eq!(context.instance_id(), "test-instance");
        assert_eq!(context.reaction_id(), "test-reaction");
        assert!(context.state_store().is_some());
    }

    #[tokio::test]
    async fn test_reaction_runtime_context_without_state_store() {
        let update_tx = test_update_tx();

        let context =
            ReactionRuntimeContext::new("test-instance", "test-reaction", None, update_tx, None);

        assert_eq!(context.reaction_id(), "test-reaction");
        assert!(context.state_store().is_none());
    }

    #[tokio::test]
    async fn test_reaction_runtime_context_clone() {
        let state_store = Arc::new(MemoryStateStoreProvider::new());
        let update_tx = test_update_tx();

        let context = ReactionRuntimeContext::new(
            "test-instance",
            "test-reaction",
            Some(state_store),
            update_tx,
            None,
        );

        let cloned = context.clone();
        assert_eq!(cloned.reaction_id(), context.reaction_id());
    }

    #[test]
    fn test_source_runtime_context_debug() {
        let update_tx = test_update_tx();
        let context = SourceRuntimeContext::new("test-instance", "test", None, update_tx, None);
        let debug_str = format!("{context:?}");
        assert!(debug_str.contains("SourceRuntimeContext"));
        assert!(debug_str.contains("test"));
    }

    #[test]
    fn test_reaction_runtime_context_debug() {
        let update_tx = test_update_tx();
        let context = ReactionRuntimeContext::new("test-instance", "test", None, update_tx, None);
        let debug_str = format!("{context:?}");
        assert!(debug_str.contains("ReactionRuntimeContext"));
        assert!(debug_str.contains("test"));
    }

    #[tokio::test]
    async fn test_query_runtime_context_creation() {
        let update_tx = test_update_tx();
        let context = QueryRuntimeContext::new("test-instance", "test-query", update_tx);

        assert_eq!(context.instance_id(), "test-instance");
        assert_eq!(context.query_id(), "test-query");
    }

    #[tokio::test]
    async fn test_query_runtime_context_clone() {
        let update_tx = test_update_tx();
        let context = QueryRuntimeContext::new("test-instance", "test-query", update_tx);

        let cloned = context.clone();
        assert_eq!(cloned.query_id(), context.query_id());
        assert_eq!(cloned.instance_id(), context.instance_id());
    }

    #[test]
    fn test_query_runtime_context_debug() {
        let update_tx = test_update_tx();
        let context = QueryRuntimeContext::new("test-instance", "test-query", update_tx);
        let debug_str = format!("{context:?}");
        assert!(debug_str.contains("QueryRuntimeContext"));
        assert!(debug_str.contains("test-query"));
    }
}