-
Notifications
You must be signed in to change notification settings - Fork 657
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
acf6e8b
commit 58cc388
Showing
29 changed files
with
423 additions
and
252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// ------------------------------------------------------------------------------------------------- | ||
// Copyright (C) 2015-2023 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. | ||
// ------------------------------------------------------------------------------------------------- | ||
|
||
pub mod cvec; | ||
pub mod uuid; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
// ------------------------------------------------------------------------------------------------- | ||
// Copyright (C) 2015-2023 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. | ||
// ------------------------------------------------------------------------------------------------- | ||
|
||
use std::{ | ||
collections::hash_map::DefaultHasher, | ||
ffi::{c_char, CStr}, | ||
hash::{Hash, Hasher}, | ||
}; | ||
|
||
use crate::uuid::UUID4; | ||
|
||
#[no_mangle] | ||
pub extern "C" fn uuid4_new() -> UUID4 { | ||
UUID4::new() | ||
} | ||
|
||
/// Returns a [`UUID4`] from C string pointer. | ||
/// | ||
/// # Safety | ||
/// | ||
/// - Assumes `ptr` is a valid C string pointer. | ||
/// | ||
/// # Panics | ||
/// | ||
/// - If `ptr` cannot be cast to a valid C string. | ||
#[no_mangle] | ||
pub unsafe extern "C" fn uuid4_from_cstr(ptr: *const c_char) -> UUID4 { | ||
assert!(!ptr.is_null(), "`ptr` was NULL"); | ||
UUID4::from( | ||
CStr::from_ptr(ptr) | ||
.to_str() | ||
.unwrap_or_else(|_| panic!("CStr::from_ptr failed")), | ||
) | ||
} | ||
|
||
#[no_mangle] | ||
pub extern "C" fn uuid4_to_cstr(uuid: &UUID4) -> *const c_char { | ||
uuid.to_cstr().as_ptr() | ||
} | ||
|
||
#[no_mangle] | ||
pub extern "C" fn uuid4_eq(lhs: &UUID4, rhs: &UUID4) -> u8 { | ||
u8::from(lhs == rhs) | ||
} | ||
|
||
#[no_mangle] | ||
pub extern "C" fn uuid4_hash(uuid: &UUID4) -> u64 { | ||
let mut h = DefaultHasher::new(); | ||
uuid.hash(&mut h); | ||
h.finish() | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
// Tests | ||
//////////////////////////////////////////////////////////////////////////////// | ||
#[cfg(test)] | ||
mod tests { | ||
use std::ffi::CString; | ||
|
||
use rstest::*; | ||
use uuid::{self, Uuid}; | ||
|
||
use super::*; | ||
|
||
#[rstest] | ||
fn test_uuid4_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); | ||
} | ||
|
||
#[rstest] | ||
fn test_uuid4_from_cstr() { | ||
let uuid_string = "6ba7b810-9dad-11d1-80b4-00c04fd430c8"; | ||
let uuid_cstring = CString::new(uuid_string).expect("CString::new failed"); | ||
let uuid_ptr = uuid_cstring.as_ptr(); | ||
let uuid = unsafe { uuid4_from_cstr(uuid_ptr) }; | ||
assert_eq!(uuid_string, uuid.to_string()); | ||
} | ||
|
||
#[rstest] | ||
fn test_uuid4_to_cstr() { | ||
let uuid_string = "6ba7b810-9dad-11d1-80b4-00c04fd430c8"; | ||
let uuid = UUID4::from(uuid_string); | ||
let uuid_ptr = uuid4_to_cstr(&uuid); | ||
let uuid_cstr = unsafe { CStr::from_ptr(uuid_ptr) }; | ||
let uuid_result_string = uuid_cstr.to_str().expect("CStr::to_str failed").to_string(); | ||
assert_eq!(uuid_string, uuid_result_string); | ||
} | ||
|
||
#[rstest] | ||
fn test_uuid4_eq() { | ||
let uuid1 = UUID4::from("6ba7b810-9dad-11d1-80b4-00c04fd430c8"); | ||
let uuid2 = UUID4::from("6ba7b810-9dad-11d1-80b4-00c04fd430c8"); | ||
let uuid3 = UUID4::from("6ba7b810-9dad-11d1-80b4-00c04fd430c9"); | ||
assert_eq!(uuid4_eq(&uuid1, &uuid2), 1); | ||
assert_eq!(uuid4_eq(&uuid1, &uuid3), 0); | ||
} | ||
|
||
#[rstest] | ||
fn test_uuid4_hash() { | ||
let uuid1 = UUID4::from("6ba7b810-9dad-11d1-80b4-00c04fd430c8"); | ||
let uuid2 = UUID4::from("6ba7b810-9dad-11d1-80b4-00c04fd430c8"); | ||
let uuid3 = UUID4::from("6ba7b810-9dad-11d1-80b4-00c04fd430c9"); | ||
assert_eq!(uuid4_hash(&uuid1), uuid4_hash(&uuid2)); | ||
assert_ne!(uuid4_hash(&uuid1), uuid4_hash(&uuid3)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
// ------------------------------------------------------------------------------------------------- | ||
// Copyright (C) 2015-2023 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. | ||
// ------------------------------------------------------------------------------------------------- | ||
|
||
use pyo3::prelude::*; | ||
|
||
use crate::datetime::{ | ||
micros_to_nanos, millis_to_nanos, nanos_to_micros, nanos_to_millis, nanos_to_secs, | ||
secs_to_millis, secs_to_nanos, unix_nanos_to_iso8601, | ||
}; | ||
|
||
#[pyfunction(name = "secs_to_nanos")] | ||
pub fn py_secs_to_nanos(secs: f64) -> u64 { | ||
secs_to_nanos(secs) | ||
} | ||
|
||
#[pyfunction(name = "secs_to_millis")] | ||
pub fn py_secs_to_millis(secs: f64) -> u64 { | ||
secs_to_millis(secs) | ||
} | ||
|
||
#[pyfunction(name = "millis_to_nanos")] | ||
pub fn py_millis_to_nanos(millis: f64) -> u64 { | ||
millis_to_nanos(millis) | ||
} | ||
|
||
#[pyfunction(name = "micros_to_nanos")] | ||
pub fn py_micros_to_nanos(micros: f64) -> u64 { | ||
micros_to_nanos(micros) | ||
} | ||
|
||
#[pyfunction(name = "nanos_to_secs")] | ||
pub fn py_nanos_to_secs(nanos: u64) -> f64 { | ||
nanos_to_secs(nanos) | ||
} | ||
|
||
#[pyfunction(name = "nanos_to_millis")] | ||
pub fn py_nanos_to_millis(nanos: u64) -> u64 { | ||
nanos_to_millis(nanos) | ||
} | ||
|
||
#[pyfunction(name = "nanos_to_micros")] | ||
pub fn py_nanos_to_micros(nanos: u64) -> u64 { | ||
nanos_to_micros(nanos) | ||
} | ||
|
||
#[pyfunction(name = "unix_nanos_to_iso8601")] | ||
pub fn py_unix_nanos_to_iso8601(timestamp_ns: u64) -> String { | ||
unix_nanos_to_iso8601(timestamp_ns) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.