sophia_api/ns.rs
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
//! Standard and custom namespaces.
//!
//! This module provides:
//! * the [`Namespace`](struct.Namespace.html) type for defining custom dynamic namespace;
//! * the [`namespace`](crate::namespace) macro, for defning custom static namespaces;
//! * modules corresponding to the most common namespaces
//! (generated via the [`namespace`](crate::namespace) macro).
//!
//! # Example use
//! ```
//! use sophia_api::ns::{Namespace, rdf, rdfs, xsd};
//!
//! let schema = Namespace::new("http://schema.org/").unwrap();
//! let s_name = schema.get("name").unwrap();
//!
//! // you can now populate a graph like this:
//! let mut g = vec![];
//! g.push([&s_name, &rdf::type_, &rdf::Property]);
//! g.push([&s_name, &rdfs::range, &xsd::string]);
//! ```
//!
//! # Datatyped literals
//!
//! Note also that the terms generated via the [`namespace`](crate::namespace) macro
//! can be used to easily produce datatyped literals,
//! by simply "multiplying" a string by its datatype:
//!
//! ```
//! # use sophia_api::{term::Term, ns::xsd};
//! let date = "2023-11-15" * xsd::date ;
//! assert!(date.is_literal());
//! assert_eq!(date.lexical_form().unwrap(), "2023-11-15");
//! assert_eq!(date.datatype().unwrap(), xsd::date.iri().unwrap());
//! ```
use mownstr::MownStr;
use sophia_iri::InvalidIri;
use std::borrow::Borrow;
use std::fmt;
// rexport is necessary to ensure that the macros work.
pub use sophia_iri::IriRef;
#[macro_use]
mod _macro;
pub use _macro::*;
mod _namespace;
pub use _namespace::*;
mod _term;
pub use _term::*;
/// The standard `rdf:` namespace.
///
/// NB: since `type` is a reserved keyword in Rust,
/// the term `rdf:type` spells `rdf::type_` (with a trailing underscore).
///
pub mod rdf {
namespace!(
"http://www.w3.org/1999/02/22-rdf-syntax-ns#",
// classes
Alt,
Bag,
List,
PlainLiteral,
Property,
Seq,
Statement,
// datatypes
HTML,
JSON,
langString,
XMLLiteral,
// properties
direction,
first,
language,
object,
predicate,
rest,
subject,
value,
// individuals
nil,
// core syntax terms
RDF,
ID,
Description,
about,
parseType,
resource,
li,
nodeID,
datatype,
bagID,
aboutEach,
aboutEachPrefix;
// 'type' is a Rust keyword, so we use 'type_' instead
type_, "type"
);
}
/// The standard `xsd:` namespace.
#[rustfmt::skip]
pub mod xsd {
namespace!(
"http://www.w3.org/2001/XMLSchema#",
anyType,
anySimpleType,
duration,
dateTime,
time,
date,
gYearMonth,
gYear,
gMonthDay,
gDay,
gMonth,
boolean,
base64Binary,
hexBinary,
float,
double,
anyURI,
QName,
NOTATION,
string,
normalizedString,
token,
language,
Name,
NCName,
ID,
IDREF,
IDREFS,
ENTITY,
ENTITIES,
NMTOKEN,
NMTOKENS,
decimal,
integer,
nonPositiveInteger,
negativeInteger,
long,
int,
short,
byte,
nonNegativeInteger,
unsignedLong,
unsignedInt,
unsignedShort,
unsignedByte,
positiveInteger
);
}
/// The standard `rdfs:` namespace.
pub mod rdfs {
namespace!(
"http://www.w3.org/2000/01/rdf-schema#",
// types
Class,
Container,
ContainerMembershipProperty,
Datatype,
Literal,
Resource,
// semantic properties
domain,
range,
subClassOf,
subPropertyOf,
// documentation properties
comment,
isDefinedBy,
label,
member,
seeAlso
);
}
/// The standard `xml:` namespace
pub mod xml {
namespace!(
"http://www.w3.org/XML/1998/namespace#",
lang,
space,
base,
id,
// Jon Bosak
Father
);
}
/// The standard `owl:` namespace
pub mod owl {
namespace!(
"http://www.w3.org/2002/07/owl#",
Nothing,
Thing,
// Classes
AllDifferent,
AllDisjointClasses,
AnnotationProperty,
Class,
DatatypeProperty,
FunctionalProperty,
InverseFunctionalProperty,
IrreflexiveProperty,
ObjectProperty,
SymmetricProperty,
TransitiveProperty,
// Properties
allValuesFrom,
assertionProperty,
complementOf,
differentFrom,
disjointWith,
distinctMembers,
equivalentClass,
equivalentProperty,
intersectionOf,
inverseOf,
maxCardinality,
maxQualifiedCardinality,
members,
onClass,
oneOf,
onProperty,
propertyChainAxiom,
propertyDisjointWith,
sameAs,
someValuesFrom,
sourceIndividual,
targetIndividual,
targetValue,
unionOf
);
}
#[cfg(test)]
mod test {
// Nothing really worth testing here
use super::*;
use std::rc::Rc;
#[test]
fn test_same_term() {
let ns1 = Namespace::new("http://schema.org/").unwrap();
let ns2 = Namespace::new(Rc::from("http://schema.org/")).unwrap();
assert_eq!(
ns1.get("name").unwrap().to_string(),
ns1.get("name").unwrap().to_string()
);
assert_eq!(
ns2.get("name").unwrap().to_string(),
ns2.get("name").unwrap().to_string()
);
assert_eq!(
ns1.get("name").unwrap().to_string(),
ns2.get("name").unwrap().to_string()
);
}
#[test]
fn test_different_terms() {
let ns1 = Namespace::new("http://schema.org/").unwrap();
assert_ne!(
ns1.get("name").unwrap().to_string(),
ns1.get("nam").unwrap().to_string()
);
}
#[test]
fn test_invalid_namespace() {
assert!(Namespace::new("http://schema.org ").is_err());
}
#[test]
fn test_invalid_suffix() {
let ns1 = Namespace::new("http://schema.org/").unwrap();
assert!(ns1.get("name ").is_err());
}
}