1use super::MysqlType;
2use super::types::date_and_time::MysqlTime;
34use crate::deserialize;
5use core::error::Error;
6use core::mem::MaybeUninit;
78/// Raw mysql value as received from the database
9#[derive(#[automatically_derived]
impl<'a> ::core::clone::Clone for MysqlValue<'a> {
#[inline]
fn clone(&self) -> MysqlValue<'a> {
MysqlValue {
raw: ::core::clone::Clone::clone(&self.raw),
tpe: ::core::clone::Clone::clone(&self.tpe),
}
}
}Clone, #[automatically_derived]
impl<'a> ::core::fmt::Debug for MysqlValue<'a> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
::core::fmt::Formatter::debug_struct_field2_finish(f, "MysqlValue",
"raw", &self.raw, "tpe", &&self.tpe)
}
}Debug)]
10pub struct MysqlValue<'a> {
11 raw: &'a [u8],
12 tpe: MysqlType,
13}
1415impl<'a> MysqlValue<'a> {
16/// Create a new instance of [MysqlValue] based on a byte buffer
17 /// and information about the type of the value represented by the
18 /// given buffer
19#[cfg(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes")]
20pub fn new(raw: &'a [u8], tpe: MysqlType) -> Self {
21Self::new_internal(raw, tpe)
22 }
2324#[cfg(any(
25 feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes",
26 feature = "mysql",
27 feature = "mariadb"
28))]
29pub(crate) fn new_internal(raw: &'a [u8], tpe: MysqlType) -> Self {
30Self { raw, tpe }
31 }
3233/// Get the underlying raw byte representation
34pub fn as_bytes(&self) -> &'a [u8] {
35self.raw
36 }
3738/// Get the mysql type of the current value
39pub fn value_type(&self) -> MysqlType {
40self.tpe
41 }
4243/// Checks that the type code is valid, and interprets the data as a
44 /// `MysqlTime` pointer
45// We use `ptr::copy` to read the actual data
46 // and copy it over to the returned `MysqlTime` instance
47#[allow(unsafe_code)] // MaybeUninit + ptr copy
48pub(crate) fn time_value(&self) -> deserialize::Result<MysqlTime> {
49match self.tpe {
50 MysqlType::Time | MysqlType::Date | MysqlType::DateTime | MysqlType::Timestamp => {
51// we check for the size of the `MYSQL_TIME` type from `mysqlclient_sys` here as
52 // certain older libmysqlclient and newer libmariadb versions do not have all the
53 // same fields (and size) as the `MysqlTime` type from diesel. The later one is modeled after
54 // the type from newer libmysqlclient
55self.too_short_buffer(
56#[cfg(feature = "mysql")]
57core::mem::size_of::<mysqlclient_sys::MYSQL_TIME>(),
58#[cfg(not(feature = "mysql"))]
59core::mem::size_of::<MysqlTime>(),
60"timestamp",
61 )?;
62// To ensure we copy the right number of bytes we need to make sure to copy not more bytes than needed
63 // for `MysqlTime` and not more bytes than inside of the buffer
64let len = core::cmp::min(core::mem::size_of::<MysqlTime>(), self.raw.len());
65// Zero is a valid pattern for this type so we are fine with initializing all fields to zero
66 // If the provided byte buffer is too short we just use 0 as default value
67let mut out = MaybeUninit::<MysqlTime>::zeroed();
68// Make sure to check that the boolean is an actual bool value, so 0 or 1
69 // as anything else is UB in rust
70let neg_offset = const { builtin # offset_of(MysqlTime, neg) }std::mem::offset_of!(MysqlTime, neg);
71if neg_offset < self.raw.len()
72 && self.raw[neg_offset] != 0
73&& self.raw[neg_offset] != 1
74{
75return Err(
76"Received invalid value for `neg` in the `MysqlTime` datastructure".into(),
77 );
78 }
79let result = unsafe {
80// SAFETY: We copy over the bytes from our raw buffer to the `MysqlTime` instance
81 // This type is correctly aligned and we ensure that we do not copy more bytes than are there
82 // We are also sure that these ptr do not overlap as they are completely different
83 // instances
84core::ptr::copy_nonoverlapping(
85self.raw.as_ptr(),
86out.as_mut_ptr() as *mut u8,
87len,
88 );
89// SAFETY: all zero is a valid pattern for this type
90 // Otherwise any other bit pattern is also valid, beside
91 // neg being something other than 0 or 1
92 // We check for that above by looking at the byte before copying
93out.assume_init()
94 };
95if result.neg {
96Err("Negative dates/times are not yet supported".into())
97 } else {
98Ok(result)
99 }
100 }
101_ => Err(self.invalid_type_code("timestamp")),
102 }
103 }
104105/// Returns the numeric representation of this value, based on the type code.
106 /// Returns an error if the type code is not numeric.
107pub(crate) fn numeric_value(&self) -> deserialize::Result<NumericRepresentation<'_>> {
108Ok(match self.tpe {
109 MysqlType::Tiny => NumericRepresentation::Tiny(self.read()?),
110 MysqlType::UnsignedTiny => NumericRepresentation::UnsignedTiny(self.read()?),
111 MysqlType::Short => NumericRepresentation::Small(self.read()?),
112 MysqlType::UnsignedShort => NumericRepresentation::UnsignedSmall(self.read()?),
113 MysqlType::Long => NumericRepresentation::Medium(self.read()?),
114 MysqlType::UnsignedLong => NumericRepresentation::UnsignedMedium(self.read()?),
115 MysqlType::LongLong => NumericRepresentation::Big(self.read()?),
116 MysqlType::UnsignedLongLong => NumericRepresentation::UnsignedBig(self.read()?),
117 MysqlType::Float => NumericRepresentation::Float(self.read()?),
118 MysqlType::Double => NumericRepresentation::Double(self.read()?),
119 MysqlType::Numeric => NumericRepresentation::Decimal(self.raw),
120_ => return Err(self.invalid_type_code("number")),
121 })
122 }
123124fn invalid_type_code(&self, expected: &str) -> Box<dyn Error + Send + Sync> {
125::alloc::__export::must_use({
::alloc::fmt::format(format_args!("Invalid representation received for {0}: {1:?}",
expected, self.tpe))
})format!(
126"Invalid representation received for {}: {:?}",
127 expected, self.tpe
128 )129 .into()
130 }
131132fn too_short_buffer(&self, expected: usize, tpe: &'static str) -> deserialize::Result<()> {
133if self.raw.len() < expected {
134Err(::alloc::__export::must_use({
::alloc::fmt::format(format_args!("Received a buffer with an invalid size while trying to read a {1} value: Expected at least {2} bytes but got {0}",
self.raw.len(), tpe, expected))
})format!(
135"Received a buffer with an invalid size while trying \
136 to read a {tpe} value: Expected at least {expected} bytes \
137 but got {}",
138self.raw.len()
139 )140 .into())
141 } else {
142Ok(())
143 }
144 }
145146/// Reads a `T` from the start of the buffer, in the byte order the server sent it in.
147fn read<T: FromNeBytes>(&self) -> deserialize::Result<T> {
148self.too_short_buffer(core::mem::size_of::<T>(), core::any::type_name::<T>())?;
149Ok(T::from_ne_prefix(self.raw))
150 }
151}
152153/// The numeric primitives the server transmits as native endian bytes.
154///
155/// Private, so that [`MysqlValue::read`] cannot be reached with any other type.
156trait FromNeBytes: Sized {
157/// Reads `Self` from the first `size_of::<Self>()` bytes, panicking on a shorter buffer.
158fn from_ne_prefix(buffer: &[u8]) -> Self;
159}
160161macro_rules! impl_from_ne_bytes {
162 ($($t:ty),+ $(,)?) => {
163 $(
164impl FromNeBytes for $t {
165fn from_ne_prefix(buffer: &[u8]) -> Self {
166let mut bytes = [0_u8; core::mem::size_of::<Self>()];
167 bytes.copy_from_slice(&buffer[..core::mem::size_of::<Self>()]);
168Self::from_ne_bytes(bytes)
169 }
170 }
171 )+
172 };
173}
174175impl FromNeBytes for i8 {
fn from_ne_prefix(buffer: &[u8]) -> Self {
let mut bytes = [0_u8; core::mem::size_of::<Self>()];
bytes.copy_from_slice(&buffer[..core::mem::size_of::<Self>()]);
Self::from_ne_bytes(bytes)
}
}
impl FromNeBytes for u8 {
fn from_ne_prefix(buffer: &[u8]) -> Self {
let mut bytes = [0_u8; core::mem::size_of::<Self>()];
bytes.copy_from_slice(&buffer[..core::mem::size_of::<Self>()]);
Self::from_ne_bytes(bytes)
}
}
impl FromNeBytes for i16 {
fn from_ne_prefix(buffer: &[u8]) -> Self {
let mut bytes = [0_u8; core::mem::size_of::<Self>()];
bytes.copy_from_slice(&buffer[..core::mem::size_of::<Self>()]);
Self::from_ne_bytes(bytes)
}
}
impl FromNeBytes for u16 {
fn from_ne_prefix(buffer: &[u8]) -> Self {
let mut bytes = [0_u8; core::mem::size_of::<Self>()];
bytes.copy_from_slice(&buffer[..core::mem::size_of::<Self>()]);
Self::from_ne_bytes(bytes)
}
}
impl FromNeBytes for i32 {
fn from_ne_prefix(buffer: &[u8]) -> Self {
let mut bytes = [0_u8; core::mem::size_of::<Self>()];
bytes.copy_from_slice(&buffer[..core::mem::size_of::<Self>()]);
Self::from_ne_bytes(bytes)
}
}
impl FromNeBytes for u32 {
fn from_ne_prefix(buffer: &[u8]) -> Self {
let mut bytes = [0_u8; core::mem::size_of::<Self>()];
bytes.copy_from_slice(&buffer[..core::mem::size_of::<Self>()]);
Self::from_ne_bytes(bytes)
}
}
impl FromNeBytes for i64 {
fn from_ne_prefix(buffer: &[u8]) -> Self {
let mut bytes = [0_u8; core::mem::size_of::<Self>()];
bytes.copy_from_slice(&buffer[..core::mem::size_of::<Self>()]);
Self::from_ne_bytes(bytes)
}
}
impl FromNeBytes for u64 {
fn from_ne_prefix(buffer: &[u8]) -> Self {
let mut bytes = [0_u8; core::mem::size_of::<Self>()];
bytes.copy_from_slice(&buffer[..core::mem::size_of::<Self>()]);
Self::from_ne_bytes(bytes)
}
}
impl FromNeBytes for f32 {
fn from_ne_prefix(buffer: &[u8]) -> Self {
let mut bytes = [0_u8; core::mem::size_of::<Self>()];
bytes.copy_from_slice(&buffer[..core::mem::size_of::<Self>()]);
Self::from_ne_bytes(bytes)
}
}
impl FromNeBytes for f64 {
fn from_ne_prefix(buffer: &[u8]) -> Self {
let mut bytes = [0_u8; core::mem::size_of::<Self>()];
bytes.copy_from_slice(&buffer[..core::mem::size_of::<Self>()]);
Self::from_ne_bytes(bytes)
}
}impl_from_ne_bytes!(i8, u8, i16, u16, i32, u32, i64, u64, f32, f64);
176177/// Represents all possible forms MySQL transmits integers
178#[derive(#[automatically_derived]
impl<'a> ::core::fmt::Debug for NumericRepresentation<'a> {
#[inline]
fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
match self {
NumericRepresentation::Tiny(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Tiny",
&__self_0),
NumericRepresentation::UnsignedTiny(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"UnsignedTiny", &__self_0),
NumericRepresentation::Small(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Small",
&__self_0),
NumericRepresentation::UnsignedSmall(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"UnsignedSmall", &__self_0),
NumericRepresentation::Medium(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Medium",
&__self_0),
NumericRepresentation::UnsignedMedium(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"UnsignedMedium", &__self_0),
NumericRepresentation::Big(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Big",
&__self_0),
NumericRepresentation::UnsignedBig(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"UnsignedBig", &__self_0),
NumericRepresentation::Float(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Float",
&__self_0),
NumericRepresentation::Double(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f, "Double",
&__self_0),
NumericRepresentation::Decimal(__self_0) =>
::core::fmt::Formatter::debug_tuple_field1_finish(f,
"Decimal", &__self_0),
}
}
}Debug, #[automatically_derived]
#[doc(hidden)]
unsafe impl<'a> ::core::clone::TrivialClone for NumericRepresentation<'a> { }
#[automatically_derived]
impl<'a> ::core::clone::Clone for NumericRepresentation<'a> {
#[inline]
fn clone(&self) -> NumericRepresentation<'a> {
let _: ::core::clone::AssertParamIsClone<i8>;
let _: ::core::clone::AssertParamIsClone<u8>;
let _: ::core::clone::AssertParamIsClone<i16>;
let _: ::core::clone::AssertParamIsClone<u16>;
let _: ::core::clone::AssertParamIsClone<i32>;
let _: ::core::clone::AssertParamIsClone<u32>;
let _: ::core::clone::AssertParamIsClone<i64>;
let _: ::core::clone::AssertParamIsClone<u64>;
let _: ::core::clone::AssertParamIsClone<f32>;
let _: ::core::clone::AssertParamIsClone<f64>;
let _: ::core::clone::AssertParamIsClone<&'a [u8]>;
*self
}
}Clone, #[automatically_derived]
impl<'a> ::core::marker::Copy for NumericRepresentation<'a> { }Copy)]
179#[non_exhaustive]
180pub enum NumericRepresentation<'a> {
181/// Corresponds to `MYSQL_TYPE_TINY`
182Tiny(i8),
183/// Corresponds to `MYSQL_TYPE_TINY` with the `UNSIGNED` flag set
184UnsignedTiny(u8),
185/// Corresponds to `MYSQL_TYPE_SHORT`
186Small(i16),
187/// Corresponds to `MYSQL_TYPE_SHORT` with the `UNSIGNED` flag set
188UnsignedSmall(u16),
189/// Corresponds to `MYSQL_TYPE_INT24` and `MYSQL_TYPE_LONG`
190Medium(i32),
191/// Corresponds to `MYSQL_TYPE_INT24` and `MYSQL_TYPE_LONG` with the `UNSIGNED` flag set
192UnsignedMedium(u32),
193/// Corresponds to `MYSQL_TYPE_LONGLONG`
194Big(i64),
195/// Corresponds to `MYSQL_TYPE_LONGLONG` with the `UNSIGNED` flag set
196UnsignedBig(u64),
197/// Corresponds to `MYSQL_TYPE_FLOAT`
198Float(f32),
199/// Corresponds to `MYSQL_TYPE_DOUBLE`
200Double(f64),
201/// Corresponds to `MYSQL_TYPE_DECIMAL` and `MYSQL_TYPE_NEWDECIMAL`
202Decimal(&'a [u8]),
203}
204205#[test]
206#[allow(unsafe_code, reason = "Test code")]
207fn invalid_reads() {
208use crate::data_types::MysqlTimestampType;
209210assert!(
211 MysqlValue::new_internal(&[1], MysqlType::Timestamp)
212 .time_value()
213 .is_err()
214 );
215let v = MysqlTime {
216 year: 2025,
217 month: 9,
218 day: 15,
219 hour: 22,
220 minute: 3,
221 second: 10,
222 second_part: 0,
223 neg: false,
224 time_type: MysqlTimestampType::MYSQL_TIMESTAMP_DATETIME,
225 time_zone_displacement: 0,
226 };
227let mut bytes = [0; std::mem::size_of::<MysqlTime>()];
228unsafe {
229// SAFETY: Test code
230 // also the size matches and we want to get raw bytes
231std::ptr::copy(
232&v as *const MysqlTime as *const u8,
233 bytes.as_mut_ptr(),
234 bytes.len(),
235 );
236 }
237let offset = std::mem::offset_of!(MysqlTime, neg);
238 bytes[offset] = 42;
239assert!(
240 MysqlValue::new_internal(&bytes, MysqlType::Timestamp)
241 .time_value()
242 .is_err()
243 );
244245assert!(
246 MysqlValue::new_internal(&[1, 2], MysqlType::Long)
247 .numeric_value()
248 .is_err()
249 );
250251assert!(
252 MysqlValue::new_internal(&[1, 2, 3, 4], MysqlType::LongLong)
253 .numeric_value()
254 .is_err()
255 );
256257assert!(
258 MysqlValue::new_internal(&[1], MysqlType::Short)
259 .numeric_value()
260 .is_err()
261 );
262263assert!(
264 MysqlValue::new_internal(&[1, 2, 3, 4], MysqlType::Double)
265 .numeric_value()
266 .is_err()
267 );
268269assert!(
270 MysqlValue::new_internal(&[1, 2], MysqlType::Float)
271 .numeric_value()
272 .is_err()
273 );
274275assert!(
276 MysqlValue::new_internal(&[1], MysqlType::Tiny)
277 .numeric_value()
278 .is_ok()
279 );
280281assert!(
282 MysqlValue::new_internal(&[], MysqlType::Tiny)
283 .numeric_value()
284 .is_err()
285 );
286287assert!(
288 MysqlValue::new_internal(&[], MysqlType::UnsignedTiny)
289 .numeric_value()
290 .is_err()
291 );
292293// Every arm reads the leading bytes it needs and ignores any trailing ones.
294assert!(
295 MysqlValue::new_internal(&[1, 2, 3], MysqlType::UnsignedShort)
296 .numeric_value()
297 .is_ok()
298 );
299300assert!(
301 MysqlValue::new_internal(&[1, 2, 3, 4, 5], MysqlType::UnsignedLong)
302 .numeric_value()
303 .is_ok()
304 );
305306assert!(
307 MysqlValue::new_internal(&[1, 2, 3, 4, 5, 6, 7, 8, 9], MysqlType::UnsignedLongLong)
308 .numeric_value()
309 .is_ok()
310 );
311}
312313#[test]
314fn numeric_value_keeps_signedness() {
315use super::NumericRepresentation as N;
316317assert!(matches!(
318 MysqlValue::new_internal(&[0xFF], MysqlType::Tiny).numeric_value(),
319Ok(N::Tiny(-1))
320 ));
321assert!(matches!(
322 MysqlValue::new_internal(&[200], MysqlType::UnsignedTiny).numeric_value(),
323Ok(N::UnsignedTiny(200))
324 ));
325assert!(matches!(
326 MysqlValue::new_internal(&(-1i16).to_ne_bytes(), MysqlType::Short).numeric_value(),
327Ok(N::Small(-1))
328 ));
329assert!(matches!(
330 MysqlValue::new_internal(&40000u16.to_ne_bytes(), MysqlType::UnsignedShort).numeric_value(),
331Ok(N::UnsignedSmall(40000))
332 ));
333assert!(matches!(
334 MysqlValue::new_internal(&(-1i32).to_ne_bytes(), MysqlType::Long).numeric_value(),
335Ok(N::Medium(-1))
336 ));
337assert!(matches!(
338 MysqlValue::new_internal(&u32::MAX.to_ne_bytes(), MysqlType::UnsignedLong).numeric_value(),
339Ok(N::UnsignedMedium(u32::MAX))
340 ));
341assert!(matches!(
342 MysqlValue::new_internal(&(-1i64).to_ne_bytes(), MysqlType::LongLong).numeric_value(),
343Ok(N::Big(-1))
344 ));
345assert!(matches!(
346 MysqlValue::new_internal(&u64::MAX.to_ne_bytes(), MysqlType::UnsignedLongLong)
347 .numeric_value(),
348Ok(N::UnsignedBig(u64::MAX))
349 ));
350}