Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
36c8aa7c78dc5129894e2345fabbb3efd798ac20
[simgrid.git] / src / surf / ns3 / ns3_interface.h
1 /* Copyright (c) 2007-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 #ifndef _NS3_INTERFACE_H
8 #define _NS3_INTERFACE_H
9
10 #include "xbt/log.h"
11 #include "xbt/dynar.h"
12 #include "xbt/misc.h"
13 #include "xbt/sysdep.h"
14
15 #include <simgrid/host.h>
16 #include <surf/surf_routing.h>
17
18 typedef enum {
19   NS3_NETWORK_ELEMENT_NULL = 0,    /* NULL */
20   NS3_NETWORK_ELEMENT_HOST,      /* host type */
21   NS3_NETWORK_ELEMENT_ROUTER,     /* router type */
22   NS3_NETWORK_ELEMENT_AS,        /* AS type */
23 } e_ns3_network_element_type_t;
24
25 typedef struct ns3_nodes{
26   int node_num;
27   e_ns3_network_element_type_t type;
28   void * data;
29 }s_ns3_nodes_t, *ns3_nodes_t;
30
31 SG_BEGIN_DECL()
32
33 XBT_PUBLIC(int)    ns3_finalize(void);
34 XBT_PUBLIC(int)    ns3_initialize(const char* TcpProtocol);
35 XBT_PUBLIC(int)    ns3_create_flow(const char* a,const char *b,double start,u_int32_t TotalBytes,void * action);
36 XBT_PUBLIC(void)   ns3_simulator(double min);
37 XBT_PUBLIC(double) ns3_time(void);
38 XBT_PUBLIC(void*)  ns3_get_socket_action(void *socket);
39 XBT_PUBLIC(double) ns3_get_socket_remains(void *socket);
40 XBT_PUBLIC(double) ns3_get_socket_sent(void *socket);
41 XBT_PUBLIC(char)   ns3_get_socket_is_finished(void *socket);
42 XBT_PUBLIC(void *) ns3_add_host(const char * id);
43 XBT_PUBLIC(void *) ns3_add_host_cluster(const char * id);
44 XBT_PUBLIC(void *) ns3_add_router(const char * id);
45 XBT_PUBLIC(void *) ns3_add_AS(const char * id);
46 XBT_PUBLIC(void) ns3_add_link(int src, e_ns3_network_element_type_t type_src,
47                 int dst, e_ns3_network_element_type_t type_dst,
48                 char * bw,char * lat);
49 XBT_PUBLIC(void) ns3_end_platform(void);
50 XBT_PUBLIC(void) ns3_add_cluster(char * bw,char * lat,const char *id);
51
52 XBT_INLINE
53 ns3_nodes_t ns3_find_host(const char* id)
54 {
55   sg_host_t host = sg_host_by_name(id);
56   if (host == nullptr)
57     return nullptr;
58   else
59     return (ns3_nodes_t) sg_host_get_extension(host, NS3_HOST_LEVEL);
60 }
61
62 SG_END_DECL()
63
64 #endif