feldera-ir 0.285.0

Intermediate representation types for Feldera Programs
Documentation
use std::collections::HashMap;

use serde::{Deserialize, Serialize};
use serde_json::Value;
use utoipa::ToSchema;

use crate::{CalciteId, SourcePosition};

pub type MirNodeId = String;

#[derive(Clone, Debug, Serialize, Deserialize, ToSchema, PartialEq, Eq)]
pub struct MirInput {
    pub node: String,
    pub output: usize,

    #[serde(flatten)]
    pub extra: HashMap<String, Value>,
}

#[derive(Clone, Debug, Serialize, Deserialize, ToSchema, PartialEq, Eq)]
pub struct MirNode {
    #[serde(default)]
    pub calcite: Option<CalciteId>,

    #[serde(default)]
    pub table: Option<String>,

    #[serde(default)]
    pub view: Option<String>,

    #[serde(default)]
    pub inputs: Vec<MirInput>,

    pub operation: String,

    #[serde(default)]
    pub outputs: Option<Vec<Option<MirInput>>>,

    #[serde(default)]
    pub persistent_id: Option<String>,

    #[serde(default)]
    pub positions: Vec<SourcePosition>,

    #[serde(flatten)]
    pub extra: HashMap<String, Value>,
}

impl MirNode {
    pub fn is_view(&self) -> bool {
        self.view.is_some()
    }

    pub fn is_table(&self) -> bool {
        self.table.is_some()
    }

    pub fn is_relation(&self) -> bool {
        self.is_view() || self.is_table()
    }
}