forked from cengwins/ahc_tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
cengwins
committed
Jan 14, 2022
1 parent
ed9ca69
commit 370e7d4
Showing
1 changed file
with
141 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
import os | ||
import sys | ||
import time | ||
import random | ||
from enum import Enum | ||
import threading | ||
|
||
sys.path.insert(0, os.getcwd()) | ||
|
||
import networkx as nx | ||
import matplotlib.pyplot as plt | ||
|
||
from ahc.Ahc import ComponentModel, Event, ConnectorTypes, Topology | ||
from ahc.Ahc import ComponentRegistry | ||
from ahc.Ahc import GenericMessagePayload, GenericMessageHeader, GenericMessage, EventTypes | ||
from Channels.Channels import P2PFIFOPerfectChannel | ||
#from LinkLayers.GenericLinkLayer import LinkLayer | ||
#from NetworkLayers.AllSeeingEyeNetworkLayer import AllSeingEyeNetworkLayer | ||
from ahc.Routing.AODV.AODVLinkLayerComponent import AODVLinkLayerComponent | ||
from ahc.Routing.AODV.AODVNetworkLayerComponent import AODVNetworkLayerComponent | ||
from ahc.Routing.AODV.AODVApplicationLayerComponent import AODVApplicationLayerComponent | ||
|
||
registry = ComponentRegistry() | ||
|
||
class AODVNode(ComponentModel): | ||
def on_init(self, eventobj: Event): | ||
self.lock.acquire() | ||
print(f"Initializing {self.componentname}.{self.componentinstancenumber}") | ||
self.lock.release() | ||
|
||
def on_message_from_top(self, eventobj: Event): | ||
#print(f"On MFRT {self.componentname}.{self.componentinstancenumber}") | ||
self.send_down(Event(self, EventTypes.MFRT, eventobj.eventcontent)) | ||
|
||
def on_message_from_bottom(self, eventobj: Event): | ||
#print(f"On MFRB {self.componentname}.{self.componentinstancenumber}") | ||
self.send_up(Event(self, EventTypes.MFRB, eventobj.eventcontent)) | ||
|
||
def __init__(self, componentname, componentid): | ||
super(AODVNode,self).__init__(componentname, componentid) | ||
self.lock = threading.Lock() | ||
# SUBCOMPONENTS | ||
self.applayer = AODVApplicationLayerComponent(AODVApplicationLayerComponent.__name__, componentid) | ||
self.netlayer = AODVNetworkLayerComponent(AODVNetworkLayerComponent.__name__, componentid) | ||
self.linklayer = AODVLinkLayerComponent(AODVLinkLayerComponent.__name__, componentid) | ||
|
||
# CONNECTIONS AMONG SUBCOMPONENTS | ||
self.applayer.connect_me_to_component(ConnectorTypes.DOWN, self.netlayer) | ||
self.netlayer.connect_me_to_component(ConnectorTypes.UP, self.applayer) | ||
|
||
self.netlayer.connect_me_to_component(ConnectorTypes.DOWN, self.linklayer) | ||
self.linklayer.connect_me_to_component(ConnectorTypes.UP, self.netlayer) | ||
|
||
self.linklayer.connect_me_to_component(ConnectorTypes.DOWN, self) | ||
self.connect_me_to_component(ConnectorTypes.UP, self.linklayer) | ||
|
||
#self.netlayer.connect_me_to_component(ConnectorTypes.DOWN, self) | ||
#self.connect_me_to_component(ConnectorTypes.UP, self.netlayer) | ||
|
||
def sendPackageToNode(self, nodeID, msg): | ||
#print(f"On sendPackageToNode {self.componentname}.{self.componentinstancenumber}") | ||
self.applayer.sendPackageToNode(nodeID,msg) | ||
|
||
three_edges = [ | ||
#(0, 1, {"weight": 1}) | ||
#,(0, 2, {"weight": 1}) | ||
#,(1, 3, {"weight": 1}) | ||
#,(2, 4, {"weight": 1}) | ||
(4, 5, {"weight": 1}) | ||
#,(3, 5, {"weight": 1}) | ||
,(1, 4, {"weight": 1}) | ||
#,(4, 6, {"weight": 1}) | ||
#,(4, 7, {"weight": 1}) | ||
#,(6, 8, {"weight": 1}) | ||
#,(8, 9, {"weight": 1}) | ||
#,(7, 10, {"weight": 1}) | ||
#,(7, 11, {"weight": 1}) | ||
#,(11, 13, {"weight": 1}) | ||
#,(2, 12, {"weight": 1}) | ||
#,(7, 9, {"weight": 1}) | ||
] | ||
|
||
six_edges = [ | ||
(0, 1, {"weight": 1}) | ||
,(0, 2, {"weight": 1}) | ||
,(1, 3, {"weight": 1}) | ||
,(2, 4, {"weight": 1}) | ||
,(4, 5, {"weight": 1}) | ||
#,(3, 5, {"weight": 1}) | ||
,(1, 4, {"weight": 1}) | ||
#,(4, 6, {"weight": 1}) | ||
#,(4, 7, {"weight": 1}) | ||
#,(6, 8, {"weight": 1}) | ||
#,(8, 9, {"weight": 1}) | ||
#,(7, 10, {"weight": 1}) | ||
#,(7, 11, {"weight": 1}) | ||
#,(11, 13, {"weight": 1}) | ||
#,(2, 12, {"weight": 1}) | ||
#,(7, 9, {"weight": 1}) | ||
] | ||
|
||
|
||
|
||
def main(): | ||
# G = nx.Graph() | ||
# G.add_nodes_from([1, 2]) | ||
# G.add_edges_from([(1, 2)]) | ||
# nx.draw(G, with_labels=True, font_weight='bold') | ||
# plt.draw() | ||
|
||
#Toueg's edges fixed size determined example | ||
G = nx.Graph() | ||
G.add_edges_from(three_edges) | ||
nx.draw(G, with_labels=True, font_weight='bold') | ||
topo = Topology() | ||
topo.construct_from_graph(G, AODVNode, P2PFIFOPerfectChannel) | ||
|
||
#Random graph | ||
#G = nx.random_geometric_graph(3, 0.5) | ||
#nx.draw(G, with_labels=True, font_weight='bold') | ||
#plt.draw() | ||
#topo = Topology() | ||
#topo.construct_from_graph(G, AODVNode, P2PFIFOPerfectChannel) | ||
|
||
|
||
topo.start() | ||
|
||
nodeX = topo.get_random_node() | ||
print(nodeX.componentinstancenumber) | ||
|
||
destNode = 5 | ||
|
||
print(f"Node {nodeX.componentinstancenumber} will sent data to {destNode}") | ||
|
||
nodeX.sendPackageToNode(destNode,"Hello") | ||
|
||
plt.show() # while (True): pass | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |