powerio-tx 0.10.0

Compiler infrastructure for power systems: parse, convert, validate, and lower grid models
Documentation
//! #440: `BalancedNetwork` is a thin handle over one `Arc<BalancedNetworkTables>`,
//! so cloning it is a refcount bump, never a deep copy. One test per binary so
//! no parallel test inflates the count.

use std::alloc::{GlobalAlloc, Layout, System};
use std::sync::atomic::{AtomicUsize, Ordering};

use powerio_tx::{BalancedNetwork, Branch, Bus, BusId, BusType};

struct CountingAlloc;

static ALLOCATIONS: AtomicUsize = AtomicUsize::new(0);

unsafe impl GlobalAlloc for CountingAlloc {
    unsafe fn alloc(&self, layout: Layout) -> *mut u8 {
        ALLOCATIONS.fetch_add(1, Ordering::Relaxed);
        unsafe { System.alloc(layout) }
    }

    unsafe fn dealloc(&self, pointer: *mut u8, layout: Layout) {
        unsafe { System.dealloc(pointer, layout) };
    }

    unsafe fn realloc(&self, pointer: *mut u8, layout: Layout, new_size: usize) -> *mut u8 {
        ALLOCATIONS.fetch_add(1, Ordering::Relaxed);
        unsafe { System.realloc(pointer, layout, new_size) }
    }
}

#[global_allocator]
static ALLOCATOR: CountingAlloc = CountingAlloc;

#[test]
fn clone_is_zero_allocation() {
    let buses = vec![
        Bus::new(BusId(1), BusType::Ref, 115.0),
        Bus::new(BusId(2), BusType::Pq, 115.0),
    ];
    let branches = vec![Branch::new(BusId(1), BusId(2), 0.01, 0.1)];
    let network = BalancedNetwork::in_memory("clone-alloc", 100.0, buses, branches);

    let before = ALLOCATIONS.load(Ordering::Relaxed);
    let cloned = network.clone();
    let after = ALLOCATIONS.load(Ordering::Relaxed);

    assert_eq!(
        after - before,
        0,
        "BalancedNetwork::clone allocated; it should only bump the shared \
         table's reference count"
    );
    drop(cloned);
    drop(network);
}