zmq/message.rs
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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
use libc::size_t;
use std::ffi;
use std::fmt;
use std::ops::{Deref, DerefMut};
use std::os::raw::c_void;
use std::{ptr, slice, str};
use super::errno_to_error;
/// Holds a 0MQ message.
///
/// A message is a single frame, either received or created locally and then
/// sent over the wire. Multipart messages are transmitted as multiple
/// `Message`s.
///
/// In rust-zmq, you aren't required to create message objects if you use the
/// convenience APIs provided (e.g. `Socket::recv_bytes()` or
/// `Socket::send()`). However, using message objects can make multiple
/// operations in a loop more efficient, since allocated memory can be reused.
pub struct Message {
msg: zmq_sys::zmq_msg_t,
}
impl Drop for Message {
fn drop(&mut self) {
unsafe {
let rc = zmq_sys::zmq_msg_close(&mut self.msg);
assert_eq!(rc, 0);
}
}
}
impl fmt::Debug for Message {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{:?}", self.deref())
}
}
unsafe extern "C" fn drop_msg_data_box(data: *mut c_void, hint: *mut c_void) {
let _ = Box::from_raw(slice::from_raw_parts_mut(data as *mut u8, hint as usize));
}
impl Message {
unsafe fn alloc<F>(f: F) -> Message
where
F: FnOnce(&mut zmq_sys::zmq_msg_t) -> i32,
{
let mut msg = zmq_sys::zmq_msg_t::default();
let rc = f(&mut msg);
if rc == -1 {
panic!("{}", errno_to_error())
}
Message { msg }
}
/// Create an empty `Message`.
pub fn new() -> Message {
unsafe { Self::alloc(|msg| zmq_sys::zmq_msg_init(msg)) }
}
/// Create a `Message` preallocated with `len` uninitialized bytes.
///
/// Since it is very easy to introduce undefined behavior using this
/// function, its use is not recommended, and it will be removed in a future
/// release. If there is a use-case that cannot be handled efficiently by
/// the safe message constructors, please file an issue.
///
/// # Safety
///
/// The returned message contains uninitialized memory, and hence the
/// `Deref` and `DerefMut` traits must not be used until the memory has been
/// initialized. Since there is no proper API to do so, this function is
/// basically not usable safely, unless you happen to invoke C code that
/// takes a raw message pointer and initializes its contents.
#[deprecated(
since = "0.9.1",
note = "This method has an unintuitive name, and should not be needed."
)]
pub unsafe fn with_capacity_unallocated(len: usize) -> Message {
Self::alloc(|msg| zmq_sys::zmq_msg_init_size(msg, len as size_t))
}
unsafe fn with_size_uninit(len: usize) -> Message {
Self::alloc(|msg| zmq_sys::zmq_msg_init_size(msg, len as size_t))
}
/// Create a `Message` with space for `len` bytes that are initialized to 0.
pub fn with_size(len: usize) -> Message {
unsafe {
let mut msg = Message::with_size_uninit(len);
ptr::write_bytes(msg.as_mut_ptr(), 0, len);
msg
}
}
/// Create a `Message` with space for `len` bytes that are initialized to 0.
#[deprecated(
since = "0.9.1",
note = "This method has a name which does not match its semantics. Use `with_size` instead"
)]
pub fn with_capacity(len: usize) -> Message {
Self::with_size(len)
}
/// Create a `Message` from a `&[u8]`. This will copy `data` into the message.
///
/// This is equivalent to using the `From<&[u8]>` trait.
#[deprecated(since = "0.9.1", note = "Use the `From` trait instead.")]
pub fn from_slice(data: &[u8]) -> Message {
Self::from(data)
}
/// Return the message content as a string slice if it is valid UTF-8.
pub fn as_str(&self) -> Option<&str> {
str::from_utf8(self).ok()
}
/// Return the `ZMQ_MORE` flag, which indicates if more parts of a multipart
/// message will follow.
pub fn get_more(&self) -> bool {
let rc = unsafe { zmq_sys::zmq_msg_more(&self.msg) };
rc != 0
}
/// Query a message metadata property.
///
/// # Non-UTF8 values
///
/// The `zmq_msg_gets` man page notes "The encoding of the property and
/// value shall be UTF8". However, this is not actually enforced. For API
/// compatibility reasons, this function will return `None` when
/// encountering a non-UTF8 value; so a missing and a non-UTF8 value cannot
/// currently be distinguished.
///
/// This is considered a bug in the bindings, and will be fixed with the
/// next API-breaking release.
pub fn gets<'a>(&'a mut self, property: &str) -> Option<&'a str> {
let c_str = ffi::CString::new(property.as_bytes()).unwrap();
let value = unsafe { zmq_sys::zmq_msg_gets(&self.msg, c_str.as_ptr()) };
if value.is_null() {
None
} else {
str::from_utf8(unsafe { ffi::CStr::from_ptr(value) }.to_bytes()).ok()
}
}
}
impl Deref for Message {
type Target = [u8];
fn deref(&self) -> &[u8] {
// This is safe because we're constraining the slice to the lifetime of
// this message.
unsafe {
let ptr = &self.msg as *const _ as *mut _;
let data = zmq_sys::zmq_msg_data(ptr);
let len = zmq_sys::zmq_msg_size(ptr) as usize;
slice::from_raw_parts(data as *mut u8, len)
}
}
}
impl PartialEq for Message {
fn eq(&self, other: &Message) -> bool {
self[..] == other[..]
}
}
impl Eq for Message {}
impl DerefMut for Message {
fn deref_mut(&mut self) -> &mut [u8] {
// This is safe because we're constraining the slice to the lifetime of
// this message.
unsafe {
let data = zmq_sys::zmq_msg_data(&mut self.msg);
let len = zmq_sys::zmq_msg_size(&self.msg) as usize;
slice::from_raw_parts_mut(data as *mut u8, len)
}
}
}
impl<'a> From<&'a [u8]> for Message {
/// Construct a message from a byte slice by copying the data.
fn from(data: &'a [u8]) -> Self {
unsafe {
let mut msg = Message::with_size_uninit(data.len());
ptr::copy_nonoverlapping(data.as_ptr(), msg.as_mut_ptr(), data.len());
msg
}
}
}
impl From<Vec<u8>> for Message {
/// Construct a message from a byte vector without copying the data.
fn from(msg: Vec<u8>) -> Self {
Message::from(msg.into_boxed_slice())
}
}
impl From<Box<[u8]>> for Message {
/// Construct a message from a boxed slice without copying the data.
fn from(data: Box<[u8]>) -> Self {
let len = data.len();
if len == 0 {
return Message::new();
}
let raw = Box::into_raw(data);
unsafe {
Self::alloc(|msg| {
zmq_sys::zmq_msg_init_data(
msg,
raw as *mut c_void,
len,
Some(drop_msg_data_box),
len as *mut c_void,
)
})
}
}
}
impl<'a> From<&'a str> for Message {
/// Construct a message from a string slice by copying the UTF-8 data.
fn from(msg: &str) -> Self {
Message::from(msg.as_bytes())
}
}
impl<'a> From<&'a String> for Message {
/// Construct a message from a string slice by copying the UTF-8 data.
fn from(msg: &String) -> Self {
Message::from(msg.as_bytes())
}
}
impl<'a, T> From<&'a T> for Message
where
T: Into<Message> + Clone,
{
fn from(v: &'a T) -> Self {
v.clone().into()
}
}
/// Get the low-level C pointer.
pub fn msg_ptr(msg: &mut Message) -> *mut zmq_sys::zmq_msg_t {
&mut msg.msg
}