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
//! Hook system for ORCS CLI.
//!
//! This crate provides the hook abstraction layer for the ORCS
//! (Orchestrated Runtime for Collaborative Systems) architecture.
//!
//! # Crate Architecture
//!
//! This crate sits between the **Plugin SDK** and **Runtime** layers:
//!
//! ```text
//! ┌─────────────────────────────────────────────────────────────┐
//! │ Plugin SDK Layer │
//! │ (External, SemVer stable, safe to depend on) │
//! ├─────────────────────────────────────────────────────────────┤
//! │ orcs-types : ID types, Principal, ErrorCode │
//! │ orcs-event : Signal, Request, Event │
//! │ orcs-component : Component trait (WIT target) │
//! └─────────────────────────────────────────────────────────────┘
//! ↕ depends on SDK, depended on by Runtime
//! ┌─────────────────────────────────────────────────────────────┐
//! │ Hook Layer ◄── HERE │
//! ├─────────────────────────────────────────────────────────────┤
//! │ orcs-hook : Hook trait, Registry, FQL, Config │
//! └─────────────────────────────────────────────────────────────┘
//! ↕
//! ┌─────────────────────────────────────────────────────────────┐
//! │ Runtime Layer │
//! ├─────────────────────────────────────────────────────────────┤
//! │ orcs-runtime : Session, EventBus, ChannelRunner │
//! └─────────────────────────────────────────────────────────────┘
//! ```
//!
//! # Overview
//!
//! Hooks allow cross-cutting concerns (logging, auditing, capability
//! injection, payload transformation, metrics, etc.) to be injected
//! at lifecycle points throughout the ORCS runtime via a single,
//! unified configuration interface.
//!
//! # Core Concepts
//!
//! ## Hook Points
//!
//! [`HookPoint`] enumerates 26 lifecycle points across 8 categories:
//! Component, Request, Signal, Child, Channel, Tool, Auth, and EventBus.
//!
//! ## FQL (Fully Qualified Locator)
//!
//! [`FqlPattern`] provides pattern matching for component addressing:
//!
//! ```text
//! <scope>::<target>[/<child_path>][#<instance>]
//! ```
//!
//! Examples: `"builtin::llm"`, `"*::*"`, `"builtin::llm/agent-1"`.
//!
//! ## Hook Trait
//!
//! The [`Hook`] trait defines a single hook handler:
//!
//! ```ignore
//! pub trait Hook: Send + Sync {
//! fn id(&self) -> &str;
//! fn fql_pattern(&self) -> &FqlPattern;
//! fn hook_point(&self) -> HookPoint;
//! fn priority(&self) -> i32 { 100 }
//! fn execute(&self, ctx: HookContext) -> HookAction;
//! }
//! ```
//!
//! ## Hook Actions
//!
//! [`HookAction`] determines what happens after a hook executes:
//!
//! - `Continue(ctx)` — pass (modified) context downstream
//! - `Skip(value)` — skip the operation (pre-hooks only)
//! - `Abort { reason }` — abort with error (pre-hooks only)
//! - `Replace(value)` — replace result payload (post-hooks only)
//!
//! ## Registry
//!
//! [`HookRegistry`] is the central dispatch engine. It manages
//! hook registration, priority ordering, FQL filtering, and
//! chain execution semantics.
//!
//! ## Configuration
//!
//! [`HooksConfig`] and [`HookDef`] provide TOML-serializable
//! declarative hook definitions for `OrcsConfig` integration.
//!
//! # Concurrency
//!
//! The registry is designed to be wrapped in
//! `Arc<std::sync::RwLock<HookRegistry>>` following the same pattern
//! as `SharedChannelHandles` in the runtime.
//!
//! # Example
//!
//! ```
//! use orcs_hook::{
//! HookRegistry, HookPoint, HookContext, HookAction, FqlPattern, Hook,
//! };
//! use orcs_types::{ComponentId, ChannelId, Principal};
//! use serde_json::json;
//!
//! // Create a registry
//! let mut registry = HookRegistry::new();
//!
//! // Build a context
//! let ctx = HookContext::new(
//! HookPoint::RequestPreDispatch,
//! ComponentId::builtin("llm"),
//! ChannelId::new(),
//! Principal::System,
//! 0,
//! json!({"operation": "chat"}),
//! );
//!
//! // Dispatch (no hooks registered → Continue with unchanged context)
//! let action = registry.dispatch(
//! HookPoint::RequestPreDispatch,
//! &ComponentId::builtin("llm"),
//! None,
//! ctx,
//! );
//! assert!(action.is_continue());
//! ```
// Re-export core types
pub use HookAction;
pub use ;
pub use ;
pub use HookError;
pub use ;
pub use Hook;
pub use HookPoint;
pub use HookRegistry;
use ;
/// Thread-safe shared reference to a [`HookRegistry`].
///
/// Follows the same pattern as `SharedChannelHandles` in the runtime:
/// - `dispatch()` takes `&self` → read lock
/// - `register()` / `unregister()` take `&mut self` → write lock
///
/// `std::sync::RwLock` (not tokio) because the lock is never held across
/// `.await` points.
pub type SharedHookRegistry = ;
/// Creates a new empty [`SharedHookRegistry`].
// Re-export testing utilities