topola/src/board/mod.rs

336 lines
11 KiB
Rust

// SPDX-FileCopyrightText: 2024 Topola contributors
//
// SPDX-License-Identifier: MIT
//! Manages relationship between pins and bands and the primitives and compounds
//! that consitutite them on the layout. And some more.
pub mod edit;
use edit::{BoardDataEdit, BoardEdit};
pub use specctra_core::mesadata::AccessMesadata;
use bimap::BiBTreeMap;
use derive_getters::Getters;
use geo::Point;
use std::collections::BTreeMap;
use crate::{
drawing::{
band::BandUid,
dot::{FixedDotIndex, FixedDotWeight},
graph::PrimitiveIndex,
seg::{FixedSegIndex, FixedSegWeight},
Collect, DrawingException,
},
geometry::{edit::ApplyGeometryEdit, GenericNode, GetLayer},
graph::{GenericIndex, MakeRef},
layout::{poly::PolyWeight, CompoundWeight, Layout, NodeIndex},
router::ng::EtchedPath,
};
/// Represents a band between two pins.
pub type BandName = planar_incr_embed::navmesh::OrderedPair<String>;
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub enum ResolvedSelector<'a> {
Band { band_uid: BandUid },
Pin { pin_name: &'a str, layer: usize },
}
impl<'a> ResolvedSelector<'a> {
pub fn try_from_node(board: &'a Board<impl AccessMesadata>, node: NodeIndex) -> Option<Self> {
use crate::{drawing::graph::MakePrimitive, graph::GetPetgraphIndex};
let (layer, loose) = match node {
NodeIndex::Primitive(primitive) => (
primitive.primitive(board.layout().drawing()).layer(),
primitive.try_into().ok(),
),
NodeIndex::Compound(compound) => {
match board.layout().drawing().compound_weight(compound) {
CompoundWeight::Poly(..) => (
GenericIndex::<PolyWeight>::new(compound.petgraph_index())
.ref_(board.layout())
.layer(),
None,
),
_ => return None,
}
}
};
if let Some(pin_name) = board.node_pinname(&node) {
Some(ResolvedSelector::Pin { pin_name, layer })
} else {
loose.and_then(|loose| {
Some(ResolvedSelector::Band {
band_uid: board.layout().drawing().loose_band_uid(loose).ok()?,
})
})
}
}
}
/// Represents a board layout and its associated metadata.
///
/// The struct manages the relationships between board's layout,
/// and its compounds, as well as provides methods to manipulate them.
#[derive(Debug, Getters)]
pub struct Board<M> {
layout: Layout<M>,
bands_by_id: BiBTreeMap<EtchedPath, BandUid>,
// TODO: Simplify access logic to these members so that `#[getter(skip)]`s can be removed.
#[getter(skip)]
node_to_pinname: BTreeMap<NodeIndex, String>,
#[getter(skip)]
band_bandname: BiBTreeMap<BandUid, BandName>,
}
impl<M> Board<M> {
/// Initializes the board with given [`Layout`]
pub fn new(layout: Layout<M>) -> Self {
Self {
layout,
bands_by_id: BiBTreeMap::new(),
node_to_pinname: BTreeMap::new(),
band_bandname: BiBTreeMap::new(),
}
}
/// Returns a mutable reference to the layout, allowing modifications.
pub fn layout_mut(&mut self) -> &mut Layout<M> {
&mut self.layout
}
}
impl<M: AccessMesadata> Board<M> {
/// Adds a new fixed dot with an optional pin name.
///
/// Inserts the dot into the layout and, if a pin name is provided, maps it to the created dot's node.
pub fn add_fixed_dot_infringably(
&mut self,
recorder: &mut BoardEdit,
weight: FixedDotWeight,
maybe_pin: Option<String>,
) -> FixedDotIndex {
let dot = self
.layout
.add_fixed_dot_infringably(&mut recorder.layout_edit, weight);
if let Some(pin) = maybe_pin {
self.node_to_pinname
.insert(GenericNode::Primitive(dot.into()), pin);
}
dot
}
/// Adds a fixed segment associated with a polygon in the layout.
///
/// Adds the segment to the layout and updates the internal mapping if necessary.
pub fn add_fixed_seg_infringably(
&mut self,
recorder: &mut BoardEdit,
from: FixedDotIndex,
to: FixedDotIndex,
weight: FixedSegWeight,
maybe_pin: Option<String>,
) -> FixedSegIndex {
let seg =
self.layout
.add_fixed_seg_infringably(&mut recorder.layout_edit, from, to, weight);
if let Some(pin) = maybe_pin {
self.node_to_pinname
.insert(GenericNode::Primitive(seg.into()), pin);
}
seg
}
/// Adds a new polygon to the layout with an optional pin name.
///
/// Inserts the polygon into the layout and, if a pin name is provided, maps it to the created polygon's node.
pub fn add_poly_with_nodes(
&mut self,
recorder: &mut BoardEdit,
weight: PolyWeight,
maybe_pin: Option<String>,
nodes: &[PrimitiveIndex],
) -> GenericIndex<PolyWeight> {
let (poly, apex) =
self.layout
.add_poly_with_nodes(&mut recorder.layout_edit, weight, nodes);
if let Some(pin) = maybe_pin {
for i in nodes {
self.node_to_pinname
.insert(GenericNode::Primitive(*i), pin.clone());
}
self.node_to_pinname
.insert(GenericNode::Primitive(apex.into()), pin.clone());
self.node_to_pinname
.insert(GenericNode::Compound(poly.into()), pin);
}
poly
}
/// Returns the pin name associated with a given node.
pub fn node_pinname(&self, node: &NodeIndex) -> Option<&String> {
self.node_to_pinname.get(node)
}
/// Returns the apex belonging to a given pin, if any
///
/// Warning: this is very slow.
pub fn pin_apex(&self, pin: &str, layer: usize) -> Option<(FixedDotIndex, Point)> {
self.node_to_pinname
.iter()
.filter(|(_, node_pin)| *node_pin == pin)
// this should only ever return one result
.find_map(|(node, _)| self.layout().apex_of_compoundless_node(*node, layer))
}
/// Returns the band name associated with a given band.
pub fn band_bandname(&self, band: &BandUid) -> Option<&BandName> {
self.band_bandname.get_by_left(band)
}
/// Returns the unique id associated with a given band name.
pub fn bandname_band(&self, bandname: &BandName) -> Option<&BandUid> {
self.band_bandname.get_by_right(bandname)
}
/// Creates band between the two nodes
pub fn try_set_band_between_nodes(
&mut self,
recorder: &mut BoardDataEdit,
source: FixedDotIndex,
target: FixedDotIndex,
band: BandUid,
) -> bool {
let source_pinname = self
.node_pinname(&GenericNode::Primitive(source.into()))
.unwrap()
.to_string();
let target_pinname = self
.node_pinname(&GenericNode::Primitive(target.into()))
.unwrap()
.to_string();
let bandname = BandName::from((source_pinname, target_pinname));
if self.band_bandname.get_by_right(&bandname).is_some() {
false
} else {
let ep = EtchedPath {
end_points: (source, target).into(),
};
self.bands_by_id.insert(ep, band);
self.band_bandname.insert(band, bandname.clone());
recorder.bands.insert(bandname, (None, Some(band)));
true
}
}
pub fn band_between_nodes(
&self,
source: FixedDotIndex,
target: FixedDotIndex,
) -> Option<BandUid> {
let source_pinname = self
.node_pinname(&GenericNode::Primitive(source.into()))
.unwrap();
let target_pinname = self
.node_pinname(&GenericNode::Primitive(target.into()))
.unwrap();
self.band_between_pins(source_pinname, target_pinname)
}
/// Removes the band between the two nodes.
pub fn remove_band_between_nodes(
&mut self,
recorder: &mut BoardEdit,
source: FixedDotIndex,
target: FixedDotIndex,
) -> Result<(), DrawingException> {
let ep = EtchedPath {
end_points: (source, target).into(),
};
let source_pinname = self
.node_pinname(&GenericNode::Primitive(source.into()))
.unwrap()
.to_string();
let target_pinname = self
.node_pinname(&GenericNode::Primitive(target.into()))
.unwrap()
.to_string();
let bandname = BandName::from((source_pinname, target_pinname));
let maybe_band = self.band_bandname.get_by_right(&bandname).cloned();
self.band_bandname.remove_by_right(&bandname);
if let Some((_, uid)) = self.bands_by_id.remove_by_left(&ep) {
let (from, _) = uid.into();
self.layout.remove_band(&mut recorder.layout_edit, from)?;
}
recorder
.data_edit
.bands
.insert(bandname, (maybe_band, None));
Ok(())
}
/// Removes the band between two nodes given by [`BandUid`].
pub fn remove_band_by_id(
&mut self,
recorder: &mut BoardEdit,
uid: BandUid,
) -> Result<(), DrawingException> {
if let Some(ep) = self.bands_by_id.get_by_right(&uid) {
let (source, target) = ep.end_points.into();
self.remove_band_between_nodes(recorder, source, target)?;
}
Ok(())
}
/// Finds a band between two pin names.
pub fn band_between_pins(&self, pinname1: &str, pinname2: &str) -> Option<BandUid> {
self.band_bandname
// note: it doesn't matter in what order pinnames are given, the constructor sorts them
.get_by_right(&BandName::from((
pinname1.to_string(),
pinname2.to_string(),
)))
.copied()
}
pub fn apply_edit(&mut self, edit: &BoardEdit) {
for (bandname, (maybe_old_band_uid, ..)) in &edit.data_edit.bands {
if maybe_old_band_uid.is_some() {
self.band_bandname.remove_by_right(bandname);
}
}
self.layout_mut().apply(&edit.layout_edit);
for (bandname, (.., maybe_new_band_uid)) in &edit.data_edit.bands {
if let Some(band_uid) = maybe_new_band_uid {
self.band_bandname.insert(*band_uid, bandname.clone());
}
}
}
/// Returns the mesadata associated with the layout's drawing rules.
pub fn mesadata(&self) -> &M {
self.layout.drawing().rules()
}
}