bmux_plugin_sdk 0.0.1-alpha.1

Plugin SDK for bmux — the types and traits plugin authors need
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
//! Identifier newtypes used across the plugin framework.
//!
//! Core bmux is domain-agnostic: it never names a concept like "pane" or
//! "session" itself. Instead, plugins declare the interfaces, operations,
//! capabilities, and event streams they expose through BPDL schemas, and
//! the generated code emits `const` identifier values that both the plugin
//! (as producer) and consumers (in other plugins, in core plumbing, or in
//! the CLI) import from the same plugin-api crate.
//!
//! This module provides the string-backed newtype wrappers used for those
//! identifiers:
//!
//! - [`PluginEventKind`] — the kind/name of a published event stream.
//! - [`InterfaceId`] — the canonical identifier for a BPDL interface.
//! - [`OperationId`] — the name of an operation (query or command) within
//!   an interface.
//! - [`CapabilityId`] — a granted capability string in a plugin manifest.
//!
//! All four are backed by `Cow<'static, str>` so that compile-time
//! constants are zero-allocation (they store a `&'static str` borrow),
//! while values decoded off the wire can own their string data. On the
//! wire and at rest they serialize as plain strings, so cross-language
//! plugins interoperate without understanding any Rust types.
//!
//! ## Compile-time safety without muddying the wire format
//!
//! At the call site, plugin-api crates emit one `const` per identifier:
//!
//! ```ignore
//! // Generated from BPDL for `plugin bmux.windows`:
//! pub mod windows_events {
//!     pub const INTERFACE_ID: bmux_plugin_sdk::InterfaceId =
//!         bmux_plugin_sdk::InterfaceId::from_static("windows-events");
//!     pub const EVENT_KIND: bmux_plugin_sdk::PluginEventKind =
//!         bmux_plugin_sdk::PluginEventKind::from_static("bmux.windows/windows-events");
//! }
//! ```
//!
//! Both producer and subscriber import from the same const. Cross-crate
//! typo-checking happens at compile time; the actual wire format remains
//! a plain string so dynamic plugins or non-Rust clients can participate
//! without any type-aware bindings.

use std::borrow::Cow;
use std::fmt;

use serde::{Deserialize, Deserializer, Serialize, Serializer};

/// Kind/name of a [`PluginEvent`](crate::PluginEvent) stream.
///
/// Events in bmux are plugin-owned: plugins declare typed event streams
/// in their BPDL schema, and generated constants give both producer and
/// subscriber a compile-time-checked identifier without baking any
/// domain knowledge into core. The underlying wire representation is a
/// plain string of the form `"<namespace>/<stream-name>"`, for example
/// `"bmux.windows/pane-event"`.
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct PluginEventKind(Cow<'static, str>);

impl PluginEventKind {
    /// Construct from a `'static` string slice (typically a BPDL-generated
    /// constant). Cheap, const-friendly, zero-allocation.
    #[must_use]
    pub const fn from_static(value: &'static str) -> Self {
        Self(Cow::Borrowed(value))
    }

    /// Construct from an owned string (typically a wire-decoded value).
    #[must_use]
    pub const fn from_owned(value: String) -> Self {
        Self(Cow::Owned(value))
    }

    /// Borrow the underlying string.
    #[must_use]
    pub fn as_str(&self) -> &str {
        self.0.as_ref()
    }
}

impl fmt::Debug for PluginEventKind {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_tuple("PluginEventKind")
            .field(&self.as_str())
            .finish()
    }
}

impl fmt::Display for PluginEventKind {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(self.as_str())
    }
}

impl AsRef<str> for PluginEventKind {
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}

impl PartialEq<str> for PluginEventKind {
    fn eq(&self, other: &str) -> bool {
        self.as_str() == other
    }
}

impl PartialEq<&str> for PluginEventKind {
    fn eq(&self, other: &&str) -> bool {
        self.as_str() == *other
    }
}

impl From<&'static str> for PluginEventKind {
    fn from(value: &'static str) -> Self {
        Self::from_static(value)
    }
}

impl From<String> for PluginEventKind {
    fn from(value: String) -> Self {
        Self::from_owned(value)
    }
}

impl From<PluginEventKind> for String {
    fn from(value: PluginEventKind) -> Self {
        value.0.into_owned()
    }
}

impl Serialize for PluginEventKind {
    fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
        serializer.serialize_str(self.as_str())
    }
}

impl<'de> Deserialize<'de> for PluginEventKind {
    fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
        let value = String::deserialize(deserializer)?;
        Ok(Self::from_owned(value))
    }
}

/// Canonical identifier for a BPDL interface.
///
/// Each BPDL-declared `interface <name>` block emits a generated
/// `pub const INTERFACE_ID: InterfaceId = InterfaceId::from_static("<name>")`
/// in its plugin-api crate. Consumers and providers both reference that
/// const when registering/resolving typed services.
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct InterfaceId(Cow<'static, str>);

impl InterfaceId {
    #[must_use]
    pub const fn from_static(value: &'static str) -> Self {
        Self(Cow::Borrowed(value))
    }

    #[must_use]
    pub const fn from_owned(value: String) -> Self {
        Self(Cow::Owned(value))
    }

    #[must_use]
    pub fn as_str(&self) -> &str {
        self.0.as_ref()
    }
}

impl fmt::Debug for InterfaceId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_tuple("InterfaceId").field(&self.as_str()).finish()
    }
}

impl fmt::Display for InterfaceId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(self.as_str())
    }
}

impl AsRef<str> for InterfaceId {
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}

impl PartialEq<str> for InterfaceId {
    fn eq(&self, other: &str) -> bool {
        self.as_str() == other
    }
}

impl PartialEq<&str> for InterfaceId {
    fn eq(&self, other: &&str) -> bool {
        self.as_str() == *other
    }
}

impl From<&'static str> for InterfaceId {
    fn from(value: &'static str) -> Self {
        Self::from_static(value)
    }
}

impl From<String> for InterfaceId {
    fn from(value: String) -> Self {
        Self::from_owned(value)
    }
}

impl From<InterfaceId> for String {
    fn from(value: InterfaceId) -> Self {
        value.0.into_owned()
    }
}

impl Serialize for InterfaceId {
    fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
        serializer.serialize_str(self.as_str())
    }
}

impl<'de> Deserialize<'de> for InterfaceId {
    fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
        let value = String::deserialize(deserializer)?;
        Ok(Self::from_owned(value))
    }
}

/// Name of an operation (query or command) within an interface.
///
/// BPDL codegen does not currently emit one constant per operation —
/// operations are dispatched through the generated service trait's
/// method names. [`OperationId`] is provided for lower-level byte
/// routers (and for places like plugin-manifest bindings) that must
/// compare operation strings dynamically.
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct OperationId(Cow<'static, str>);

impl OperationId {
    #[must_use]
    pub const fn from_static(value: &'static str) -> Self {
        Self(Cow::Borrowed(value))
    }

    #[must_use]
    pub const fn from_owned(value: String) -> Self {
        Self(Cow::Owned(value))
    }

    #[must_use]
    pub fn as_str(&self) -> &str {
        self.0.as_ref()
    }
}

impl fmt::Debug for OperationId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_tuple("OperationId").field(&self.as_str()).finish()
    }
}

impl fmt::Display for OperationId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(self.as_str())
    }
}

impl AsRef<str> for OperationId {
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}

impl PartialEq<str> for OperationId {
    fn eq(&self, other: &str) -> bool {
        self.as_str() == other
    }
}

impl PartialEq<&str> for OperationId {
    fn eq(&self, other: &&str) -> bool {
        self.as_str() == *other
    }
}

impl From<&'static str> for OperationId {
    fn from(value: &'static str) -> Self {
        Self::from_static(value)
    }
}

impl From<String> for OperationId {
    fn from(value: String) -> Self {
        Self::from_owned(value)
    }
}

impl From<OperationId> for String {
    fn from(value: OperationId) -> Self {
        value.0.into_owned()
    }
}

impl Serialize for OperationId {
    fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
        serializer.serialize_str(self.as_str())
    }
}

impl<'de> Deserialize<'de> for OperationId {
    fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
        let value = String::deserialize(deserializer)?;
        Ok(Self::from_owned(value))
    }
}

/// Capability identifier granted to a plugin through its manifest.
///
/// Capabilities gate access to host primitives (for example,
/// `bmux.storage.read`) and to other plugins' typed services (for
/// example, `bmux.windows.write`, which an unrelated plugin needs in
/// order to invoke any mutating operation on the windows plugin's
/// services). Plugin-api crates emit `CapabilityId` constants so
/// consumers don't hand-type capability strings.
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct CapabilityId(Cow<'static, str>);

impl CapabilityId {
    #[must_use]
    pub const fn from_static(value: &'static str) -> Self {
        Self(Cow::Borrowed(value))
    }

    #[must_use]
    pub const fn from_owned(value: String) -> Self {
        Self(Cow::Owned(value))
    }

    #[must_use]
    pub fn as_str(&self) -> &str {
        self.0.as_ref()
    }
}

impl fmt::Debug for CapabilityId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_tuple("CapabilityId").field(&self.as_str()).finish()
    }
}

impl fmt::Display for CapabilityId {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.write_str(self.as_str())
    }
}

impl AsRef<str> for CapabilityId {
    fn as_ref(&self) -> &str {
        self.as_str()
    }
}

impl PartialEq<str> for CapabilityId {
    fn eq(&self, other: &str) -> bool {
        self.as_str() == other
    }
}

impl PartialEq<&str> for CapabilityId {
    fn eq(&self, other: &&str) -> bool {
        self.as_str() == *other
    }
}

impl From<&'static str> for CapabilityId {
    fn from(value: &'static str) -> Self {
        Self::from_static(value)
    }
}

impl From<String> for CapabilityId {
    fn from(value: String) -> Self {
        Self::from_owned(value)
    }
}

impl From<CapabilityId> for String {
    fn from(value: CapabilityId) -> Self {
        value.0.into_owned()
    }
}

impl Serialize for CapabilityId {
    fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
        serializer.serialize_str(self.as_str())
    }
}

impl<'de> Deserialize<'de> for CapabilityId {
    fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
        let value = String::deserialize(deserializer)?;
        Ok(Self::from_owned(value))
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn plugin_event_kind_const_is_borrowed() {
        const KIND: PluginEventKind = PluginEventKind::from_static("test.fixture/event");
        assert_eq!(KIND.as_str(), "test.fixture/event");
        assert_eq!(KIND, "test.fixture/event");
    }

    #[test]
    fn interface_id_roundtrips_through_json() {
        const ID: InterfaceId = InterfaceId::from_static("windows-events");
        let json = serde_json::to_string(&ID).expect("serialize");
        assert_eq!(json, "\"windows-events\"");
        let decoded: InterfaceId = serde_json::from_str(&json).expect("deserialize");
        assert_eq!(decoded, ID);
        assert_eq!(decoded.as_str(), "windows-events");
    }

    #[test]
    fn owned_and_static_compare_equal() {
        let owned = InterfaceId::from_owned("foo".to_string());
        let stat = InterfaceId::from_static("foo");
        assert_eq!(owned, stat);
    }

    #[test]
    fn all_newtypes_implement_display() {
        let e = PluginEventKind::from_static("ev");
        let i = InterfaceId::from_static("if");
        let o = OperationId::from_static("op");
        let c = CapabilityId::from_static("cap");
        assert_eq!(format!("{e}"), "ev");
        assert_eq!(format!("{i}"), "if");
        assert_eq!(format!("{o}"), "op");
        assert_eq!(format!("{c}"), "cap");
    }
}