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
// SPDX-License-Identifier: Apache-2.0
//! Typed string identifiers for the ID-referenced IR graph.
//!
//! Each entity kind wraps a string in a distinct newtype, preventing references
//! between incompatible arenas. IDs must be stable and globally unique within
//! a document.
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
macro_rules! id_type {
($(#[$meta:meta])* $name:ident) => {
$(#[$meta])*
#[derive(
Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize, JsonSchema,
)]
#[serde(transparent)]
pub struct $name(pub String);
impl $name {
/// Borrow the underlying id string.
pub fn as_str(&self) -> &str {
&self.0
}
}
impl std::fmt::Display for $name {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.write_str(&self.0)
}
}
impl<S: Into<String>> From<S> for $name {
fn from(value: S) -> Self {
$name(value.into())
}
}
};
}
id_type!(
/// Identifies a [`crate::topology::Body`].
BodyId
);
id_type!(
/// Identifies a [`crate::topology::Region`].
RegionId
);
id_type!(
/// Identifies a [`crate::topology::Shell`].
ShellId
);
id_type!(
/// Identifies a [`crate::topology::Face`].
FaceId
);
id_type!(
/// Identifies a [`crate::topology::Loop`].
LoopId
);
id_type!(
/// Identifies a [`crate::topology::Coedge`].
CoedgeId
);
id_type!(
/// Identifies a [`crate::topology::Edge`].
EdgeId
);
id_type!(
/// Identifies a [`crate::topology::Vertex`].
VertexId
);
id_type!(
/// Identifies a [`crate::geometry::Surface`] carrier.
SurfaceId
);
id_type!(
/// Identifies a [`crate::geometry::Curve`] carrier.
CurveId
);
id_type!(
/// Identifies a [`crate::geometry::Pcurve`] carrier.
PcurveId
);
id_type!(
/// Identifies a [`crate::geometry::ProceduralSurface`] construction.
ProceduralSurfaceId
);
id_type!(
/// Identifies a [`crate::geometry::ProceduralCurve`] construction.
ProceduralCurveId
);
id_type!(
/// Identifies a [`crate::topology::Point`] carrier (a vertex position).
PointId
);
id_type!(
/// Identifies a passthrough [`crate::unknown::UnknownRecord`].
UnknownId
);
id_type!(
/// Identifies a decoded [`crate::appearance::Appearance`] asset.
AppearanceId
);
id_type!(
/// Identifies a linked [`crate::attributes::SourceAttribute`] record.
AttributeId
);