Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Overhaul of NS3 support in SimGrid
[simgrid.git] / src / surf / network_gtnets.hpp
1 /* Copyright (c) 2013-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "network.hpp"
8
9 #ifndef NETWORK_GTNETS_HPP_
10 #define NETWORK_GTNETS_HPP_
11
12 #include "simulator.h"          // Definitions for the Simulator Object
13 #include "node.h"               // Definitions for the Node Object
14 #include "linkp2p.h"            // Definitions for point-to-point link objects
15 #include "ratetimeparse.h"      // Definitions for Rate and Time objects
16 #include "application-tcpserver.h"      // Definitions for TCPServer application
17 #include "application-tcpsend.h"        // Definitions for TCP Sending application
18 #include "tcp-tahoe.h"          // Definitions for TCP Tahoe
19 #include "tcp-reno.h"
20 #include "tcp-newreno.h"
21 #include "event.h"
22 #include "routing-manual.h"
23 #include "red.h"
24
25 xbt_dict_t network_card_ids;
26
27 /***********
28  * Classes *
29  ***********/
30 class NetworkGTNetsModel;
31 typedef NetworkGTNetsModel *NetworkGTNetsModelPtr;
32
33 class NetworkGTNetsAction;
34 typedef NetworkGTNetsAction *NetworkGTNetsActionPtr;
35
36 class NetworkGTNetsActionLmm;
37 typedef NetworkGTNetsActionLmm *NetworkGTNetsActionLmmPtr;
38
39 /*********
40  * Model *
41  *********/
42 class NetworkGTNetsModel : public NetworkCm02Model {
43 public:
44   NetworkGTNetsModel() : NetworkCm02Model("constant time network") {};
45   int addLink(int id, double bandwidth, double latency);
46   int addOnehop_route(int src, int dst, int link);
47   int addRoute(int src, int dst, int *links, int nlink);
48   int addRouter(int id);
49   int createFlow(int src, int dst, long datasize, void *metadata);
50   double getTimeToNextFlowCompletion();
51   int runUntilNextFlowCompletion(void ***metadata,
52                                      int *number_of_flows);
53   int run(double deltat);
54   // returns the total received by the TCPServer peer of the given action
55   double gtNetsGetFlowRx(void *metadata);
56   void createGTNetsTopology();
57   void printTopology();
58   void setJitter(double);
59   void setJitterSeed(int);
60 private:
61   void addNodes();
62   void nodeConnect();
63
64   bool nodeInclude(int);
65   bool linkInclude(int);
66   Simulator *p_sim;
67   GTNETS_Topology *p_topo;
68   RoutingManual *p_rm;
69   REDQueue *p_redQueue;
70   int m_nnode;
71   int m_isTopology;
72   int m_nflow;
73   double m_jitter;
74   int m_jitterSeed;
75    map<int, Uniform*> p_uniformJitterGenerator;
76
77    map<int, TCPServer*> p_gtnetsServers;
78    map<int, TCPSend*> p_gtnetsClients;
79    map<int, Linkp2p*> p_gtnetsLinks_;
80    map<int, Node*> p_gtnetsNodes;
81    map<void*, int> p_gtnetsActionToFlow;
82
83    map <int, void*> p_gtnetsMetadata;
84
85    // From Topology
86    int m_nodeID;
87    map<int, GTNETS_Link*> p_links;
88    vector<GTNETS_Node*> p_nodes;
89    map<int, int> p_hosts;      //hostid->nodeid
90    set<int > p_routers;
91 };
92
93 /************
94  * Resource *
95  ************/
96 class NetworkGTNetsLink : public NetworkCm02Link {
97 public:
98   NetworkGTNetsLink(NetworkGTNetsModelPtr model, const char* name, double bw, double lat, xbt_dict_t properties);
99   /* Using this object with the public part of
100   model does not make sense */
101   double m_bwCurrent;
102   double m_latCurrent;
103   int m_id;
104 };
105
106 /**********
107  * Action *
108  **********/
109 class NetworkGTNetsAction : public NetworkCm02Action {
110 public:
111   NetworkGTNetsAction(NetworkGTNetsModelPtr model, double latency){};
112
113   double m_latency;
114   double m_latCurrent;
115   int m_lastRemains;
116   lmm_variable_t p_variable;
117   double m_rate;
118   int m_suspended;
119   RoutingEdgePtr src;
120   RoutingEdgePtr dst;
121 };
122
123 #endif /* NETWORK_GTNETS_HPP_ */