kincir 0.2.0

A Rust message streaming library inspired by Watermill
Documentation
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
//! RabbitMQ implementation for the Kincir messaging system.
//!
//! This module provides RabbitMQ-based implementations of the Publisher and Subscriber traits,
//! allowing integration with RabbitMQ message brokers. The implementation uses the `lapin`
//! library for RabbitMQ communication and includes proper error handling.
//!
//! # Example
//!
//! ```rust,no_run
//! use kincir::rabbitmq::{RabbitMQPublisher, RabbitMQSubscriber};
//! use kincir::logging::StdLogger;
//! use std::sync::Arc;
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
//!     let logger = Arc::new(StdLogger::new(true, true));
//!
//!     // Initialize RabbitMQ components
//!     let publisher = Arc::new(RabbitMQPublisher::new("amqp://localhost:5672").await?);
//!     let subscriber = Arc::new(RabbitMQSubscriber::new("amqp://localhost:5672").await?);
//!
//!     Ok(())
//! }

pub mod ack;
#[cfg(test)]
mod tests;

#[cfg(feature = "logging")]
use crate::logging::Logger;
use crate::Message;
use async_trait::async_trait;
use futures::StreamExt;
use lapin::options::{BasicConsumeOptions, BasicPublishOptions, QueueDeclareOptions};
use lapin::types::FieldTable;
use lapin::{BasicProperties, Connection, ConnectionProperties};
use serde_json;
use std::sync::Arc;
use thiserror::Error;

#[derive(Error, Debug)]
pub enum RabbitMQError {
    /// Error when interacting with RabbitMQ
    #[error("RabbitMQ error: {0}")]
    RabbitMQ(#[from] lapin::Error),
    /// Error when serializing/deserializing messages
    #[error("Serialization error: {0}")]
    Serialization(#[from] serde_json::Error),
}

/// Implementation of the Publisher trait for RabbitMQ.
///
/// Uses the lapin library for RabbitMQ communication.
pub struct RabbitMQPublisher {
    connection: Connection,
    #[cfg(feature = "logging")]
    logger: Arc<dyn Logger>,
}

impl RabbitMQPublisher {
    /// Creates a new RabbitMQPublisher instance.
    ///
    /// # Arguments
    ///
    /// * `uri` - The RabbitMQ connection URI (e.g., "amqp://localhost:5672")
    #[cfg(not(feature = "logging"))]
    pub async fn new(uri: &str) -> Result<Self, RabbitMQError> {
        let connection = Connection::connect(uri, ConnectionProperties::default())
            .await
            .map_err(RabbitMQError::RabbitMQ)?;

        Ok(Self { connection })
    }

    /// Creates a new RabbitMQPublisher instance with logging.
    ///
    /// # Arguments
    ///
    /// * `uri` - The RabbitMQ connection URI (e.g., "amqp://localhost:5672")
    /// * `logger` - The logger implementation to use
    #[cfg(feature = "logging")]
    pub async fn new(uri: &str) -> Result<Self, RabbitMQError> {
        let connection = Connection::connect(uri, ConnectionProperties::default())
            .await
            .map_err(RabbitMQError::RabbitMQ)?;

        // Create a default NoOpLogger
        let logger = Arc::new(crate::logging::NoOpLogger::new());

        Ok(Self { connection, logger })
    }

    /// Sets a logger for the publisher (only available with the "logging" feature).
    #[cfg(feature = "logging")]
    pub fn with_logger(mut self, logger: Arc<dyn Logger>) -> Self {
        self.logger = logger;
        self
    }
}

#[cfg(feature = "logging")]
#[async_trait]
impl super::Publisher for RabbitMQPublisher {
    type Error = Box<dyn std::error::Error + Send + Sync>;

    async fn publish(&self, topic: &str, messages: Vec<Message>) -> Result<(), Self::Error> {
        self.logger
            .info(&format!(
                "Publishing {} messages to {}",
                messages.len(),
                topic
            ))
            .await;

        let channel = self.connection.create_channel().await.map_err(|e| {
            Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
        })?;

        channel
            .queue_declare(topic, QueueDeclareOptions::default(), FieldTable::default())
            .await
            .map_err(|e| {
                Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
            })?;

        for message in messages {
            let payload = serde_json::to_vec(&message).map_err(|e| {
                Box::new(RabbitMQError::Serialization(e))
                    as Box<dyn std::error::Error + Send + Sync>
            })?;
            let confirm = channel
                .basic_publish(
                    "",
                    topic,
                    BasicPublishOptions::default(),
                    &payload,
                    BasicProperties::default(),
                )
                .await
                .map_err(|e| {
                    Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
                })?;
            let _ = confirm.await.map_err(|e| {
                Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
            })?;

            self.logger
                .info(&format!("Published message {} to {}", message.uuid, topic))
                .await;
        }

        Ok(())
    }
}

#[cfg(not(feature = "logging"))]
#[async_trait]
impl super::Publisher for RabbitMQPublisher {
    type Error = Box<dyn std::error::Error + Send + Sync>;

    async fn publish(&self, topic: &str, messages: Vec<Message>) -> Result<(), Self::Error> {
        let channel = self.connection.create_channel().await.map_err(|e| {
            Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
        })?;

        channel
            .queue_declare(topic, QueueDeclareOptions::default(), FieldTable::default())
            .await
            .map_err(|e| {
                Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
            })?;

        for message in messages {
            let payload = serde_json::to_vec(&message).map_err(|e| {
                Box::new(RabbitMQError::Serialization(e))
                    as Box<dyn std::error::Error + Send + Sync>
            })?;
            let confirm = channel
                .basic_publish(
                    "",
                    topic,
                    BasicPublishOptions::default(),
                    &payload,
                    BasicProperties::default(),
                )
                .await
                .map_err(|e| {
                    Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
                })?;
            let _ = confirm.await.map_err(|e| {
                Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
            })?;
        }

        Ok(())
    }
}

/// Implementation of the Subscriber trait for RabbitMQ.
///
/// Uses the lapin library for RabbitMQ communication.
pub struct RabbitMQSubscriber {
    connection: Connection,
    topic: Arc<tokio::sync::Mutex<Option<String>>>,
    consumer: Arc<tokio::sync::Mutex<Option<lapin::Consumer>>>,
    #[cfg(feature = "logging")]
    logger: Arc<dyn Logger>,
}

impl RabbitMQSubscriber {
    /// Creates a new RabbitMQSubscriber instance.
    ///
    /// # Arguments
    ///
    /// * `uri` - The RabbitMQ connection URI (e.g., "amqp://localhost:5672")
    #[cfg(not(feature = "logging"))]
    pub async fn new(uri: &str) -> Result<Self, RabbitMQError> {
        let connection = Connection::connect(uri, ConnectionProperties::default())
            .await
            .map_err(RabbitMQError::RabbitMQ)?;

        Ok(Self {
            connection,
            topic: Arc::new(tokio::sync::Mutex::new(None)),
            consumer: Arc::new(tokio::sync::Mutex::new(None)),
        })
    }

    /// Creates a new RabbitMQSubscriber instance with logging.
    ///
    /// # Arguments
    ///
    /// * `uri` - The RabbitMQ connection URI (e.g., "amqp://localhost:5672")
    #[cfg(feature = "logging")]
    pub async fn new(uri: &str) -> Result<Self, RabbitMQError> {
        let connection = Connection::connect(uri, ConnectionProperties::default())
            .await
            .map_err(RabbitMQError::RabbitMQ)?;

        // Create a default NoOpLogger
        let logger = Arc::new(crate::logging::NoOpLogger::new());

        Ok(Self {
            connection,
            topic: Arc::new(tokio::sync::Mutex::new(None)),
            consumer: Arc::new(tokio::sync::Mutex::new(None)),
            logger,
        })
    }

    /// Sets a logger for the subscriber (only available with the "logging" feature).
    #[cfg(feature = "logging")]
    pub fn with_logger(mut self, logger: Arc<dyn Logger>) -> Self {
        self.logger = logger;
        self
    }
}

#[cfg(feature = "logging")]
#[async_trait]
impl super::Subscriber for RabbitMQSubscriber {
    type Error = Box<dyn std::error::Error + Send + Sync>;

    async fn subscribe(&self, topic: &str) -> Result<(), Self::Error> {
        self.logger
            .info(&format!("Subscribing to topic {}", topic))
            .await;

        let channel = self.connection.create_channel().await.map_err(|e| {
            Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
        })?;

        channel
            .queue_declare(topic, QueueDeclareOptions::default(), FieldTable::default())
            .await
            .map_err(|e| {
                Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
            })?;

        let mut topic_guard = self.topic.lock().await;
        *topic_guard = Some(topic.to_string());

        // Create a consumer for the topic
        let mut consumer_guard = self.consumer.lock().await;
        *consumer_guard = Some(
            channel
                .basic_consume(
                    topic,
                    &format!("consumer-{}", uuid::Uuid::new_v4()),
                    BasicConsumeOptions::default(),
                    FieldTable::default(),
                )
                .await
                .map_err(|e| {
                    Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
                })?,
        );

        self.logger
            .info(&format!("Successfully subscribed to topic {}", topic))
            .await;

        Ok(())
    }

    async fn receive(&mut self) -> Result<Message, Self::Error> {
        // Changed to &mut self

        self.logger.info("Waiting to receive message").await;

        let topic_guard = self.topic.lock().await;
        let _topic = topic_guard.as_ref().ok_or_else(|| {
            Box::new(RabbitMQError::RabbitMQ(lapin::Error::InvalidChannelState(
                lapin::ChannelState::Error,
            ))) as Box<dyn std::error::Error + Send + Sync>
        })?;

        let mut consumer_guard = self.consumer.lock().await;
        let consumer = consumer_guard.as_mut().ok_or_else(|| {
            Box::new(RabbitMQError::RabbitMQ(lapin::Error::InvalidChannelState(
                lapin::ChannelState::Error,
            ))) as Box<dyn std::error::Error + Send + Sync>
        })?;

        if let Some(delivery) = consumer.next().await {
            let delivery = delivery.map_err(|e| {
                Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
            })?;
            let message: Message = serde_json::from_slice(&delivery.data).map_err(|e| {
                Box::new(RabbitMQError::Serialization(e))
                    as Box<dyn std::error::Error + Send + Sync>
            })?;
            delivery.ack(Default::default()).await.map_err(|e| {
                Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
            })?;

            self.logger
                .info(&format!("Received message {}", message.uuid))
                .await;

            Ok(message)
        } else {
            self.logger
                .error("Consumer stream ended unexpectedly")
                .await;

            Err(
                Box::new(RabbitMQError::RabbitMQ(lapin::Error::InvalidChannelState(
                    lapin::ChannelState::Error,
                ))) as Box<dyn std::error::Error + Send + Sync>,
            )
        }
    }
}

#[cfg(not(feature = "logging"))]
#[async_trait]
impl super::Subscriber for RabbitMQSubscriber {
    type Error = Box<dyn std::error::Error + Send + Sync>;

    async fn subscribe(&self, topic: &str) -> Result<(), Self::Error> {
        let channel = self.connection.create_channel().await.map_err(|e| {
            Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
        })?;

        channel
            .queue_declare(topic, QueueDeclareOptions::default(), FieldTable::default())
            .await
            .map_err(|e| {
                Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
            })?;

        let mut topic_guard = self.topic.lock().await;
        *topic_guard = Some(topic.to_string());

        // Create a consumer for the topic
        let mut consumer_guard = self.consumer.lock().await;
        *consumer_guard = Some(
            channel
                .basic_consume(
                    topic,
                    &format!("consumer-{}", uuid::Uuid::new_v4()),
                    BasicConsumeOptions::default(),
                    FieldTable::default(),
                )
                .await
                .map_err(|e| {
                    Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
                })?,
        );

        Ok(())
    }

    async fn receive(&mut self) -> Result<Message, Self::Error> {
        // Changed to &mut self
        let topic_guard = self.topic.lock().await;
        let _topic = topic_guard.as_ref().ok_or_else(|| {
            Box::new(RabbitMQError::RabbitMQ(lapin::Error::InvalidChannelState(
                lapin::ChannelState::Error,
            ))) as Box<dyn std::error::Error + Send + Sync>
        })?;

        let mut consumer_guard = self.consumer.lock().await;
        let consumer = consumer_guard.as_mut().ok_or_else(|| {
            Box::new(RabbitMQError::RabbitMQ(lapin::Error::InvalidChannelState(
                lapin::ChannelState::Error,
            ))) as Box<dyn std::error::Error + Send + Sync>
        })?;

        if let Some(delivery) = consumer.next().await {
            let delivery = delivery.map_err(|e| {
                Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
            })?;
            let message: Message = serde_json::from_slice(&delivery.data).map_err(|e| {
                Box::new(RabbitMQError::Serialization(e))
                    as Box<dyn std::error::Error + Send + Sync>
            })?;
            delivery.ack(Default::default()).await.map_err(|e| {
                Box::new(RabbitMQError::RabbitMQ(e)) as Box<dyn std::error::Error + Send + Sync>
            })?;
            Ok(message)
        } else {
            Err(
                Box::new(RabbitMQError::RabbitMQ(lapin::Error::InvalidChannelState(
                    lapin::ChannelState::Error,
                ))) as Box<dyn std::error::Error + Send + Sync>,
            )
        }
    }
}

// Re-export acknowledgment types
pub use ack::{RabbitMQAckHandle, RabbitMQAckSubscriber};