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
#![cfg_attr(feature="clippy", feature(plugin))]
#![cfg_attr(feature="clippy", plugin(clippy))]
#![cfg_attr(not(feature="clippy"), allow(unknown_lints))]
use std::collections::BTreeMap;
#[cfg(feature = "amqp0-build-specs")]
include!(concat!(env!("OUT_DIR"), "/amqp0.rs"));
#[cfg(not(feature = "amqp0-build-specs"))]
include!(concat!("lib.pregen.rs"));
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub struct Version {
minor: u16,
revision: u16,
}
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub struct Spec {
name: &'static str,
classes: BTreeMap<&'static str, Class>,
constants: BTreeMap<&'static str, Constant>,
domains: BTreeMap<&'static str, &'static str>,
frame_types: BTreeMap<&'static str, Constant>,
response_codes: BTreeMap<&'static str, Constant>,
version: Version,
}
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub struct Class {
name: &'static str,
fields: Vec<ClassField>,
index: u16,
methods: Vec<ClassMethod>,
}
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub struct ClassMethod {
name: &'static str,
index: u16,
response: Option<&'static str>,
fields: Vec<ClassMethodField>,
is_synchronous: bool,
chassis_server: Option<&'static str>,
chassis_client: Option<&'static str>,
}
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub struct ClassField {
name: &'static str,
domain: &'static str,
}
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub struct ClassMethodField {
name: &'static str,
domain: &'static str,
assertions: Vec<ClassMethodFieldAssertion>,
is_reserved: bool,
}
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub enum ClassMethodFieldAssertion {
Null,
NotNull,
ChannelMax,
NotZero,
Enum(Vec<&'static str>),
Length(usize),
Regexp(&'static str),
Syntax(&'static str),
}
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub struct Constant {
name: &'static str,
value: u32,
class: Option<&'static str>,
}
impl Spec {
pub fn name(&self) -> &'static str {
self.name
}
pub fn classes(&self) -> &BTreeMap<&'static str, Class> {
&self.classes
}
pub fn domains(&self) -> &BTreeMap<&'static str, &'static str> {
&self.domains
}
pub fn frame_types(&self) -> &BTreeMap<&'static str, Constant> {
&self.frame_types
}
pub fn response_codes(&self) -> &BTreeMap<&'static str, Constant> {
&self.response_codes
}
pub fn version(&self) -> &Version {
&self.version
}
}
impl Class {
pub fn name(&self) -> &'static str {
self.name
}
pub fn fields(&self) -> &[ClassField] {
&self.fields
}
pub fn index(&self) -> u16 {
self.index
}
pub fn methods(&self) -> &[ClassMethod] {
&self.methods
}
}
impl ClassField {
pub fn name(&self) -> &'static str {
&self.name
}
pub fn domain(&self) -> &'static str {
self.domain
}
}
impl ClassMethod {
pub fn index(&self) -> u16 {
self.index
}
pub fn name(&self) -> &str {
&self.name
}
pub fn fields(&self) -> &[ClassMethodField] {
&self.fields
}
}
impl ClassMethodField {
pub fn name(&self) -> &'static str {
&self.name
}
pub fn domain(&self) -> &'static str {
self.domain
}
pub fn assertions(&self) -> &[ClassMethodFieldAssertion] {
&self.assertions
}
pub fn is_reserved(&self) -> bool {
self.is_reserved
}
}
impl Constant {
pub fn name(&self) -> &'static str {
self.name
}
pub fn value(&self) -> u32 {
self.value
}
pub fn class(&self) -> Option<&'static str> {
self.class
}
}
impl Version {
pub fn minor(&self) -> u16 {
self.minor
}
pub fn revision(&self) -> u16 {
self.revision
}
}