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
//! Migration service layer
//!
//! Provides high-level business logic for migration operations,
//! orchestrating Source and Repository patterns.

use super::{Migration, MigrationError, MigrationRepository, MigrationSource, Result};
use std::sync::Arc;

/// Migration service that orchestrates Source and Repository
///
/// This service provides high-level operations for:
/// - Loading migrations from various sources
/// - Persisting migrations to storage
/// - Building migration dependency graphs
/// - Detecting migration changes
pub struct MigrationService {
	/// Source for loading migrations
	source: Arc<dyn MigrationSource>,
	/// Repository for persisting migrations
	repository: Arc<tokio::sync::Mutex<dyn MigrationRepository>>,
}

impl MigrationService {
	/// Create a new MigrationService
	///
	/// # Arguments
	///
	/// * `source` - Migration source for loading
	/// * `repository` - Migration repository for persistence
	///
	/// # Example
	///
	/// ```rust,no_run
	/// use reinhardt_db::migrations::{MigrationService, MigrationRepository, RegistrySource, FilesystemRepository};
	/// use std::sync::Arc;
	/// let source = Arc::new(RegistrySource::new());
	/// let repository = Arc::new(tokio::sync::Mutex::new(
	///     FilesystemRepository::new("./migrations")
	/// ));
	///
	/// let service = MigrationService::new(source, repository);
	/// ```
	pub fn new(
		source: Arc<dyn MigrationSource>,
		repository: Arc<tokio::sync::Mutex<dyn MigrationRepository>>,
	) -> Self {
		Self { source, repository }
	}

	/// Load all migrations from source
	///
	/// # Returns
	///
	/// Vector of all available migrations
	pub async fn load_all(&self) -> Result<Vec<Migration>> {
		self.source.all_migrations().await
	}

	/// Load migrations for a specific app
	///
	/// # Arguments
	///
	/// * `app_label` - App label to filter by
	///
	/// # Returns
	///
	/// Vector of migrations for the specified app
	pub async fn load_for_app(&self, app_label: &str) -> Result<Vec<Migration>> {
		self.source.migrations_for_app(app_label).await
	}

	/// Load a specific migration
	///
	/// # Arguments
	///
	/// * `app_label` - App label
	/// * `name` - Migration name
	///
	/// # Returns
	///
	/// The requested migration
	pub async fn load_migration(&self, app_label: &str, name: &str) -> Result<Migration> {
		self.source.get_migration(app_label, name).await
	}

	/// Save a migration to repository
	///
	/// # Arguments
	///
	/// * `migration` - Migration to save
	pub async fn save_migration(&self, migration: &Migration) -> Result<()> {
		let mut repo = self.repository.lock().await;
		repo.save(migration).await
	}

	/// Check if a migration exists in repository
	///
	/// # Arguments
	///
	/// * `app_label` - App label
	/// * `name` - Migration name
	///
	/// # Returns
	///
	/// `true` if the migration exists, `false` otherwise
	pub async fn migration_exists(&self, app_label: &str, name: &str) -> Result<bool> {
		let repo = self.repository.lock().await;
		repo.exists(app_label, name).await
	}

	/// List all migrations in repository for an app
	///
	/// # Arguments
	///
	/// * `app_label` - App label
	///
	/// # Returns
	///
	/// Vector of migrations in the repository
	pub async fn list_saved_migrations(&self, app_label: &str) -> Result<Vec<Migration>> {
		let repo = self.repository.lock().await;
		repo.list(app_label).await
	}

	/// Delete a migration from repository
	///
	/// # Arguments
	///
	/// * `app_label` - App label
	/// * `name` - Migration name
	pub async fn delete_migration(&self, app_label: &str, name: &str) -> Result<()> {
		let mut repo = self.repository.lock().await;
		repo.delete(app_label, name).await
	}

	/// Build migration dependency graph
	///
	/// Returns migrations sorted by dependencies (leaf nodes first)
	pub async fn build_dependency_graph(&self) -> Result<Vec<Migration>> {
		let migrations = self.load_all().await?;

		// Build adjacency list
		let mut graph: std::collections::HashMap<(String, String), Vec<(String, String)>> =
			std::collections::HashMap::new();
		let mut in_degree: std::collections::HashMap<(String, String), usize> =
			std::collections::HashMap::new();

		// Initialize graph
		for migration in &migrations {
			let key = (migration.app_label.to_string(), migration.name.to_string());
			graph.insert(key.clone(), Vec::new());
			in_degree.insert(key, 0);
		}

		// Build edges
		for migration in &migrations {
			let key = (migration.app_label.to_string(), migration.name.to_string());
			for dep in &migration.dependencies {
				let dep_key = (dep.0.to_string(), dep.1.to_string());
				if let Some(deps) = graph.get_mut(&dep_key) {
					deps.push(key.clone());
				}
				*in_degree.get_mut(&key).unwrap() += 1;
			}
		}

		// Topological sort (Kahn's algorithm)
		let mut queue: Vec<(String, String)> = in_degree
			.iter()
			.filter(|&(_, &degree)| degree == 0)
			.map(|(k, _)| k.clone())
			.collect();

		let mut sorted = Vec::new();

		while let Some(current) = queue.pop() {
			// Find the migration
			if let Some(migration) = migrations
				.iter()
				.find(|m| m.app_label == current.0 && m.name == current.1)
			{
				sorted.push(migration.clone());
			}

			// Update in-degrees
			if let Some(neighbors) = graph.get(&current) {
				for neighbor in neighbors {
					if let Some(degree) = in_degree.get_mut(neighbor) {
						*degree -= 1;
						if *degree == 0 {
							queue.push(neighbor.clone());
						}
					}
				}
			}
		}

		// Check for cycles
		if sorted.len() != migrations.len() {
			return Err(MigrationError::CircularDependency {
				cycle: "Circular dependency detected in migrations".to_string(),
			});
		}

		Ok(sorted)
	}

	/// Detect new migrations (in source but not in repository)
	///
	/// # Arguments
	///
	/// * `app_label` - App label to check
	///
	/// # Returns
	///
	/// Vector of new migrations that haven't been saved yet
	pub async fn detect_new_migrations(&self, app_label: &str) -> Result<Vec<Migration>> {
		let source_migrations = self.load_for_app(app_label).await?;
		let saved_migrations = self.list_saved_migrations(app_label).await?;

		let saved_names: std::collections::HashSet<_> =
			saved_migrations.iter().map(|m| &m.name).collect();

		Ok(source_migrations
			.into_iter()
			.filter(|m| !saved_names.contains(&m.name))
			.collect())
	}
}

#[cfg(test)]
mod tests {
	use super::*;
	use crate::migrations::source::MigrationSource;
	use async_trait::async_trait;
	use std::collections::HashMap;
	use tokio::sync::Mutex;

	/// Test source implementation
	struct TestSource {
		migrations: Vec<Migration>,
	}

	#[async_trait]
	impl MigrationSource for TestSource {
		async fn all_migrations(&self) -> Result<Vec<Migration>> {
			Ok(self.migrations.clone())
		}
	}

	/// Test repository implementation
	struct TestRepository {
		migrations: HashMap<(String, String), Migration>,
	}

	impl TestRepository {
		fn new() -> Self {
			Self {
				migrations: HashMap::new(),
			}
		}
	}

	#[async_trait]
	impl MigrationRepository for TestRepository {
		async fn save(&mut self, migration: &Migration) -> Result<()> {
			let key = (migration.app_label.to_string(), migration.name.to_string());
			self.migrations.insert(key, migration.clone());
			Ok(())
		}

		async fn get(&self, app_label: &str, name: &str) -> Result<Migration> {
			let key = (app_label.to_string(), name.to_string());
			self.migrations
				.get(&key)
				.cloned()
				.ok_or_else(|| MigrationError::NotFound(format!("{}.{}", app_label, name)))
		}

		async fn list(&self, app_label: &str) -> Result<Vec<Migration>> {
			Ok(self
				.migrations
				.values()
				.filter(|m| m.app_label == app_label)
				.cloned()
				.collect())
		}

		async fn exists(&self, app_label: &str, name: &str) -> Result<bool> {
			let key = (app_label.to_string(), name.to_string());
			Ok(self.migrations.contains_key(&key))
		}

		async fn delete(&mut self, app_label: &str, name: &str) -> Result<()> {
			let key = (app_label.to_string(), name.to_string());
			self.migrations
				.remove(&key)
				.ok_or_else(|| MigrationError::NotFound(format!("{}.{}", app_label, name)))?;
			Ok(())
		}
	}

	fn create_test_migration(app_label: &str, name: &str) -> Migration {
		Migration {
			app_label: app_label.to_string(),
			name: name.to_string(),
			operations: vec![],
			dependencies: vec![],
			atomic: true,
			initial: None,
			replaces: vec![],
			state_only: false,
			database_only: false,
			swappable_dependencies: vec![],
			optional_dependencies: vec![],
		}
	}

	#[tokio::test]
	async fn test_migration_service_load_all() {
		let source = Arc::new(TestSource {
			migrations: vec![
				create_test_migration("polls", "0001_initial"),
				create_test_migration("users", "0001_initial"),
			],
		});
		let repository = Arc::new(Mutex::new(TestRepository::new()));
		let service = MigrationService::new(source, repository);

		let migrations = service.load_all().await.unwrap();
		assert_eq!(migrations.len(), 2);
	}

	#[tokio::test]
	async fn test_migration_service_load_for_app() {
		let source = Arc::new(TestSource {
			migrations: vec![
				create_test_migration("polls", "0001_initial"),
				create_test_migration("polls", "0002_add_field"),
				create_test_migration("users", "0001_initial"),
			],
		});
		let repository = Arc::new(Mutex::new(TestRepository::new()));
		let service = MigrationService::new(source, repository);

		let polls_migrations = service.load_for_app("polls").await.unwrap();
		assert_eq!(polls_migrations.len(), 2);
	}

	#[tokio::test]
	async fn test_migration_service_save_and_load() {
		let source = Arc::new(TestSource {
			migrations: vec![create_test_migration("polls", "0001_initial")],
		});
		let repository = Arc::new(Mutex::new(TestRepository::new()));
		let service = MigrationService::new(source, repository);

		let migration = create_test_migration("polls", "0001_initial");
		service.save_migration(&migration).await.unwrap();

		assert!(
			service
				.migration_exists("polls", "0001_initial")
				.await
				.unwrap()
		);
	}

	#[tokio::test]
	async fn test_migration_service_dependency_graph() {
		let source = Arc::new(TestSource {
			migrations: vec![
				create_test_migration("polls", "0001_initial"),
				Migration {
					app_label: "polls".to_string(),
					name: "0002_add_field".to_string(),
					operations: vec![],
					dependencies: vec![("polls".to_string(), "0001_initial".to_string())],
					atomic: true,
					initial: None,
					replaces: vec![],
					state_only: false,
					database_only: false,
					swappable_dependencies: vec![],
					optional_dependencies: vec![],
				},
			],
		});
		let repository = Arc::new(Mutex::new(TestRepository::new()));
		let service = MigrationService::new(source, repository);

		let sorted = service.build_dependency_graph().await.unwrap();
		assert_eq!(sorted.len(), 2);
		// 0001_initial should come before 0002_add_field
		assert_eq!(sorted[0].name, "0001_initial");
		assert_eq!(sorted[1].name, "0002_add_field");
	}

	#[tokio::test]
	async fn test_migration_service_detect_new_migrations() {
		let source = Arc::new(TestSource {
			migrations: vec![
				create_test_migration("polls", "0001_initial"),
				create_test_migration("polls", "0002_add_field"),
			],
		});
		let repository = Arc::new(Mutex::new(TestRepository::new()));
		let service = MigrationService::new(source.clone(), repository);

		// Save only 0001_initial
		service
			.save_migration(&create_test_migration("polls", "0001_initial"))
			.await
			.unwrap();

		// Detect new migrations
		let new_migrations = service.detect_new_migrations("polls").await.unwrap();
		assert_eq!(new_migrations.len(), 1);
		assert_eq!(new_migrations[0].name, "0002_add_field");
	}

	#[tokio::test]
	async fn test_migration_service_delete() {
		let source = Arc::new(TestSource {
			migrations: vec![create_test_migration("polls", "0001_initial")],
		});
		let repository = Arc::new(Mutex::new(TestRepository::new()));
		let service = MigrationService::new(source, repository);

		// Save a migration
		let migration = create_test_migration("polls", "0001_initial");
		service.save_migration(&migration).await.unwrap();

		// Verify it exists
		assert!(
			service
				.migration_exists("polls", "0001_initial")
				.await
				.unwrap()
		);

		// Delete it
		service
			.delete_migration("polls", "0001_initial")
			.await
			.unwrap();

		// Verify it's gone
		assert!(
			!service
				.migration_exists("polls", "0001_initial")
				.await
				.unwrap()
		);
	}
}