From 309b0881dfdc63e73b10db0641b272b2350b6cb3 Mon Sep 17 00:00:00 2001 From: Aaron Fenyes Date: Mon, 3 Mar 2025 12:22:43 -0800 Subject: [PATCH] Move `SpecifiedValue` into its own module --- app-proto/src/assembly.rs | 66 +++----------------------------------- app-proto/src/main.rs | 1 + app-proto/src/outline.rs | 7 ++-- app-proto/src/specified.rs | 56 ++++++++++++++++++++++++++++++++ 4 files changed, 65 insertions(+), 65 deletions(-) create mode 100644 app-proto/src/specified.rs diff --git a/app-proto/src/assembly.rs b/app-proto/src/assembly.rs index 9b123f5..01dee9d 100644 --- a/app-proto/src/assembly.rs +++ b/app-proto/src/assembly.rs @@ -1,15 +1,14 @@ use nalgebra::{DMatrix, DVector, DVectorView, Vector3}; use rustc_hash::FxHashMap; use slab::Slab; -use std::{ - collections::BTreeSet, - num::ParseFloatError, - sync::atomic::{AtomicU64, Ordering} -}; +use std::{collections::BTreeSet, sync::atomic::{AtomicU64, Ordering}}; use sycamore::prelude::*; use web_sys::{console, wasm_bindgen::JsValue}; /* DEBUG */ -use crate::engine::{Q, local_unif_to_std, realize_gram, ConfigSubspace, PartialMatrix}; +use crate::{ + engine::{Q, local_unif_to_std, realize_gram, ConfigSubspace, PartialMatrix}, + specified::{SpecifiedValue, SpecifiedValue::{Absent, Present}} +}; // the types of the keys we use to access an assembly's elements and regulators pub type ElementKey = usize; @@ -118,61 +117,6 @@ impl Element { } } -// to construct a `SpecifiedValue` that might be `Present`, use the associated -// function `try_from`. this ensures that `spec` is always a valid specification -// of `value` according to the format discussed at the implementation of -// `TryFrom` -pub enum SpecifiedValue { - Absent, - Present { - spec: String, - value: f64 - } -} - -use SpecifiedValue::*; - -impl SpecifiedValue { - // get the specification for this value. the associated function `try_from` - // is essentially a left inverse of this method: - // - // SpecifiedValue::try_from(x.spec()) == Ok(x) - // - pub fn spec(&self) -> String { - match self { - Absent => String::new(), - Present { spec, .. } => spec.clone() - } - } - - fn is_present(&self) -> bool { - match self { - Absent => false, - Present { .. } => true - } - } -} - -// we can try to turn a specification string into a `SpecifiedValue`. if the -// specification is empty, the `SpecifiedValue` is `Absent`. if the -// specification parses to a floating-point value `x`, the `SpecifiedValue` is -// `Present`, with a `value` of `x`, and the specification is stored in `spec`. -// these are currently the only valid specifications; any other produces an -// error -impl TryFrom for SpecifiedValue { - type Error = ParseFloatError; - - fn try_from(spec: String) -> Result { - if spec.is_empty() { - Ok(Absent) - } else { - spec.parse::().map( - |value| Present { spec: spec, value: value } - ) - } - } -} - #[derive(Clone, Copy)] pub struct Regulator { pub subjects: (ElementKey, ElementKey), diff --git a/app-proto/src/main.rs b/app-proto/src/main.rs index f961504..6ab3e49 100644 --- a/app-proto/src/main.rs +++ b/app-proto/src/main.rs @@ -3,6 +3,7 @@ mod assembly; mod display; mod engine; mod outline; +mod specified; use rustc_hash::FxHashSet; use sycamore::prelude::*; diff --git a/app-proto/src/outline.rs b/app-proto/src/outline.rs index 8f81a82..31837bb 100644 --- a/app-proto/src/outline.rs +++ b/app-proto/src/outline.rs @@ -12,10 +12,9 @@ use crate::{ assembly::{ ElementKey, Regulator, - RegulatorKey, - SpecifiedValue, - SpecifiedValue::* - } + RegulatorKey + }, + specified::{SpecifiedValue, SpecifiedValue::{Absent, Present}} }; // an editable view of a regulator diff --git a/app-proto/src/specified.rs b/app-proto/src/specified.rs new file mode 100644 index 0000000..ea873e9 --- /dev/null +++ b/app-proto/src/specified.rs @@ -0,0 +1,56 @@ +use std::num::ParseFloatError; + +// to construct a `SpecifiedValue` that might be `Present`, use the associated +// function `try_from`. this ensures that `spec` is always a valid specification +// of `value` according to the format discussed at the implementation of +// `TryFrom` +pub enum SpecifiedValue { + Absent, + Present { + spec: String, + value: f64 + } +} + +use SpecifiedValue::{Absent, Present}; + +impl SpecifiedValue { + // get the specification for this value. the associated function `try_from` + // is essentially a left inverse of this method: + // + // SpecifiedValue::try_from(x.spec()) == Ok(x) + // + pub fn spec(&self) -> String { + match self { + Absent => String::new(), + Present { spec, .. } => spec.clone() + } + } + + pub fn is_present(&self) -> bool { + match self { + Absent => false, + Present { .. } => true + } + } +} + +// we can try to turn a specification string into a `SpecifiedValue`. if the +// specification is empty, the `SpecifiedValue` is `Absent`. if the +// specification parses to a floating-point value `x`, the `SpecifiedValue` is +// `Present`, with a `value` of `x`, and the specification is stored in `spec`. +// these are currently the only valid specifications; any other produces an +// error +impl TryFrom for SpecifiedValue { + type Error = ParseFloatError; + + fn try_from(spec: String) -> Result { + if spec.is_empty() { + Ok(Absent) + } else { + spec.parse::().map( + |value| Present { spec: spec, value: value } + ) + } + } +} \ No newline at end of file