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
511
512
513
514
515
516
517
518
519
520
521
use std::sync::Arc;

use serde::{Serialize, de::DeserializeOwned};
use serde_json::Value;
use uuid::Uuid;

#[cfg(not(target_arch = "wasm32"))]
use crate::server::CellServerCtx;
use crate::{
    command::CommandError,
    common::to_value::ToValue,
    entities::client::ClientId,
    event::EventOptions,
    item::Eventable,
    query::QueryParams,
    request::RequestContext,
    wire::{MEvent, MEventType},
};

/// Context provided to command handlers for accessing dependencies.
///
/// CommandContext allows handlers to:
/// - Emit SET/DEL events
/// - Execute queries against the store
/// - Access request context (tx, client_id, lineage, host_id)
#[derive(Clone)]
pub struct CommandContext {
    /// Request context with tracing information (tx, client_id, lineage, host_id).
    pub req: Arc<RequestContext>,

    /// The command ID being executed (for error reporting).
    pub command_id: Arc<str>,

    #[cfg(not(target_arch = "wasm32"))]
    server_ctx: Arc<CellServerCtx>,
}

impl CommandContext {
    /// Create a new CommandContext.
    #[cfg(not(target_arch = "wasm32"))]
    pub fn new(
        command_id: Arc<str>,
        req: Arc<RequestContext>,
        server_ctx: Arc<CellServerCtx>,
    ) -> Self {
        Self {
            req,
            command_id,
            server_ctx,
        }
    }

    // ─────────────────────────────────────────────────────────────────────────
    // Convenience accessors
    // ─────────────────────────────────────────────────────────────────────────

    /// Get the transaction ID.
    pub fn tx(&self) -> Arc<str> {
        self.req.tx.clone()
    }

    /// Get the client ID if present.
    pub fn client_id(&self) -> Option<ClientId> {
        self.req.client_id.clone()
    }

    /// Get the host ID.
    pub fn host_id(&self) -> Uuid {
        self.req.host_id
    }

    /// Get the lineage (call chain).
    pub fn lineage(&self) -> &[Arc<str>] {
        &self.req.lineage
    }

    /// Get the request creation timestamp.
    pub fn created_at(&self) -> &str {
        &self.req.created_at
    }

    /// Emit a SET event for an item.
    pub fn emit_set<T>(&self, item: impl std::ops::Deref<Target = T>) -> Result<(), CommandError>
    where
        T: Eventable + Serialize + Clone + 'static,
    {
        self.emit_set_with_options(item, EventOptions::default())
    }

    /// Emit a SET event for an item with custom options.
    pub fn emit_set_with_options<T>(
        &self,
        item: impl std::ops::Deref<Target = T>,
        options: EventOptions,
    ) -> Result<(), CommandError>
    where
        T: Eventable + Serialize + Clone + 'static,
    {
        #[cfg(not(target_arch = "wasm32"))]
        {
            self.server_ctx
                .set_with_options(&*item, Some(options))
                .map_err(|e| CommandError {
                    tx: self.req.tx.to_string(),
                    command_id: self.command_id.to_string(),
                    message: e.to_string(),
                })
        }
        #[cfg(target_arch = "wasm32")]
        {
            let _ = (item, options);
            unreachable!();
        }
    }

    /// Emit a batch of SET events for items.
    ///
    /// This is more efficient than repeated `emit_set` calls because the server can
    /// apply the events in one bulk pass.
    pub fn emit_set_batch<T: Eventable + Serialize + Clone + 'static>(
        &self,
        items: &[T],
    ) -> Result<(), CommandError> {
        #[cfg(not(target_arch = "wasm32"))]
        {
            if items.is_empty() {
                return Ok(());
            }

            let source_id = Some(self.req.host_id.to_string());
            let mut events = Vec::with_capacity(items.len());
            for item in items {
                let item_json = serde_json::to_value(item).map_err(|err| CommandError {
                    tx: self.req.tx.to_string(),
                    command_id: self.command_id.to_string(),
                    message: format!("Failed to serialize item for batch set: {}", err),
                })?;
                events.push(MEvent {
                    item: item_json,
                    change_type: MEventType::SET,
                    item_type: item.entity_type().to_string(),
                    created_at: self.req.created_at.to_string(),
                    tx: self.req.tx.to_string(),
                    source_id: source_id.clone(),
                    options: None,
                });
            }
            self.server_ctx
                .apply_event_batch(events)
                .map_err(|e| CommandError {
                    tx: self.req.tx.to_string(),
                    command_id: self.command_id.to_string(),
                    message: e.to_string(),
                })?;
            Ok(())
        }
        #[cfg(target_arch = "wasm32")]
        {
            let _ = items;
            unreachable!();
        }
    }

    /// Emit a mixed batch of SET events for type-erased items.
    ///
    /// This is useful when a command needs to publish multiple entity types
    /// together in one server batch.
    pub fn emit_set_any_batch<I>(&self, items: I) -> Result<(), CommandError>
    where
        I: IntoIterator<Item = Arc<dyn crate::item::AnyItem>>,
    {
        #[cfg(not(target_arch = "wasm32"))]
        {
            let items: Vec<_> = items.into_iter().collect();
            if items.is_empty() {
                return Ok(());
            }

            let source_id = Some(self.req.host_id.to_string());
            let mut events = Vec::with_capacity(items.len());
            for item in items {
                events.push(MEvent {
                    item: item.to_value(),
                    change_type: MEventType::SET,
                    item_type: item.entity_type().to_string(),
                    created_at: self.req.created_at.to_string(),
                    tx: self.req.tx.to_string(),
                    source_id: source_id.clone(),
                    options: None,
                });
            }
            self.server_ctx
                .apply_event_batch(events)
                .map_err(|e| CommandError {
                    tx: self.req.tx.to_string(),
                    command_id: self.command_id.to_string(),
                    message: e.to_string(),
                })?;
            Ok(())
        }
        #[cfg(target_arch = "wasm32")]
        {
            let _ = items;
            unreachable!();
        }
    }

    /// Emit a DEL event for an item.
    pub fn emit_del<T>(&self, item: impl std::ops::Deref<Target = T>) -> Result<(), CommandError>
    where
        T: Eventable + Serialize + Clone + 'static,
    {
        self.emit_del_with_options(item, EventOptions::default())
    }

    /// Emit a batch of DEL events for items.
    ///
    /// This is more efficient than repeated `emit_del` calls because the server can
    /// apply the events in one bulk pass.
    pub fn emit_del_batch<'a, T, I>(&self, items: I) -> Result<(), CommandError>
    where
        T: Eventable + Serialize + Clone + 'static,
        I: IntoIterator<Item = &'a T>,
        T: 'a,
    {
        #[cfg(not(target_arch = "wasm32"))]
        {
            let items: Vec<&T> = items.into_iter().collect();
            if items.is_empty() {
                return Ok(());
            }

            let source_id = Some(self.req.host_id.to_string());
            let mut events = Vec::with_capacity(items.len());
            for item in items {
                let item_json = serde_json::to_value(item).map_err(|err| CommandError {
                    tx: self.req.tx.to_string(),
                    command_id: self.command_id.to_string(),
                    message: format!("Failed to serialize item for batch del: {}", err),
                })?;
                events.push(MEvent {
                    item: item_json,
                    change_type: MEventType::DEL,
                    item_type: item.entity_type().to_string(),
                    created_at: self.req.created_at.to_string(),
                    tx: self.req.tx.to_string(),
                    source_id: source_id.clone(),
                    options: None,
                });
            }
            self.server_ctx
                .apply_event_batch(events)
                .map_err(|e| CommandError {
                    tx: self.req.tx.to_string(),
                    command_id: self.command_id.to_string(),
                    message: e.to_string(),
                })?;
            Ok(())
        }
        #[cfg(target_arch = "wasm32")]
        {
            let _ = items;
            unreachable!();
        }
    }

    /// Emit a DEL event for an item with custom options.
    pub fn emit_del_with_options<T>(
        &self,
        item: impl std::ops::Deref<Target = T>,
        options: EventOptions,
    ) -> Result<(), CommandError>
    where
        T: Eventable + Serialize + Clone + 'static,
    {
        #[cfg(not(target_arch = "wasm32"))]
        {
            self.server_ctx
                .del_with_options(&*item, Some(options))
                .map_err(|e| CommandError {
                    tx: self.req.tx.to_string(),
                    command_id: self.command_id.to_string(),
                    message: e.to_string(),
                })
        }
        #[cfg(target_arch = "wasm32")]
        {
            let _ = (item, options);
            unreachable!();
        }
    }

    /// Emit a batch of pre-built MEvents (SET or DEL).
    ///
    /// This is useful for type-erased imports where the caller already has
    /// the raw JSON and entity type strings.
    pub fn emit_event_batch(&self, events: Vec<MEvent>) -> Result<usize, CommandError> {
        #[cfg(not(target_arch = "wasm32"))]
        {
            self.server_ctx
                .apply_event_batch(events)
                .map_err(|e| CommandError {
                    tx: self.req.tx.to_string(),
                    command_id: self.command_id.to_string(),
                    message: e.to_string(),
                })
        }
        #[cfg(target_arch = "wasm32")]
        {
            let _ = events;
            unreachable!();
        }
    }

    /// Execute a query and return the first result.
    ///
    /// This performs a one-shot query against the store.
    pub fn exec_query_first<Q>(&self, query: Q) -> Result<Option<Arc<Q::Item>>, CommandError>
    where
        Q: QueryParams,
        Q::Item: DeserializeOwned + std::fmt::Debug + Send + Sync + Clone + 'static,
    {
        #[cfg(not(target_arch = "wasm32"))]
        {
            Ok(self
                .server_ctx
                .query_snapshot(query, self.req.clone())
                .into_iter()
                .next())
        }
        #[cfg(target_arch = "wasm32")]
        {
            let _ = query;
            unreachable!();
        }
    }
    /// Execute a query and return all results.
    ///
    /// This performs a one-shot query against the store.
    pub fn exec_query<Q>(&self, query: Q) -> Result<Vec<Arc<Q::Item>>, CommandError>
    where
        Q: QueryParams,
        Q::Item: DeserializeOwned + std::fmt::Debug + Send + Sync + Clone + 'static,
    {
        #[cfg(not(target_arch = "wasm32"))]
        {
            Ok(self
                .server_ctx
                .query_snapshot(query, self.req.clone())
                .into_iter()
                .collect())
        }
        #[cfg(target_arch = "wasm32")]
        {
            let _ = query;
            unreachable!();
        }
    }

    /// Execute another command within this context.
    ///
    /// This allows command handlers to compose by calling other commands.
    /// The nested command shares the same transaction context.
    /// The command is consumed by execution, but the context is borrowed.
    pub fn execute_command<C: CommandHandler>(&self, cmd: C) -> Result<C::Result, CommandError> {
        cmd.execute(self.clone())
    }

    /// Execute a report and return the current value.
    ///
    /// This allows command handlers to query reports for decision making.
    pub fn exec_report<R>(
        &self,
        report: R,
    ) -> Result<<R as crate::report::ReportHandler>::Output, CommandError>
    where
        R: crate::report::ReportParams + Clone,
    {
        #[cfg(not(target_arch = "wasm32"))]
        {
            use hyphae::Gettable;
            Ok(self
                .server_ctx
                .report(report, self.req.clone())
                .get()
                .as_ref()
                .clone())
        }
        #[cfg(target_arch = "wasm32")]
        {
            let _ = report;
            unreachable!();
        }
    }
}

/// Trait for command handlers.
///
/// Implement this directly on your command params struct.
/// The command is already deserialized when `execute` is called.
///
/// # Example
///
/// ```text
/// // Define params with #[myko_command(...)]:
/// #[myko_command(result = "()")]
/// pub struct DeleteMachine {
///   pub id: Arc<str>,
/// }
///
/// // Implement the business logic:
/// impl CommandHandler for DeleteMachine {
///   fn execute(self, ctx: CommandContext) -> Result<(), CommandError> {
///     // validate input, query current state, emit SET/DEL events
///     Ok(())
///   }
/// }
///
/// // Register the handler (usually near the command definition):
/// register_command_handler!(DeleteMachine);
/// ```
pub trait CommandHandler: crate::command::CommandParams {
    /// Execute the command synchronously.
    ///
    /// `self` is the deserialized command parameters (owned, consumed by execution).
    fn execute(self, ctx: CommandContext) -> Result<Self::Result, CommandError>;
}

/// Type-erased command executor for dynamic dispatch.
///
/// This is used internally by the registry to execute commands
/// without knowing their concrete types at compile time.
pub trait DynCommandExecutor: Send + Sync + 'static {
    /// The command ID this executor handles
    fn command_id(&self) -> &'static str;

    /// Execute the command from a JSON value
    fn execute_from_value(
        &self,
        command: Value,
        ctx: CommandContext,
    ) -> Result<Value, CommandError>;
}

/// Adapter that wraps a CommandHandler to provide DynCommandExecutor
pub struct CommandExecutorAdapter<C: CommandHandler> {
    _phantom: std::marker::PhantomData<C>,
}

impl<C: CommandHandler> CommandExecutorAdapter<C> {
    pub fn new() -> Self {
        Self {
            _phantom: std::marker::PhantomData,
        }
    }
}

impl<C: CommandHandler> Default for CommandExecutorAdapter<C> {
    fn default() -> Self {
        Self::new()
    }
}

impl<C: CommandHandler> DynCommandExecutor for CommandExecutorAdapter<C> {
    fn command_id(&self) -> &'static str {
        C::command_id_static()
    }

    fn execute_from_value(
        &self,
        command: Value,
        ctx: CommandContext,
    ) -> Result<Value, CommandError> {
        // Deserialize the command
        let cmd: C = serde_json::from_value(command).map_err(|e| CommandError {
            tx: ctx.tx().to_string(),
            command_id: C::command_id_static().to_string(),
            message: format!("Failed to deserialize command: {}", e),
        })?;

        // Execute the handler
        let result = cmd.execute(ctx)?;

        // Serialize the result
        serde_json::to_value(result).map_err(|e| CommandError {
            tx: String::new(),
            command_id: C::command_id_static().to_string(),
            message: format!("Failed to serialize result: {}", e),
        })
    }
}

/// Type-erased command executor factory for inventory registration
pub type CommandExecutorFactory = fn() -> Box<dyn DynCommandExecutor>;

/// Registration entry for command handlers
pub struct CommandHandlerRegistration {
    pub command_id: &'static str,
    pub factory: CommandExecutorFactory,
}

inventory::collect!(CommandHandlerRegistration);

/// Macro to register a command handler with the inventory.
///
/// # Example
///
/// ```text
/// register_command_handler!(DeleteMachine);
/// ```
#[macro_export]
macro_rules! register_command_handler {
    ($cmd:ty) => {
        $crate::inventory::submit! {
            $crate::command::CommandHandlerRegistration {
                command_id: <$cmd as $crate::command::CommandIdStatic>::COMMAND_ID,
                factory: || Box::new($crate::command::CommandExecutorAdapter::<$cmd>::new()),
            }
        }
    };
}