add ports
This commit is contained in:
parent
dc966782b5
commit
89fcef5619
|
@ -1,6 +1,7 @@
|
|||
add_library(libnetsim STATIC
|
||||
"src/Device.cpp"
|
||||
"src/Network.cpp"
|
||||
"src/Port.cpp"
|
||||
)
|
||||
|
||||
target_include_directories(libnetsim PUBLIC
|
||||
|
|
|
@ -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
20
netsim/include/Port.hpp
Normal 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;
|
||||
};
|
|
@ -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
23
netsim/src/Port.cpp
Normal 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;
|
||||
}
|
Loading…
Reference in a new issue