parsql-cli 0.5.0

Command-line interface for parsql database toolkit
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
//! Migration execution utilities

use anyhow::{Context, Result};
use std::time::Instant;
use super::migration_loader::SqlMigration;
use super::output_stream::OutputStreamWidget;
use parsql_migrations::config::MigrationConfig;

pub struct MigrationExecutor {
    config: MigrationConfig,
}

impl MigrationExecutor {
    pub fn new(config: MigrationConfig) -> Self {
        Self { config }
    }
    
    /// Run pending migrations for SQLite
    pub fn run_sqlite_migrations(
        &self,
        db_path: &str,
        migrations: Vec<SqlMigration>,
        output: &mut OutputStreamWidget,
    ) -> Result<usize> {
        output.add_info(format!("Connecting to SQLite database: {}", db_path));
        
        let mut conn = rusqlite::Connection::open(db_path)
            .context("Failed to open SQLite database")?;
        
        // Create migrations table if it doesn't exist
        self.ensure_migrations_table_sqlite(&conn)?;
        
        // Get already applied migrations
        let applied = self.get_applied_versions_sqlite(&conn)?;
        
        let mut applied_count = 0;
        
        for migration in migrations {
            if applied.contains(&migration.version) {
                output.add_info(format!("Skipping already applied migration: {} - {}", 
                    migration.version, migration.name));
                continue;
            }
            
            output.add_progress(format!("Running migration: {} - {}", 
                migration.version, migration.name));
            
            let start = Instant::now();
            
            // Execute migration in transaction if configured
            if self.config.transaction_per_migration {
                let tx = conn.transaction()?;
                
                // Execute the migration SQL
                tx.execute_batch(&migration.up_sql)
                    .context(format!("Failed to execute migration {}", migration.version))?;
                
                let execution_time = start.elapsed();
                
                // Record the migration
                tx.execute(
                    &format!(
                        "INSERT INTO {} (version, name, checksum, applied_at, execution_time_ms) VALUES (?1, ?2, ?3, datetime('now'), ?4)",
                        self.config.table.table_name
                    ),
                    rusqlite::params![
                        migration.version,
                        migration.name,
                        calculate_checksum(&migration.up_sql),
                        execution_time.as_millis() as i64,
                    ],
                )?;
                
                tx.commit()?;
            } else {
                // Execute without transaction
                conn.execute_batch(&migration.up_sql)
                    .context(format!("Failed to execute migration {}", migration.version))?;
                
                let execution_time = start.elapsed();
                
                conn.execute(
                    &format!(
                        "INSERT INTO {} (version, name, checksum, applied_at, execution_time_ms) VALUES (?1, ?2, ?3, datetime('now'), ?4)",
                        self.config.table.table_name
                    ),
                    rusqlite::params![
                        migration.version,
                        migration.name,
                        calculate_checksum(&migration.up_sql),
                        execution_time.as_millis() as i64,
                    ],
                )?;
            }
            
            let elapsed = start.elapsed();
            output.add_success(format!(
                "Applied migration {} - {} ({:.2}ms)", 
                migration.version, 
                migration.name,
                elapsed.as_secs_f64() * 1000.0
            ));
            
            applied_count += 1;
        }
        
        Ok(applied_count)
    }
    
    /// Rollback to a specific version for SQLite
    pub fn rollback_sqlite(
        &self,
        db_path: &str,
        target_version: i64,
        migrations: Vec<SqlMigration>,
        output: &mut OutputStreamWidget,
    ) -> Result<usize> {
        output.add_info(format!("Connecting to SQLite database: {}", db_path));
        
        let mut conn = rusqlite::Connection::open(db_path)
            .context("Failed to open SQLite database")?;
        
        // Get applied migrations in reverse order
        let applied = self.get_applied_versions_sqlite(&conn)?;
        let mut to_rollback = Vec::new();
        
        for version in applied.iter().rev() {
            if *version > target_version {
                if let Some(migration) = migrations.iter().find(|m| m.version == *version) {
                    if migration.down_sql.is_some() {
                        to_rollback.push(migration);
                    } else {
                        output.add_warning(format!(
                            "Migration {} has no down script, skipping rollback", 
                            version
                        ));
                    }
                }
            }
        }
        
        let mut rolled_back = 0;
        
        for migration in to_rollback {
            output.add_progress(format!("Rolling back migration: {} - {}", 
                migration.version, migration.name));
            
            let start = Instant::now();
            
            if let Some(down_sql) = &migration.down_sql {
                if self.config.transaction_per_migration {
                    let tx = conn.transaction()?;
                    
                    tx.execute_batch(down_sql)
                        .context(format!("Failed to rollback migration {}", migration.version))?;
                    
                    tx.execute(
                        &format!("DELETE FROM {} WHERE version = ?1", self.config.table.table_name),
                        [migration.version],
                    )?;
                    
                    tx.commit()?;
                } else {
                    conn.execute_batch(down_sql)
                        .context(format!("Failed to rollback migration {}", migration.version))?;
                    
                    conn.execute(
                        &format!("DELETE FROM {} WHERE version = ?1", self.config.table.table_name),
                        [migration.version],
                    )?;
                }
                
                let elapsed = start.elapsed();
                output.add_success(format!(
                    "Rolled back migration {} - {} ({:.2}ms)", 
                    migration.version, 
                    migration.name,
                    elapsed.as_secs_f64() * 1000.0
                ));
                
                rolled_back += 1;
            }
        }
        
        Ok(rolled_back)
    }
    
    /// Ensure migrations table exists in SQLite
    fn ensure_migrations_table_sqlite(&self, conn: &rusqlite::Connection) -> Result<()> {
        let create_sql = format!(
            r#"
            CREATE TABLE IF NOT EXISTS {} (
                version INTEGER PRIMARY KEY,
                name TEXT NOT NULL,
                checksum TEXT,
                applied_at TEXT NOT NULL,
                execution_time_ms INTEGER
            )
            "#,
            self.config.table.table_name
        );
        
        conn.execute_batch(&create_sql)
            .context("Failed to create migrations table")?;
        
        Ok(())
    }
    
    /// Get applied migration versions from SQLite
    fn get_applied_versions_sqlite(&self, conn: &rusqlite::Connection) -> Result<Vec<i64>> {
        let mut applied = Vec::new();
        
        // Check if table exists first
        let table_exists: bool = conn.query_row(
            "SELECT EXISTS(SELECT 1 FROM sqlite_master WHERE type='table' AND name=?)",
            [&self.config.table.table_name],
            |row| row.get(0),
        ).unwrap_or(false);
        
        if table_exists {
            let mut stmt = conn.prepare(&format!(
                "SELECT version FROM {} ORDER BY version",
                self.config.table.table_name
            ))?;
            
            let version_iter = stmt.query_map([], |row| {
                row.get::<_, i64>(0)
            })?;
            
            for version in version_iter {
                applied.push(version?);
            }
        }
        
        Ok(applied)
    }
    
    /// Run pending migrations for PostgreSQL
    #[cfg(feature = "postgres")]
    pub fn run_postgres_migrations(
        &self,
        db_url: &str,
        migrations: Vec<SqlMigration>,
        output: &mut OutputStreamWidget,
    ) -> Result<usize> {
        use postgres::{Client, NoTls};
        
        output.add_info(format!("Connecting to PostgreSQL database"));
        
        let mut client = Client::connect(db_url, NoTls)
            .context("Failed to connect to PostgreSQL database")?;
        
        // Create migrations table if it doesn't exist
        self.ensure_migrations_table_postgres(&mut client)?;
        
        // Get already applied migrations
        let applied = self.get_applied_versions_postgres(&mut client)?;
        
        let mut applied_count = 0;
        
        for migration in migrations {
            if applied.contains(&migration.version) {
                output.add_info(format!("Skipping already applied migration: {} - {}", 
                    migration.version, migration.name));
                continue;
            }
            
            output.add_progress(format!("Running migration: {} - {}", 
                migration.version, migration.name));
            
            let start = Instant::now();
            
            // Execute migration in transaction if configured
            if self.config.transaction_per_migration {
                let mut tx = client.transaction()?;
                
                // Execute the migration SQL
                tx.batch_execute(&migration.up_sql)
                    .context(format!("Failed to execute migration {}", migration.version))?;
                
                let execution_time = start.elapsed();
                
                // Record the migration
                tx.execute(
                    &format!(
                        "INSERT INTO {} (version, name, checksum, applied_at, execution_time_ms) VALUES ($1, $2, $3, NOW(), $4)",
                        self.config.table.table_name
                    ),
                    &[
                        &migration.version,
                        &migration.name,
                        &calculate_checksum(&migration.up_sql),
                        &(execution_time.as_millis() as i64),
                    ],
                )?;
                
                tx.commit()?;
            } else {
                // Execute without transaction
                client.batch_execute(&migration.up_sql)
                    .context(format!("Failed to execute migration {}", migration.version))?;
                
                let execution_time = start.elapsed();
                
                client.execute(
                    &format!(
                        "INSERT INTO {} (version, name, checksum, applied_at, execution_time_ms) VALUES ($1, $2, $3, NOW(), $4)",
                        self.config.table.table_name
                    ),
                    &[
                        &migration.version,
                        &migration.name,
                        &calculate_checksum(&migration.up_sql),
                        &(execution_time.as_millis() as i64),
                    ],
                )?;
            }
            
            let elapsed = start.elapsed();
            output.add_success(format!(
                "Applied migration {} - {} ({:.2}ms)", 
                migration.version, 
                migration.name,
                elapsed.as_secs_f64() * 1000.0
            ));
            
            applied_count += 1;
        }
        
        Ok(applied_count)
    }
    
    /// Rollback to a specific version for PostgreSQL
    #[cfg(feature = "postgres")]
    pub fn rollback_postgres(
        &self,
        db_url: &str,
        target_version: i64,
        migrations: Vec<SqlMigration>,
        output: &mut OutputStreamWidget,
    ) -> Result<usize> {
        use postgres::{Client, NoTls};
        
        output.add_info(format!("Connecting to PostgreSQL database"));
        
        let mut client = Client::connect(db_url, NoTls)
            .context("Failed to connect to PostgreSQL database")?;
        
        // Get applied migrations in reverse order
        let applied = self.get_applied_versions_postgres(&mut client)?;
        let mut to_rollback = Vec::new();
        
        for version in applied.iter().rev() {
            if *version > target_version {
                if let Some(migration) = migrations.iter().find(|m| m.version == *version) {
                    if migration.down_sql.is_some() {
                        to_rollback.push(migration);
                    } else {
                        output.add_warning(format!(
                            "Migration {} has no down script, skipping rollback", 
                            version
                        ));
                    }
                }
            }
        }
        
        let mut rolled_back = 0;
        
        for migration in to_rollback {
            output.add_progress(format!("Rolling back migration: {} - {}", 
                migration.version, migration.name));
            
            let start = Instant::now();
            
            if let Some(down_sql) = &migration.down_sql {
                if self.config.transaction_per_migration {
                    let mut tx = client.transaction()?;
                    
                    tx.batch_execute(down_sql)
                        .context(format!("Failed to rollback migration {}", migration.version))?;
                    
                    tx.execute(
                        &format!("DELETE FROM {} WHERE version = $1", self.config.table.table_name),
                        &[&migration.version],
                    )?;
                    
                    tx.commit()?;
                } else {
                    client.batch_execute(down_sql)
                        .context(format!("Failed to rollback migration {}", migration.version))?;
                    
                    client.execute(
                        &format!("DELETE FROM {} WHERE version = $1", self.config.table.table_name),
                        &[&migration.version],
                    )?;
                }
                
                let elapsed = start.elapsed();
                output.add_success(format!(
                    "Rolled back migration {} - {} ({:.2}ms)", 
                    migration.version, 
                    migration.name,
                    elapsed.as_secs_f64() * 1000.0
                ));
                
                rolled_back += 1;
            }
        }
        
        Ok(rolled_back)
    }
    
    /// Ensure migrations table exists in PostgreSQL
    #[cfg(feature = "postgres")]
    fn ensure_migrations_table_postgres(&self, client: &mut postgres::Client) -> Result<()> {
        let create_sql = format!(
            r#"
            CREATE TABLE IF NOT EXISTS {} (
                version BIGINT PRIMARY KEY,
                name TEXT NOT NULL,
                checksum TEXT,
                applied_at TIMESTAMP NOT NULL,
                execution_time_ms BIGINT
            )
            "#,
            self.config.table.table_name
        );
        
        client.batch_execute(&create_sql)
            .context("Failed to create migrations table")?;
        
        Ok(())
    }
    
    /// Get applied migration versions from PostgreSQL
    #[cfg(feature = "postgres")]
    fn get_applied_versions_postgres(&self, client: &mut postgres::Client) -> Result<Vec<i64>> {
        let mut applied = Vec::new();
        
        // Check if table exists first
        let table_exists: bool = client.query_one(
            "SELECT EXISTS(SELECT 1 FROM information_schema.tables WHERE table_name = $1)",
            &[&self.config.table.table_name],
        )?.get(0);
        
        if table_exists {
            let rows = client.query(
                &format!("SELECT version FROM {} ORDER BY version", self.config.table.table_name),
                &[],
            )?;
            
            for row in rows {
                applied.push(row.get::<_, i64>(0));
            }
        }
        
        Ok(applied)
    }
    
    /// Fallback methods when postgres feature is disabled
    #[cfg(not(feature = "postgres"))]
    pub fn run_postgres_migrations(
        &self,
        _db_url: &str,
        _migrations: Vec<SqlMigration>,
        output: &mut OutputStreamWidget,
    ) -> Result<usize> {
        output.add_error("PostgreSQL support not compiled in. Enable 'postgres' feature".to_string());
        Err(anyhow::anyhow!("PostgreSQL support not compiled in. Enable 'postgres' feature"))
    }
    
    #[cfg(not(feature = "postgres"))]
    pub fn rollback_postgres(
        &self,
        _db_url: &str,
        _target_version: i64,
        _migrations: Vec<SqlMigration>,
        output: &mut OutputStreamWidget,
    ) -> Result<usize> {
        output.add_error("PostgreSQL support not compiled in. Enable 'postgres' feature".to_string());
        Err(anyhow::anyhow!("PostgreSQL support not compiled in. Enable 'postgres' feature"))
    }
}

fn calculate_checksum(content: &str) -> String {
    use sha2::{Sha256, Digest};
    let mut hasher = Sha256::new();
    hasher.update(content.as_bytes());
    format!("{:x}", hasher.finalize())
}