Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Start working on a trace replayer in GRAS (to replay it on real platforms)
[simgrid.git] / examples / gras / replay / workload.h
1 /* Copyright (c) 2009 Da SimGrid Team.  All rights reserved.                */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 /* This datatype stores a a trace as produced by examples/simdag/dax, or other means
7  * It can be replayed in simulation with examples/msg/actions or on a real platform with
8  * examples/gras/replay.
9  */
10
11 #ifndef XBT_WORKLOAD_H_
12 #define XBT_WORKLOAD_H_
13
14 #include "xbt/misc.h"
15 #include "xbt/dynar.h"
16
17 /* kind of elements */
18 #define XBT_WORKLOAD_COMPUTE 0
19 #define XBT_WORKLOAD_SEND 1
20 #define XBT_WORKLOAD_RECV 2
21
22 /* one command to do */
23 typedef struct {
24   char *who;      /* the slave who should do it */
25   char *comment;  /* a comment placed at the end of the line, if any */
26   int action;     /* 0: compute(darg flops); 1: send darg bytes to strarg; 2: recv darg bytes from strarg */
27   double date;    /* when it occured when the trace was captured */
28   double d_arg;   /* double argument, if any */
29   char * str_arg; /* string argument, if any */
30 } s_xbt_workload_elm_t, *xbt_workload_elm_t;
31
32 XBT_PUBLIC(xbt_workload_elm_t) xbt_workload_elm_parse(char *line);
33 XBT_PUBLIC(void) xbt_workload_elm_free(xbt_workload_elm_t cmd);
34 XBT_PUBLIC(void) xbt_workload_elm_free_voidp(void*cmd);
35 XBT_PUBLIC(char *)xbt_workload_elm_to_string(xbt_workload_elm_t cmd);
36 XBT_PUBLIC(int) xbt_workload_elm_cmp_who_date(const void* _c1, const void* _c2);
37 XBT_PUBLIC(void) xbt_workload_sort_who_date(xbt_dynar_t c);
38 XBT_PUBLIC(xbt_dynar_t) xbt_workload_parse_file(char *filename);
39
40 #endif /* XBT_WORKLOAD_H_ */