use crate::text::parse_result::{fatal_parse_error, IonParseResult};
use crate::text::parsers::stop_character;
use crate::text::text_value::TextValue;
use crate::IonType;
use nom::bytes::streaming::tag;
use nom::character::streaming::{alpha1, char};
use nom::combinator::opt;
use nom::sequence::{delimited, preceded};
pub(crate) fn parse_null(input: &str) -> IonParseResult<TextValue> {
let (remaining, maybe_ion_type_text) = delimited(
tag("null"),
opt(preceded(char('.'), alpha1)),
stop_character,
)(input)?;
if let Some(ion_type_text) = maybe_ion_type_text {
match ion_type_from_text(ion_type_text) {
Some(ion_type) => Ok((remaining, TextValue::Null(ion_type))),
None => fatal_parse_error(
input,
format!("invalid Ion type used in `null.{ion_type_text}`"),
),
}
} else {
Ok((remaining, TextValue::Null(IonType::Null)))
}
}
fn ion_type_from_text(text: &str) -> Option<IonType> {
use IonType::*;
let ion_type = match text {
"null" => Null,
"bool" => Bool,
"int" => Int,
"float" => Float,
"decimal" => Decimal,
"timestamp" => Timestamp,
"string" => String,
"symbol" => Symbol,
"blob" => Blob,
"clob" => Clob,
"struct" => Struct,
"list" => List,
"sexp" => SExp,
_ => return None,
};
Some(ion_type)
}
#[cfg(test)]
mod null_parsing_tests {
use crate::text::parsers::null::parse_null;
use crate::text::parsers::unit_test_support::{parse_test_err, parse_test_ok};
use crate::text::text_value::TextValue;
use crate::IonType;
fn parse_equals(text: &str, expected: IonType) {
parse_test_ok(parse_null, text, TextValue::Null(expected))
}
fn parse_fails(text: &str) {
parse_test_err(parse_null, text)
}
#[test]
fn test_parse_nulls() {
use IonType::*;
parse_equals("null ", Null);
parse_equals("null.null ", Null);
parse_equals("null.bool ", Bool);
parse_equals("null.int ", Int);
parse_equals("null.float ", Float);
parse_equals("null.decimal ", Decimal);
parse_equals("null.timestamp ", Timestamp);
parse_equals("null.string ", String);
parse_equals("null.symbol ", Symbol);
parse_equals("null.blob ", Blob);
parse_equals("null.clob ", Clob);
parse_equals("null.list ", List);
parse_equals("null.sexp ", SExp);
parse_equals("null.struct ", Struct);
parse_fails("nlul ");
parse_fails("null.strunct ");
parse_fails(" null.strunct ");
parse_fails("null.struct");
}
}