arrow_schema/extension/canonical/
bool8.rs1use crate::{extension::ExtensionType, ArrowError, DataType};
23
24#[derive(Debug, Default, Clone, Copy, PartialEq)]
34pub struct Bool8;
35
36impl ExtensionType for Bool8 {
37 const NAME: &'static str = "arrow.bool8";
38
39 type Metadata = &'static str;
40
41 fn metadata(&self) -> &Self::Metadata {
42 &""
43 }
44
45 fn serialize_metadata(&self) -> Option<String> {
46 Some(String::default())
47 }
48
49 fn deserialize_metadata(metadata: Option<&str>) -> Result<Self::Metadata, ArrowError> {
50 if metadata.is_some_and(str::is_empty) {
51 Ok("")
52 } else {
53 Err(ArrowError::InvalidArgumentError(
54 "Bool8 extension type expects an empty string as metadata".to_owned(),
55 ))
56 }
57 }
58
59 fn supports_data_type(&self, data_type: &DataType) -> Result<(), ArrowError> {
60 match data_type {
61 DataType::Int8 => Ok(()),
62 data_type => Err(ArrowError::InvalidArgumentError(format!(
63 "Bool8 data type mismatch, expected Int8, found {data_type}"
64 ))),
65 }
66 }
67
68 fn try_new(data_type: &DataType, _metadata: Self::Metadata) -> Result<Self, ArrowError> {
69 Self.supports_data_type(data_type).map(|_| Self)
70 }
71}
72
73#[cfg(test)]
74mod tests {
75 #[cfg(feature = "canonical_extension_types")]
76 use crate::extension::CanonicalExtensionType;
77 use crate::{
78 extension::{EXTENSION_TYPE_METADATA_KEY, EXTENSION_TYPE_NAME_KEY},
79 Field,
80 };
81
82 use super::*;
83
84 #[test]
85 fn valid() -> Result<(), ArrowError> {
86 let mut field = Field::new("", DataType::Int8, false);
87 field.try_with_extension_type(Bool8)?;
88 field.try_extension_type::<Bool8>()?;
89 #[cfg(feature = "canonical_extension_types")]
90 assert_eq!(
91 field.try_canonical_extension_type()?,
92 CanonicalExtensionType::Bool8(Bool8)
93 );
94
95 Ok(())
96 }
97
98 #[test]
99 #[should_panic(expected = "Field extension type name missing")]
100 fn missing_name() {
101 let field = Field::new("", DataType::Int8, false).with_metadata(
102 [(EXTENSION_TYPE_METADATA_KEY.to_owned(), "".to_owned())]
103 .into_iter()
104 .collect(),
105 );
106 field.extension_type::<Bool8>();
107 }
108
109 #[test]
110 #[should_panic(expected = "expected Int8, found Boolean")]
111 fn invalid_type() {
112 Field::new("", DataType::Boolean, false).with_extension_type(Bool8);
113 }
114
115 #[test]
116 #[should_panic(expected = "Bool8 extension type expects an empty string as metadata")]
117 fn missing_metadata() {
118 let field = Field::new("", DataType::Int8, false).with_metadata(
119 [(EXTENSION_TYPE_NAME_KEY.to_owned(), Bool8::NAME.to_owned())]
120 .into_iter()
121 .collect(),
122 );
123 field.extension_type::<Bool8>();
124 }
125
126 #[test]
127 #[should_panic(expected = "Bool8 extension type expects an empty string as metadata")]
128 fn invalid_metadata() {
129 let field = Field::new("", DataType::Int8, false).with_metadata(
130 [
131 (EXTENSION_TYPE_NAME_KEY.to_owned(), Bool8::NAME.to_owned()),
132 (
133 EXTENSION_TYPE_METADATA_KEY.to_owned(),
134 "non-empty".to_owned(),
135 ),
136 ]
137 .into_iter()
138 .collect(),
139 );
140 field.extension_type::<Bool8>();
141 }
142}