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
// Copyright (c) 2023 Contributors to the Eclipse Foundation
//
// See the NOTICE file(s) distributed with this work for additional
// information regarding copyright ownership.
//
// This program and the accompanying materials are made available under the
// terms of the Apache Software License 2.0 which is available at
// https://www.apache.org/licenses/LICENSE-2.0, or the MIT license
// which is available at https://opensource.org/licenses/MIT.
//
// SPDX-License-Identifier: Apache-2.0 OR MIT
//! Contains two building blocks to generate unique ids. Useful for parallized unit test to
//! generate names which point to OS resources or to enumerate constructs uniquely.
//!
//! # Examples
//!
//! ## [`UniqueId`]
//!
//! The [`UniqueId`] is globally unique.
//!
//! ```
//! use iceoryx2_bb_elementary::unique_id::UniqueId;
//!
//! struct MyThing {
//! unique_id: UniqueId,
//! }
//!
//! impl MyThing {
//! fn new() -> Self {
//! Self {
//! unique_id: UniqueId::new()
//! }
//! }
//!
//! fn id(&self) -> u64 {
//! self.unique_id.value()
//! }
//! }
//! ```
//!
//! ## [`TypedUniqueId`]
//!
//! The [`TypedUniqueId`] is unique for a given type.
//!
//! ```
//! use iceoryx2_bb_elementary::unique_id::TypedUniqueId;
//!
//! struct MyThing {
//! unique_id: TypedUniqueId<MyThing>,
//! }
//!
//! impl MyThing {
//! fn new() -> Self {
//! Self {
//! unique_id: TypedUniqueId::new()
//! }
//! }
//!
//! fn id(&self) -> u64 {
//! self.unique_id.value()
//! }
//! }
//! ```
use ;
/// A building block to generate global unique ids
/// A building block to generate per type global unique ids. It is allowed that different types
/// have the same id but never the same type.