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
use crate::cassandra::error::*;
use crate::cassandra::util::Protected;
use crate::cassandra_sys::cass_uuid_from_string_n;
use crate::cassandra_sys::cass_uuid_gen_free;
use crate::cassandra_sys::cass_uuid_gen_from_time;
use crate::cassandra_sys::cass_uuid_gen_new;
use crate::cassandra_sys::cass_uuid_gen_new_with_node;
use crate::cassandra_sys::cass_uuid_gen_random;
use crate::cassandra_sys::cass_uuid_gen_time;
use crate::cassandra_sys::cass_uuid_max_from_time;
use crate::cassandra_sys::cass_uuid_min_from_time;
use crate::cassandra_sys::cass_uuid_string;
use crate::cassandra_sys::cass_uuid_timestamp;
use crate::cassandra_sys::cass_uuid_version;
use crate::cassandra_sys::CassUuid as _Uuid;
use crate::cassandra_sys::CassUuidGen as _UuidGen;
use std::cmp::Ordering;
use std::ffi::CStr;
use std::fmt;
use std::fmt::Formatter;
use std::fmt::{Debug, Display};
use std::mem;
use std::os::raw::c_char;
use std::str;
const CASS_UUID_STRING_LENGTH: usize = 37;
#[derive(Copy, Clone)]
pub struct Uuid(_Uuid);
impl Protected<_Uuid> for Uuid {
fn inner(&self) -> _Uuid {
self.0
}
fn build(inner: _Uuid) -> Self {
Uuid(inner)
}
}
impl Default for Uuid {
fn default() -> Uuid {
unsafe { ::std::mem::zeroed() }
}
}
#[derive(Debug)]
pub struct UuidGen(*mut _UuidGen);
unsafe impl Sync for UuidGen {}
unsafe impl Send for UuidGen {}
impl Drop for UuidGen {
fn drop(&mut self) {
unsafe { cass_uuid_gen_free(self.0) }
}
}
impl Debug for Uuid {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
fmt::Display::fmt(self, f)
}
}
impl Display for Uuid {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
unsafe {
let mut buf = [0u8; CASS_UUID_STRING_LENGTH];
cass_uuid_string(self.0, buf.as_mut_ptr() as *mut c_char);
let str = CStr::from_bytes_with_nul(&buf)
.map_err(|_| fmt::Error)?
.to_str()
.map_err(|_| fmt::Error)?;
fmt::Display::fmt(&str, f)
}
}
}
impl Uuid {
pub fn min_from_time(&mut self, time: u64) {
unsafe { cass_uuid_min_from_time(time, &mut self.0) }
}
pub fn max_from_time(&mut self, time: u64) {
unsafe { cass_uuid_max_from_time(time, &mut self.0) }
}
pub fn timestamp(&self) -> u64 {
unsafe { cass_uuid_timestamp(self.0) }
}
pub fn version(&self) -> u8 {
unsafe { cass_uuid_version(self.0) }
}
}
impl From<uuid::Uuid> for Uuid {
fn from(id: uuid::Uuid) -> Uuid {
let input = id.as_bytes();
let mut time_and_version = 0u64;
time_and_version |= input[3] as u64;
time_and_version |= (input[2] as u64) << 8;
time_and_version |= (input[1] as u64) << 16;
time_and_version |= (input[0] as u64) << 24;
time_and_version |= (input[5] as u64) << 32;
time_and_version |= (input[4] as u64) << 40;
time_and_version |= (input[7] as u64) << 48;
time_and_version |= (input[6] as u64) << 56;
let mut clock_seq_and_node = 0u64;
for i in 0..8 {
clock_seq_and_node |= (input[15 - i] as u64) << (8 * i);
}
Uuid(_Uuid {
time_and_version,
clock_seq_and_node,
})
}
}
impl From<Uuid> for uuid::Uuid {
fn from(id: Uuid) -> uuid::Uuid {
let mut output = [0u8; 16];
output[3] = id.0.time_and_version as u8;
output[2] = (id.0.time_and_version >> 8) as u8;
output[1] = (id.0.time_and_version >> 16) as u8;
output[0] = (id.0.time_and_version >> 24) as u8;
output[5] = (id.0.time_and_version >> 32) as u8;
output[4] = (id.0.time_and_version >> 40) as u8;
output[7] = (id.0.time_and_version >> 48) as u8;
output[6] = (id.0.time_and_version >> 56) as u8;
for i in 0..8 {
output[15 - i] = (id.0.clock_seq_and_node >> (8 * i)) as u8;
}
uuid::Uuid::from_bytes(output)
}
}
impl str::FromStr for Uuid {
type Err = Error;
fn from_str(str: &str) -> Result<Uuid> {
unsafe {
let mut uuid = mem::zeroed();
let str_ptr = str.as_ptr() as *const c_char;
cass_uuid_from_string_n(str_ptr, str.len(), &mut uuid)
.to_result(())
.and_then(|_| Ok(Uuid(uuid)))
}
}
}
impl PartialEq for Uuid {
fn eq(&self, other: &Uuid) -> bool {
self.0.time_and_version == other.0.time_and_version
&& self.0.clock_seq_and_node == other.0.clock_seq_and_node
}
}
impl Eq for Uuid {}
impl Ord for Uuid {
fn cmp(&self, other: &Uuid) -> Ordering {
self.0
.time_and_version
.cmp(&other.0.time_and_version)
.then(self.0.clock_seq_and_node.cmp(&other.0.clock_seq_and_node))
}
}
impl PartialOrd for Uuid {
fn partial_cmp(&self, other: &Uuid) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl Default for UuidGen {
fn default() -> Self {
unsafe { UuidGen(cass_uuid_gen_new()) }
}
}
impl UuidGen {
pub fn new_with_node(node: u64) -> UuidGen {
unsafe { UuidGen(cass_uuid_gen_new_with_node(node)) }
}
pub fn gen_time(&self) -> Uuid {
unsafe {
let mut output: _Uuid = mem::zeroed();
cass_uuid_gen_time(self.0, &mut output);
Uuid(output)
}
}
pub fn gen_random(&self) -> Uuid {
unsafe {
let mut output: _Uuid = mem::zeroed();
cass_uuid_gen_random(self.0, &mut output);
Uuid(output)
}
}
pub fn gen_from_time(&self, timestamp: u64) -> Uuid {
unsafe {
let mut output: _Uuid = mem::zeroed();
cass_uuid_gen_from_time(self.0, timestamp, &mut output);
Uuid(output)
}
}
}
#[test]
#[allow(unused_variables)]
fn test_uuid_display_gentime() {
let generator = UuidGen::default();
let uuid = generator.gen_from_time(1457486866742u64);
assert_eq!(uuid.timestamp(), 1457486866742u64);
let uuidstr = format!("{}", uuid);
}
#[test]
#[allow(unused_variables)]
fn test_uuid_debug_genrand() {
let generator = UuidGen::default();
let uuid = generator.gen_random();
let uuidstr = format!("{:?}", uuid);
}