summaryrefslogtreecommitdiff
path: root/src/evanix.c
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2024-07-21 11:54:13 +0530
committersinanmohd <sinan@sinanmohd.com>2024-07-21 11:54:13 +0530
commitc3c983087206a0598b2610eed4dde02f15a0036f (patch)
tree2c90b3857f7d8f59ff9c2c723a9e05f16ec3c5bf /src/evanix.c
parent15a55c7f85c5d624e29c453d3f1c3af015123cdf (diff)
evanix: add --solver flag
Diffstat (limited to 'src/evanix.c')
-rw-r--r--src/evanix.c22
1 files changed, 21 insertions, 1 deletions
diff --git a/src/evanix.c b/src/evanix.c
index bcebf69..09fecb3 100644
--- a/src/evanix.c
+++ b/src/evanix.c
@@ -5,6 +5,8 @@
#include "build.h"
#include "evanix.h"
#include "queue.h"
+#include "solver_greedy.h"
+#include "solver_util.h"
#include "util.h"
static const char usage[] =
@@ -20,6 +22,7 @@ static const char usage[] =
" -p, --pipelined <bool> Use evanix build pipeline.\n"
" -l, --check_cache-status <bool> Perform cache locality check.\n"
" -c, --close-unused-fd <bool> Close stderr on exec.\n"
+ " -k, --solver fcfs|greedy Solver to use.\n"
"\n";
struct evanix_opts_t evanix_opts = {
@@ -31,6 +34,7 @@ struct evanix_opts_t evanix_opts = {
.system = NULL,
.solver_report = false,
.check_cache_status = true,
+ .solver = solver_fcfs,
};
static int evanix_build_thread_create(struct build_thread *build_thread);
@@ -129,6 +133,7 @@ int main(int argc, char *argv[])
{"help", no_argument, NULL, 'h'},
{"flake", no_argument, NULL, 'f'},
{"dry-run", no_argument, NULL, 'd'},
+ {"solver", required_argument, NULL, 'k'},
{"system", required_argument, NULL, 's'},
{"solver-report", no_argument, NULL, 'r'},
{"max-build", required_argument, NULL, 'm'},
@@ -138,7 +143,7 @@ int main(int argc, char *argv[])
{NULL, 0, NULL, 0},
};
- while ((c = getopt_long(argc, argv, "hfds:r::m:p:c:l:", longopts,
+ while ((c = getopt_long(argc, argv, "hfds:r::m:p:c:l:k:", longopts,
&longindex)) != -1) {
switch (c) {
case 'h':
@@ -157,6 +162,21 @@ int main(int argc, char *argv[])
case 'r':
evanix_opts.solver_report = true;
break;
+ case 'k':
+ if (!strcmp(optarg, "greedy")) {
+ evanix_opts.solver = solver_greedy;
+ } else if (!strcmp(optarg, "fcfs")) {
+ evanix_opts.solver = solver_fcfs;
+ } else {
+ fprintf(stderr,
+ "option -%c has an invalid solver "
+ "argument\n"
+ "Try 'evanix --help' for more "
+ "information.\n",
+ c);
+ exit(EXIT_FAILURE);
+ }
+ break;
case 'm':
ret = atoi(optarg);
if (ret <= 0) {