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
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your // option. This file may not be copied, modified, or distributed // except according to those terms. //! # CURIEs: Compact URIs //! //! CURIEs, [defined by the W3C], are a compact way of representing a URI. //! A CURIE consists of an optional prefix and a reference, separated by //! a colon. //! //! They are commonly used in JSON-LD, RDF, SPARQL, XML namespaces and other //! applications. //! //! Example CURIEs: //! //! * `"foaf:Person"` -- Results in a URI in the namespace represented by //! the `"foaf"` prefix. //! * `":Person"` -- Results in a URI in the namespace represented by //! the `""` prefix. //! * `"Person"` -- Results in a URI in the default namespace. //! //! The last example relies upon there being a default mapping providing //! a default base URI, while the example before it relies upon there //! being a prefix which is an empty string. //! //! See the [specification] for further details. //! //! ## Compact URIs in the Real World //! //! In SPARQL (from Wikipedia): //! //! ```sparql //! PREFIX foaf: <http://xmlns.com/foaf/0.1/> //! SELECT ?name //! ?email //! WHERE //! { //! ?person a foaf:Person . //! ?person foaf:name ?name . //! ?person foaf:mbox ?email . //! } //! ``` //! //! In the Turtle serialization for RDF (from the specification): //! //! ```turtle //! @base <http://example.org/> . //! @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . //! @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . //! @prefix foaf: <http://xmlns.com/foaf/0.1/> . //! @prefix rel: <http://www.perceive.net/schemas/relationship/> . //! //! <#green-goblin> //! rel:enemyOf <#spiderman> ; //! a foaf:Person ; # in the context of the Marvel universe //! foaf:name "Green Goblin" . //! //! <#spiderman> //! rel:enemyOf <#green-goblin> ; //! a foaf:Person ; //! foaf:name "Spiderman", "Человек-паук"@ru . //! ``` //! //! ## Usage //! //! ``` //! use curie::PrefixMapping; //! //! // Initialize a prefix mapper. //! let mut mapper = PrefixMapping::default(); //! mapper.add_prefix("foaf", "http://xmlns.com/foaf/0.1/").unwrap(); //! //! // Set a default prefix //! mapper.set_default("http://example.com/"); //! //! // Expand a CURIE and get back the full URI. //! assert_eq!(mapper.expand_curie_string("Entity"), //! Ok(String::from("http://example.com/Entity"))); //! assert_eq!(mapper.expand_curie_string("foaf:Agent"), //! Ok(String::from("http://xmlns.com/foaf/0.1/Agent"))); //! ``` //! //! When parsing a file, it is likely that the distinction between //! the prefix and the reference portions of the CURIE will be clear, //! so to save time during expansion, the `Curie` struct can also be //! used: //! //! ``` //! use curie::{Curie, PrefixMapping}; //! //! // Initialize a prefix mapper. //! let mut mapper = PrefixMapping::default(); //! mapper.add_prefix("foaf", "http://xmlns.com/foaf/0.1/").unwrap(); //! //! let curie = Curie::new("foaf", "Agent"); //! //! assert_eq!(mapper.expand_curie(&curie), //! Ok(String::from("http://xmlns.com/foaf/0.1/Agent"))); //! ``` //! //! [defined by the W3C]: https://www.w3.org/TR/curie/ //! [specification]: https://www.w3.org/TR/curie/ #![warn(missing_docs)] #![deny(trivial_numeric_casts, unsafe_code, unstable_features, unused_import_braces, unused_qualifications)] use std::collections::HashMap; /// Errors that might occur when adding a prefix to a `PrefixMapping`. #[derive(Clone, Copy, Debug, PartialEq)] pub enum InvalidPrefixError { /// This is a reserved prefix. ReservedPrefix, } /// Errors that might occur during CURIE expansion. #[derive(Clone, Copy, Debug, PartialEq)] pub enum ExpansionError { /// The prefix on the CURIE has no valid mapping. Invalid, /// The CURIE uses a default prefix, but one has not /// been set. MissingDefault, } /// Maps prefixes to base URIs and allows for the expansion of /// CURIEs (Compact URIs). #[derive(Default)] pub struct PrefixMapping { default: Option<String>, mapping: HashMap<String, String>, } impl PrefixMapping { /// Set a default prefix. /// /// This is used during CURIE expansion when there is no /// prefix, just a reference value. pub fn set_default(&mut self, default: &str) { self.default = Some(String::from(default)); } /// Add a prefix to the mapping. /// /// This allows this prefix to be resolved when a CURIE is expanded. pub fn add_prefix(&mut self, prefix: &str, value: &str) -> Result<(), InvalidPrefixError> { if prefix == "_" { Err(InvalidPrefixError::ReservedPrefix) } else { self.mapping.insert(String::from(prefix), String::from(value)); Ok(()) } } /// Remove a prefix from the mapping. /// /// Future calls to `expand_curie_string` or `expand_curie` that use /// this `prefix` will result in a `ExpansionError::Invalid` error. pub fn remove_prefix(&mut self, prefix: &str) { self.mapping.remove(prefix); } /// Expand a CURIE, returning a complete IRI. pub fn expand_curie_string(&self, curie: &str) -> Result<String, ExpansionError> { if let Some(separator_idx) = curie.chars().position(|c| c == ':') { // If we have a separator, try to expand. let prefix = &curie[..separator_idx]; let reference = &curie[separator_idx + 1..]; self.expand_exploded_curie(prefix, reference) } else if let Some(ref default) = self.default { // No separator, so look for default. Ok(default.clone() + curie) } else { Err(ExpansionError::MissingDefault) } } /// Expand a parsed `Curie`, returning a complete IRI. pub fn expand_curie(&self, curie: &Curie) -> Result<String, ExpansionError> { self.expand_exploded_curie(curie.prefix, curie.reference) } fn expand_exploded_curie(&self, prefix: &str, reference: &str) -> Result<String, ExpansionError> { if let Some(mapped_prefix) = self.mapping.get(prefix) { Ok((*mapped_prefix).clone() + reference) } else { Err(ExpansionError::Invalid) } } } /// A prefix and reference, already parsed into separate components. pub struct Curie<'c> { prefix: &'c str, reference: &'c str, } impl<'c> Curie<'c> { /// Construct a `Curie` from a prefix and reference. pub fn new(prefix: &'c str, reference: &'c str) -> Self { Curie { prefix: prefix, reference: reference, } } } #[cfg(test)] mod tests { use super::*; const FOAF_VOCAB: &'static str = "http://xmlns.com/foaf/0.1/"; #[test] fn add_remove_works() { let mut pm = PrefixMapping::default(); // No keys should be found. assert_eq!(pm.mapping.get("foaf"), None); // Add and look up a key. assert_eq!(pm.add_prefix("foaf", FOAF_VOCAB), Ok(())); assert_eq!(pm.mapping.get("foaf"), Some(&String::from(FOAF_VOCAB))); // Unrelated keys still can not be found. assert_eq!(pm.mapping.get("rdfs"), None); // Can't add _ as that's reserved. assert_eq!(pm.add_prefix("_", ""), Err(InvalidPrefixError::ReservedPrefix)); // Keys can be removed. pm.remove_prefix("foaf"); // The "foaf" key should not be found. assert_eq!(pm.mapping.get("foaf"), None); } #[test] fn expand_curie_string() { let mut mapping = PrefixMapping::default(); let curie = "foaf:Person"; // A CURIE with an unmapped prefix isn't expanded. assert_eq!(mapping.expand_curie_string(curie), Err(ExpansionError::Invalid)); // A CURIE without a separator doesn't cause problems. It still // requires a default though. assert_eq!(mapping.expand_curie_string("Person"), Err(ExpansionError::MissingDefault)); mapping.set_default("http://example.com/"); assert_eq!(mapping.expand_curie_string("Person"), Ok(String::from("http://example.com/Person"))); // Using a colon without a prefix results in using a prefix // for an empty string. assert_eq!(mapping.expand_curie_string(":Person"), Err(ExpansionError::Invalid)); mapping.add_prefix("", "http://example.com/ExampleDocument#").unwrap(); assert_eq!(mapping.expand_curie_string(":Person"), Ok(String::from("http://example.com/ExampleDocument#Person"))); // And having a default won't allow a prefixed CURIE to // be expanded with the default. assert_eq!(mapping.expand_curie_string(curie), Err(ExpansionError::Invalid)); mapping.add_prefix("foaf", FOAF_VOCAB).unwrap(); // A CURIE with a mapped prefix is expanded correctly. assert_eq!(mapping.expand_curie_string(curie), Ok(String::from("http://xmlns.com/foaf/0.1/Person"))); } #[test] fn expand_curie() { let mut mapping = PrefixMapping::default(); mapping.add_prefix("foaf", FOAF_VOCAB).unwrap(); let curie = Curie::new("foaf", "Agent"); assert_eq!(mapping.expand_curie(&curie), Ok(String::from("http://xmlns.com/foaf/0.1/Agent"))); } }