-
-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
- Loading branch information
Showing
14 changed files
with
493 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
use futures_lite::StreamExt; | ||
use lapin::{options::*, types::FieldTable, Connection, ConnectionProperties}; | ||
use tracing::info; | ||
|
||
fn main() { | ||
if std::env::var("RUST_LOG").is_err() { | ||
unsafe { std::env::set_var("RUST_LOG", "info") }; | ||
} | ||
|
||
tracing_subscriber::fmt::init(); | ||
|
||
let addr = std::env::var("AMQP_ADDR").unwrap_or_else(|_| "amqp://127.0.0.1:5672/%2f".into()); | ||
|
||
async_global_executor::block_on(async { | ||
let conn = Connection::connect(&addr, ConnectionProperties::default()) | ||
.await | ||
.expect("connection error"); | ||
|
||
info!("CONNECTED"); | ||
|
||
//receive channel | ||
let channel = conn.create_channel().await.expect("create_channel"); | ||
info!(state=?conn.status().state()); | ||
|
||
let queue = channel | ||
.queue_declare( | ||
"hello-recover", | ||
QueueDeclareOptions::default(), | ||
FieldTable::default(), | ||
) | ||
.await | ||
.expect("queue_declare"); | ||
info!(state=?conn.status().state()); | ||
info!(?queue, "Declared queue"); | ||
|
||
info!("will consume"); | ||
let mut consumer = channel | ||
.basic_consume( | ||
"hello-recover", | ||
"my_consumer", | ||
BasicConsumeOptions::default(), | ||
FieldTable::default(), | ||
) | ||
.await | ||
.expect("basic_consume"); | ||
info!(state=?conn.status().state()); | ||
|
||
while let Some(delivery) = consumer.next().await { | ||
info!(message=?delivery, "received message"); | ||
if let Ok(delivery) = delivery { | ||
delivery | ||
.ack(BasicAckOptions::default()) | ||
.await | ||
.expect("basic_ack"); | ||
} | ||
} | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
use lapin::{options::*, types::FieldTable, BasicProperties, Connection, ConnectionProperties}; | ||
use tracing::info; | ||
|
||
fn main() { | ||
if std::env::var("RUST_LOG").is_err() { | ||
std::env::set_var("RUST_LOG", "info"); | ||
} | ||
|
||
tracing_subscriber::fmt::init(); | ||
|
||
let addr = std::env::var("AMQP_ADDR").unwrap_or_else(|_| "amqp://127.0.0.1:5672/%2f".into()); | ||
let recovery_config = lapin::experimental::RecoveryConfig::default().auto_recover_channels(); | ||
|
||
async_global_executor::block_on(async { | ||
let conn = Connection::connect( | ||
&addr, | ||
ConnectionProperties::default().with_experimental_recovery_config(recovery_config), | ||
) | ||
.await | ||
.expect("connection error"); | ||
|
||
info!("CONNECTED"); | ||
|
||
let channel1 = conn.create_channel().await.expect("create_channel"); | ||
channel1 | ||
.confirm_select(ConfirmSelectOptions::default()) | ||
.await | ||
.expect("confirm_select"); | ||
channel1 | ||
.queue_declare( | ||
"hello-recover", | ||
QueueDeclareOptions::default(), | ||
FieldTable::default(), | ||
) | ||
.await | ||
.expect("queue_declare"); | ||
|
||
let ch = channel1.clone(); | ||
async_global_executor::spawn(async move { | ||
loop { | ||
async_io::Timer::after(std::time::Duration::from_secs(1)).await; | ||
info!("Trigger failure"); | ||
assert!(ch | ||
.queue_declare( | ||
"fake queue", | ||
QueueDeclareOptions { | ||
passive: true, | ||
..QueueDeclareOptions::default() | ||
}, | ||
FieldTable::default(), | ||
) | ||
.await | ||
.is_err()); | ||
} | ||
}) | ||
.detach(); | ||
|
||
let mut published = 0; | ||
let mut errors = 0; | ||
info!("will publish"); | ||
loop { | ||
let res = channel1 | ||
.basic_publish( | ||
"", | ||
"recover-test", | ||
BasicPublishOptions::default(), | ||
b"before", | ||
BasicProperties::default(), | ||
) | ||
.await; | ||
let res = if let Ok(res) = res { | ||
res.await.map(|_| ()) | ||
} else { | ||
res.map(|_| ()) | ||
}; | ||
match res { | ||
Ok(()) => { | ||
println!("GOT OK"); | ||
published += 1; | ||
} | ||
Err(err) => { | ||
println!("GOT ERROR"); | ||
let (soft, notifier) = err.is_amqp_soft_error(); | ||
Check failure on line 83 in examples/p.rs
|
||
if !soft { | ||
panic!("{}", err); | ||
} | ||
errors += 1; | ||
if let Some(notifier) = notifier { | ||
notifier.await | ||
} | ||
} | ||
} | ||
println!("Published {} with {} errors", published, errors); | ||
} | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
use lapin::{ | ||
message::DeliveryResult, options::*, publisher_confirm::Confirmation, types::FieldTable, | ||
BasicProperties, Connection, ConnectionProperties, | ||
}; | ||
use tracing::info; | ||
|
||
fn main() { | ||
if std::env::var("RUST_LOG").is_err() { | ||
std::env::set_var("RUST_LOG", "info"); | ||
} | ||
|
||
tracing_subscriber::fmt::init(); | ||
|
||
let addr = std::env::var("AMQP_ADDR").unwrap_or_else(|_| "amqp://127.0.0.1:5672/%2f".into()); | ||
let recovery_config = lapin::experimental::RecoveryConfig::default().auto_recover_channels(); | ||
|
||
async_global_executor::block_on(async { | ||
let conn = Connection::connect( | ||
&addr, | ||
ConnectionProperties::default().with_experimental_recovery_config(recovery_config), | ||
) | ||
.await | ||
.expect("connection error"); | ||
|
||
info!("CONNECTED"); | ||
|
||
{ | ||
let channel1 = conn.create_channel().await.expect("create_channel"); | ||
let channel2 = conn.create_channel().await.expect("create_channel"); | ||
channel1 | ||
.confirm_select(ConfirmSelectOptions::default()) | ||
.await | ||
.expect("confirm_select"); | ||
channel1 | ||
.queue_declare( | ||
"recover-test", | ||
QueueDeclareOptions::default(), | ||
FieldTable::default(), | ||
) | ||
.await | ||
.expect("queue_declare"); | ||
|
||
info!("will consume"); | ||
let channel = channel2.clone(); | ||
channel2 | ||
.basic_consume( | ||
"recover-test", | ||
"my_consumer", | ||
BasicConsumeOptions::default(), | ||
FieldTable::default(), | ||
) | ||
.await | ||
.expect("basic_consume") | ||
.set_delegate(move |delivery: DeliveryResult| { | ||
let channel = channel.clone(); | ||
async move { | ||
info!(message=?delivery, "received message"); | ||
if let Ok(Some(delivery)) = delivery { | ||
delivery | ||
.ack(BasicAckOptions::default()) | ||
.await | ||
.expect("basic_ack"); | ||
if &delivery.data[..] == b"after" { | ||
channel | ||
.basic_cancel("my_consumer", BasicCancelOptions::default()) | ||
.await | ||
.expect("basic_cancel"); | ||
} | ||
} | ||
} | ||
}); | ||
|
||
info!("will publish"); | ||
let confirm = channel1 | ||
.basic_publish( | ||
"", | ||
"recover-test", | ||
BasicPublishOptions::default(), | ||
b"before", | ||
BasicProperties::default(), | ||
) | ||
.await | ||
.expect("basic_publish") | ||
.await | ||
.expect("publisher-confirms"); | ||
assert_eq!(confirm, Confirmation::Ack(None)); | ||
|
||
info!("before fail"); | ||
assert!(channel1 | ||
.queue_declare( | ||
"fake queue", | ||
QueueDeclareOptions { | ||
passive: true, | ||
..QueueDeclareOptions::default() | ||
}, | ||
FieldTable::default(), | ||
) | ||
.await | ||
.is_err()); | ||
info!("after fail"); | ||
|
||
info!("publish after"); | ||
let confirm = channel1 | ||
.basic_publish( | ||
"", | ||
"recover-test", | ||
BasicPublishOptions::default(), | ||
b"after", | ||
BasicProperties::default(), | ||
) | ||
.await | ||
.expect("basic_publish") | ||
.await | ||
.expect("publisher-confirms"); | ||
assert_eq!(confirm, Confirmation::Ack(None)); | ||
} | ||
|
||
conn.run().expect("conn.run"); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.