oxigdal-workflow 0.1.4

DAG-based workflow engine for complex geospatial processing pipelines
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
//! Workflow versioning system.
//!
//! Provides semantic versioning, migration, and rollback capabilities
//! for workflow definitions.

pub mod migration;
pub mod rollback;

use crate::engine::WorkflowDefinition;
use crate::error::{Result, WorkflowError};
use chrono::{DateTime, Utc};
use dashmap::DashMap;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::sync::Arc;

pub use migration::{MigrationPlan, MigrationStep, WorkflowMigration};
pub use rollback::{RollbackManager, RollbackPoint};

/// Workflow version information.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkflowVersion {
    /// Version number (semantic versioning).
    pub version: String,
    /// Workflow definition at this version.
    pub definition: WorkflowDefinition,
    /// Version metadata.
    pub metadata: VersionMetadata,
    /// Previous version (if any).
    pub previous_version: Option<String>,
    /// Migration notes.
    pub migration_notes: Option<String>,
}

/// Version metadata.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct VersionMetadata {
    /// Creation timestamp.
    pub created_at: DateTime<Utc>,
    /// Author.
    pub author: String,
    /// Changelog.
    pub changelog: Vec<ChangelogEntry>,
    /// Breaking changes.
    pub breaking_changes: Vec<String>,
    /// Deprecated features.
    pub deprecations: Vec<String>,
    /// Tags.
    pub tags: Vec<String>,
}

/// Changelog entry.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ChangelogEntry {
    /// Change type.
    pub change_type: ChangeType,
    /// Change description.
    pub description: String,
    /// Affected components.
    pub affected_components: Vec<String>,
}

/// Change type enumeration.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum ChangeType {
    /// New feature added.
    Feature,
    /// Bug fix.
    Fix,
    /// Performance improvement.
    Performance,
    /// Breaking change.
    Breaking,
    /// Deprecation.
    Deprecation,
    /// Documentation update.
    Documentation,
    /// Refactoring.
    Refactor,
}

/// Version comparison result.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum VersionComparison {
    /// First version is less than second.
    Less,
    /// Versions are equal.
    Equal,
    /// First version is greater than second.
    Greater,
}

/// Workflow version manager.
pub struct WorkflowVersionManager {
    versions: Arc<DashMap<String, HashMap<String, WorkflowVersion>>>,
    migration: WorkflowMigration,
    rollback: RollbackManager,
}

impl WorkflowVersionManager {
    /// Create a new version manager.
    pub fn new() -> Self {
        Self {
            versions: Arc::new(DashMap::new()),
            migration: WorkflowMigration::new(),
            rollback: RollbackManager::new(),
        }
    }

    /// Register a new workflow version.
    pub fn register_version(&self, workflow_id: String, version: WorkflowVersion) -> Result<()> {
        // Validate version format
        Self::validate_version(&version.version)?;

        let mut workflow_versions = self.versions.entry(workflow_id.clone()).or_default();

        if workflow_versions.contains_key(&version.version) {
            return Err(WorkflowError::versioning(format!(
                "Version {} already exists for workflow {}",
                version.version, workflow_id
            )));
        }

        workflow_versions.insert(version.version.clone(), version);

        Ok(())
    }

    /// Get a specific version.
    pub fn get_version(&self, workflow_id: &str, version: &str) -> Option<WorkflowVersion> {
        self.versions
            .get(workflow_id)
            .and_then(|entry| entry.get(version).cloned())
    }

    /// Get the latest version.
    pub fn get_latest_version(&self, workflow_id: &str) -> Option<WorkflowVersion> {
        self.versions.get(workflow_id).and_then(|entry| {
            entry
                .values()
                .max_by(|a, b| Self::compare_versions(&a.version, &b.version))
                .cloned()
        })
    }

    /// List all versions for a workflow.
    pub fn list_versions(&self, workflow_id: &str) -> Vec<WorkflowVersion> {
        self.versions
            .get(workflow_id)
            .map(|entry| {
                let mut versions: Vec<WorkflowVersion> = entry.values().cloned().collect();
                versions.sort_by(|a, b| Self::compare_versions(&a.version, &b.version));
                versions
            })
            .unwrap_or_default()
    }

    /// Check if a version is compatible with another.
    pub fn is_compatible(&self, version1: &str, version2: &str) -> Result<bool> {
        let (major1, minor1, _) = Self::parse_version(version1)?;
        let (major2, minor2, _) = Self::parse_version(version2)?;

        // Same major version is compatible
        Ok(major1 == major2 && minor1 <= minor2)
    }

    /// Migrate from one version to another.
    pub fn migrate(
        &self,
        workflow_id: &str,
        from_version: &str,
        to_version: &str,
    ) -> Result<WorkflowDefinition> {
        let from = self
            .get_version(workflow_id, from_version)
            .ok_or_else(|| WorkflowError::not_found(from_version))?;

        let to = self
            .get_version(workflow_id, to_version)
            .ok_or_else(|| WorkflowError::not_found(to_version))?;

        self.migration.migrate(from.definition, to.definition)
    }

    /// Create a rollback point.
    pub fn create_rollback_point(&self, workflow_id: String, version: String) -> Result<String> {
        let workflow_version = self
            .get_version(&workflow_id, &version)
            .ok_or_else(|| WorkflowError::not_found(&version))?;

        self.rollback
            .create_rollback_point(workflow_id, workflow_version.definition)
    }

    /// Rollback to a previous point.
    pub fn rollback(&self, rollback_id: &str) -> Result<WorkflowDefinition> {
        self.rollback.rollback(rollback_id)
    }

    /// Validate semantic version format.
    fn validate_version(version: &str) -> Result<()> {
        Self::parse_version(version).map(|_| ())
    }

    /// Parse semantic version.
    fn parse_version(version: &str) -> Result<(u32, u32, u32)> {
        let parts: Vec<&str> = version
            .split('-')
            .next()
            .ok_or_else(|| WorkflowError::versioning("Invalid version format"))?
            .split('.')
            .collect();

        if parts.len() != 3 {
            return Err(WorkflowError::versioning(
                "Version must have 3 parts (major.minor.patch)",
            ));
        }

        let major = parts[0]
            .parse::<u32>()
            .map_err(|_| WorkflowError::versioning("Invalid major version"))?;

        let minor = parts[1]
            .parse::<u32>()
            .map_err(|_| WorkflowError::versioning("Invalid minor version"))?;

        let patch = parts[2]
            .parse::<u32>()
            .map_err(|_| WorkflowError::versioning("Invalid patch version"))?;

        Ok((major, minor, patch))
    }

    /// Compare two versions.
    fn compare_versions(v1: &str, v2: &str) -> std::cmp::Ordering {
        let Ok((major1, minor1, patch1)) = Self::parse_version(v1) else {
            return std::cmp::Ordering::Equal;
        };

        let Ok((major2, minor2, patch2)) = Self::parse_version(v2) else {
            return std::cmp::Ordering::Equal;
        };

        match major1.cmp(&major2) {
            std::cmp::Ordering::Equal => match minor1.cmp(&minor2) {
                std::cmp::Ordering::Equal => patch1.cmp(&patch2),
                other => other,
            },
            other => other,
        }
    }

    /// Check for breaking changes between versions.
    pub fn has_breaking_changes(&self, workflow_id: &str, from: &str, to: &str) -> Result<bool> {
        let from_version = self
            .get_version(workflow_id, from)
            .ok_or_else(|| WorkflowError::not_found(from))?;

        let to_version = self
            .get_version(workflow_id, to)
            .ok_or_else(|| WorkflowError::not_found(to))?;

        Ok(!to_version.metadata.breaking_changes.is_empty()
            && Self::compare_versions(&from_version.version, &to_version.version)
                == std::cmp::Ordering::Less)
    }
}

impl Default for WorkflowVersionManager {
    fn default() -> Self {
        Self::new()
    }
}

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

    #[test]
    fn test_version_parsing() {
        assert!(WorkflowVersionManager::parse_version("1.0.0").is_ok());
        assert!(WorkflowVersionManager::parse_version("1.2.3").is_ok());
        assert!(WorkflowVersionManager::parse_version("invalid").is_err());
    }

    #[test]
    fn test_version_comparison() {
        use std::cmp::Ordering;

        assert_eq!(
            WorkflowVersionManager::compare_versions("1.0.0", "1.0.0"),
            Ordering::Equal
        );
        assert_eq!(
            WorkflowVersionManager::compare_versions("1.0.0", "2.0.0"),
            Ordering::Less
        );
        assert_eq!(
            WorkflowVersionManager::compare_versions("2.0.0", "1.0.0"),
            Ordering::Greater
        );
        assert_eq!(
            WorkflowVersionManager::compare_versions("1.0.0", "1.1.0"),
            Ordering::Less
        );
    }

    #[test]
    fn test_version_compatibility() {
        let manager = WorkflowVersionManager::new();

        assert!(
            manager
                .is_compatible("1.0.0", "1.1.0")
                .expect("Check failed")
        );
        assert!(
            !manager
                .is_compatible("1.0.0", "2.0.0")
                .expect("Check failed")
        );
    }

    #[test]
    fn test_register_version() {
        use crate::dag::WorkflowDag;

        let manager = WorkflowVersionManager::new();

        let version = WorkflowVersion {
            version: "1.0.0".to_string(),
            definition: WorkflowDefinition {
                id: "test".to_string(),
                name: "Test".to_string(),
                description: None,
                version: "1.0.0".to_string(),
                dag: WorkflowDag::new(),
            },
            metadata: VersionMetadata {
                created_at: Utc::now(),
                author: "test".to_string(),
                changelog: vec![],
                breaking_changes: vec![],
                deprecations: vec![],
                tags: vec![],
            },
            previous_version: None,
            migration_notes: None,
        };

        assert!(
            manager
                .register_version("test-workflow".to_string(), version)
                .is_ok()
        );
    }

    #[test]
    fn test_get_latest_version() {
        use crate::dag::WorkflowDag;

        let manager = WorkflowVersionManager::new();

        let v1 = WorkflowVersion {
            version: "1.0.0".to_string(),
            definition: WorkflowDefinition {
                id: "test".to_string(),
                name: "Test".to_string(),
                description: None,
                version: "1.0.0".to_string(),
                dag: WorkflowDag::new(),
            },
            metadata: VersionMetadata {
                created_at: Utc::now(),
                author: "test".to_string(),
                changelog: vec![],
                breaking_changes: vec![],
                deprecations: vec![],
                tags: vec![],
            },
            previous_version: None,
            migration_notes: None,
        };

        let v2 = WorkflowVersion {
            version: "2.0.0".to_string(),
            definition: WorkflowDefinition {
                id: "test".to_string(),
                name: "Test".to_string(),
                description: None,
                version: "2.0.0".to_string(),
                dag: WorkflowDag::new(),
            },
            metadata: VersionMetadata {
                created_at: Utc::now(),
                author: "test".to_string(),
                changelog: vec![],
                breaking_changes: vec![],
                deprecations: vec![],
                tags: vec![],
            },
            previous_version: Some("1.0.0".to_string()),
            migration_notes: None,
        };

        manager
            .register_version("test".to_string(), v1)
            .expect("Failed");
        manager
            .register_version("test".to_string(), v2)
            .expect("Failed");

        let latest = manager.get_latest_version("test").expect("Not found");
        assert_eq!(latest.version, "2.0.0");
    }
}