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

Private GIT Repository
Add load balancing algorithm selection facility.
[loba.git] / options.h
index 43286f3606a84f45570c0019be7acb9a0e5c706e..4e352c604f30fb914429c985dc35d21689df0378 100644 (file)
--- a/options.h
+++ b/options.h
@@ -1,26 +1,58 @@
 #ifndef OPTIONS_H
 #define OPTIONS_H
 
+#include <string>
 #include "cost_func.h"
+#include "named_object_list.h"
+#include "process.h"
 
 // Global parameters, shared by all the processes
 namespace opt {
 
-    extern const char* program_name;
-
-    extern const char* platform_file;
-    extern const char* application_file;
-
+    // Global options
+    extern std::string program_name;
     extern int help_requested;
     extern bool version_requested;
 
-    extern unsigned maxiter;
-    extern bool exit_on_close;
+    // Simulation parameters
+    extern unsigned log_rate;
+
+    // Platform and deployment
+    extern std::string platform_file;
+    extern std::string deployment_file;
 
+    // Automatic deployment
+    namespace auto_depl {
+        extern bool        enabled;
+        extern std::string topology;
+        extern unsigned    nhosts;
+        extern double      load;
+    }
+
+    // Load balancing algorithm
+    extern std::string loba_algo;
     extern bool bookkeeping;
 
+    // Application parameters
     extern cost_func comp_cost;
+    extern cost_func comm_cost;
+    extern unsigned maxiter;
+    extern bool exit_on_close;
+
+    // Named parameters lists
+    extern struct loba_algorithms_type:
+        public named_object_list2<process, int, char** > {
+            loba_algorithms_type();
+    } loba_algorithms;
+
+#if 0
+    extern struct topologies_type:
+        public named_object_list<xxx> {
+            topologies_type();
+    } topologies;
+#endif
 
+    // Utility functions
     int parse_args(int* argc, char* argv[]);
     void print();
     void usage();