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
// kincir/src/tunnel.rs
use crate::kafka::KafkaPublisher;
use crate::mqtt::MQTTSubscriber;
use crate::rabbitmq::RabbitMQPublisher;
use crate::Publisher; // The trait
use crate::Subscriber; // The trait
use rumqttc; // Ensure rumqttc is available for QoS enum
use serde::{Deserialize, Serialize};
use std::sync::Arc;
use thiserror::Error;
use tokio::task::JoinHandle;
#[cfg(feature = "logging")]
use tracing::{debug, error, info, warn};
// Re-export or define necessary MQTT and Kafka types if not directly accessible
// For now, assume MqttConfig and KafkaConfig will be defined here.
// May need to adjust imports based on actual kincir::mqtt and kincir::kafka modules.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MqttTunnelConfig {
pub broker_url: String,
pub topics: Vec<String>,
pub qos: u8, // Changed back to u8 to avoid Serde issues with rumqttc::QoS
// Add fields for authentication later if needed
}
impl MqttTunnelConfig {
pub fn new(broker_url: &str, topics: Vec<String>, qos: u8) -> Self {
Self {
broker_url: broker_url.to_string(),
topics,
qos,
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct KafkaTunnelConfig {
pub broker_urls: Vec<String>,
pub topic: String,
// Add fields for authentication later if needed
}
impl KafkaTunnelConfig {
pub fn new(broker_urls: Vec<String>, topic: &str) -> Self {
Self {
broker_urls,
topic: topic.to_string(),
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct RabbitMQTunnelConfig {
pub uri: String,
pub routing_key: String,
// Add fields for authentication later if needed
}
impl RabbitMQTunnelConfig {
pub fn new(uri: &str, routing_key: &str) -> Self {
Self {
uri: uri.to_string(),
routing_key: routing_key.to_string(),
}
}
}
#[derive(Error, Debug)]
pub enum TunnelError {
#[error("MQTT client error: {0}")]
MqttClientError(String),
#[error("Kafka client error: {0}")]
KafkaClientError(String),
#[error("Message processing error: {0}")]
MessageProcessingError(String),
#[error("Configuration error: {0}")]
ConfigurationError(String),
#[error("Tunnel runtime error: {0}")]
RuntimeError(String),
#[error("RabbitMQ client error: {0}")]
RabbitMQClientError(String),
}
pub struct MqttToRabbitMQTunnel {
mqtt_config: MqttTunnelConfig,
rabbitmq_config: RabbitMQTunnelConfig,
}
impl MqttToRabbitMQTunnel {
pub fn new(mqtt_config: MqttTunnelConfig, rabbitmq_config: RabbitMQTunnelConfig) -> Self {
Self {
mqtt_config,
rabbitmq_config,
}
}
pub async fn run(&mut self) -> Result<(), TunnelError> {
#[cfg(feature = "logging")]
info!(
"MqttToRabbitMQTunnel starting up for {} MQTT topics...",
self.mqtt_config.topics.len()
);
if self.mqtt_config.topics.is_empty() {
#[cfg(feature = "logging")]
error!("No MQTT topics configured for the tunnel.");
return Err(TunnelError::ConfigurationError(
"No MQTT topics provided".to_string(),
));
}
// Create RabbitMQ publisher once and wrap in Arc
let rabbitmq_publisher = RabbitMQPublisher::new(&self.rabbitmq_config.uri)
.await // Ensure new() is awaited
.map_err(|e| {
TunnelError::RabbitMQClientError(format!(
"Failed to create RabbitMQ publisher: {}",
e
))
})?;
let rabbitmq_publisher_arc = Arc::new(rabbitmq_publisher); // Wrap in Arc
let mut task_handles: Vec<JoinHandle<Result<(), TunnelError>>> = Vec::new();
for mqtt_topic in &self.mqtt_config.topics {
let topic_clone = mqtt_topic.clone(); // Clone topic string for the task
let mqtt_broker_url = self.mqtt_config.broker_url.clone();
let qos_u8 = self.mqtt_config.qos;
let publisher_clone = Arc::clone(&rabbitmq_publisher_arc);
let rabbitmq_routing_key = self.rabbitmq_config.routing_key.clone();
let task = tokio::spawn(async move {
let rumqttc_qos = match qos_u8 {
0 => rumqttc::QoS::AtMostOnce,
1 => rumqttc::QoS::AtLeastOnce,
2 => rumqttc::QoS::ExactlyOnce,
_ => {
#[cfg(feature = "logging")]
warn!("Task for {}: Invalid QoS value {} configured, defaulting to AtLeastOnce.", topic_clone, qos_u8);
rumqttc::QoS::AtLeastOnce
}
};
#[cfg(feature = "logging")]
info!(
"Task for {}: Initializing MQTT subscriber for broker_url: {}, qos: {:?}",
topic_clone, mqtt_broker_url, rumqttc_qos
);
// Create MQTT subscriber for this specific topic
let mut mqtt_subscriber =
MQTTSubscriber::new(&mqtt_broker_url, &topic_clone, rumqttc_qos).map_err(
|e| {
#[cfg(feature = "logging")]
error!(
"Task for {}: Failed to create MQTT subscriber: {}",
topic_clone, e
);
TunnelError::MqttClientError(format!(
"Task {}: MQTT subscriber creation failed: {}",
topic_clone, e
))
},
)?;
// Subscribe to the MQTT topic
match mqtt_subscriber.subscribe(&topic_clone).await {
Ok(_) => {
#[cfg(feature = "logging")]
info!(
"Task for {}: Successfully subscribed to MQTT topic.",
topic_clone
);
}
Err(e) => {
#[cfg(feature = "logging")]
error!(
"Task for {}: Failed to subscribe to MQTT topic: {}",
topic_clone, e
);
return Err(TunnelError::MqttClientError(format!(
"Task {}: MQTT subscription failed: {}",
topic_clone, e
)));
}
}
#[cfg(feature = "logging")]
info!(
"Task for {}: Starting message forwarding loop to RabbitMQ routing key {}.",
topic_clone, rabbitmq_routing_key
);
loop {
match mqtt_subscriber.receive().await {
Ok(kincir_message) => {
#[cfg(feature = "logging")]
debug!(
"Task for {}: Received message UUID {} from MQTT.",
topic_clone, kincir_message.uuid
);
match publisher_clone
.publish(&rabbitmq_routing_key, vec![kincir_message.clone()])
.await
{
Ok(_) => {
#[cfg(feature = "logging")]
debug!("Task for {}: Successfully published message UUID {} to RabbitMQ routing key {}.", topic_clone, kincir_message.uuid, rabbitmq_routing_key);
}
Err(e) => {
#[cfg(feature = "logging")]
error!("Task for {}: Failed to publish message UUID {} to RabbitMQ: {}. Message might be lost.", topic_clone, kincir_message.uuid, e);
// Decide on error handling for publish failure. For now, log and continue.
// To make it more robust, this task could return an error:
return Err(TunnelError::RabbitMQClientError(format!(
"Task {}: RabbitMQ publish failed: {}",
topic_clone, e
)));
}
}
}
Err(e) => {
#[cfg(feature = "logging")]
error!(
"Task for {}: Error receiving message from MQTT: {}.",
topic_clone, e
);
// This error might be critical (e.g., connection lost).
// The task should probably exit and report the error.
return Err(TunnelError::MqttClientError(format!(
"Task {}: MQTT receive error: {}",
topic_clone, e
)));
}
}
}
});
task_handles.push(task);
}
// Wait for all tasks to complete
for handle in task_handles {
match handle.await {
Ok(Ok(_)) => { /* Task completed successfully */ }
Ok(Err(e)) => {
// One of the tasks failed
#[cfg(feature = "logging")]
error!("A tunnel task failed: {:?}", e);
return Err(e); // Return the first error encountered
}
Err(e) => {
// Task panicked or was cancelled
#[cfg(feature = "logging")]
error!("A tunnel task panicked or was cancelled: {:?}", e);
return Err(TunnelError::RuntimeError(format!(
"Task execution failed: {}",
e
)));
}
}
}
#[cfg(feature = "logging")]
info!("All MqttToRabbitMQTunnel tasks completed. Shutting down (or indicates an issue if tasks exited unexpectedly).");
Ok(())
}
}
pub struct MqttToKafkaTunnel {
mqtt_config: MqttTunnelConfig,
kafka_config: KafkaTunnelConfig,
// May need to store client instances if they are created early
// Or, they could be created within the run() method.
}
impl MqttToKafkaTunnel {
pub fn new(mqtt_config: MqttTunnelConfig, kafka_config: KafkaTunnelConfig) -> Self {
Self {
mqtt_config,
kafka_config,
}
}
pub async fn run(&mut self) -> Result<(), TunnelError> {
#[cfg(feature = "logging")]
info!(
"MqttToKafkaTunnel starting up for {} MQTT topics...",
self.mqtt_config.topics.len()
);
if self.mqtt_config.topics.is_empty() {
#[cfg(feature = "logging")]
error!("No MQTT topics configured for the tunnel.");
return Err(TunnelError::ConfigurationError(
"No MQTT topics provided".to_string(),
));
}
// Create Kafka publisher once. FutureProducer from rdkafka is cloneable.
let kafka_publisher =
KafkaPublisher::new(self.kafka_config.broker_urls.clone()).map_err(|e| {
TunnelError::KafkaClientError(format!("Failed to create Kafka publisher: {}", e))
})?;
let mut task_handles: Vec<JoinHandle<Result<(), TunnelError>>> = Vec::new();
for mqtt_topic in &self.mqtt_config.topics {
let topic_clone = mqtt_topic.clone(); // Clone topic string for the task
let mqtt_broker_url = self.mqtt_config.broker_url.clone();
let qos_u8 = self.mqtt_config.qos;
let kafka_publisher_clone = kafka_publisher.clone(); // Clone FutureProducer
let kafka_target_topic = self.kafka_config.topic.clone();
let task = tokio::spawn(async move {
let rumqttc_qos = match qos_u8 {
0 => rumqttc::QoS::AtMostOnce,
1 => rumqttc::QoS::AtLeastOnce,
2 => rumqttc::QoS::ExactlyOnce,
_ => {
#[cfg(feature = "logging")]
warn!("Task for {}: Invalid QoS value {} configured, defaulting to AtLeastOnce.", topic_clone, qos_u8);
rumqttc::QoS::AtLeastOnce
}
};
#[cfg(feature = "logging")]
info!(
"Task for {}: Initializing MQTT subscriber for broker_url: {}, qos: {:?}",
topic_clone, mqtt_broker_url, rumqttc_qos
);
// Create MQTT subscriber for this specific topic
let mut mqtt_subscriber =
MQTTSubscriber::new(&mqtt_broker_url, &topic_clone, rumqttc_qos).map_err(
|e| {
#[cfg(feature = "logging")]
error!(
"Task for {}: Failed to create MQTT subscriber: {}",
topic_clone, e
);
TunnelError::MqttClientError(format!(
"Task {}: MQTT subscriber creation failed: {}",
topic_clone, e
))
},
)?;
// Subscribe to the MQTT topic
match mqtt_subscriber.subscribe(&topic_clone).await {
Ok(_) => {
#[cfg(feature = "logging")]
info!(
"Task for {}: Successfully subscribed to MQTT topic.",
topic_clone
);
}
Err(e) => {
#[cfg(feature = "logging")]
error!(
"Task for {}: Failed to subscribe to MQTT topic: {}",
topic_clone, e
);
return Err(TunnelError::MqttClientError(format!(
"Task {}: MQTT subscription failed: {}",
topic_clone, e
)));
}
}
#[cfg(feature = "logging")]
info!(
"Task for {}: Starting message forwarding loop to Kafka topic {}.",
topic_clone, kafka_target_topic
);
loop {
match mqtt_subscriber.receive().await {
Ok(kincir_message) => {
#[cfg(feature = "logging")]
debug!(
"Task for {}: Received message UUID {} from MQTT.",
topic_clone, kincir_message.uuid
);
match kafka_publisher_clone
.publish(&kafka_target_topic, vec![kincir_message.clone()])
.await
{
Ok(_) => {
#[cfg(feature = "logging")]
debug!("Task for {}: Successfully published message UUID {} to Kafka topic {}.", topic_clone, kincir_message.uuid, kafka_target_topic);
}
Err(e) => {
#[cfg(feature = "logging")]
error!("Task for {}: Failed to publish message UUID {} to Kafka: {}. Message might be lost.", topic_clone, kincir_message.uuid, e);
// Decide on error handling for publish failure. For now, log and continue.
// To make it more robust, this task could return an error:
// return Err(TunnelError::KafkaClientError(format!("Task {}: Kafka publish failed: {}", topic_clone, e)));
}
}
}
Err(e) => {
#[cfg(feature = "logging")]
error!(
"Task for {}: Error receiving message from MQTT: {}.",
topic_clone, e
);
// This error might be critical (e.g., connection lost).
// The task should probably exit and report the error.
return Err(TunnelError::MqttClientError(format!(
"Task {}: MQTT receive error: {}",
topic_clone, e
)));
}
}
}
});
task_handles.push(task);
}
// Wait for all tasks to complete
for handle in task_handles {
match handle.await {
Ok(Ok(_)) => { /* Task completed successfully */ }
Ok(Err(e)) => {
// One of the tasks failed
#[cfg(feature = "logging")]
error!("A tunnel task failed: {:?}", e);
return Err(e); // Return the first error encountered
}
Err(e) => {
// Task panicked or was cancelled
#[cfg(feature = "logging")]
error!("A tunnel task panicked or was cancelled: {:?}", e);
return Err(TunnelError::RuntimeError(format!(
"Task execution failed: {}",
e
)));
}
}
}
#[cfg(feature = "logging")]
info!("All MqttToKafkaTunnel tasks completed. Shutting down (or indicates an issue if tasks exited unexpectedly).");
Ok(())
}
}