reinhardt-db 0.1.1

Django-style database layer 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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
//! Composite synonym functionality
//!
//! Allows creating aliases (synonyms) from multiple field combinations.
//! Similar to SQLAlchemy's synonym but for composite fields.

use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::fmt;

/// Error type for composite synonym operations
#[non_exhaustive]
#[derive(Debug)]
pub enum SynonymError {
	/// FieldNotFound variant.
	FieldNotFound(String),
	/// InvalidCombination variant.
	InvalidCombination(String),
	/// ComputationError variant.
	ComputationError(String),
}

impl fmt::Display for SynonymError {
	fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
		match self {
			SynonymError::FieldNotFound(msg) => write!(f, "Field not found: {}", msg),
			SynonymError::InvalidCombination(msg) => {
				write!(f, "Invalid field combination: {}", msg)
			}
			SynonymError::ComputationError(msg) => write!(f, "Computation error: {}", msg),
		}
	}
}

impl std::error::Error for SynonymError {}

/// Value type for field values
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(untagged)]
pub enum FieldValue {
	/// Integer variant.
	Integer(i64),
	/// Float variant.
	Float(f64),
	/// String variant.
	String(String),
	/// Boolean variant.
	Boolean(bool),
	/// Null variant.
	Null,
}

impl std::fmt::Display for FieldValue {
	fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
		match self {
			FieldValue::Integer(i) => write!(f, "{}", i),
			FieldValue::Float(fl) => write!(f, "{}", fl),
			FieldValue::String(s) => write!(f, "{}", s),
			FieldValue::Boolean(b) => write!(f, "{}", b),
			FieldValue::Null => Ok(()),
		}
	}
}

/// Represents a composite synonym (alias) for multiple fields
///
/// # Examples
///
/// ```
/// use reinhardt_db::orm::composite_synonym::CompositeSynonym;
///
/// let full_name = CompositeSynonym::new(
///     "full_name".to_string(),
///     vec!["first_name".to_string(), "last_name".to_string()],
/// );
///
/// assert_eq!(full_name.name(), "full_name");
/// assert_eq!(full_name.fields().len(), 2);
/// ```
pub struct CompositeSynonym {
	/// Name of the synonym
	name: String,
	/// Fields that compose this synonym
	fields: Vec<String>,
	/// Separator for joining field values
	separator: String,
}

impl CompositeSynonym {
	/// Creates a new CompositeSynonym with default separator (space)
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_db::orm::composite_synonym::CompositeSynonym;
	///
	/// let address = CompositeSynonym::new(
	///     "address".to_string(),
	///     vec!["street".to_string(), "city".to_string(), "zip".to_string()],
	/// );
	///
	/// assert_eq!(address.separator(), " ");
	/// ```
	pub fn new(name: String, fields: Vec<String>) -> Self {
		Self {
			name,
			fields,
			separator: " ".to_string(),
		}
	}

	/// Sets a custom separator for the synonym
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_db::orm::composite_synonym::CompositeSynonym;
	///
	/// let csv_fields = CompositeSynonym::new(
	///     "csv_data".to_string(),
	///     vec!["field1".to_string(), "field2".to_string()],
	/// )
	/// .with_separator(",");
	///
	/// assert_eq!(csv_fields.separator(), ",");
	/// ```
	pub fn with_separator(mut self, separator: impl Into<String>) -> Self {
		self.separator = separator.into();
		self
	}

	/// Gets the name of the synonym
	pub fn name(&self) -> &str {
		&self.name
	}

	/// Gets the fields that compose this synonym
	pub fn fields(&self) -> &[String] {
		&self.fields
	}

	/// Gets the separator
	pub fn separator(&self) -> &str {
		&self.separator
	}

	/// Generates SQL expression for this synonym
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_db::orm::composite_synonym::CompositeSynonym;
	///
	/// let full_name = CompositeSynonym::new(
	///     "full_name".to_string(),
	///     vec!["first_name".to_string(), "last_name".to_string()],
	/// );
	///
	/// let sql = full_name.to_sql();
	/// assert!(sql.contains("CONCAT"));
	/// assert!(sql.contains("first_name"));
	/// assert!(sql.contains("last_name"));
	/// ```
	pub fn to_sql(&self) -> String {
		if self.fields.is_empty() {
			return String::from("NULL");
		}

		if self.fields.len() == 1 {
			return self.fields[0].clone();
		}

		let field_refs: Vec<String> = self.fields.iter().map(|f| format!("'{}'", f)).collect();

		format!("CONCAT_WS('{}', {})", self.separator, field_refs.join(", "))
	}

	/// Computes the synonym value from an object's field values
	///
	/// # Examples
	///
	/// ```
	/// use reinhardt_db::orm::composite_synonym::{CompositeSynonym, FieldValue};
	/// use std::collections::HashMap;
	///
	/// let full_name = CompositeSynonym::new(
	///     "full_name".to_string(),
	///     vec!["first_name".to_string(), "last_name".to_string()],
	/// );
	///
	/// let mut object = HashMap::new();
	/// object.insert("first_name".to_string(), FieldValue::String("John".to_string()));
	/// object.insert("last_name".to_string(), FieldValue::String("Doe".to_string()));
	///
	/// let result = full_name.compute_value(&object);
	/// assert_eq!(result, "John Doe");
	/// ```
	pub fn compute_value(&self, object: &HashMap<String, FieldValue>) -> String {
		self.fields
			.iter()
			.filter_map(|field| object.get(field))
			.map(|value| value.to_string())
			.filter(|s| !s.is_empty())
			.collect::<Vec<_>>()
			.join(&self.separator)
	}

	/// Validates that all required fields exist in the object
	pub fn validate_fields(
		&self,
		object: &HashMap<String, FieldValue>,
	) -> Result<(), SynonymError> {
		for field in &self.fields {
			if !object.contains_key(field) {
				return Err(SynonymError::FieldNotFound(field.clone()));
			}
		}
		Ok(())
	}

	/// Computes the synonym value with strict validation
	pub fn compute_value_strict(
		&self,
		object: &HashMap<String, FieldValue>,
	) -> Result<String, SynonymError> {
		self.validate_fields(object)?;
		Ok(self.compute_value(object))
	}

	/// Creates a synonym for concatenating fields without separator
	pub fn concat(name: String, fields: Vec<String>) -> Self {
		Self {
			name,
			fields,
			separator: String::new(),
		}
	}

	/// Creates a synonym for comma-separated values
	pub fn csv(name: String, fields: Vec<String>) -> Self {
		Self {
			name,
			fields,
			separator: ",".to_string(),
		}
	}
}

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

	#[test]
	fn test_composite_synonym_creation() {
		let synonym = CompositeSynonym::new(
			"full_name".to_string(),
			vec!["first_name".to_string(), "last_name".to_string()],
		);

		assert_eq!(synonym.name(), "full_name");
		assert_eq!(synonym.fields().len(), 2);
		assert_eq!(synonym.separator(), " ");
	}

	#[test]
	fn test_composite_synonym_with_custom_separator() {
		let synonym = CompositeSynonym::new(
			"csv_data".to_string(),
			vec!["field1".to_string(), "field2".to_string()],
		)
		.with_separator(", ");

		assert_eq!(synonym.separator(), ", ");
	}

	#[test]
	fn test_to_sql() {
		let synonym = CompositeSynonym::new(
			"full_name".to_string(),
			vec!["first_name".to_string(), "last_name".to_string()],
		);

		let sql = synonym.to_sql();
		assert!(sql.contains("CONCAT_WS"));
		assert!(sql.contains("' '"));
	}

	#[test]
	fn test_to_sql_single_field() {
		let synonym = CompositeSynonym::new("alias".to_string(), vec!["field".to_string()]);

		let sql = synonym.to_sql();
		assert_eq!(sql, "field");
	}

	#[test]
	fn test_to_sql_empty_fields() {
		let synonym = CompositeSynonym::new("empty".to_string(), vec![]);

		let sql = synonym.to_sql();
		assert_eq!(sql, "NULL");
	}

	#[test]
	fn test_compute_value() {
		let synonym = CompositeSynonym::new(
			"full_name".to_string(),
			vec!["first_name".to_string(), "last_name".to_string()],
		);

		let mut object = HashMap::new();
		object.insert(
			"first_name".to_string(),
			FieldValue::String("Alice".to_string()),
		);
		object.insert(
			"last_name".to_string(),
			FieldValue::String("Smith".to_string()),
		);

		let result = synonym.compute_value(&object);
		assert_eq!(result, "Alice Smith");
	}

	#[test]
	fn test_compute_value_with_custom_separator() {
		let synonym = CompositeSynonym::new(
			"address".to_string(),
			vec!["street".to_string(), "city".to_string()],
		)
		.with_separator(", ");

		let mut object = HashMap::new();
		object.insert(
			"street".to_string(),
			FieldValue::String("123 Main St".to_string()),
		);
		object.insert(
			"city".to_string(),
			FieldValue::String("Springfield".to_string()),
		);

		let result = synonym.compute_value(&object);
		assert_eq!(result, "123 Main St, Springfield");
	}

	#[test]
	fn test_compute_value_with_missing_fields() {
		let synonym = CompositeSynonym::new(
			"full_name".to_string(),
			vec!["first_name".to_string(), "last_name".to_string()],
		);

		let mut object = HashMap::new();
		object.insert(
			"first_name".to_string(),
			FieldValue::String("Alice".to_string()),
		);

		let result = synonym.compute_value(&object);
		assert_eq!(result, "Alice");
	}

	#[test]
	fn test_validate_fields() {
		let synonym = CompositeSynonym::new(
			"full_name".to_string(),
			vec!["first_name".to_string(), "last_name".to_string()],
		);

		let mut object = HashMap::new();
		object.insert(
			"first_name".to_string(),
			FieldValue::String("Alice".to_string()),
		);
		object.insert(
			"last_name".to_string(),
			FieldValue::String("Smith".to_string()),
		);

		assert!(synonym.validate_fields(&object).is_ok());

		let mut incomplete_object = HashMap::new();
		incomplete_object.insert(
			"first_name".to_string(),
			FieldValue::String("Alice".to_string()),
		);

		assert!(synonym.validate_fields(&incomplete_object).is_err());
	}

	#[test]
	fn test_compute_value_strict() {
		let synonym = CompositeSynonym::new(
			"full_name".to_string(),
			vec!["first_name".to_string(), "last_name".to_string()],
		);

		let mut object = HashMap::new();
		object.insert(
			"first_name".to_string(),
			FieldValue::String("Alice".to_string()),
		);
		object.insert(
			"last_name".to_string(),
			FieldValue::String("Smith".to_string()),
		);

		let result = synonym.compute_value_strict(&object);
		assert!(result.is_ok());
		assert_eq!(result.unwrap(), "Alice Smith");

		let mut incomplete_object = HashMap::new();
		incomplete_object.insert(
			"first_name".to_string(),
			FieldValue::String("Alice".to_string()),
		);

		let result = synonym.compute_value_strict(&incomplete_object);
		assert!(result.is_err());
	}

	#[test]
	fn test_concat_synonym() {
		let synonym = CompositeSynonym::concat(
			"code".to_string(),
			vec!["prefix".to_string(), "number".to_string()],
		);

		let mut object = HashMap::new();
		object.insert("prefix".to_string(), FieldValue::String("ABC".to_string()));
		object.insert("number".to_string(), FieldValue::String("123".to_string()));

		let result = synonym.compute_value(&object);
		assert_eq!(result, "ABC123");
		assert_eq!(synonym.separator(), "");
	}

	#[test]
	fn test_csv_synonym() {
		let synonym = CompositeSynonym::csv(
			"tags".to_string(),
			vec!["tag1".to_string(), "tag2".to_string()],
		);

		let mut object = HashMap::new();
		object.insert("tag1".to_string(), FieldValue::String("rust".to_string()));
		object.insert("tag2".to_string(), FieldValue::String("orm".to_string()));

		let result = synonym.compute_value(&object);
		assert_eq!(result, "rust,orm");
		assert_eq!(synonym.separator(), ",");
	}

	#[test]
	fn test_field_value_to_string() {
		assert_eq!(FieldValue::Integer(42).to_string(), "42");
		assert_eq!(FieldValue::Float(3.15).to_string(), "3.15");
		assert_eq!(FieldValue::String("test".to_string()).to_string(), "test");
		assert_eq!(FieldValue::Boolean(true).to_string(), "true");
		assert_eq!(FieldValue::Null.to_string(), "");
	}
}