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
use crate::mlir_sys::{
mlirIdentifierEqual, mlirIdentifierGet, mlirIdentifierGetContext, mlirIdentifierStr,
MlirIdentifier,
};
use crate::{
context::{Context, ContextRef},
string_ref::StringRef,
};
use std::marker::PhantomData;
#[derive(Clone, Copy, Debug)]
pub struct Identifier<'c> {
raw: MlirIdentifier,
_context: PhantomData<&'c Context>,
}
impl<'c> Identifier<'c> {
pub fn new(context: &Context, name: &str) -> Self {
unsafe {
Self::from_raw(mlirIdentifierGet(
context.to_raw(),
StringRef::from(name).to_raw(),
))
}
}
pub fn context(&self) -> ContextRef<'c> {
unsafe { ContextRef::from_raw(mlirIdentifierGetContext(self.raw)) }
}
pub fn as_string_ref(&self) -> StringRef {
unsafe { StringRef::from_raw(mlirIdentifierStr(self.raw)) }
}
pub(crate) unsafe fn from_raw(raw: MlirIdentifier) -> Self {
Self {
raw,
_context: Default::default(),
}
}
pub(crate) const unsafe fn to_raw(self) -> MlirIdentifier {
self.raw
}
}
impl<'c> PartialEq for Identifier<'c> {
fn eq(&self, other: &Self) -> bool {
unsafe { mlirIdentifierEqual(self.raw, other.raw) }
}
}
impl<'c> Eq for Identifier<'c> {}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn new() {
Identifier::new(&Context::new(), "foo");
}
#[test]
fn context() {
Identifier::new(&Context::new(), "foo").context();
}
#[test]
fn equal() {
let context = Context::new();
assert_eq!(
Identifier::new(&context, "foo"),
Identifier::new(&context, "foo")
);
}
#[test]
fn not_equal() {
let context = Context::new();
assert_ne!(
Identifier::new(&context, "foo"),
Identifier::new(&context, "bar")
);
}
}