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
//! # gst-plugin-zenoh
//!
//! A high-performance GStreamer plugin for distributed media streaming using Zenoh.
//!
//! This plugin provides seamless integration between GStreamer multimedia pipelines
//! and Zenoh networks, enabling distributed applications, edge computing scenarios,
//! robotics systems, and IoT data streaming.
//!
//! ## Elements
//!
//! - [`zenohsink`]: Publishes GStreamer buffers to Zenoh networks
//! - [`zenohsrc`]: Subscribes to Zenoh data and delivers it to GStreamer pipelines
//! - [`zenohdemux`]: Demultiplexes Zenoh streams by key expression, creating dynamic pads
//!
//! ## Features
//!
//! - **Advanced QoS Control**: Configurable reliability, congestion control, and priority
//! - **Express Mode**: Ultra-low latency streaming with queue bypass
//! - **Session Sharing**: Efficient resource management across multiple elements
//! - **Thread Safety**: Safe concurrent access to all components
//! - **Error Recovery**: Comprehensive error handling and network resilience
//! - **Optional Compression**: zstd, lz4, and gzip support via feature flags
//!
//! ## Quick Start (gst-launch)
//!
//! ```bash
//! # Set plugin path
//! export GST_PLUGIN_PATH=/path/to/target/release
//!
//! # Sender
//! gst-launch-1.0 videotestsrc ! zenohsink key-expr=demo/video
//!
//! # Receiver
//! gst-launch-1.0 zenohsrc key-expr=demo/video ! videoconvert ! autovideosink
//! ```
//!
//! ## Rust API
//!
//! ### Strongly-Typed API (Recommended)
//!
//! Use the builder pattern for type-safe element creation.
//! Main types are re-exported at the crate root for convenience:
//!
//! ```no_run
//! use gst::prelude::*;
//! use gstzenoh::{ZenohSink, ZenohSrc};
//!
//! fn main() -> Result<(), Box<dyn std::error::Error>> {
//! gst::init()?;
//! gstzenoh::plugin_register_static()?;
//!
//! // Create ZenohSink with the builder pattern
//! let sink = ZenohSink::builder("demo/video")
//! .reliability("reliable")
//! .priority(2) // InteractiveHigh
//! .express(true)
//! .send_caps(true)
//! .build();
//!
//! // Or use new() and setters
//! let src = ZenohSrc::new("demo/video");
//! src.set_receive_timeout_ms(500);
//! src.set_apply_buffer_meta(true);
//!
//! // Access statistics with typed getters
//! println!("Bytes sent: {}", sink.bytes_sent());
//! println!("Messages received: {}", src.messages_received());
//!
//! Ok(())
//! }
//! ```
//!
//! ### Building Pipelines with Strongly-Typed Elements
//!
//! ```no_run
//! use gst::prelude::*;
//! use gstzenoh::ZenohSink;
//!
//! fn main() -> Result<(), Box<dyn std::error::Error>> {
//! gst::init()?;
//! gstzenoh::plugin_register_static()?;
//!
//! let pipeline = gst::Pipeline::new();
//! let src = gst::ElementFactory::make("videotestsrc").build()?;
//!
//! // Create sink with strongly-typed API
//! let sink = ZenohSink::builder("demo/video")
//! .reliability("reliable")
//! .priority(2)
//! .express(true)
//! .build();
//!
//! // Add to pipeline (upcast to Element)
//! pipeline.add_many([&src, sink.upcast_ref()])?;
//! src.link(&sink)?;
//!
//! pipeline.set_state(gst::State::Playing)?;
//! // ... run pipeline ...
//! pipeline.set_state(gst::State::Null)?;
//! Ok(())
//! }
//! ```
//!
//! ### Converting from Generic Elements
//!
//! ```no_run
//! use gst::prelude::*;
//! use gstzenoh::ZenohSink;
//!
//! fn main() -> Result<(), Box<dyn std::error::Error>> {
//! gst::init()?;
//! gstzenoh::plugin_register_static()?;
//!
//! // Create via ElementFactory
//! let element = gst::ElementFactory::make("zenohsink")
//! .property("key-expr", "demo/video")
//! .build()?;
//!
//! // Convert to strongly-typed wrapper
//! let sink = ZenohSink::try_from(element).expect("Should be a ZenohSink");
//!
//! // Now use typed API
//! sink.set_reliability("reliable");
//! println!("Key expression: {}", sink.key_expr());
//!
//! Ok(())
//! }
//! ```
//!
//! ### Using the Generic Property API
//!
//! For compatibility or dynamic configuration:
//!
//! ```no_run
//! use gst::prelude::*;
//!
//! fn main() -> Result<(), Box<dyn std::error::Error>> {
//! gst::init()?;
//! gstzenoh::plugin_register_static()?;
//!
//! let sink = gst::ElementFactory::make("zenohsink")
//! .property("key-expr", "demo/video")
//! .property("reliability", "reliable")
//! .property("priority", 2u32)
//! .property("express", true)
//! .build()?;
//!
//! Ok(())
//! }
//! ```
//!
//! ### Using parse_launch for Quick Prototyping
//!
//! ```no_run
//! use gst::prelude::*;
//!
//! fn main() -> Result<(), Box<dyn std::error::Error>> {
//! gst::init()?;
//! gstzenoh::plugin_register_static()?;
//!
//! let pipeline = gst::parse::launch(
//! "videotestsrc ! zenohsink key-expr=demo/video"
//! )?;
//!
//! pipeline.set_state(gst::State::Playing)?;
//! // ... run pipeline ...
//! pipeline.set_state(gst::State::Null)?;
//! Ok(())
//! }
//! ```
//!
//! ## Examples
//!
//! See the `examples/` directory for comprehensive usage demonstrations:
//! - `basic.rs`: Simple video streaming setup
//! - `configuration.rs`: Advanced QoS configuration showcase
//! - `video_stream.rs`: Full video streaming pipeline
//!
//! [`zenohsink`]: zenohsink
//! [`zenohsrc`]: zenohsrc
//! [`zenohdemux`]: zenohdemux
use glib;
pub
// Re-export main types at crate root for convenience
pub use ;
pub use ;
pub use ;
plugin_define!;