Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
3d0665282d15777272cd70d4e30177d2e50b8a14
[simgrid.git] / src / surf / surf_private.h
1 /*      $Id$     */
2
3 /* Copyright (c) 2004 Arnaud Legrand. All rights reserved.                  */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef _SURF_SURF_PRIVATE_H
9 #define _SURF_SURF_PRIVATE_H
10
11 #include "surf/surf.h"
12 #include "surf/maxmin.h"
13 #include "surf/trace_mgr.h"
14 #include "xbt/log.h"
15 #include "surf/surf_parse_private.h"
16
17 #define NO_MAX_DURATION -1.0
18
19 typedef enum {
20   SURF_NETWORK_LINK_ON = 1,     /* Ready        */
21   SURF_NETWORK_LINK_OFF = 0     /* Running      */
22 } e_surf_network_link_state_t;
23
24 typedef enum {
25   SURF_NETWORK_LINK_SHARED = 1,
26   SURF_NETWORK_LINK_FATPIPE = 0
27 } e_surf_network_link_sharing_policy_t;
28
29 typedef struct surf_resource_private {
30   int (*resource_used) (void *resource_id);
31   /* Share the resources to the actions and return in hom much time
32      the next action may terminate */
33   double (*share_resources) (double now);
34   /* Update the actions' state */
35   void (*update_actions_state) (double now, double delta);
36   void (*update_resource_state) (void *id, tmgr_trace_event_t event_type,
37                                  double value);
38   void (*finalize) (void);
39 } s_surf_resource_private_t;
40
41 /* #define pub2priv(r) ((surf_resource_private_t) ((char *)(r) -(sizeof(struct surf_resource_private_part)))) */
42 /* #define priv2pub(r) ((void *) ((char *)(r) +(sizeof(struct surf_resource_private_part)))) */
43
44 double generic_maxmin_share_resources(xbt_swag_t running_actions,
45                                       size_t offset);
46 double generic_maxmin_share_resources2(xbt_swag_t running_actions,
47                                        size_t offset,
48                                        lmm_system_t sys);
49
50 /* Generic functions common to all ressources */
51 e_surf_action_state_t surf_action_get_state(surf_action_t action);
52 void surf_action_free(surf_action_t * action);
53 void surf_action_change_state(surf_action_t action,
54                               e_surf_action_state_t state);
55 void surf_action_set_data(surf_action_t action,
56                           void *data);
57 FILE *surf_fopen(const char *name, const char *mode);
58
59 static _XBT_INLINE void surf_double_update(double *variable, double value) 
60 {
61   *variable -= value;
62   if(*variable< 0.00001) *variable = 0.0;
63 }
64 extern lmm_system_t maxmin_system;
65 extern tmgr_history_t history;
66 extern xbt_dynar_t surf_path;
67
68 #endif                          /* _SURF_SURF_PRIVATE_H */