convert evaluation filter to easylapin
This commit is contained in:
parent
f1d34ee242
commit
bd8bed6ad3
|
@ -1,90 +1,77 @@
|
||||||
use amqp::Basic;
|
|
||||||
use ofborg::config;
|
|
||||||
use ofborg::easyamqp::{self, ChannelExt, ConsumerExt};
|
|
||||||
use ofborg::tasks;
|
|
||||||
use ofborg::worker;
|
|
||||||
|
|
||||||
use std::env;
|
use std::env;
|
||||||
|
use std::error::Error;
|
||||||
|
|
||||||
|
use async_std::task;
|
||||||
use tracing::info;
|
use tracing::info;
|
||||||
|
|
||||||
fn main() {
|
use ofborg::config;
|
||||||
let cfg = config::load(env::args().nth(1).unwrap().as_ref());
|
use ofborg::easyamqp::{self, ChannelExt, ConsumerExt};
|
||||||
|
use ofborg::easylapin;
|
||||||
|
use ofborg::tasks;
|
||||||
|
|
||||||
|
fn main() -> Result<(), Box<dyn Error>> {
|
||||||
ofborg::setup_log();
|
ofborg::setup_log();
|
||||||
|
|
||||||
info!("Hello, world!");
|
let arg = env::args()
|
||||||
|
.nth(1)
|
||||||
|
.expect("usage: evaluation-filter <config>");
|
||||||
|
let cfg = config::load(arg.as_ref());
|
||||||
|
|
||||||
let mut session = easyamqp::session_from_config(&cfg.rabbitmq).unwrap();
|
let conn = easylapin::from_config(&cfg.rabbitmq)?;
|
||||||
info!("Connected to rabbitmq");
|
let mut chan = task::block_on(conn.create_channel())?;
|
||||||
|
|
||||||
let mut channel = session.open_channel(1).unwrap();
|
chan.declare_exchange(easyamqp::ExchangeConfig {
|
||||||
|
exchange: "github-events".to_owned(),
|
||||||
|
exchange_type: easyamqp::ExchangeType::Topic,
|
||||||
|
passive: false,
|
||||||
|
durable: true,
|
||||||
|
auto_delete: false,
|
||||||
|
no_wait: false,
|
||||||
|
internal: false,
|
||||||
|
})?;
|
||||||
|
|
||||||
channel
|
chan.declare_queue(easyamqp::QueueConfig {
|
||||||
.declare_exchange(easyamqp::ExchangeConfig {
|
queue: "mass-rebuild-check-jobs".to_owned(),
|
||||||
exchange: "github-events".to_owned(),
|
passive: false,
|
||||||
exchange_type: easyamqp::ExchangeType::Topic,
|
durable: true,
|
||||||
passive: false,
|
exclusive: false,
|
||||||
durable: true,
|
auto_delete: false,
|
||||||
auto_delete: false,
|
no_wait: false,
|
||||||
|
})?;
|
||||||
|
|
||||||
|
let queue_name = String::from("mass-rebuild-check-jobs");
|
||||||
|
chan.declare_queue(easyamqp::QueueConfig {
|
||||||
|
queue: queue_name.clone(),
|
||||||
|
passive: false,
|
||||||
|
durable: true,
|
||||||
|
exclusive: false,
|
||||||
|
auto_delete: false,
|
||||||
|
no_wait: false,
|
||||||
|
})?;
|
||||||
|
|
||||||
|
chan.bind_queue(easyamqp::BindQueueConfig {
|
||||||
|
queue: queue_name.clone(),
|
||||||
|
exchange: "github-events".to_owned(),
|
||||||
|
routing_key: Some("pull_request.nixos/nixpkgs".to_owned()),
|
||||||
|
no_wait: false,
|
||||||
|
})?;
|
||||||
|
|
||||||
|
let handle = chan.consume(
|
||||||
|
tasks::evaluationfilter::EvaluationFilterWorker::new(cfg.acl()),
|
||||||
|
easyamqp::ConsumeConfig {
|
||||||
|
queue: queue_name.clone(),
|
||||||
|
consumer_tag: format!("{}-evaluation-filter", cfg.whoami()),
|
||||||
|
no_local: false,
|
||||||
|
no_ack: false,
|
||||||
no_wait: false,
|
no_wait: false,
|
||||||
internal: false,
|
|
||||||
})
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
channel
|
|
||||||
.declare_queue(easyamqp::QueueConfig {
|
|
||||||
queue: "mass-rebuild-check-jobs".to_owned(),
|
|
||||||
passive: false,
|
|
||||||
durable: true,
|
|
||||||
exclusive: false,
|
exclusive: false,
|
||||||
auto_delete: false,
|
},
|
||||||
no_wait: false,
|
)?;
|
||||||
})
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
channel
|
info!("Fetching jobs from {}", &queue_name);
|
||||||
.declare_queue(easyamqp::QueueConfig {
|
task::block_on(handle);
|
||||||
queue: "mass-rebuild-check-inputs".to_owned(),
|
|
||||||
passive: false,
|
|
||||||
durable: true,
|
|
||||||
exclusive: false,
|
|
||||||
auto_delete: false,
|
|
||||||
no_wait: false,
|
|
||||||
})
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
channel
|
drop(conn); // Close connection.
|
||||||
.bind_queue(easyamqp::BindQueueConfig {
|
|
||||||
queue: "mass-rebuild-check-inputs".to_owned(),
|
|
||||||
exchange: "github-events".to_owned(),
|
|
||||||
routing_key: Some("pull_request.nixos/nixpkgs".to_owned()),
|
|
||||||
no_wait: false,
|
|
||||||
})
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
channel.basic_prefetch(1).unwrap();
|
|
||||||
let mut channel = channel
|
|
||||||
.consume(
|
|
||||||
worker::new(tasks::evaluationfilter::EvaluationFilterWorker::new(
|
|
||||||
cfg.acl(),
|
|
||||||
)),
|
|
||||||
easyamqp::ConsumeConfig {
|
|
||||||
queue: "mass-rebuild-check-inputs".to_owned(),
|
|
||||||
consumer_tag: format!("{}-evaluation-filter", cfg.whoami()),
|
|
||||||
no_local: false,
|
|
||||||
no_ack: false,
|
|
||||||
no_wait: false,
|
|
||||||
exclusive: false,
|
|
||||||
},
|
|
||||||
)
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
channel.start_consuming();
|
|
||||||
|
|
||||||
info!("Finished consuming?");
|
|
||||||
|
|
||||||
channel.close(200, "Bye").unwrap();
|
|
||||||
info!("Closed the channel");
|
|
||||||
session.close(200, "Good Bye");
|
|
||||||
info!("Closed the session... EOF");
|
info!("Closed the session... EOF");
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue