]> AND Private Git Repository - loba.git/blob - options.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
ajout de 3 fichiers pour lancer des expés
[loba.git] / options.h
1 #ifndef OPTIONS_H
2 #define OPTIONS_H
3
4 #include <csignal>              // std::sig_atomic_t
5 #include <string>
6 #include "cost_func.h"
7 #include "named_object_list.h"
8
9 // These classes may use include options.h, so make forward declarations
10 class deployment_generator;
11 class process;
12
13 // Global parameters, shared by all the processes
14 namespace opt {
15
16     // Constants
17     extern const double load_ratio_threshold;
18
19     // Global options
20     extern std::string program_name;
21     extern int help_requested;
22     extern bool version_requested;
23     extern int option_x;       // hidden option, for debugging purpose
24
25     // Simulation parameters
26     extern int log_rate;
27     extern volatile std::sig_atomic_t exit_request;
28
29     // Platform and deployment
30     extern std::string platform_file;
31     extern std::string deployment_file;
32
33     // Automatic deployment
34     namespace auto_depl {
35         extern bool        enabled;
36         extern std::string topology;
37         extern unsigned    nhosts;
38         extern double      load;
39         extern bool        random_distribution;
40         extern unsigned long random_seed;
41     }
42
43     // Load balancing algorithm
44     extern std::string loba_algo;
45     extern bool bookkeeping;
46     extern double min_transfer_amount;
47     extern double max_transfer_amount;
48     extern double min_lb_iter_duration;
49     extern bool integer_transfer;
50
51     // Application parameters
52     extern cost_func comp_cost;
53     extern cost_func comm_cost;
54     extern double min_comp_iter_duration;
55     extern unsigned comp_iter_delay;
56     extern double comp_time_delay;
57
58     // Parameters for the end of the simulation
59     extern unsigned lb_maxiter;
60     extern unsigned comp_maxiter;
61     extern double time_limit;
62     extern bool exit_on_close;
63
64     // Named parameters lists
65     extern struct loba_algorithms_type:
66         public named_object_list2<process, int, char** > {
67             loba_algorithms_type();
68     } loba_algorithms;
69
70     extern struct topologies_type:
71         public named_object_list<deployment_generator> {
72             topologies_type();
73     } topologies;
74
75     // Utility functions
76     bool parse_args(int* argc, char* argv[]);
77     void print();
78     void usage();
79
80 } // namespace opt
81
82 #endif // !OPTIONS_H
83
84 // Local variables:
85 // mode: c++
86 // End: