Files
@ 4469bd99f7a9
Branch filter:
Location: CSY/reowolf/src/runtime/experimental/api.rs
4469bd99f7a9
6.9 KiB
application/rls-services+xml
one buffer, multiple ranges
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | use crate::common::*;
use crate::runtime::endpoint::Endpoint;
use crate::runtime::endpoint::EndpointExt;
use crate::runtime::endpoint::EndpointInfo;
use std::net::SocketAddr;
use std::sync::Arc;
pub enum Polarity {
In,
Out,
}
pub enum Coupling {
Active,
Passive,
}
pub struct Binding {
pub coupling: Coupling,
pub polarity: Polarity,
pub addr: SocketAddr,
}
impl From<(Coupling, Polarity, SocketAddr)> for Binding {
fn from((coupling, polarity, addr): (Coupling, Polarity, SocketAddr)) -> Self {
Self { coupling, polarity, addr }
}
}
pub struct MsgBuffer<'a> {
slice: &'a mut [u8],
len: usize,
}
impl MsgBuffer<'_> {
pub fn clear(&mut self) {
self.len = 0;
}
pub fn write_msg(&mut self, r: &[u8]) -> std::io::Result<()> {
use std::io::Write;
self.slice.write_all(r)?;
self.len = r.len();
Ok(())
}
pub fn read_msg(&self) -> &[u8] {
&self.slice[0..self.len]
}
}
impl<'a> From<&'a mut [u8]> for MsgBuffer<'a> {
fn from(slice: &'a mut [u8]) -> Self {
Self { slice, len: 0 }
}
}
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
#[repr(C)]
pub struct Port(pub u32);
impl From<InPort> for Port {
fn from(x: InPort) -> Self {
x.0
}
}
impl From<OutPort> for Port {
fn from(x: OutPort) -> Self {
x.0
}
}
pub struct InPort(Port);
pub struct OutPort(Port);
#[derive(Default)]
struct ChannelIndexStream {
next: u32,
}
impl ChannelIndexStream {
fn next(&mut self) -> u32 {
self.next += 1;
self.next - 1
}
}
enum Connector {
Connecting(Connecting),
Connected(Connected),
}
#[derive(Default)]
pub struct Connecting {
bindings: Vec<Binding>, // invariant: no more than std::u32::MAX entries
}
trait Binds<T> {
fn bind(&mut self, coupling: Coupling, addr: SocketAddr) -> T;
}
impl Binds<InPort> for Connecting {
fn bind(&mut self, coupling: Coupling, addr: SocketAddr) -> InPort {
self.bindings.push((coupling, Polarity::In, addr).into());
let pid: u32 = (self.bindings.len() - 1).try_into().expect("Port ID overflow!");
InPort(Port(pid))
}
}
impl Binds<OutPort> for Connecting {
fn bind(&mut self, coupling: Coupling, addr: SocketAddr) -> OutPort {
self.bindings.push((coupling, Polarity::Out, addr).into());
let pid: u32 = (self.bindings.len() - 1).try_into().expect("Port ID overflow!");
OutPort(Port(pid))
}
}
impl Connecting {
pub fn connect(&mut self, _timeout: Option<Duration>) -> Result<Connected, ()> {
let controller_id = 42;
let channel_index_stream = ChannelIndexStream::default();
let native_ports = (0..self.bindings.len()).map(|x| Port(x as u32)).collect();
self.bindings.clear();
Ok(Connected {
controller_id,
channel_index_stream,
components: vec![],
endpoint_exts: vec![],
native_ports,
})
}
}
pub struct Protocol;
impl Protocol {
pub fn parse(_pdl_text: &[u8]) -> Result<Self, ()> {
Ok(Protocol)
}
}
struct ComponentExt {
protocol: Arc<Protocol>,
ports: HashSet<Port>,
name: Vec<u8>,
}
pub struct Connected {
native_ports: HashSet<Port>,
controller_id: ControllerId,
channel_index_stream: ChannelIndexStream,
endpoint_exts: Vec<EndpointExt>, // invaraint
components: Vec<ComponentExt>,
}
impl Connected {
pub fn new_channel(&mut self) -> (OutPort, InPort) {
assert!(self.endpoint_exts.len() <= std::u32::MAX as usize - 2);
let ports =
[Port(self.endpoint_exts.len() as u32 - 1), Port(self.endpoint_exts.len() as u32)];
let channel_id = ChannelId {
controller_id: self.controller_id,
channel_index: self.channel_index_stream.next(),
};
let [e0, e1] = Endpoint::new_memory_pair();
self.endpoint_exts.push(EndpointExt {
info: EndpointInfo { channel_id, polarity: Putter },
endpoint: e0,
});
self.endpoint_exts.push(EndpointExt {
info: EndpointInfo { channel_id, polarity: Getter },
endpoint: e1,
});
for p in ports.iter() {
self.native_ports.insert(Port(p.0));
}
(OutPort(ports[0]), InPort(ports[1]))
}
pub fn new_component(
&mut self,
protocol: &Arc<Protocol>,
name: Vec<u8>,
moved_ports: &[Port],
) -> Result<(), ()> {
let moved_ports = moved_ports.iter().copied().collect();
if !self.native_ports.is_superset(&moved_ports) {
return Err(());
}
self.native_ports.retain(|e| !moved_ports.contains(e));
self.components.push(ComponentExt { ports: moved_ports, protocol: protocol.clone(), name });
// TODO add a singleton machine
Ok(())
}
pub fn sync_set(&mut self, _inbuf: &mut [u8], _ops: &mut [PortOpRs]) -> Result<(), ()> {
Ok(())
}
pub fn sync_subsets(
&mut self,
_inbuf: &mut [u8],
_ops: &mut [PortOpRs],
bit_subsets: &[&[usize]],
) -> Result<usize, ()> {
for (batch_index, bit_subset) in bit_subsets.iter().enumerate() {
println!("batch_index {:?}", batch_index);
use super::bits::BitChunkIter;
let chunk_iter = bit_subset.iter().copied();
for index in BitChunkIter::new(chunk_iter) {
println!(" index {:?}", index);
}
}
Ok(0)
}
}
macro_rules! bitslice {
($( $num:expr ),*) => {{
&[0 $( | (1usize << $num) )*]
}};
}
#[test]
fn api_new_test() {
let mut c = Connecting::default();
let net_out: OutPort = c.bind(Coupling::Active, "127.0.0.1:8000".parse().unwrap());
let net_in: InPort = c.bind(Coupling::Active, "127.0.0.1:8001".parse().unwrap());
let proto_0 = Arc::new(Protocol::parse(b"").unwrap());
let mut c = c.connect(None).unwrap();
let (mem_out, mem_in) = c.new_channel();
let mut inbuf = [0u8; 64];
c.new_component(&proto_0, b"sync".to_vec(), &[net_in.into(), mem_out.into()]).unwrap();
let mut ops = [
PortOpRs::In { msg_range: None, port: &mem_in },
PortOpRs::Out { msg: b"hey", port: &net_out, optional: false },
PortOpRs::Out { msg: b"hi?", port: &net_out, optional: true },
PortOpRs::Out { msg: b"yo!", port: &net_out, optional: false },
];
c.sync_set(&mut inbuf, &mut ops).unwrap();
c.sync_subsets(&mut inbuf, &mut ops, &[bitslice! {0,1,2}]).unwrap();
}
#[repr(C)]
pub struct PortOp {
msgbuf: *mut u8,
buflen: usize,
msglen: usize,
optional: bool,
}
pub enum PortOpRs<'a> {
In { msg_range: Option<Range<usize>>, port: &'a InPort },
Out { msg: &'a [u8], port: &'a OutPort, optional: bool },
}
pub struct InPortOp<'a> {
msg_range: Option<Range<usize>>, // written by sync
port: &'a InPort,
}
pub struct OutPortOp<'a> {
msg: &'a [u8],
port: &'a OutPort,
optional: bool,
}
|