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
#[macro_use]
pub mod macros;
pub mod pool;
use crate::config::Config;
use lapin::{options::BasicPublishOptions, BasicProperties};
use snafu::prelude::Snafu;
pub const EXCHANGE_NAME_TELEMETRY: &str = "telemetry";
pub const QUEUE_NAME_ADSB: &str = "adsb";
pub const ROUTING_KEY_ADSB: &str = "adsb";
#[derive(Debug, Snafu, Clone, Copy)]
pub enum AMQPError {
#[snafu(display("Could not publish to queue."))]
CouldNotPublish,
#[snafu(display("Could not connect to amqp pool."))]
CouldNotConnect,
#[snafu(display("Missing configuration for amqp pool connection."))]
MissingConfiguration,
#[snafu(display("Could not create channel."))]
CouldNotCreateChannel,
#[snafu(display("Could not declare queue."))]
CouldNotDeclareQueue,
#[snafu(display("Could not declare exchange."))]
CouldNotDeclareExchange,
}
#[derive(Debug)]
pub struct AMQPChannel {
pub channel: Option<lapin::Channel>,
}
cfg_if::cfg_if! {
if #[cfg(feature = "test_util")] {
impl AMQPChannel {
pub async fn basic_publish(
&self,
exchange: &str,
routing_key: &str,
options: BasicPublishOptions,
payload: &[u8],
properties: BasicProperties,
) -> Result<(), AMQPError> {
if let Some(channel) = &self.channel {
match channel
.basic_publish(exchange, routing_key, options, payload, properties)
.await
{
Ok(_) => Ok(()),
Err(_) => Err(AMQPError::CouldNotPublish)
}
} else {
Ok(())
}
}
}
} else {
use lapin::publisher_confirm::PublisherConfirm;
impl AMQPChannel {
pub async fn basic_publish(&self, exchange: &str, routing_key: &str, options: BasicPublishOptions, payload: &[u8], properties: BasicProperties) -> lapin::Result<PublisherConfirm> {
if let Some(channel) = &self.channel {
channel.basic_publish(exchange, routing_key, options, payload, properties).await
} else {
amqp_error!("(basic_publish) no channel set AMQPChannel");
Err(lapin::Error::InvalidChannelState(lapin::ChannelState::Error))
}
}
}
}
}
#[cfg(not(tarpaulin_include))]
pub async fn init_mq(config: Config) -> Result<lapin::Channel, AMQPError> {
let pool = pool::AMQPPool::new(config.clone())?;
let amqp_connection = pool.get_connection().await?;
amqp_info!("(init_mq) creating channel...");
let amqp_channel = match amqp_connection.create_channel().await {
Ok(channel) => channel,
Err(e) => {
amqp_error!("(init_mq) could not create channel.");
amqp_debug!("(init_mq) error: {:?}", e);
return Err(AMQPError::CouldNotCreateChannel);
}
};
{
amqp_info!("(init_mq) creating '{QUEUE_NAME_ADSB}' queue...");
let result = amqp_channel
.queue_declare(
QUEUE_NAME_ADSB,
lapin::options::QueueDeclareOptions::default(),
lapin::types::FieldTable::default(),
)
.await;
if let Err(e) = result {
amqp_error!("(init_mq) could not declare queue '{QUEUE_NAME_ADSB}'.");
amqp_debug!("(init_mq) error: {:?}", e);
return Err(AMQPError::CouldNotDeclareQueue);
}
}
{
amqp_info!("(init_mq) declaring exchange '{EXCHANGE_NAME_TELEMETRY}'...");
let result = amqp_channel
.exchange_declare(
EXCHANGE_NAME_TELEMETRY,
lapin::ExchangeKind::Topic,
lapin::options::ExchangeDeclareOptions::default(),
lapin::types::FieldTable::default(),
)
.await;
if let Err(e) = result {
amqp_error!("(init_mq) could not declare exchange '{EXCHANGE_NAME_TELEMETRY}'.");
amqp_debug!("(init_mq) error: {:?}", e);
return Err(AMQPError::CouldNotDeclareExchange);
}
}
{
amqp_info!("(init_mq) binding queue '{QUEUE_NAME_ADSB}' to exchange '{EXCHANGE_NAME_TELEMETRY}'...");
let result = amqp_channel
.queue_bind(
QUEUE_NAME_ADSB,
EXCHANGE_NAME_TELEMETRY,
ROUTING_KEY_ADSB,
lapin::options::QueueBindOptions::default(),
lapin::types::FieldTable::default(),
)
.await;
if let Err(e) = result {
amqp_error!("(init_mq) could not bind queue '{QUEUE_NAME_ADSB}' to exchange.");
amqp_debug!("(init_mq) error: {:?}", e);
}
}
Ok(amqp_channel)
}