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
/*!
Provides safe `RefNode` conversion functions.

Note that all of the `as_{name}` functions work as follows.

* If the `node_type` corresponds to the correct type, it returns OK.
* If the `node_type` does not correspond to the correct type, it returns `Error::InvalidState`.
* If the `node_type` is not implemented it returns `Error::NotSupported`.

*/
use crate::error::{Error, Result};
use crate::namespaced::{MutNamespaced, Namespaced};
use crate::node_impl::*;
use crate::traits::*;

// ------------------------------------------------------------------------------------------------
// Public Functions
// ------------------------------------------------------------------------------------------------

/// Type for dynamic trait cast
pub type RefAttribute<'a> = &'a dyn Attribute<NodeRef = RefNode>;
/// Type for mutable dynamic trait cast
pub type MutRefAttribute<'a> = &'a mut dyn Attribute<NodeRef = RefNode>;

/// Type for dynamic trait cast
pub type RefElement<'a> = &'a dyn Element<NodeRef = RefNode>;
/// Type for mutable dynamic trait cast
pub type MutRefElement<'a> = &'a mut dyn Element<NodeRef = RefNode>;
/// Type for dynamic trait cast
pub type RefNamespaced<'a> = &'a dyn Namespaced<NodeRef = RefNode>;
pub(crate) type MutRefNamespaced<'a> = &'a mut dyn MutNamespaced<NodeRef = RefNode>;

/// Type for dynamic trait cast
pub type RefText<'a> = &'a dyn Text<NodeRef = RefNode>;
/// Type for mutable dynamic trait cast
pub type MutRefText<'a> = &'a mut dyn Text<NodeRef = RefNode>;

/// Type for dynamic trait cast
pub type RefCDataSection<'a> = &'a dyn CDataSection<NodeRef = RefNode>;
/// Type for mutable dynamic trait cast
pub type MutRefCDataSection<'a> = &'a mut dyn CDataSection<NodeRef = RefNode>;

/// Type for dynamic trait cast
pub type RefEntityReference<'a> = &'a dyn EntityReference<NodeRef = RefNode>;
/// Type for mutable dynamic trait cast
pub type MutRefEntityReference<'a> = &'a mut dyn EntityReference<NodeRef = RefNode>;

/// Type for dynamic trait cast
pub type RefEntity<'a> = &'a dyn Entity<NodeRef = RefNode>;
/// Type for mutable dynamic trait cast
pub type MutRefEntity<'a> = &'a mut dyn Entity<NodeRef = RefNode>;

/// Type for dynamic trait cast
pub type RefProcessingInstruction<'a> = &'a dyn ProcessingInstruction<NodeRef = RefNode>;
/// Type for mutable dynamic trait cast
pub type MutRefProcessingInstruction<'a> = &'a mut dyn ProcessingInstruction<NodeRef = RefNode>;

/// Type for dynamic trait cast
pub type RefComment<'a> = &'a dyn Comment<NodeRef = RefNode>;
/// Type for mutable dynamic trait cast
pub type MutRefComment<'a> = &'a mut dyn Comment<NodeRef = RefNode>;

/// Type for dynamic trait cast
pub type RefDocument<'a> = &'a dyn Document<NodeRef = RefNode>;
/// Type for mutable dynamic trait cast
pub type MutRefDocument<'a> = &'a mut dyn Document<NodeRef = RefNode>;

/// Type for dynamic trait cast
pub type RefDocumentType<'a> = &'a dyn DocumentType<NodeRef = RefNode>;
/// Type for mutable dynamic trait cast
pub type MutRefDocumentType<'a> = &'a mut dyn DocumentType<NodeRef = RefNode>;

/// Type for dynamic trait cast
pub type RefDocumentFragment<'a> = &'a dyn DocumentFragment<NodeRef = RefNode>;
/// Type for mutable dynamic trait cast
pub type MutRefDocumentFragment<'a> = &'a mut dyn DocumentFragment<NodeRef = RefNode>;

/// Type for dynamic trait cast
pub type RefNotation<'a> = &'a dyn Notation<NodeRef = RefNode>;
/// Type for mutable dynamic trait cast
pub type MutRefNotation<'a> = &'a mut dyn Notation<NodeRef = RefNode>;

// ------------------------------------------------------------------------------------------------
// Public Functions
// ------------------------------------------------------------------------------------------------

///
/// Determines if the specified node is of type `NodeType::Attribute`.
///
#[inline]
pub fn is_attribute(ref_node: &RefNode) -> bool {
    ref_node.borrow().i_node_type == NodeType::Attribute
}

///
/// Safely _cast_ the specified `RefNode` into a  `Attribute`.
///
#[inline]
pub fn as_attribute(ref_node: &RefNode) -> Result<RefAttribute<'_>> {
    if ref_node.borrow().i_node_type == NodeType::Attribute {
        Ok(ref_node as RefAttribute<'_>)
    } else {
        warn!("ref_node.node_type != Attribute");
        Err(Error::InvalidState)
    }
}

///
/// Safely _cast_ the specified `RefNode` into a mutable `Attribute`.
///
#[inline]
pub fn as_attribute_mut(ref_node: &mut RefNode) -> Result<MutRefAttribute<'_>> {
    if ref_node.borrow().i_node_type == NodeType::Attribute {
        Ok(ref_node as MutRefAttribute<'_>)
    } else {
        warn!("ref_node.node_type != Attribute");
        Err(Error::InvalidState)
    }
}

///
/// Determines if the specified node is of type `NodeType::Element`.
///
#[inline]
pub fn is_element(ref_node: &RefNode) -> bool {
    ref_node.borrow().i_node_type == NodeType::Element
}

///
/// Safely _cast_ the specified `RefNode` into an  `Element`.
///
#[inline]
pub fn as_element(ref_node: &RefNode) -> Result<RefElement<'_>> {
    if ref_node.borrow().i_node_type == NodeType::Element {
        Ok(ref_node as RefElement<'_>)
    } else {
        warn!("ref_node.node_type != Element");
        Err(Error::InvalidState)
    }
}

///
/// Safely _cast_ the specified `RefNode` into a mutable `Element`.
///
#[inline]
pub fn as_element_mut(ref_node: &mut RefNode) -> Result<MutRefElement<'_>> {
    if ref_node.borrow().i_node_type == NodeType::Element {
        Ok(ref_node as MutRefElement<'_>)
    } else {
        warn!("ref_node.node_type != Element");
        Err(Error::InvalidState)
    }
}

///
/// Determines if the specified node is of type `NodeType::Element` and supports the trait
/// `Namespaced`.
///
#[inline]
pub fn is_element_namespaced(ref_node: &RefNode) -> bool {
    ref_node.borrow().i_node_type == NodeType::Element
}

///
/// Safely _cast_ the specified `RefNode` into a  `Namespaced` element.
///
#[inline]
pub fn as_element_namespaced(ref_node: &RefNode) -> Result<RefNamespaced<'_>> {
    if ref_node.borrow().i_node_type == NodeType::Element {
        Ok(ref_node as RefNamespaced<'_>)
    } else {
        warn!("ref_node.node_type != Element");
        Err(Error::InvalidState)
    }
}

///
/// Safely _cast_ the specified `RefNode` into a mutable `Namespaced` element.
///
#[inline]
pub(crate) fn as_element_namespaced_mut(ref_node: &mut RefNode) -> Result<MutRefNamespaced<'_>> {
    if ref_node.borrow().i_node_type == NodeType::Element {
        Ok(ref_node as MutRefNamespaced<'_>)
    } else {
        warn!("ref_node.node_type != Element");
        Err(Error::InvalidState)
    }
}

///
/// Determines if the specified node is a type of `CharacterData`.
///
#[inline]
pub fn is_character_data(ref_node: &RefNode) -> bool {
    match ref_node.borrow().i_node_type {
        NodeType::CData | NodeType::Comment | NodeType::Text => true,
        _ => false,
    }
}

///
/// Determines if the specified node is of type `NodeType::Text`.
///
#[inline]
pub fn is_text(ref_node: &RefNode) -> bool {
    ref_node.borrow().i_node_type == NodeType::Text
}

///
/// Safely _cast_ the specified `RefNode` into a  `Text`.
///
#[inline]
pub fn as_text(ref_node: &RefNode) -> Result<RefText<'_>> {
    if ref_node.borrow().i_node_type == NodeType::Text {
        Ok(ref_node as RefText<'_>)
    } else {
        warn!("ref_node.node_type != Text");
        Err(Error::InvalidState)
    }
}

///
/// Safely _cast_ the specified `RefNode` into a mutable `Text`.
///
#[inline]
pub fn as_text_mut(ref_node: &mut RefNode) -> Result<MutRefText<'_>> {
    if ref_node.borrow().i_node_type == NodeType::Text {
        Ok(ref_node as MutRefText<'_>)
    } else {
        warn!("ref_node.node_type != Text");
        Err(Error::InvalidState)
    }
}

///
/// Determines if the specified node is of type `NodeType::CDataSection`.
///
#[inline]
pub fn is_cdata_section(ref_node: &RefNode) -> bool {
    ref_node.borrow().i_node_type == NodeType::CData
}

///
/// Safely _cast_ the specified `RefNode` into a  `CDataSection`.
///
#[inline]
pub fn as_cdata_section(ref_node: &RefNode) -> Result<RefCDataSection<'_>> {
    if ref_node.borrow().i_node_type == NodeType::CData {
        Ok(ref_node as RefCDataSection<'_>)
    } else {
        warn!("ref_node.node_type != CData");
        Err(Error::InvalidState)
    }
}

///
/// Safely _cast_ the specified `RefNode` into a mutable `CDataSection`.
///
#[inline]
pub fn as_cdata_section_mut(ref_node: &mut RefNode) -> Result<MutRefCDataSection<'_>> {
    if ref_node.borrow().i_node_type == NodeType::CData {
        Ok(ref_node as MutRefCDataSection<'_>)
    } else {
        warn!("ref_node.node_type != CData");
        Err(Error::InvalidState)
    }
}

///
/// Determines if the specified node is of type `NodeType::EntityReference`.
///
#[inline]
pub fn is_entity_reference(_ref_node: &RefNode) -> bool {
    panic!("node type EntityReference unsupported");
}

///
/// Safely _cast_ the specified `RefNode` into a  `EntityReference`.
///
#[inline]
pub fn as_entity_reference(_ref_node: &RefNode) -> Result<RefEntityReference<'_>> {
    warn!("node type EntityReference unsupported");
    Err(Error::NotSupported)
}

///
/// Safely _cast_ the specified `RefNode` into a mutable `EntityReference`.
///
#[inline]
pub fn as_entity_reference_mut(_ref_node: &mut RefNode) -> Result<MutRefEntityReference<'_>> {
    warn!("node type EntityReference unsupported");
    Err(Error::NotSupported)
}

///
/// Determines if the specified node is of type `NodeType::Entity`.
///
#[inline]
pub fn is_entity(_ref_node: &RefNode) -> bool {
    panic!("node type Entity unsupported");
}

///
/// Safely _cast_ the specified `RefNode` into a  `Entity`.
///
#[inline]
pub fn as_entity(_ref_node: &RefNode) -> Result<RefEntity<'_>> {
    warn!("node type Entity unsupported");
    Err(Error::NotSupported)
}

///
/// Safely _cast_ the specified `RefNode` into a mutable `Entity`.
///
#[inline]
pub fn as_entity_mut(_ref_node: &mut RefNode) -> Result<MutRefEntity<'_>> {
    warn!("node type Entity unsupported");
    Err(Error::NotSupported)
}

///
/// Determines if the specified node is of type `NodeType::ProcessingInstruction`.
///
#[inline]
pub fn is_processing_instruction(ref_node: &RefNode) -> bool {
    ref_node.borrow().i_node_type == NodeType::ProcessingInstruction
}

///
/// Safely _cast_ the specified `RefNode` into a  `ProcessingInstruction`.
///
#[inline]
pub fn as_processing_instruction(ref_node: &RefNode) -> Result<RefProcessingInstruction<'_>> {
    if ref_node.borrow().i_node_type == NodeType::ProcessingInstruction {
        Ok(ref_node as RefProcessingInstruction<'_>)
    } else {
        warn!("ref_node.node_type != ProcessingInstruction");
        Err(Error::InvalidState)
    }
}

///
/// Safely _cast_ the specified `RefNode` into a mutable `ProcessingInstruction`.
///
#[inline]
pub fn as_processing_instruction_mut(
    ref_node: &mut RefNode,
) -> Result<MutRefProcessingInstruction<'_>> {
    if ref_node.borrow().i_node_type == NodeType::ProcessingInstruction {
        Ok(ref_node as MutRefProcessingInstruction<'_>)
    } else {
        warn!("ref_node.node_type != ProcessingInstruction");
        Err(Error::InvalidState)
    }
}

///
/// Determines if the specified node is of type `NodeType::Comment`.
///
#[inline]
pub fn is_comment(ref_node: &RefNode) -> bool {
    ref_node.borrow().i_node_type == NodeType::Comment
}

///
/// Safely _cast_ the specified `RefNode` into a  `Comment`.
///
#[inline]
pub fn as_comment(ref_node: &RefNode) -> Result<RefComment<'_>> {
    if ref_node.borrow().i_node_type == NodeType::Comment {
        Ok(ref_node as RefComment<'_>)
    } else {
        warn!("ref_node.node_type != Comment");
        Err(Error::InvalidState)
    }
}

///
/// Safely _cast_ the specified `RefNode` into a mutable `Comment`.
///
#[inline]
pub fn as_comment_mut(ref_node: &mut RefNode) -> Result<MutRefComment<'_>> {
    if ref_node.borrow().i_node_type == NodeType::Comment {
        Ok(ref_node as MutRefComment<'_>)
    } else {
        warn!("ref_node.node_type != Comment");
        Err(Error::InvalidState)
    }
}

///
/// Determines if the specified node is of type `NodeType::Attribute`.
///
#[inline]
pub fn is_document(ref_node: &RefNode) -> bool {
    ref_node.borrow().i_node_type == NodeType::Document
}

///
/// Safely _cast_ the specified `RefNode` into a  `Document`.
///
#[inline]
pub fn as_document(ref_node: &RefNode) -> Result<RefDocument<'_>> {
    if ref_node.borrow().i_node_type == NodeType::Document {
        Ok(ref_node as RefDocument<'_>)
    } else {
        warn!("ref_node.node_type != Attribute");
        Err(Error::InvalidState)
    }
}

///
/// Safely _cast_ the specified `RefNode` into a mutable `Document`.
///
#[inline]
pub fn as_document_mut(ref_node: &mut RefNode) -> Result<MutRefDocument<'_>> {
    if ref_node.borrow().i_node_type == NodeType::Document {
        Ok(ref_node as MutRefDocument<'_>)
    } else {
        warn!("ref_node.node_type != Attribute");
        Err(Error::InvalidState)
    }
}

///
/// Determines if the specified node is of type `NodeType::DocumentType`.
///
#[inline]
pub fn is_document_type(ref_node: &RefNode) -> bool {
    ref_node.borrow().i_node_type == NodeType::DocumentType
}

///
/// Safely _cast_ the specified `RefNode` into a  `DocumentType`.
///
#[inline]
pub fn as_document_type(ref_node: &RefNode) -> Result<RefDocumentType<'_>> {
    if ref_node.borrow().i_node_type == NodeType::DocumentType {
        Ok(ref_node as RefDocumentType<'_>)
    } else {
        warn!("ref_node.node_type != DocumentType");
        Err(Error::InvalidState)
    }
}

///
/// Safely _cast_ the specified `RefNode` into a mutable `DocumentType`.
///
#[inline]
pub fn as_document_type_mut(ref_node: &mut RefNode) -> Result<RefDocumentType<'_>> {
    if ref_node.borrow().i_node_type == NodeType::DocumentType {
        Ok(ref_node as RefDocumentType<'_>)
    } else {
        warn!("ref_node.node_type != DocumentType");
        Err(Error::InvalidState)
    }
}

///
/// Determines if the specified node is of type `NodeType::DocumentFragment`.
///
#[inline]
pub fn is_document_fragment(_ref_node: &RefNode) -> bool {
    panic!("node type DocumentFragment unsupported");
}

///
/// Safely _cast_ the specified `RefNode` into a  `DocumentFragment`.
///
#[inline]
pub fn as_document_fragment(_ref_node: &RefNode) -> Result<RefDocumentFragment<'_>> {
    warn!("node type DocumentFragment unsupported");
    Err(Error::NotSupported)
}

///
/// Safely _cast_ the specified `RefNode` into a mutable `DocumentFragment`.
///
#[inline]
pub fn as_document_fragment_mut(_ref_node: &mut RefNode) -> Result<MutRefDocumentFragment<'_>> {
    warn!("node type DocumentFragment unsupported");
    Err(Error::NotSupported)
}

///
/// Determines if the specified node is of type `NodeType::Notation`.
///
#[inline]
pub fn is_notation(_ref_node: &RefNode) -> bool {
    panic!("node type Notation unsupported");
}

///
/// Safely _cast_ the specified `RefNode` into a `Notation`.
///
#[inline]
pub fn as_notation(_ref_node: &RefNode) -> Result<RefNotation<'_>> {
    warn!("node type Notation unsupported");
    Err(Error::NotSupported)
}

///
/// Safely _cast_ the specified `RefNode` into a mutable `Notation`.
///
#[inline]
pub fn as_notation_mut(_ref_node: &mut RefNode) -> Result<MutRefNotation<'_>> {
    warn!("node type Notation unsupported");
    Err(Error::NotSupported)
}