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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
use std::fmt::{Display, Formatter};
use std::str::FromStr;
use url::Url;
use crate::{
error::{MessageConversionError, MessageTypeError, OptionValueError},
message::{CoapMessage, CoapMessageCommon, CoapOption},
protocol::{
CoapMatch, CoapMessageCode, CoapMessageType, CoapOptionType, CoapRequestCode, ContentFormat, ETag, HopLimit,
NoResponse, Observe,
},
types::{CoapUri, CoapUriHost, CoapUriScheme},
};
pub const MAX_URI_SEGMENT_LENGTH: usize = 255;
pub const MAX_PROXY_URI_LENGTH: usize = 1034;
#[derive(Clone, Eq, PartialEq, Hash, Debug)]
enum CoapRequestUri {
Request(CoapUri),
Proxy(CoapUri),
}
impl Display for CoapRequestUri {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
match self {
CoapRequestUri::Request(v) => f.write_fmt(format_args!("Request URI: {}", v)),
CoapRequestUri::Proxy(v) => f.write_fmt(format_args!("Proxy URI: {}", v)),
}
}
}
impl CoapRequestUri {
#[allow(clippy::or_fun_call)]
pub fn new_request_uri(uri: CoapUri) -> Result<CoapRequestUri, OptionValueError> {
if uri
.path_iter()
.unwrap_or(vec![].iter())
.chain(uri.query_iter().unwrap_or(vec![].iter()))
.any(|x| x.len() > MAX_URI_SEGMENT_LENGTH)
{
return Err(OptionValueError::TooLong);
}
Ok(CoapRequestUri::Request(uri))
}
pub fn new_proxy_uri(uri: CoapUri) -> Result<CoapRequestUri, OptionValueError> {
if uri.scheme().is_none() || uri.host().is_none() {
return Err(OptionValueError::IllegalValue);
}
if CoapRequestUri::generate_proxy_uri_string(&uri).len() > MAX_PROXY_URI_LENGTH {
return Err(OptionValueError::TooLong);
}
Ok(CoapRequestUri::Proxy(uri))
}
fn generate_proxy_uri_string(uri: &CoapUri) -> String {
let mut proxy_uri_string = format!(
"{}://{}",
uri.scheme().unwrap().to_string().as_str(),
uri.host().unwrap().to_string().as_str()
);
if let Some(port) = uri.port() {
proxy_uri_string.push_str(format!(":{}", port).as_str());
}
if let Some(path) = uri.path_iter() {
path.for_each(|path_component| {
proxy_uri_string.push_str(format!("/{}", path_component).as_str());
});
}
if let Some(query) = uri.query_iter() {
let mut separator_char = '?';
query.for_each(|query_option| {
proxy_uri_string.push_str(format!("{}{}", separator_char, query_option).as_str());
separator_char = '&';
});
}
proxy_uri_string
}
pub fn into_options(self) -> Vec<CoapOption> {
let mut options = Vec::new();
match self {
CoapRequestUri::Request(mut uri) => {
if let Some(host) = uri.host() {
options.push(CoapOption::UriHost(host.to_string()))
}
if let Some(port) = uri.port() {
options.push(CoapOption::UriPort(port))
}
if let Some(path) = uri.drain_path_iter() {
options.extend(path.map(CoapOption::UriPath))
}
if let Some(query) = uri.drain_query_iter() {
options.extend(query.map(CoapOption::UriQuery))
}
},
CoapRequestUri::Proxy(uri) => {
options.push(CoapOption::ProxyUri(CoapRequestUri::generate_proxy_uri_string(&uri)))
},
}
options
}
pub fn as_uri(&self) -> &CoapUri {
match self {
CoapRequestUri::Request(uri) => uri,
CoapRequestUri::Proxy(uri) => uri,
}
}
}
impl TryFrom<CoapUri> for CoapRequestUri {
type Error = OptionValueError;
fn try_from(value: CoapUri) -> Result<Self, Self::Error> {
CoapRequestUri::new_request_uri(value)
}
}
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub struct CoapRequest {
pdu: CoapMessage,
uri: Option<CoapRequestUri>,
accept: Option<ContentFormat>,
etag: Option<Vec<ETag>>,
if_match: Option<Vec<CoapMatch>>,
content_format: Option<ContentFormat>,
if_none_match: bool,
hop_limit: Option<HopLimit>,
no_response: Option<NoResponse>,
observe: Option<Observe>,
}
impl CoapRequest {
pub fn new(type_: CoapMessageType, code: CoapRequestCode) -> Result<CoapRequest, MessageTypeError> {
match type_ {
CoapMessageType::Con | CoapMessageType::Non => {},
v => return Err(MessageTypeError::InvalidForMessageCode(v)),
}
Ok(CoapRequest {
pdu: CoapMessage::new(type_, code.into()),
uri: None,
accept: None,
etag: None,
if_match: None,
content_format: None,
if_none_match: false,
hop_limit: None,
no_response: None,
observe: None,
})
}
pub fn accept(&self) -> Option<ContentFormat> {
self.accept
}
pub fn set_accept(&mut self, accept: Option<ContentFormat>) {
self.accept = accept
}
pub fn etag(&self) -> Option<&Vec<ETag>> {
self.etag.as_ref()
}
pub fn set_etag(&mut self, etag: Option<Vec<ETag>>) {
self.etag = etag
}
pub fn if_match(&self) -> Option<&Vec<CoapMatch>> {
self.if_match.as_ref()
}
pub fn set_if_match(&mut self, if_match: Option<Vec<CoapMatch>>) {
self.if_match = if_match
}
pub fn content_format(&self) -> Option<ContentFormat> {
self.content_format
}
pub fn set_content_format(&mut self, content_format: Option<ContentFormat>) {
self.content_format = content_format;
}
pub fn if_none_match(&self) -> bool {
self.if_none_match
}
pub fn set_if_none_match(&mut self, if_none_match: bool) {
self.if_none_match = if_none_match
}
pub fn hop_limit(&self) -> Option<HopLimit> {
self.hop_limit
}
pub fn set_hop_limit(&mut self, hop_limit: Option<HopLimit>) {
self.hop_limit = hop_limit;
}
pub fn no_response(&self) -> Option<NoResponse> {
self.no_response
}
pub fn set_no_response(&mut self, no_response: Option<NoResponse>) {
self.no_response = no_response;
}
pub fn observe(&self) -> Option<Observe> {
self.observe
}
pub fn set_observe(&mut self, observe: Option<Observe>) {
self.observe = observe;
}
pub fn uri(&self) -> Option<&CoapUri> {
self.uri.as_ref().map(|v| v.as_uri())
}
pub fn set_uri<U: Into<CoapUri>>(&mut self, uri: Option<U>) -> Result<(), OptionValueError> {
let uri = uri.map(Into::into);
if let Some(uri) = uri {
self.uri = Some(CoapRequestUri::new_request_uri(uri)?)
}
Ok(())
}
pub fn set_proxy_uri<U: Into<CoapUri>>(&mut self, uri: Option<U>) -> Result<(), OptionValueError> {
let uri = uri.map(Into::into);
if let Some(uri) = uri {
self.uri = Some(CoapRequestUri::new_proxy_uri(uri)?)
}
Ok(())
}
pub fn from_message(mut pdu: CoapMessage) -> Result<CoapRequest, MessageConversionError> {
let mut host = None;
let mut port = None;
let mut path = None;
let mut query = None;
let mut proxy_scheme = None;
let mut proxy_uri = None;
let mut content_format = None;
let mut etag = None;
let mut if_match = None;
let mut if_none_match = false;
let mut accept = None;
let mut hop_limit = None;
let mut no_response = None;
let mut observe = None;
let mut additional_opts = Vec::new();
for option in pdu.options_iter() {
match option {
CoapOption::IfMatch(value) => {
if if_match.is_none() {
if_match = Some(Vec::new());
}
if_match.as_mut().unwrap().push(value.clone());
},
CoapOption::IfNoneMatch => {
if if_none_match {
return Err(MessageConversionError::NonRepeatableOptionRepeated(
CoapOptionType::IfNoneMatch,
));
}
if_none_match = true;
},
CoapOption::UriHost(value) => {
if host.is_some() {
return Err(MessageConversionError::NonRepeatableOptionRepeated(
CoapOptionType::UriHost,
));
}
host = Some(value.clone());
},
CoapOption::UriPort(value) => {
if port.is_some() {
return Err(MessageConversionError::NonRepeatableOptionRepeated(
CoapOptionType::UriPort,
));
}
port = Some(*value);
},
CoapOption::UriPath(value) => {
if path.is_none() {
path = Some(Vec::new());
}
path.as_mut().unwrap().push(value.clone());
},
CoapOption::UriQuery(value) => {
if query.is_none() {
query = Some(Vec::new());
}
query.as_mut().unwrap().push(value.clone());
},
CoapOption::LocationPath(_) => {
return Err(MessageConversionError::InvalidOptionForMessageType(
CoapOptionType::LocationPath,
));
},
CoapOption::LocationQuery(_) => {
return Err(MessageConversionError::InvalidOptionForMessageType(
CoapOptionType::LocationQuery,
));
},
CoapOption::ProxyUri(uri) => {
if proxy_uri.is_some() {
return Err(MessageConversionError::NonRepeatableOptionRepeated(
CoapOptionType::ProxyUri,
));
}
proxy_uri = Some(uri.clone())
},
CoapOption::ProxyScheme(scheme) => {
if proxy_scheme.is_some() {
return Err(MessageConversionError::NonRepeatableOptionRepeated(
CoapOptionType::ProxyScheme,
));
}
proxy_scheme = Some(CoapUriScheme::from_str(scheme)?)
},
CoapOption::ContentFormat(cformat) => {
if content_format.is_some() {
return Err(MessageConversionError::NonRepeatableOptionRepeated(
CoapOptionType::ContentFormat,
));
}
content_format = Some(*cformat)
},
CoapOption::Accept(value) => {
if accept.is_some() {
return Err(MessageConversionError::NonRepeatableOptionRepeated(
CoapOptionType::Accept,
));
}
accept = Some(*value);
},
CoapOption::Size1(_) => {},
CoapOption::Size2(_) => {
return Err(MessageConversionError::InvalidOptionForMessageType(
CoapOptionType::Size2,
));
},
CoapOption::Block1(_) => {},
CoapOption::Block2(_) => {
return Err(MessageConversionError::InvalidOptionForMessageType(
CoapOptionType::Block2,
));
},
CoapOption::HopLimit(value) => {
if hop_limit.is_some() {
return Err(MessageConversionError::NonRepeatableOptionRepeated(
CoapOptionType::HopLimit,
));
}
hop_limit = Some(*value);
},
CoapOption::NoResponse(value) => {
if no_response.is_some() {
return Err(MessageConversionError::NonRepeatableOptionRepeated(
CoapOptionType::NoResponse,
));
}
no_response = Some(*value);
},
CoapOption::ETag(value) => {
if etag.is_none() {
etag = Some(Vec::new());
}
etag.as_mut().unwrap().push(value.clone());
},
CoapOption::MaxAge(_value) => {
return Err(MessageConversionError::InvalidOptionForMessageType(
CoapOptionType::MaxAge,
));
},
CoapOption::Observe(value) => {
if observe.is_some() {
return Err(MessageConversionError::NonRepeatableOptionRepeated(
CoapOptionType::MaxAge,
));
}
observe = Some(*value);
},
CoapOption::Other(n, v) => {
additional_opts.push(CoapOption::Other(*n, v.clone()));
},
}
}
pdu.clear_options();
for opt in additional_opts {
(&mut pdu).add_option(opt);
}
if proxy_scheme.is_some() && proxy_uri.is_some() {
return Err(MessageConversionError::InvalidOptionCombination(
CoapOptionType::ProxyScheme,
CoapOptionType::ProxyUri,
));
}
let uri = if let Some(proxy_uri) = proxy_uri {
Some(CoapUri::try_from_url(Url::parse(&proxy_uri)?)?)
} else {
Some(CoapUri::new(
proxy_scheme,
host.map(|v| CoapUriHost::from_str(v.as_str()).unwrap()),
port,
path,
query,
))
}
.map(|uri| {
if uri.scheme().is_some() {
CoapRequestUri::new_proxy_uri(uri)
} else {
CoapRequestUri::new_request_uri(uri)
}
});
let uri = if let Some(uri) = uri {
Some(uri.map_err(|e| MessageConversionError::InvalidOptionValue(None, e))?)
} else {
None
};
Ok(CoapRequest {
pdu,
uri,
accept,
etag,
if_match,
content_format,
if_none_match,
hop_limit,
no_response,
observe,
})
}
pub fn into_message(mut self) -> CoapMessage {
if let Some(req_uri) = self.uri {
req_uri.into_options().into_iter().for_each(|v| self.pdu.add_option(v));
}
if let Some(accept) = self.accept {
self.pdu.add_option(CoapOption::Accept(accept))
}
if let Some(etags) = self.etag {
for etag in etags {
self.pdu.add_option(CoapOption::ETag(etag));
}
}
if let Some(if_match) = self.if_match {
for match_expr in if_match {
self.pdu.add_option(CoapOption::IfMatch(match_expr));
}
}
if let Some(content_format) = self.content_format {
self.pdu.add_option(CoapOption::ContentFormat(content_format));
}
if self.if_none_match {
self.pdu.add_option(CoapOption::IfNoneMatch);
}
if let Some(hop_limit) = self.hop_limit {
self.pdu.add_option(CoapOption::HopLimit(hop_limit));
}
if let Some(no_response) = self.no_response {
self.pdu.add_option(CoapOption::NoResponse(no_response));
}
if let Some(observe) = self.observe {
self.pdu.add_option(CoapOption::Observe(observe));
}
self.pdu
}
}
impl CoapMessageCommon for CoapRequest {
fn set_code<C: Into<CoapMessageCode>>(&mut self, code: C) {
match code.into() {
CoapMessageCode::Request(req) => self.pdu.set_code(CoapMessageCode::Request(req)),
CoapMessageCode::Response(_) | CoapMessageCode::Empty => {
panic!("attempted to set message code of request to value that is not a request code")
},
}
}
fn as_message(&self) -> &CoapMessage {
&self.pdu
}
fn as_message_mut(&mut self) -> &mut CoapMessage {
&mut self.pdu
}
}