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

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