ld-core-derive 0.2.0

Derive macros for the `ld-core` Linked-Data serialization traits
Documentation
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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
use std::collections::HashMap;

use iri_rs::{InvalidIri, IriBuf};
use proc_macro2::{Span, TokenStream, TokenTree};
use quote::{ToTokens, format_ident, quote};

use syn::{punctuated::Punctuated, spanned::Spanned};

pub mod de;
pub mod ser;

const RDF_TYPE: &str = "http://www.w3.org/1999/02/22-rdf-syntax-ns#type";

#[derive(Debug, thiserror::Error)]
pub enum Error {
	#[error("union types are not supported")]
	UnionType(Span),

	#[error("invalid `ld` attribute: {0}")]
	InvalidAttribute(AttributeError, Span),

	#[error("missing field serialization method")]
	UnknownFieldSerializationMethod(Span),

	#[error("invalid IRI `{0}`")]
	InvalidIri(String, Span),

	#[error("missing variant IRI")]
	MissingVariantIri(Span),
}

impl Error {
	pub fn span(&self) -> Span {
		match self {
			Self::UnionType(span) => *span,
			Self::InvalidAttribute(_, span) => *span,
			Self::UnknownFieldSerializationMethod(span) => *span,
			Self::InvalidIri(_, span) => *span,
			Self::MissingVariantIri(span) => *span,
		}
	}
}
#[derive(Debug, thiserror::Error)]
pub enum AttributeError {
	#[error("invalid shape")]
	InvalidShape,

	#[error("expected string literal")]
	ExpectedString,

	#[error("unknown attribute name")]
	UnknownIdent,

	#[error("empty")]
	Empty,

	#[error("unexpected token")]
	UnexpectedToken,

	#[error("invalid compact IRI")]
	InvalidCompactIri,

	#[error("missing `=`")]
	MissingEq,

	#[error("missing suffix string")]
	MissingSuffix,

	#[error("missing prefix binding")]
	MissingPrefixBinding,

	#[error("missing type")]
	MissingType,

	#[error("invalid type")]
	InvalidType,
}

pub struct CompactIri(IriBuf, Span);

impl CompactIri {
	pub fn expand(&self, prefixes: &HashMap<String, String>) -> Result<IriBuf, Error> {
		let (prefix, suffix) = self.0.as_str().split_once(':').unwrap();
		match prefixes.get(prefix) {
			Some(expanded_prefix) => IriBuf::new(format!("{expanded_prefix}{suffix}"))
				.map_err(|InvalidIri(s)| Error::InvalidIri(s, self.1)),
			None => Ok(self.0.clone()),
		}
	}
}

pub struct TypeAttributes {
	prefixes: HashMap<String, String>,
	type_: Option<CompactIri>,
}

pub struct FieldAttributes {
	ignore: bool,
	iri: Option<CompactIri>,
	flatten: bool,
	is_id: bool,
	graph_value: bool,
}

pub struct VariantAttributes {
	iri: Option<CompactIri>,
}

#[derive(Default, Clone, Copy)]
pub struct InterpretationBounds {
	pub mut_: bool,
	pub local_mut: bool,
	pub reverse: bool,
	pub reverse_local: bool,
}

impl InterpretationBounds {
	pub fn add(&mut self, other: Self) {
		self.mut_ |= other.mut_;
		self.local_mut |= other.local_mut;
		self.reverse |= other.reverse;
		self.reverse_local |= other.reverse_local;
	}
}

impl ToTokens for InterpretationBounds {
	fn to_tokens(&self, tokens: &mut TokenStream) {
		tokens.extend(quote! {
			::ld_core::rdfx::Interpretation
		});

		if self.mut_ {
			tokens.extend(quote! {
				+ ::ld_core::rdfx::InterpretationMut
			})
		}

		if self.local_mut {
			tokens.extend(quote! {
				+ ::ld_core::rdfx::interpretation::LocalInterpretationMut
			})
		}

		if self.reverse {
			tokens.extend(quote! {
				+ ::ld_core::rdfx::interpretation::ReverseInterpretation
			})
		}

		if self.reverse_local {
			tokens.extend(quote! {
				+ ::ld_core::rdfx::interpretation::ReverseLocalInterpretation
			})
		}
	}
}

fn extend_generics(
	generics: &syn::Generics,
	interpretation_bounds: InterpretationBounds,
	mut bounds: Vec<syn::WherePredicate>,
) -> syn::Generics {
	let mut result = generics.clone();

	result.params.push(syn::GenericParam::Type(syn::TypeParam {
		attrs: Vec::new(),
		ident: format_ident!("I_"),
		colon_token: None,
		bounds: Punctuated::new(),
		eq_token: None,
		default: None,
	}));

	let needs_resource_bound = interpretation_bounds.reverse || interpretation_bounds.reverse_local;

	bounds.push(
		syn::parse2(quote! {
			I_: #interpretation_bounds
		})
		.unwrap(),
	);

	if needs_resource_bound {
		bounds.push(
			syn::parse2(quote! {
				<I_ as ::ld_core::rdfx::Interpretation>::Resource: ::ld_core::rdfx::Resource
			})
			.unwrap(),
		);
	}

	let where_clause = result.where_clause.get_or_insert(syn::WhereClause {
		where_token: Default::default(),
		predicates: Punctuated::new(),
	});

	where_clause.predicates.extend(bounds);

	result
}

fn read_type_attributes(attributes: Vec<syn::Attribute>) -> Result<TypeAttributes, Error> {
	let mut result = TypeAttributes {
		prefixes: HashMap::new(),
		type_: None,
	};

	for attr in attributes {
		if attr.path().is_ident("ld") {
			let span = attr.span();
			match attr.meta {
				syn::Meta::List(list) => {
					let mut tokens = list.tokens.into_iter();

					match tokens.next() {
						Some(TokenTree::Ident(id)) => {
							if id == "prefix" {
								match tokens.next() {
									Some(TokenTree::Group(g)) => {
										let (prefix, suffix) =
											parse_prefix_binding(g.stream(), span)?;
										result.prefixes.insert(prefix, suffix);
									}
									Some(token) => {
										return Err(Error::InvalidAttribute(
											AttributeError::UnexpectedToken,
											token.span(),
										));
									}
									None => {
										return Err(Error::InvalidAttribute(
											AttributeError::MissingPrefixBinding,
											span,
										));
									}
								}
							} else if id == "type" {
								match tokens.next() {
									Some(TokenTree::Punct(p)) if p.as_char() == '=' => match tokens
										.next()
									{
										Some(TokenTree::Literal(l)) => {
											let span = l.span();
											match syn::Lit::new(l) {
												syn::Lit::Str(s) => match IriBuf::new(s.value()) {
													Ok(iri) => {
														result.type_ = Some(CompactIri(iri, span))
													}
													Err(_) => {
														return Err(Error::InvalidAttribute(
															AttributeError::InvalidType,
															span,
														));
													}
												},
												_ => {
													return Err(Error::InvalidAttribute(
														AttributeError::InvalidType,
														span,
													));
												}
											}
										}
										Some(token) => {
											return Err(Error::InvalidAttribute(
												AttributeError::UnexpectedToken,
												token.span(),
											));
										}
										None => {
											return Err(Error::InvalidAttribute(
												AttributeError::MissingType,
												span,
											));
										}
									},
									Some(token) => {
										return Err(Error::InvalidAttribute(
											AttributeError::UnexpectedToken,
											token.span(),
										));
									}
									None => {
										return Err(Error::InvalidAttribute(
											AttributeError::MissingType,
											span,
										));
									}
								}
							} else {
								return Err(Error::InvalidAttribute(
									AttributeError::UnknownIdent,
									id.span(),
								));
							}
						}
						Some(token) => {
							return Err(Error::InvalidAttribute(
								AttributeError::UnexpectedToken,
								token.span(),
							));
						}
						None => return Err(Error::InvalidAttribute(AttributeError::Empty, span)),
					}
				}
				_ => {
					return Err(Error::InvalidAttribute(
						AttributeError::InvalidShape,
						attr.span(),
					));
				}
			}
		}
	}

	Ok(result)
}

fn parse_prefix_binding(tokens: TokenStream, span: Span) -> Result<(String, String), Error> {
	let mut tokens = tokens.into_iter();
	match tokens.next() {
		Some(TokenTree::Literal(l)) => {
			let l = syn::Lit::new(l);
			match l {
				syn::Lit::Str(prefix) => match tokens.next() {
					Some(TokenTree::Punct(p)) if p.as_char() == '=' => match tokens.next() {
						Some(TokenTree::Literal(l)) => {
							let l = syn::Lit::new(l);
							match l {
								syn::Lit::Str(suffix) => Ok((prefix.value(), suffix.value())),
								l => Err(Error::InvalidAttribute(
									AttributeError::ExpectedString,
									l.span(),
								)),
							}
						}
						Some(token) => Err(Error::InvalidAttribute(
							AttributeError::UnexpectedToken,
							token.span(),
						)),
						None => Err(Error::InvalidAttribute(AttributeError::MissingSuffix, span)),
					},
					Some(token) => Err(Error::InvalidAttribute(
						AttributeError::UnexpectedToken,
						token.span(),
					)),
					None => Err(Error::InvalidAttribute(AttributeError::MissingEq, span)),
				},
				l => Err(Error::InvalidAttribute(
					AttributeError::ExpectedString,
					l.span(),
				)),
			}
		}
		Some(token) => Err(Error::InvalidAttribute(
			AttributeError::UnexpectedToken,
			token.span(),
		)),
		None => Err(Error::InvalidAttribute(AttributeError::Empty, span)),
	}
}

fn read_field_attributes(attributes: Vec<syn::Attribute>) -> Result<FieldAttributes, Error> {
	let mut ignore = false;
	let mut iri = None;
	let mut flatten = false;
	let mut is_id = false;
	let mut graph_value = false;

	for attr in attributes {
		if attr.path().is_ident("ld") {
			match attr.meta {
				syn::Meta::List(list) => {
					let mut tokens = list.tokens.into_iter();
					while let Some(token) = tokens.next() {
						match token {
							TokenTree::Ident(id) => {
								if id == "ignore" {
									ignore = true
								} else if id == "flatten" {
									flatten = true
								} else if id == "id" {
									is_id = true
								} else if id == "type" {
									iri = Some(CompactIri(
										IriBuf::new(RDF_TYPE.to_owned()).unwrap(),
										id.span(),
									));
								} else if id == "graph" {
									graph_value = true
								} else {
									return Err(Error::InvalidAttribute(
										AttributeError::UnknownIdent,
										id.span(),
									));
								}
							}
							TokenTree::Literal(l) => {
								let l = syn::Lit::new(l);
								match l {
									syn::Lit::Str(l) => match IriBuf::new(l.value()) {
										Ok(value) => {
											iri = Some(CompactIri(value, l.span()));
										}
										Err(_) => {
											return Err(Error::InvalidAttribute(
												AttributeError::InvalidCompactIri,
												l.span(),
											));
										}
									},
									l => {
										return Err(Error::InvalidAttribute(
											AttributeError::ExpectedString,
											l.span(),
										));
									}
								}
							}
							token => {
								return Err(Error::InvalidAttribute(
									AttributeError::UnexpectedToken,
									token.span(),
								));
							}
						}

						match tokens.next() {
							Some(TokenTree::Punct(p)) if p.as_char() == ',' => (),
							Some(token) => {
								return Err(Error::InvalidAttribute(
									AttributeError::UnexpectedToken,
									token.span(),
								));
							}
							None => break,
						}
					}
				}
				_ => {
					return Err(Error::InvalidAttribute(
						AttributeError::InvalidShape,
						attr.span(),
					));
				}
			}
		}
	}

	Ok(FieldAttributes {
		ignore,
		iri,
		flatten,
		is_id,
		graph_value,
	})
}

fn read_variant_attributes(attributes: Vec<syn::Attribute>) -> Result<VariantAttributes, Error> {
	let mut iri = None;

	for attr in attributes {
		if attr.path().is_ident("ld") {
			let span = attr.span();
			match attr.meta {
				syn::Meta::List(list) => {
					let VariantAttribute::Iri(i) = read_variant_attribute(list.tokens, span)?;
					iri = Some(i);
				}
				_ => {
					return Err(Error::InvalidAttribute(
						AttributeError::InvalidShape,
						attr.span(),
					));
				}
			}
		}
	}

	Ok(VariantAttributes { iri })
}

enum VariantAttribute {
	Iri(CompactIri),
}

fn read_variant_attribute(tokens: TokenStream, span: Span) -> Result<VariantAttribute, Error> {
	let mut tokens = tokens.into_iter();
	match tokens.next() {
		Some(TokenTree::Group(g)) => read_variant_attribute(g.stream(), span),
		Some(TokenTree::Literal(l)) => {
			let l = syn::Lit::new(l);
			match l {
				syn::Lit::Str(l) => match IriBuf::new(l.value()) {
					Ok(value) => Ok(VariantAttribute::Iri(CompactIri(value, l.span()))),
					Err(_) => Err(Error::InvalidAttribute(
						AttributeError::InvalidCompactIri,
						l.span(),
					)),
				},
				l => Err(Error::InvalidAttribute(
					AttributeError::ExpectedString,
					l.span(),
				)),
			}
		}
		Some(TokenTree::Ident(id)) if id == "type" => Ok(VariantAttribute::Iri(CompactIri(
			IriBuf::new(RDF_TYPE.to_owned()).unwrap(),
			id.span(),
		))),
		Some(token) => Err(Error::InvalidAttribute(
			AttributeError::UnexpectedToken,
			token.span(),
		)),
		None => Err(Error::InvalidAttribute(AttributeError::Empty, span)),
	}
}