Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
693e06abf344845bd90f34f2685e5255b24f94ba
[simgrid.git] / src / include / surf / trace_mgr.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_TMGR_H
9 #define _SURF_TMGR_H
10
11 #include "xbt/heap.h"
12 #include "xbt/dynar.h"
13 #include "surf/maxmin.h"
14 #include "surf/datatypes.h"
15
16 /* Creation functions */
17 XBT_PUBLIC(tmgr_history_t) tmgr_history_new(void);
18 XBT_PUBLIC(void) tmgr_history_free(tmgr_history_t history);
19
20 XBT_PUBLIC(tmgr_trace_t) tmgr_trace_new(const char *filename);
21 XBT_PUBLIC(tmgr_trace_t) tmgr_trace_new_from_string(const char *id,
22                                                     const char *input,
23                                                     double periodicity);
24 XBT_PUBLIC(tmgr_trace_t) tmgr_empty_trace_new(void);
25 XBT_PUBLIC(void) tmgr_trace_free(tmgr_trace_t trace);
26
27 XBT_PUBLIC(tmgr_trace_event_t) tmgr_history_add_trace(tmgr_history_t history,
28                                                       tmgr_trace_t trace,
29                                                       double start_time,
30                                                       unsigned int offset,
31                                                       void *model);
32
33 /* Access functions */
34 XBT_PUBLIC(double) tmgr_history_next_date(tmgr_history_t history);
35 XBT_PUBLIC(tmgr_trace_event_t) tmgr_history_get_next_event_leq(tmgr_history_t
36                                                                history,
37                                                                double date,
38                                                                double *value,
39                                                                void **model);
40
41 XBT_PUBLIC(void) tmgr_finalize(void);
42
43 #endif /* _SURF_TMGR_H */