use super::*;
use std::collections::BTreeMap;
#[derive(Debug)]
pub struct Monitor(String, BTreeMap<Path, Option<String>>);
impl Monitor {
  pub fn new(name: String) -> Monitor {
      Monitor(name, BTreeMap::new())
  }
}
impl Ext for Monitor {
    fn name(&self) -> String {
        self.0.clone()
    }
    fn incoming_ports(&self) -> Vec<PortName> { vec!["in".to_string()] }
    fn outgoing_ports(&self) -> Vec<PortName> { vec![] }
    fn instantiate(&mut self, path: Path) {
        self.1.insert(path, None);
    }
    fn update(&mut self, path: Path, _port: &PortName, value: Value) -> Vec<(PortName, Value)> {
        self.1.insert(path, Some(format!("{value:?}")));
        vec![]
    }
    fn clock(&mut self, path: Path) -> Vec<(PortName, Value)> {
        if let Some(Some(s)) = &self.1.get(&path) {
            println!("{path}: {s}");
            self.1.insert(path, None);
        }
        vec![]
    }
    fn reset(&mut self, path: Path) -> Vec<(PortName, Value)> {
        if let Some(Some(s)) = &self.1.get(&path) {
            println!("{path}: {s}");
            self.1.insert(path, None);
        }
        vec![]
    }
}