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
use crate::Value;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use strum_macros::{AsRefStr, EnumIter, EnumString, IntoStaticStr};

#[derive(
    PartialEq,
    Eq,
    Clone,
    Debug,
    Serialize,
    Deserialize,
    EnumString,
    EnumIter,
    AsRefStr,
    IntoStaticStr,
    Default,
)]
pub enum PluginLanguage {
    #[serde(rename = "rust")]
    #[default]
    Rust,
    #[serde(rename = "golang")]
    Golang,
    #[serde(rename = "python")]
    Python,
    #[serde(rename = "zig")]
    Zig,
}

impl PluginLanguage {
    pub fn string_to_lang(lang: &str) -> Self {
        if lang == "rust" {
            Self::Rust
        } else if lang == "golang" {
            Self::Golang
        } else if lang == "zig" {
            Self::Zig
        } else if lang == "python" {
            Self::Python
        } else {
            Self::Rust
        }
    }
}

#[derive(PartialEq, Eq, Clone, Debug, Serialize, Deserialize, EnumString, EnumIter, AsRefStr)]
pub enum PluginCompiler {
    #[serde(rename = "wasm")]
    Wasm,
    #[serde(rename = "wasi")]
    Wasi,
    #[serde(rename = "wasix")]
    Wasix,
    #[serde(rename = "tinygo")]
    TinyGo,
}

/// # WakfloWorkspace
///
/// Task contract represent an ant schema that takes in
/// operators and actions to be performed on a dataset
#[derive(PartialEq, Eq, Serialize, Deserialize, Clone, Debug, Default)]
pub struct WakfloWorkspace {
    /// plugin structure
    pub plugin: WakfloPlugin,
    // pub dependencies: Option<Vec<EntityConnector>>,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PluginWorkspaceMetadata {
    pub properties: HashMap<String, serde_json::Value>,

    pub compiler: PluginCompiler,
    /// Name of the the schema
    pub name: String,

    /// Icon based on https://icon-sets.iconify.design/
    pub icon: String,

    /// Human readable identity of a category
    pub category: String,

    /// Language plugin is written in
    pub language: PluginLanguage,

    /// Version of the plugin
    pub version: String,

    /// Description of the the schema
    pub description: String,
}

/// # WakfloPlugin
///
/// Task contract represent an ant schema that takes in
/// operators and actions to be performed on a dataset
#[derive(PartialEq, Eq, Serialize, Deserialize, Clone, Debug, Default)]
pub struct WakfloPlugin {
    /// Name of the the schema
    pub name: String,

    /// Icon based on https://icon-sets.iconify.design/
    pub icon: String,

    /// Human readable identity of a category
    pub category: String,

    /// Version of the plugin
    pub language: PluginLanguage,

    /// Version of the plugin
    pub version: String,

    /// Description of the the schema
    pub description: String,

    /// Name of the the schema
    pub documentation: Option<String>,

    pub properties: Option<HashMap<String, Value>>,
}