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
#[cfg(feature = "with_kafka")]
extern crate kafka;

mod varint;

pub mod error;
pub mod consumer;
pub mod converter;

#[cfg(feature = "with_kafka")]
pub mod kafka_consumer {
    use kafka::consumer::{Consumer, FetchOffset};
    use std::{thread, time};
    use error::StreamDelimitError;
    use std;
    use consumer::GenericConsumer;

    pub struct KafkaConsumer {
        consumer: Consumer,
        messages: Vec<Vec<u8>>,
    }

    impl GenericConsumer for KafkaConsumer {
        fn get_single_message(&mut self) -> Option<Vec<u8>> {
            if self.messages.is_empty() {
                let kafka_consumer = &mut self.consumer;
                loop {
                    match kafka_consumer.poll() {
                        Ok(x) => {
                            match x.iter().take(1).next() {
                                Some(y) => {
                                    self.messages.append(&mut y.messages()
                                        .iter()
                                        .map(|z| z.value.to_vec())
                                        .collect::<Vec<_>>());
                                    kafka_consumer.consume_messageset(y).expect(
                                        "Couldn't mark messageset as consumed",
                                    );
                                    kafka_consumer.commit_consumed().expect(
                                        "Couldn't commit consumption",
                                    );
                                    break;
                                }
                                None => {
                                    thread::sleep(time::Duration::from_secs(1));
                                    continue;
                                }
                            }
                        }
                        Err(_) => return None,
                    }
                }
            }
            self.messages.pop()
        }
    }

    impl KafkaConsumer {
        pub fn new(
            brokers: &str,
            topic: &str,
            from_beginning: bool,
        ) -> Result<KafkaConsumer, StreamDelimitError> {
            let fetch_offset = if from_beginning {
                FetchOffset::Earliest
            } else {
                FetchOffset::Latest
            };
            match Consumer::from_hosts(
                brokers
                    .split(',')
                    .map(std::borrow::ToOwned::to_owned)
                    .collect::<Vec<String>>(),
            ).with_topic_partitions(topic.to_owned(), &[0, 1])
                .with_fallback_offset(fetch_offset)
                .create() {
                Ok(consumer) => {
                    Ok(KafkaConsumer {
                        consumer: consumer,
                        messages: vec![],
                    })
                }
                Err(_) => Err(StreamDelimitError::KafkaInitializeError),
            }
        }
    }
}