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 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
// The MIT License (MIT)
// Copyright (c) 2015 Y. T. Chung <zonyitoo@gmail.com>
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//! Serializer
mod error;
mod raw;
mod serde;
pub use self::{
error::{Error, Result},
serde::{Serializer, SerializerOptions},
};
use std::{io::Write, iter::FromIterator, mem};
use crate::{
bson::{Bson, DbPointer, Document, JavaScriptCodeWithScope, Regex},
de::MAX_BSON_SIZE,
spec::BinarySubtype,
Binary,
RawDocumentBuf,
};
use ::serde::{ser::Error as SerdeError, Serialize};
fn write_string<W: Write + ?Sized>(writer: &mut W, s: &str) -> Result<()> {
writer.write_all(&(s.len() as i32 + 1).to_le_bytes())?;
writer.write_all(s.as_bytes())?;
writer.write_all(b"\0")?;
Ok(())
}
fn write_cstring<W: Write + ?Sized>(writer: &mut W, s: &str) -> Result<()> {
if s.contains('\0') {
return Err(Error::InvalidCString(s.into()));
}
writer.write_all(s.as_bytes())?;
writer.write_all(b"\0")?;
Ok(())
}
#[inline]
pub(crate) fn write_i32<W: Write + ?Sized>(writer: &mut W, val: i32) -> Result<()> {
writer
.write_all(&val.to_le_bytes())
.map(|_| ())
.map_err(From::from)
}
#[inline]
fn write_i64<W: Write + ?Sized>(writer: &mut W, val: i64) -> Result<()> {
writer
.write_all(&val.to_le_bytes())
.map(|_| ())
.map_err(From::from)
}
#[inline]
fn write_f64<W: Write + ?Sized>(writer: &mut W, val: f64) -> Result<()> {
writer
.write_all(&val.to_le_bytes())
.map(|_| ())
.map_err(From::from)
}
#[inline]
fn write_binary<W: Write>(mut writer: W, bytes: &[u8], subtype: BinarySubtype) -> Result<()> {
let len = if let BinarySubtype::BinaryOld = subtype {
bytes.len() + 4
} else {
bytes.len()
};
if len > MAX_BSON_SIZE as usize {
return Err(Error::custom(format!(
"binary length {} exceeded maximum size",
bytes.len()
)));
}
write_i32(&mut writer, len as i32)?;
writer.write_all(&[subtype.into()])?;
if let BinarySubtype::BinaryOld = subtype {
write_i32(&mut writer, len as i32 - 4)?;
};
writer.write_all(bytes).map_err(From::from)
}
fn serialize_array<W: Write + ?Sized>(writer: &mut W, arr: &[Bson]) -> Result<()> {
let mut buf = Vec::new();
for (key, val) in arr.iter().enumerate() {
serialize_bson(&mut buf, &key.to_string(), val)?;
}
write_i32(
writer,
(buf.len() + mem::size_of::<i32>() + mem::size_of::<u8>()) as i32,
)?;
writer.write_all(&buf)?;
writer.write_all(b"\0")?;
Ok(())
}
pub(crate) fn serialize_bson<W: Write + ?Sized>(
writer: &mut W,
key: &str,
val: &Bson,
) -> Result<()> {
writer.write_all(&[val.element_type() as u8])?;
write_cstring(writer, key)?;
match *val {
Bson::Double(v) => write_f64(writer, v),
Bson::String(ref v) => write_string(writer, v),
Bson::Array(ref v) => serialize_array(writer, v),
Bson::Document(ref v) => v.to_writer(writer),
Bson::Boolean(v) => writer.write_all(&[v as u8]).map_err(From::from),
Bson::RegularExpression(Regex {
ref pattern,
ref options,
}) => {
write_cstring(writer, pattern)?;
let mut chars: Vec<char> = options.chars().collect();
chars.sort_unstable();
write_cstring(writer, String::from_iter(chars).as_str())
}
Bson::JavaScriptCode(ref code) => write_string(writer, code),
Bson::ObjectId(ref id) => writer.write_all(&id.bytes()).map_err(From::from),
Bson::JavaScriptCodeWithScope(JavaScriptCodeWithScope {
ref code,
ref scope,
}) => {
let mut buf = Vec::new();
write_string(&mut buf, code)?;
scope.to_writer(&mut buf)?;
write_i32(writer, buf.len() as i32 + 4)?;
writer.write_all(&buf).map_err(From::from)
}
Bson::Int32(v) => write_i32(writer, v),
Bson::Int64(v) => write_i64(writer, v),
Bson::Timestamp(ts) => write_i64(writer, ts.to_le_i64()),
Bson::Binary(Binary { subtype, ref bytes }) => write_binary(writer, bytes, subtype),
Bson::DateTime(ref v) => write_i64(writer, v.timestamp_millis()),
Bson::Null => Ok(()),
Bson::Symbol(ref v) => write_string(writer, v),
Bson::Decimal128(ref v) => {
writer.write_all(&v.bytes)?;
Ok(())
}
Bson::Undefined => Ok(()),
Bson::MinKey => Ok(()),
Bson::MaxKey => Ok(()),
Bson::DbPointer(DbPointer {
ref namespace,
ref id,
}) => {
write_string(writer, namespace)?;
writer.write_all(&id.bytes()).map_err(From::from)
}
}
}
/// Encode a `T` Serializable into a [`Bson`] value.
///
/// The [`Serializer`] used by this function presents itself as human readable, whereas the
/// one used in [`to_vec`] does not. This means that this function will produce different BSON than
/// [`to_vec`] for types that change their serialization output depending on whether
/// the format is human readable or not. To serialize to a [`Document`] with a serializer that
/// presents itself as not human readable, use [`to_bson_with_options`] with
/// [`SerializerOptions::human_readable`] set to false.
pub fn to_bson<T: ?Sized>(value: &T) -> Result<Bson>
where
T: Serialize,
{
let ser = Serializer::new();
value.serialize(ser)
}
/// Encode a `T` into a [`Bson`] value, configuring the underlying serializer with the provided
/// options.
/// ```
/// # use serde::Serialize;
/// # use bson::{bson, SerializerOptions};
/// #[derive(Debug, Serialize)]
/// struct MyData {
/// a: String,
/// }
///
/// let data = MyData { a: "ok".to_string() };
/// let options = SerializerOptions::builder().human_readable(false).build();
/// let bson = bson::to_bson_with_options(&data, options)?;
/// assert_eq!(bson, bson!({ "a": "ok" }));
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
pub fn to_bson_with_options<T: ?Sized>(value: &T, options: SerializerOptions) -> Result<Bson>
where
T: Serialize,
{
let ser = Serializer::new_with_options(options);
value.serialize(ser)
}
/// Encode a `T` Serializable into a BSON [`Document`].
///
/// The [`Serializer`] used by this function presents itself as human readable, whereas the
/// one used in [`to_vec`] does not. This means that this function will produce different BSON than
/// [`to_vec`] for types that change their serialization output depending on whether
/// the format is human readable or not. To serialize to a [`Document`] with a serializer that
/// presents itself as not human readable, use [`to_document_with_options`] with
/// [`SerializerOptions::human_readable`] set to false.
pub fn to_document<T: ?Sized>(value: &T) -> Result<Document>
where
T: Serialize,
{
to_document_with_options(value, Default::default())
}
/// Encode a `T` into a [`Document`], configuring the underlying serializer with the provided
/// options.
/// ```
/// # use serde::Serialize;
/// # use bson::{doc, SerializerOptions};
/// #[derive(Debug, Serialize)]
/// struct MyData {
/// a: String,
/// }
///
/// let data = MyData { a: "ok".to_string() };
/// let options = SerializerOptions::builder().human_readable(false).build();
/// let doc = bson::to_document_with_options(&data, options)?;
/// assert_eq!(doc, doc! { "a": "ok" });
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
pub fn to_document_with_options<T: ?Sized>(
value: &T,
options: SerializerOptions,
) -> Result<Document>
where
T: Serialize,
{
match to_bson_with_options(value, options)? {
Bson::Document(doc) => Ok(doc),
bson => Err(Error::SerializationError {
message: format!(
"Could not be serialized to Document, got {:?} instead",
bson.element_type()
),
}),
}
}
/// Serialize the given `T` as a BSON byte vector.
#[inline]
pub fn to_vec<T>(value: &T) -> Result<Vec<u8>>
where
T: Serialize,
{
let mut serializer = raw::Serializer::new();
value.serialize(&mut serializer)?;
Ok(serializer.into_vec())
}
/// Serialize the given `T` as a [`RawDocumentBuf`].
///
/// ```rust
/// use serde::Serialize;
/// use bson::rawdoc;
///
/// #[derive(Serialize)]
/// struct Cat {
/// name: String,
/// age: i32
/// }
///
/// let cat = Cat { name: "Garfield".to_string(), age: 43 };
/// let doc = bson::to_raw_document_buf(&cat)?;
/// assert_eq!(doc, rawdoc! { "name": "Garfield", "age": 43 });
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn to_raw_document_buf<T>(value: &T) -> Result<RawDocumentBuf>
where
T: Serialize,
{
RawDocumentBuf::from_bytes(to_vec(value)?).map_err(Error::custom)
}