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
#[macro_use]
extern crate log;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate byteorder;
extern crate chrono;
extern crate regex;
extern crate ring;
extern crate uuid;
extern crate url as url_external;
extern crate base64;
#[cfg(test)]
extern crate serde_json;
#[macro_export]
macro_rules! supported_message_as {
($v: expr, $i: ident) => {
if let SupportedMessage::$i(value) = $v {
value
} else {
panic!("Failed to get a supported message of type {}", stringify!($i));
}
}
}
#[macro_export]
macro_rules! supported_message_as_ref {
($v: expr, $i: ident) => {
if let SupportedMessage::$i(ref value) = $v {
value
} else {
panic!("Failed to get a supported message of type {}", stringify!($i));
}
}
}
#[macro_export]
macro_rules! supported_message_as_ref_mut {
($v: expr, $i: ident) => {
if let SupportedMessage::$i(ref mut v) = $v {
v
} else {
panic!("Failed to get a supported message of type {}", stringify!($i));
}
}
}
pub mod profiles {
pub const TRANSPORT_PROFILE_URI_BINARY: &str = "http://opcfoundation.org/UA-Profile/Transport/uatcp-uasc-uabinary";
pub const SECURITY_USER_TOKEN_POLICY_ANONYMOUS: &str = "http://opcfoundation.org/UA-Profile/Security/UserToken/Anonymous";
pub const SECURITY_USER_TOKEN_POLICY_USERPASS: &str = "http://opcfoundation.org/UA-Profile/ Security/UserToken-Server/UserNamePassword";
}
pub mod constants {
pub const DEFAULT_OPC_UA_SERVER_PORT: u16 = 4840;
pub const MAX_ARRAY_LENGTH: u32 = 1000;
pub const MAX_STRING_LENGTH: u32 = 65536;
pub const MAX_BYTE_STRING_LENGTH: u32 = 65536;
pub const MAX_CERTIFICATE_LENGTH: u32 = 32768;
}
bitflags! {
pub struct WriteMask: u32 {
const ACCESS_LEVEL = 1;
const ARRAY_DIMENSTIONS = 1 << 1;
const BROWSE_NAME = 1 << 2;
const CONTAINS_NO_LOOPS = 1 << 3;
const DATA_TYPE = 1 << 4;
const DESCRIPTION = 1 << 5;
const DISPLAY_NAME = 1 << 6;
const EVENT_NOTIFIER = 1 << 7;
const EXECUTABLE = 1 << 8;
const HISTORIZING = 1 << 9;
const INVERSE_NAME = 1 << 10;
const IS_ABSTRACT = 1 << 11;
const MINIMUM_SAMPLING_INTERVAL = 1 << 12;
const NODE_CLASS = 1 << 13;
const NODE_ID = 1 << 14;
const SYMMETRIC = 1 << 15;
const USER_ACCESS_LEVEL = 1 << 16;
const USER_EXECUTABLE = 1 << 17;
const USER_WRITE_MASK = 1 << 18;
const VALUE_RANK = 1 << 19;
const WRITE_MASK = 1 << 20;
const VALUE_FOR_VARIABLE_TYPE = 1 << 21;
}
}
mod status_codes;
pub mod encoding;
pub mod basic_types;
pub mod string;
pub mod extension_object;
pub mod byte_string;
pub mod data_value;
pub mod date_time;
pub mod diagnostic_info;
pub mod guid;
pub mod node_id;
pub mod variant;
pub mod data_types;
pub mod notification_message;
pub mod attribute;
pub mod supported_message;
pub mod numeric_range;
pub mod url;
pub mod argument;
pub mod tcp_types;
pub use crate::{
encoding::*,
basic_types::*,
string::*,
extension_object::*,
byte_string::*,
data_value::*,
diagnostic_info::*,
date_time::*,
guid::*,
node_id::*,
variant::*,
data_types::*,
attribute::*,
supported_message::*,
numeric_range::*,
url::*,
argument::*,
};
pub mod service_types;
pub mod node_ids;
pub mod status_code;
#[cfg(test)]
mod tests;