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
//! V1 message-level schema for NERVE.
//!
//! Each NERVE frame carries a binary header (see `frame.rs`) followed by a
//! JSON payload defined here. JSON is used in V1 for debuggability and for
//! easy implementation from JavaScript.
//!
//! # Message directions
//!
//! | `MessageType` | Wire byte | Direction |
//! |-----------------|-----------|-------------------------------|
//! | Ping | 0x01 | bidirectional |
//! | `SearchQuery` | 0x02 | browser extension → AI daemon |
//! | `SearchResult` | 0x03 | AI daemon → browser extension |
//! | `AiToken` | 0x04 | AI daemon → browser extension |
//! | Cancel | 0x05 | browser extension → AI daemon |
//!
//! # Payload size guidance
//!
//! The NERVE framing layer enforces a hard limit of 1 MiB per frame.
//! `SearchQuery` context fields (`extract`, `selection`) should contain
//! bounded, pre-processed excerpts — not raw DOM HTML. Browser-side
//! extraction is responsible for keeping these fields small (target < 4 KiB).
//!
//! # Versioning
//!
//! `SearchQuery` carries a `v` field (currently always `1`). Implementations
//! MUST reject payloads with `v != 1` rather than silently treating them as V1.
use ;
/// The only supported message schema version.
pub const MESSAGE_VERSION: u8 = 1;
/// Maximum number of search results per response.
pub const MAX_RESULTS: u32 = 100;
// ─── Error ───────────────────────────────────────────────────────────────────
/// Errors that can occur when encoding or decoding a NERVE message payload.
// ─── SearchQuery (0x02) ──────────────────────────────────────────────────────
/// Page context sent alongside a search query.
///
/// `url` and `title` are always present. `selection` is the user's highlighted
/// text (if any). `extract` is a bounded text excerpt from the page body
/// (target: < 4 KiB; browser-side extraction is responsible for truncation).
/// Options controlling how the daemon handles a search query.
/// Payload for `MessageType::SearchQuery` (0x02).
///
/// Direction: browser extension → AI daemon.
///
/// JSON schema:
/// ```json
/// {
/// "v": 1,
/// "query": "rust async io",
/// "context": {
/// "url": "https://example.com/page",
/// "title": "Example Page",
/// "selection": "optional highlighted text",
/// "extract": "optional page body excerpt"
/// },
/// "opts": {
/// "search": true,
/// "max_results": 10
/// }
/// }
/// ```
// ─── SearchResult (0x03) ─────────────────────────────────────────────────────
/// A single ranked search result.
/// Payload for `MessageType::SearchResult` (0x03).
///
/// Direction: AI daemon → browser extension.
///
/// The NERVE frame's `request_id` links this response to the originating
/// `SearchQuery`. This is a complete (non-streaming) response; the FINAL
/// flag is set on its frame.
///
/// JSON schema:
/// ```json
/// {
/// "results": [
/// { "url": "…", "title": "…", "snippet": "…", "score": 0.92 }
/// ],
/// "took_ms": 34
/// }
/// ```
// ─── AiToken (0x04) ──────────────────────────────────────────────────────────
/// Payload for `MessageType::AiToken` (0x04).
///
/// Direction: AI daemon → browser extension.
///
/// Tokens are streamed using the NERVE STREAM / FINAL flags:
///
/// ```text
/// AiToken + STREAM
/// AiToken + STREAM
/// AiToken + FINAL ← last token for this request_id
/// ```
///
/// The NERVE `request_id` identifies which inference stream this token belongs
/// to. Do not implement a second streaming protocol inside the payload.
///
/// JSON schema:
/// ```json
/// { "t": "Hello" }
/// ```
// ─── Cancel (0x05) ───────────────────────────────────────────────────────────
//
// Cancel carries an empty payload. The target request is identified solely
// by the `request_id` in the NERVE frame header — no payload struct is needed.
// Encode with `encode(MessageType::Cancel, FrameFlags::FINAL, request_id, &[])`.
// ─── Codec helpers ───────────────────────────────────────────────────────────
/// Serialize a message struct to a JSON byte vector for use as a NERVE payload.
///
/// # Errors
///
/// Returns `Err` if `T`'s `Serialize` impl fails; for all types defined in this
/// crate this is infallible.
///
/// # Examples
///
/// ```
/// use nerve_ipc::message::{AiToken, encode_message};
///
/// let payload = encode_message(&AiToken { t: "Hello".into() }).unwrap();
/// assert!(!payload.is_empty());
/// ```
/// Deserialize a NERVE payload into a message struct.
///
/// # Errors
///
/// Returns `Err` if `payload` is not valid JSON for type `T`.
///
/// # Examples
///
/// ```
/// use nerve_ipc::message::{AiToken, encode_message, decode_message};
///
/// let payload = encode_message(&AiToken { t: "Hello".into() }).unwrap();
/// let token: AiToken = decode_message(&payload).unwrap();
/// assert_eq!(token.t, "Hello");
/// ```
/// Deserialize and validate a `SearchQuery` payload.
///
/// # Errors
///
/// | Condition | Error |
/// |-----------|-------|
/// | Invalid JSON | [`MessageError::Json`] |
/// | `v != 1` | [`MessageError::UnsupportedVersion`] |
/// | `query` is empty | [`MessageError::EmptyQuery`] |
/// | `max_results` out of range | [`MessageError::MaxResultsOutOfRange`] |