Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Solve white space conflicts
[simgrid.git] / src / include / simgrid / platf_interface.h
1 /* platf_interface.h - Internal interface to the SimGrid platforms          */
2
3 /* Copyright (c) 2004, 2005, 2006, 2007, 2009, 2010, 2011. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef SG_PLATF_INTERFACE_H
10 #define SG_PLATF_INTERFACE_H
11
12 #include "simgrid/platf.h" /* public interface */
13
14 /* Module management functions */
15 void sg_platf_init(void);
16 void sg_platf_exit(void);
17
18 /* Managing the parsing callbacks */
19
20 typedef void (*sg_platf_host_cb_t)(sg_platf_host_cbarg_t);
21 typedef void (*sg_platf_router_cb_t)(sg_platf_router_cbarg_t);
22 typedef void (*sg_platf_link_cb_t)(sg_platf_link_cbarg_t);
23 typedef void (*sg_platf_peer_cb_t)(sg_platf_peer_cbarg_t);
24 typedef void (*sg_platf_cluster_cb_t)(sg_platf_cluster_cbarg_t);
25 typedef void (*sg_platf_AS_begin_cb_t)(const char*id, const char*routing);
26
27 typedef void (*sg_platf_storage_cb_t)(sg_platf_storage_cbarg_t);
28 typedef void (*sg_platf_storage_type_cb_t)(sg_platf_storage_type_cbarg_t);
29 typedef void (*sg_platf_mount_cb_t)(sg_platf_mount_cbarg_t);
30 typedef void (*sg_platf_mstorage_cb_t)(sg_platf_mstorage_cbarg_t);
31
32 void sg_platf_host_add_cb(sg_platf_host_cb_t);
33 void sg_platf_router_add_cb(sg_platf_router_cb_t);
34 void sg_platf_link_add_cb(sg_platf_link_cb_t);
35 void sg_platf_peer_add_cb(sg_platf_peer_cb_t fct);
36 void sg_platf_cluster_add_cb(sg_platf_cluster_cb_t fct);
37 void sg_platf_postparse_add_cb(void_f_void_t fct);
38 void sg_platf_AS_begin_add_cb(sg_platf_AS_begin_cb_t fct);
39 void sg_platf_AS_end_add_cb(void_f_void_t fct);
40
41 void sg_platf_storage_add_cb(sg_platf_storage_cb_t fct);
42 void sg_platf_mstorage_add_cb(sg_platf_mstorage_cb_t fct);
43 void sg_platf_storage_type_add_cb(sg_platf_storage_type_cb_t fct);
44 void sg_platf_mount_add_cb(sg_platf_mount_cb_t fct);
45
46 /** \brief Pick the right models for CPU, net and workstation, and call their model_init_preparse
47  *
48  * Must be called within parsing/creating the environment (after the <config>s, if any, and before <AS> or friends such as <cluster>)
49  */
50 void surf_config_models_setup(void);
51
52 /* RngStream management functions */
53 typedef struct RngStream_InfoState *RngStream; //Not to have to include RngStream.h
54 void sg_platf_rng_stream_init(unsigned long seed[6]);
55 RngStream sg_platf_rng_stream_get(const char* id);
56
57 #endif                          /* SG_PLATF_INTERFACE_H */