]> AND Public Git Repository - simgrid.git/blobdiff - src/surf/ns3/ns3_interface.h
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://github.com/mpoquet/simgrid
[simgrid.git] / src / surf / ns3 / ns3_interface.h
index bbcb2196cf6d527c4e77ad5ddce2c7274dacc3f4..187deb594da7a7f01aadc6b38ce8336c20c1540d 100644 (file)
@@ -1,5 +1,4 @@
-/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2007-2016. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 #include "xbt/dynar.h"
 #include "xbt/misc.h"
 #include "xbt/sysdep.h"
+#include <xbt/Extendable.hpp>
 
-typedef enum {
-       NS3_NETWORK_ELEMENT_NULL = 0,    /* NULL */
-       NS3_NETWORK_ELEMENT_HOST,       /* host type */
-       NS3_NETWORK_ELEMENT_ROUTER,     /* router type */
-       NS3_NETWORK_ELEMENT_AS,         /* AS type */
-} e_ns3_network_element_type_t;
-
-typedef struct ns3_nodes{
-       int node_num;
-       e_ns3_network_element_type_t type;
-       void * data;
-}s_ns3_nodes_t, *ns3_nodes_t;
-
-#ifdef __cplusplus
-extern "C" {
-#endif
+#include <simgrid/s4u/host.hpp>
+#include <surf/surf_routing.h>
 
-XBT_PUBLIC(void *) ns3_add_host(char * id);
-XBT_PUBLIC(void *) ns3_add_router(char * id);
-XBT_PUBLIC(void *) ns3_add_AS(char * id);
-XBT_PUBLIC(void) ns3_add_cluster(char * id);
-#ifdef __cplusplus
+namespace simgrid{
+  namespace surf{
+    class NetworkNS3Action;
+  }
 }
-#endif
+
+class HostNs3 {
+public:
+  static simgrid::xbt::Extension<simgrid::s4u::Host, HostNs3> EXTENSION_ID;
+
+  explicit HostNs3();
+  int node_num;
+};
+
+SG_BEGIN_DECL()
+
+XBT_PUBLIC(void)   ns3_initialize(const char* TcpProtocol);
+XBT_PUBLIC(void)   ns3_create_flow(const char* a,const char *b,double start,u_int32_t TotalBytes,simgrid::surf::NetworkNS3Action * action);
+XBT_PUBLIC(void)   ns3_simulator(double maxSeconds);
+XBT_PUBLIC(void *) ns3_add_router(const char * id);
+XBT_PUBLIC(void)   ns3_add_link(int src, int dst, char * bw,char * lat);
+XBT_PUBLIC(void) ns3_add_cluster(const char* id, char* bw, char* lat);
+
+inline HostNs3* ns3_find_host(const char* id)
+{
+  sg_host_t host = sg_host_by_name(id);
+  if (host == nullptr)
+    return nullptr;
+  else
+    return host->extension<HostNs3>();
+}
+
+SG_END_DECL()
 
 #endif