reinhardt-urls 0.2.2

URL routing and proxy utilities for Reinhardt framework
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
//! Builder pattern for creating association proxies

use crate::proxy::AssociationProxy;
use std::marker::PhantomData;

/// Type alias for getter function
pub type GetterFn<T, U> = fn(&T) -> Result<U, crate::proxy::ProxyError>;

/// Type alias for setter function
pub type SetterFn<T, U> = fn(&mut T, U) -> Result<(), crate::proxy::ProxyError>;

/// Type alias for validator function
pub type ValidatorFn<U> = fn(&U) -> Result<(), crate::proxy::ProxyError>;

/// Builder for creating association proxies with fluent API
///
/// ## Example
///
/// ```rust
/// # use reinhardt_urls::proxy::ProxyBuilder;
/// # #[derive(Clone)]
/// # struct UserKeyword { keyword: String }
/// # impl UserKeyword {
/// #     fn new(keyword: String) -> Self { UserKeyword { keyword } }
/// # }
/// let proxy = ProxyBuilder::new()
///     .relationship("user_keywords")
///     .attribute("keyword")
///     .creator(|keyword: String| UserKeyword::new(keyword))
///     .build();
/// assert_eq!(proxy.relationship, "user_keywords");
/// assert_eq!(proxy.attribute, "keyword");
/// ```
pub struct ProxyBuilder<T, U> {
	name: Option<String>,
	relationship: Option<String>,
	attribute: Option<String>,
	creator: Option<fn(U) -> T>,
	getter: Option<GetterFn<T, U>>,
	setter: Option<SetterFn<T, U>>,
	validator: Option<ValidatorFn<U>>,
	transform: Option<fn(U) -> U>,
	_phantom: PhantomData<(T, U)>,
}

impl<T, U> Default for ProxyBuilder<T, U> {
	fn default() -> Self {
		Self::new()
	}
}

impl<T, U> ProxyBuilder<T, U> {
	/// Create a new proxy builder without a name
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// let builder: ProxyBuilder<(), ()> = ProxyBuilder::new();
	/// // Builder is ready to configure
	/// ```
	pub fn new() -> Self {
		Self {
			name: None,
			relationship: None,
			attribute: None,
			creator: None,
			getter: None,
			setter: None,
			validator: None,
			transform: None,
			_phantom: PhantomData,
		}
	}

	/// Create a new proxy builder with a name
	///
	/// This is useful for creating named proxy aliases.
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// let builder: ProxyBuilder<(), ()> = ProxyBuilder::with_name("keyword_strings");
	/// ```
	pub fn with_name(name: &str) -> Self {
		Self {
			name: Some(name.to_string()),
			relationship: None,
			attribute: None,
			creator: None,
			getter: None,
			setter: None,
			validator: None,
			transform: None,
			_phantom: PhantomData,
		}
	}
	/// Set the relationship name
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// let builder: ProxyBuilder<(), ()> = ProxyBuilder::new()
	///     .relationship("posts");
	/// // Builder now has relationship set
	/// ```
	pub fn relationship(mut self, name: &str) -> Self {
		self.relationship = Some(name.to_string());
		self
	}
	/// Set the attribute name
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// let builder: ProxyBuilder<(), ()> = ProxyBuilder::new()
	///     .relationship("posts")
	///     .attribute("title");
	/// // Builder now has both relationship and attribute set
	/// ```
	pub fn attribute(mut self, name: &str) -> Self {
		self.attribute = Some(name.to_string());
		self
	}
	/// Set the creator function
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// fn create_item(value: i32) -> String { format!("item_{}", value) }
	///
	/// let builder = ProxyBuilder::new()
	///     .relationship("items")
	///     .attribute("value")
	///     .creator(create_item);
	/// // Builder now has creator function set
	/// ```
	pub fn creator(mut self, creator: fn(U) -> T) -> Self {
		self.creator = Some(creator);
		self
	}

	/// Set the relationship name (alias for `relationship()`)
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// let builder: ProxyBuilder<(), ()> = ProxyBuilder::new()
	///     .for_relationship("posts");
	/// ```
	pub fn for_relationship(self, name: &str) -> Self {
		self.relationship(name)
	}

	/// Set a custom getter function
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// fn custom_getter(_obj: &()) -> Result<(), reinhardt_urls::proxy::ProxyError> {
	///     Ok(())
	/// }
	///
	/// let builder: ProxyBuilder<(), ()> = ProxyBuilder::new()
	///     .for_relationship("data")
	///     .attribute("value")
	///     .with_getter(custom_getter);
	/// ```
	pub fn with_getter(mut self, getter: fn(&T) -> Result<U, crate::proxy::ProxyError>) -> Self {
		self.getter = Some(getter);
		self
	}

	/// Set a custom setter function
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// fn custom_setter(_obj: &mut (), _value: ()) -> Result<(), reinhardt_urls::proxy::ProxyError> {
	///     Ok(())
	/// }
	///
	/// let builder: ProxyBuilder<(), ()> = ProxyBuilder::new()
	///     .for_relationship("data")
	///     .attribute("value")
	///     .with_setter(custom_setter);
	/// ```
	pub fn with_setter(
		mut self,
		setter: fn(&mut T, U) -> Result<(), crate::proxy::ProxyError>,
	) -> Self {
		self.setter = Some(setter);
		self
	}

	/// Set a validator function
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::{ProxyBuilder, ProxyError};
	///
	/// fn validate_value(_value: &()) -> Result<(), ProxyError> {
	///     Ok(())
	/// }
	///
	/// let builder: ProxyBuilder<(), ()> = ProxyBuilder::new()
	///     .for_relationship("data")
	///     .attribute("value")
	///     .with_validator(validate_value);
	/// ```
	pub fn with_validator(
		mut self,
		validator: fn(&U) -> Result<(), crate::proxy::ProxyError>,
	) -> Self {
		self.validator = Some(validator);
		self
	}

	/// Set a transform function
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// fn transform_value(value: ()) -> () {
	///     value
	/// }
	///
	/// let builder: ProxyBuilder<(), ()> = ProxyBuilder::new()
	///     .for_relationship("data")
	///     .attribute("value")
	///     .with_transform(transform_value);
	/// ```
	pub fn with_transform(mut self, transform: fn(U) -> U) -> Self {
		self.transform = Some(transform);
		self
	}

	/// Check if custom accessors (getter/setter) are configured
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// fn custom_getter(_obj: &()) -> Result<(), reinhardt_urls::proxy::ProxyError> {
	///     Ok(())
	/// }
	///
	/// let builder: ProxyBuilder<(), ()> = ProxyBuilder::new()
	///     .with_getter(custom_getter);
	/// assert!(builder.has_custom_accessors());
	/// ```
	pub fn has_custom_accessors(&self) -> bool {
		self.getter.is_some() || self.setter.is_some()
	}

	/// Check if a validator is configured
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::{ProxyBuilder, ProxyError};
	///
	/// fn validate(_value: &()) -> Result<(), ProxyError> {
	///     Ok(())
	/// }
	///
	/// let builder: ProxyBuilder<(), ()> = ProxyBuilder::new()
	///     .with_validator(validate);
	/// assert!(builder.has_validator());
	/// ```
	pub fn has_validator(&self) -> bool {
		self.validator.is_some()
	}

	/// Check if a transform function is configured
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// fn transform(value: ()) -> () { value }
	///
	/// let builder: ProxyBuilder<(), ()> = ProxyBuilder::new()
	///     .with_transform(transform);
	/// assert!(builder.has_transform());
	/// ```
	pub fn has_transform(&self) -> bool {
		self.transform.is_some()
	}

	/// Get the builder name if set
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// let builder: ProxyBuilder<(), ()> = ProxyBuilder::with_name("my_alias");
	/// assert_eq!(builder.name(), Some("my_alias"));
	/// ```
	pub fn name(&self) -> Option<&str> {
		self.name.as_deref()
	}

	/// Get the relationship name
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// let builder: ProxyBuilder<(), ()> = ProxyBuilder::new()
	///     .relationship("posts");
	/// assert_eq!(builder.get_relationship(), Some("posts"));
	/// ```
	pub fn get_relationship(&self) -> Option<&str> {
		self.relationship.as_deref()
	}

	/// Get the attribute name
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// let builder: ProxyBuilder<(), ()> = ProxyBuilder::new()
	///     .attribute("title");
	/// assert_eq!(builder.get_attribute(), Some("title"));
	/// ```
	pub fn get_attribute(&self) -> Option<&str> {
		self.attribute.as_deref()
	}

	/// Build the association proxy
	///
	/// # Panics
	///
	/// Panics if relationship or attribute is not set
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// let proxy: reinhardt_urls::proxy::AssociationProxy<(), ()> = ProxyBuilder::new()
	///     .relationship("posts")
	///     .attribute("title")
	///     .build();
	/// assert_eq!(proxy.relationship, "posts");
	/// assert_eq!(proxy.attribute, "title");
	/// ```
	pub fn build(self) -> AssociationProxy<T, U> {
		let relationship = self.relationship.expect("Relationship must be set");
		let attribute = self.attribute.expect("Attribute must be set");

		let mut proxy = AssociationProxy::new(&relationship, &attribute);
		if let Some(creator) = self.creator {
			proxy = proxy.with_creator(creator);
		}
		proxy
	}
	/// Build the association proxy, returning None if configuration is incomplete
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_urls::proxy::ProxyBuilder;
	///
	/// // Complete configuration
	/// let proxy: Option<reinhardt_urls::proxy::AssociationProxy<(), ()>> = ProxyBuilder::new()
	///     .relationship("posts")
	///     .attribute("title")
	///     .try_build();
	/// assert!(proxy.is_some());
	///
	/// // Incomplete configuration
	/// let incomplete: Option<reinhardt_urls::proxy::AssociationProxy<(), ()>> = ProxyBuilder::new()
	///     .relationship("posts")
	///     .try_build();
	/// assert!(incomplete.is_none());
	/// ```
	pub fn try_build(self) -> Option<AssociationProxy<T, U>> {
		let relationship = self.relationship?;
		let attribute = self.attribute?;

		let mut proxy = AssociationProxy::new(&relationship, &attribute);
		if let Some(creator) = self.creator {
			proxy = proxy.with_creator(creator);
		}
		Some(proxy)
	}
}

/// Helper function to create a simple association proxy
///
/// ## Example
///
/// ```rust,no_run
/// # use reinhardt_urls::proxy::{AssociationProxy, association_proxy};
/// # struct UserKeyword;
/// let proxy: AssociationProxy<UserKeyword, String> = association_proxy("user_keywords", "keyword");
/// ```
pub fn association_proxy<T, U>(relationship: &str, attribute: &str) -> AssociationProxy<T, U> {
	AssociationProxy::new(relationship, attribute)
}

#[cfg(test)]
mod tests {
	use super::*;

	#[test]
	fn test_proxy_builder_basic_unit() {
		let proxy: AssociationProxy<(), ()> = ProxyBuilder::new()
			.relationship("rel")
			.attribute("attr")
			.build();

		assert_eq!(proxy.relationship, "rel");
		assert_eq!(proxy.attribute, "attr");
	}
}