aboutsummaryrefslogtreecommitdiff
path: root/web/adapter.cpp
blob: 17741871fd78aef2e56e5f68739a67a5bb929c63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
#include "../cpp/nissy.h"

#include <emscripten/bind.h>
#include <map>
#include <set>
#include <string>
#include <vector>

extern "C" {
	extern int addCallbackFunction(/* args intentionally unspecified */);
	extern void callFunction(int, const char *);
	extern int callFunctionInt(int);
}

static int logger_id = -1;

void log(std::string s)
{
	if (logger_id == -1)
		return;

	callFunction(logger_id, s.c_str());
}

void log_wrapper(const char *cstr, void *data)
{
	log(cstr);
}

void set_logger(int id)
{
	logger_id = id;
	nissy::set_logger(log_wrapper, NULL);
}

// Some of the solvers are not available to the JS interface because of
// memory limitations.
const std::set<std::string> available_solvers
{
	"h48h0k4",
	"h48h1k2",
	"h48h2k2",
	"h48h3k2",
	"h48h7k2",
};

std::map<std::string, nissy::solver> loaded_solvers;

// TODO: this should ask the user if they want to download or generate.
// TODO: this should also save the data to a file (IDBFS / NODEFS)
bool init_solver(const std::string& name)
{
	auto se = nissy::solver::get(name);
	nissy::solver solver = std::get<nissy::solver>(se);
	log("Generating data for solver " + solver.name + "\n");
	auto err = solver.generate_data();
	if (!err.ok()) {
		log("Error generating the data!\n");
		return false;
	}
	log("Checking data integrity "
	    "(this is done only once per session per solver)...\n");
	if (!solver.check_data().ok()) {
		log("Error generating the data!\n");
		return false;
	}
	loaded_solvers.insert({name, solver});
	log("Data generated successfully, but not saved "
	    "(feature not yet available)\n");
	return true;
}

bool solver_valid(const std::string& name)
{
	if (loaded_solvers.contains(name) ||
	    (available_solvers.contains(name) && init_solver(name)))
		return true;

	auto se = nissy::solver::get(name);
	if (std::holds_alternative<nissy::solver>(se))
		log("The solver " + name + " is not available in "
		   "the web version of Nissy. Use a native version.\n");
	else
		log("Invalid solver " + name + "\n");
	return false;
}

int poll_status(void *arg)
{
	int id = *(int *)arg;
	if (id == -1)
		return nissy::status::RUN.value;
	return callFunctionInt(id);
}

nissy::solver::solve_result solve(std::string name,
    nissy::cube cube, nissy::nissflag nissflag, unsigned minmoves,
    unsigned maxmoves, unsigned maxsols, unsigned optimal, unsigned threads,
    int poll_status_id)
{
	if (!solver_valid(name))
		return nissy::solver::solve_result
		    {.err = nissy::error::INVALID_SOLVER};

	return loaded_solvers.at(name).solve(cube, nissflag, minmoves,
	    maxmoves, maxsols, optimal, threads, NULL, &poll_status_id);
}

EMSCRIPTEN_BINDINGS(Nissy)
{
	emscripten::class_<nissy::nissflag>("NissFlag")
		.class_property("normal", &nissy::nissflag::NORMAL)
		.class_property("inverse", &nissy::nissflag::INVERSE)
		.class_property("mixed", &nissy::nissflag::MIXED)
		.class_property("linear", &nissy::nissflag::LINEAR)
		.class_property("all", &nissy::nissflag::ALL)
		;

	emscripten::class_<nissy::error>("Error")
		.function("ok", &nissy::error::ok)
		.class_property("unsolvableWarning", &nissy::error::UNSOLVABLE_WARNING)
		.class_property("unsolvableError", &nissy::error::UNSOLVABLE_ERROR)
		.class_property("invalidCube", &nissy::error::INVALID_CUBE)
		.class_property("invalidMoves", &nissy::error::INVALID_MOVES)
		.class_property("invalidTrans", &nissy::error::INVALID_TRANS)
		.class_property("invalidSolver", &nissy::error::INVALID_SOLVER)
		.class_property("nullPointer", &nissy::error::NULL_POINTER)
		.class_property("bufferSize", &nissy::error::BUFFER_SIZE)
		.class_property("data", &nissy::error::DATA)
		.class_property("options", &nissy::error::OPTIONS)
		.class_property("unknown", &nissy::error::UNKNOWN)
		;

	emscripten::constant("statusRUN", nissy::status::RUN.value);
	emscripten::constant("statusSTOP", nissy::status::STOP.value);
	emscripten::constant("statusPAUSE", nissy::status::PAUSE.value);
	/*
	emscripten::class_<nissy::status>("Status")
		.class_property("run", &nissy::status::RUN)
		.class_property("stop", &nissy::status::STOP)
		.class_property("pause", &nissy::status::PAUSE)
		;
	*/

	emscripten::class_<nissy::cube>("Cube")
		.constructor<>()
		.function("move", &nissy::cube::move)
		.function("transform", &nissy::cube::transform)
		.function("invert", &nissy::cube::invert)
		.function("toString", &nissy::cube::to_string)
		;

	emscripten::class_<nissy::solver::solve_result>("SolveResult")
		.property("err", &nissy::solver::solve_result::err)
		.property("solutions", &nissy::solver::solve_result::solutions)
		;

	emscripten::function("countMoves", &nissy::count_moves);
	emscripten::function("solve", &solve,
	    emscripten::return_value_policy::take_ownership());
	emscripten::function("setLogger", &set_logger,
	    emscripten::allow_raw_pointers());
	emscripten::function("addCallbackFunction", &addCallbackFunction);
}

Generated with cgit - Back to sebastiano.tronto.net