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
//! Utilities for batching up messages.
use crate::message::{Batch, BatchMessage, Message};
use crate::{Error, Result};
use serde_json::{Map, Value};
use time::OffsetDateTime;
const MAX_MESSAGE_SIZE: usize = 1024 * 32;
const MAX_BATCH_SIZE: usize = 1024 * 512;
/// A batcher can accept messages into an internal buffer, and report when
/// messages must be flushed.
///
/// The recommended usage pattern looks something like this:
///
/// ```
/// use segment::{Batcher, Client, HttpClient};
/// use segment::message::{BatchMessage, Track, User};
/// use serde_json::json;
///
/// let mut batcher = Batcher::new(None);
/// let client = HttpClient::default();
///
/// for i in 0..100 {
/// let msg = Track {
/// user: User::UserId { user_id: format!("user-{}", i) },
/// event: "Example".to_owned(),
/// properties: json!({ "foo": "bar" }),
/// ..Default::default()
/// };
///
/// // Batcher returns back ownership of a message if the internal buffer
/// // would overflow.
/// //
/// // When this occurs, we flush the batcher, create a new batcher, and add
/// // the message into the new batcher.
/// if let Some(msg) = batcher.push(msg).unwrap() {
/// client.send("your_write_key".to_string(), batcher.into_message());
/// batcher = Batcher::new(None);
/// batcher.push(msg).unwrap();
/// }
/// }
/// ```
///
/// Batcher will attempt to fit messages into maximally-sized batches, thus
/// reducing the number of round trips required with Segment's tracking API.
/// However, if you produce messages infrequently, this may significantly delay
/// the sending of messages to Segment.
///
/// If this delay is a concern, it is recommended that you periodically flush
/// the batcher on your own by calling `into_message`.
///
/// By default if the message you push in the batcher does not contains any
/// timestamp, the timestamp at the time of the push will be automatically
/// added to your message.
/// You can disable this behaviour with the [without_auto_timestamp] method
/// though.
#[derive(Clone)]
pub struct Batcher {
pub(crate) buf: Vec<BatchMessage>,
pub(crate) byte_count: usize,
pub(crate) context: Option<Value>,
pub(crate) auto_timestamp: bool,
}
impl Batcher {
/// Construct a new, empty batcher.
///
/// Optionally, you may specify a `context` that should be set on every
/// batch returned by `into_message`.
pub fn new(context: Option<Value>) -> Self {
Self {
buf: Vec::new(),
byte_count: 0,
context,
auto_timestamp: true,
}
}
pub fn without_auto_timestamp(&mut self) {
self.auto_timestamp = false;
}
/// Push a message into the batcher.
///
/// Returns `Ok(None)` if the message was accepted and is now owned by the
/// batcher.
///
/// Returns `Ok(Some(msg))` if the message was rejected because the current
/// batch would be oversized if this message were accepted. The given
/// message is returned back, and it is recommended that you flush the
/// current batch before attempting to push `msg` in again.
///
/// Returns an error if the message is too large to be sent to Segment's
/// API.
pub fn push(&mut self, msg: impl Into<BatchMessage>) -> Result<Option<BatchMessage>> {
let mut msg: BatchMessage = msg.into();
let timestamp = msg.timestamp_mut();
if self.auto_timestamp && timestamp.is_none() {
*timestamp = Some(OffsetDateTime::now_utc());
}
let size = serde_json::to_vec(&msg)?.len();
if size > MAX_MESSAGE_SIZE {
return Err(Error::MessageTooLarge);
}
self.byte_count += size + 1; // +1 to account for Serialized data's extra commas
if self.byte_count > MAX_BATCH_SIZE {
return Ok(Some(msg));
}
self.buf.push(msg);
Ok(None)
}
/// Consumes this batcher and converts it into a message that can be sent to
/// Segment.
pub fn into_message(self) -> Message {
Message::Batch(Batch {
batch: self.buf,
context: self.context,
integrations: None,
extra: Map::default(),
})
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::message::{Track, User};
use serde_json::json;
#[test]
fn test_push_and_into() {
let batch_msg = BatchMessage::Track(Track {
..Default::default()
});
let context = json!({
"foo": "bar",
});
let mut batcher = Batcher::new(Some(context.clone()));
batcher.without_auto_timestamp();
let result = batcher.push(batch_msg.clone());
assert_eq!(None, result.ok().unwrap());
let batch = batcher.into_message();
let inner_batch = match batch {
Message::Batch(b) => b,
_ => panic!("invalid message type"),
};
assert_eq!(context, inner_batch.context.unwrap());
assert_eq!(1, inner_batch.batch.len());
assert_eq!(inner_batch.batch, vec![batch_msg]);
}
#[test]
fn test_bad_message_size() {
let batch_msg = Track {
user: User::UserId {
user_id: String::from_utf8(vec![b'a'; 1024 * 33]).unwrap(),
},
..Default::default()
};
let mut batcher = Batcher::new(None);
let result = batcher.push(batch_msg);
let err = result.err().unwrap();
assert!(err.to_string().contains("message too large"));
}
#[test]
fn test_max_buffer() {
let batch_msg = Track {
user: User::UserId {
user_id: String::from_utf8(vec![b'a'; 1024 * 30]).unwrap(),
},
..Default::default()
};
let mut batcher = Batcher::new(None);
batcher.without_auto_timestamp();
let mut result = Ok(None);
for _i in 0..20 {
result = batcher.push(batch_msg.clone());
dbg!(&result);
if result.is_ok() && result.as_ref().ok().unwrap().is_some() {
break;
}
}
let msg = result.ok().unwrap();
assert_eq!(BatchMessage::from(batch_msg), msg.unwrap());
}
}