add ports

This commit is contained in:
Robert 2023-07-02 13:53:56 +02:00
parent dc966782b5
commit 89fcef5619
5 changed files with 52 additions and 0 deletions

View file

@ -1,6 +1,7 @@
add_library(libnetsim STATIC
"src/Device.cpp"
"src/Network.cpp"
"src/Port.cpp"
)
target_include_directories(libnetsim PUBLIC

View file

@ -5,6 +5,8 @@
#include <string>
#include <memory>
class Port;
class Device {
public:
friend std::ostream& operator<<(std::ostream& os, const Device& device);
@ -24,6 +26,9 @@ public:
private:
void parseAndSetMac(const std::string& macAddress);
private:
std::shared_ptr<Port> port;
public:
uint8_t macAddress[6];
};

20
netsim/include/Port.hpp Normal file
View file

@ -0,0 +1,20 @@
#pragma once
#include <memory>
#include <vector>
class Device;
class Port {
public:
Port();
void Connect(std::shared_ptr<Port> port);
void Send(const std::vector<uint8_t>& data);
std::vector<uint8_t> Receive();
private:
std::vector<uint8_t> data;
std::weak_ptr<Port> connection;
};

View file

@ -3,7 +3,10 @@
#include <sstream>
#include <iostream>
#include "Port.hpp"
Device::Device(const std::string& macAddress) {
port = std::make_shared<Port>();
parseAndSetMac(macAddress);
}

23
netsim/src/Port.cpp Normal file
View file

@ -0,0 +1,23 @@
#include "Port.hpp"
Port::Port()
{
}
void Port::Connect(std::shared_ptr<Port> port) {
this->connection = std::weak_ptr<Port>(port);
}
void Port::Send(const std::vector<uint8_t>& data) {
this->data = data;
}
std::vector<uint8_t> Port::Receive() {
if (this->connection.expired()) {
return {};
}
std::shared_ptr<Port> other_port = connection.lock();
return other_port->data;
}