nautilus_core/uuid.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
// -------------------------------------------------------------------------------------------------
// Copyright (C) 2015-2024 Nautech Systems Pty Ltd. All rights reserved.
// https://nautechsystems.io
//
// Licensed under the GNU Lesser General Public License Version 3.0 (the "License");
// You may not use this file except in compliance with the License.
// You may obtain a copy of the License at https://www.gnu.org/licenses/lgpl-3.0.en.html
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// -------------------------------------------------------------------------------------------------
//! A `UUID4` universally unique identifier (UUID) version 4 based on a 128-bit
//! label (RFC 4122).
use std::{
ffi::{CStr, CString},
fmt::{Debug, Display, Formatter},
hash::Hash,
str::FromStr,
};
use serde::{Deserialize, Deserializer, Serialize, Serializer};
use uuid::Uuid;
/// The maximum length of ASCII characters for a `UUID4` string value (includes null terminator).
pub(crate) const UUID4_LEN: usize = 37;
/// Represents a pseudo-random UUID (universally unique identifier)
/// version 4 based on a 128-bit label as specified in RFC 4122.
#[repr(C)]
#[derive(Copy, Clone, Hash, PartialEq, Eq)]
#[cfg_attr(
feature = "python",
pyo3::pyclass(module = "nautilus_trader.core.nautilus_pyo3.core")
)]
pub struct UUID4 {
/// The UUID v4 value as a fixed-length C string byte array (includes null terminator).
pub(crate) value: [u8; 37], // cbindgen issue using the constant in the array
}
impl UUID4 {
/// Creates a new [`UUID4`] instance.
///
/// Generates a new UUID version 4, which is based on random or pseudo-random numbers.
/// The UUID is stored as a fixed-length C string byte array.
#[must_use]
pub fn new() -> Self {
let uuid = Uuid::new_v4();
let c_string =
CString::new(uuid.to_string()).expect("Expected UUID to convert to valid `CString`");
let bytes = c_string.as_bytes_with_nul();
let mut value = [0; UUID4_LEN];
value[..bytes.len()].copy_from_slice(bytes);
Self { value }
}
/// Converts the `UUID4` to a C string reference.
#[must_use]
pub fn to_cstr(&self) -> &CStr {
// SAFETY: We always store valid C strings
CStr::from_bytes_with_nul(&self.value)
.expect("Expected UUID byte representation to be a valid `CString`")
}
}
impl FromStr for UUID4 {
type Err = uuid::Error;
/// Attempts to create a UUID4 from a string representation.
///
/// The string should be a valid UUID in the standard format (e.g., "6ba7b810-9dad-11d1-80b4-00c04fd430c8").
fn from_str(s: &str) -> Result<Self, Self::Err> {
let uuid = Uuid::try_parse(s)?;
let c_string = CString::new(uuid.to_string()).expect("`CString` conversion failed");
let bytes = c_string.as_bytes_with_nul();
let mut value = [0; UUID4_LEN];
value[..bytes.len()].copy_from_slice(bytes);
Ok(Self { value })
}
}
impl From<&str> for UUID4 {
/// Creates a UUID4 from a string slice.
///
/// # Panics
///
/// This function panics:
/// - If the `value` string is not a valid UUID.
fn from(value: &str) -> Self {
value.parse().expect("`value` should be a valid UUID")
}
}
impl From<String> for UUID4 {
/// Creates a UUID4 from a string.
///
/// # Panics
///
/// This function panics:
/// - If the `value` string is not a valid UUID.
fn from(value: String) -> Self {
Self::from(value.as_str())
}
}
impl Default for UUID4 {
/// Creates a new default [`UUID4`] instance.
///
/// The default UUID4 is simply a newly generated UUID version 4.
fn default() -> Self {
Self::new()
}
}
impl Debug for UUID4 {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "{}('{}')", stringify!(UUID4), self)
}
}
impl Display for UUID4 {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.to_cstr().to_string_lossy())
}
}
impl Serialize for UUID4 {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
self.value.serialize(serializer)
}
}
impl<'de> Deserialize<'de> for UUID4 {
fn deserialize<D>(_deserializer: D) -> Result<Self, D::Error>
where
D: Deserializer<'de>,
{
let uuid4_str: &str = Deserialize::deserialize(_deserializer)?;
let uuid4: Self = uuid4_str.into();
Ok(uuid4)
}
}
////////////////////////////////////////////////////////////////////////////////
// Tests
////////////////////////////////////////////////////////////////////////////////
#[cfg(test)]
mod tests {
use rstest::*;
use uuid;
use super::*;
#[rstest]
fn test_new() {
let uuid = UUID4::new();
let uuid_string = uuid.to_string();
let uuid_parsed = Uuid::parse_str(&uuid_string).expect("Uuid::parse_str failed");
assert_eq!(uuid_parsed.get_version().unwrap(), uuid::Version::Random);
assert_eq!(uuid_parsed.to_string().len(), 36);
}
#[rstest]
fn test_invalid_uuid() {
let invalid_uuid = "invalid-uuid-string";
assert!(UUID4::from_str(invalid_uuid).is_err());
}
#[rstest]
fn test_default() {
let uuid: UUID4 = UUID4::default();
let uuid_string = uuid.to_string();
let uuid_parsed = Uuid::parse_str(&uuid_string).expect("Uuid::parse_str failed");
assert_eq!(uuid_parsed.get_version().unwrap(), uuid::Version::Random);
}
#[rstest]
fn test_from_str() {
let uuid_string = "6ba7b810-9dad-11d1-80b4-00c04fd430c8";
let uuid = UUID4::from(uuid_string);
let result_string = uuid.to_string();
let result_parsed = Uuid::parse_str(&result_string).expect("Uuid::parse_str failed");
let expected_parsed = Uuid::parse_str(uuid_string).expect("Uuid::parse_str failed");
assert_eq!(result_parsed, expected_parsed);
}
#[rstest]
fn test_equality() {
let uuid1 = UUID4::from("2d89666b-1a1e-4a75-b193-4eb3b454c757");
let uuid2 = UUID4::from("46922ecb-4324-4e40-a56c-841e0d774cef");
assert_eq!(uuid1, uuid1);
assert_ne!(uuid1, uuid2);
}
#[rstest]
fn test_debug() {
let uuid_string = "6ba7b810-9dad-11d1-80b4-00c04fd430c8";
let uuid = UUID4::from(uuid_string);
assert_eq!(format!("{uuid:?}"), format!("UUID4('{uuid_string}')"));
}
#[rstest]
fn test_display() {
let uuid_string = "6ba7b810-9dad-11d1-80b4-00c04fd430c8";
let uuid = UUID4::from(uuid_string);
assert_eq!(format!("{uuid}"), uuid_string);
}
}