gir_parser/
type.rs

1use xmlserde_derives::XmlDeserialize;
2
3use crate::{
4    array::Array,
5    documentation::{DocDeprecated, DocStability, DocVersion, Documentation, SourcePosition},
6    prelude::*,
7};
8
9#[derive(Clone, Debug, XmlDeserialize)]
10#[xmlserde(root = b"type")]
11#[xmlserde(deny_unknown_fields)]
12pub struct Type {
13    #[xmlserde(name = b"name", ty = "attr")]
14    name: Option<String>,
15    #[xmlserde(name = b"c:type", ty = "attr")]
16    c_type: Option<String>,
17    #[xmlserde(name = b"introspectable", ty = "attr")]
18    introspectable: Option<bool>,
19    // Documentation
20    #[xmlserde(name = b"doc", ty = "child")]
21    doc: Option<Documentation>,
22    #[xmlserde(name = b"doc-deprecated", ty = "child")]
23    doc_deprecated: Option<DocDeprecated>,
24    #[xmlserde(name = b"doc-stability", ty = "child")]
25    doc_stability: Option<DocStability>,
26    #[xmlserde(name = b"doc-version", ty = "child")]
27    doc_version: Option<DocVersion>,
28    #[xmlserde(name = b"source-position", ty = "child")]
29    source_position: Option<SourcePosition>,
30    // TODO: Does Type really take also a AnyType child? as that would cause an infinite recursion
31}
32
33impl Type {
34    pub fn name(&self) -> Option<&str> {
35        self.name.as_deref()
36    }
37
38    pub fn c_type(&self) -> Option<&str> {
39        self.c_type.as_deref()
40    }
41
42    pub fn is_introspectable(&self) -> bool {
43        self.introspectable.unwrap_or(true)
44    }
45}
46
47impl_documentable!(Type);
48
49#[derive(Clone, Debug, XmlDeserialize)]
50pub enum AnyType {
51    #[xmlserde(name = b"type")]
52    Type(Type),
53    #[xmlserde(name = b"array")]
54    Array(Array),
55}
56
57impl From<crate::r#type::Type> for AnyType {
58    fn from(value: crate::r#type::Type) -> Self {
59        Self::Type(value)
60    }
61}
62
63impl AnyType {
64    pub fn is_array(&self) -> bool {
65        matches!(self, Self::Array(_))
66    }
67
68    pub fn as_array(&self) -> &Array {
69        match self {
70            Self::Array(array) => array,
71            _ => unreachable!(),
72        }
73    }
74
75    pub fn is_type(&self) -> bool {
76        matches!(self, Self::Type(_))
77    }
78
79    pub fn as_type(&self) -> &Type {
80        match self {
81            Self::Type(ty) => ty,
82            _ => unreachable!(),
83        }
84    }
85}