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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
|
/*
* Copyright (c) 2021, Max Wipfli <mail@maxwipfli.ch>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/Format.h>
#include <AK/LexicalPath.h>
#include <AK/QuickSort.h>
#include <AK/Result.h>
#include <AK/String.h>
#include <AK/StringView.h>
#include <AK/Vector.h>
#include <LibCore/ConfigFile.h>
#include <LibCore/File.h>
#include <spawn.h>
#include <sys/ioctl.h>
#include <sys/wait.h>
#include <unistd.h>
enum class ComponentCategory {
Optional,
Recommended,
Required
};
struct ComponentData {
String name;
String description;
ComponentCategory category { ComponentCategory::Optional };
bool was_selected { false };
Vector<String> dependencies;
bool is_selected { false };
};
struct WhiptailOption {
String tag;
String name;
String description;
bool checked { false };
};
enum class WhiptailMode {
Menu,
Checklist
};
static Vector<ComponentData> read_component_data(Core::ConfigFile const& config_file)
{
VERIFY(!config_file.read_entry("Global", "build_everything", {}).is_empty());
Vector<ComponentData> components;
auto groups = config_file.groups();
quick_sort(groups, [](auto& a, auto& b) {
return a.to_lowercase() < b.to_lowercase();
});
for (auto& component_name : groups) {
if (component_name == "Global")
continue;
auto description = config_file.read_entry(component_name, "description", "");
auto recommended = config_file.read_bool_entry(component_name, "recommended", false);
auto required = config_file.read_bool_entry(component_name, "required", false);
auto user_selected = config_file.read_bool_entry(component_name, "user_selected", false);
auto depends = config_file.read_entry(component_name, "depends", "").split(';');
// NOTE: Recommended and required shouldn't be set at the same time.
VERIFY(!recommended || !required);
ComponentCategory category { ComponentCategory::Optional };
if (recommended)
category = ComponentCategory::Recommended;
else if (required)
category = ComponentCategory ::Required;
components.append(ComponentData { component_name, move(description), category, user_selected, move(depends), false });
}
return components;
}
static Result<Vector<String>, int> run_whiptail(WhiptailMode mode, Vector<WhiptailOption> const& options, StringView title, StringView description)
{
struct winsize w;
if (ioctl(0, TIOCGWINSZ, &w) < 0) {
perror("ioctl");
return -errno;
}
auto height = w.ws_row - 6;
auto width = min(w.ws_col - 6, 80);
int pipefd[2];
if (pipe(pipefd) < 0) {
perror("pipefd");
return -errno;
}
int read_fd = pipefd[0];
int write_fd = pipefd[1];
Vector<String> arguments = { "whiptail", "--notags", "--separate-output", "--output-fd", String::number(write_fd) };
if (!title.is_empty()) {
arguments.append("--title");
arguments.append(title);
}
switch (mode) {
case WhiptailMode::Menu:
arguments.append("--menu");
break;
case WhiptailMode::Checklist:
arguments.append("--checklist");
break;
default:
VERIFY_NOT_REACHED();
}
if (description.is_empty())
arguments.append(String::empty());
else
arguments.append(String::formatted("\n {}", description));
arguments.append(String::number(height));
arguments.append(String::number(width));
arguments.append(String::number(height - 9));
// Check how wide the name field needs to be.
size_t max_name_width = 0;
for (auto& option : options) {
if (option.name.length() > max_name_width)
max_name_width = option.name.length();
}
for (auto& option : options) {
arguments.append(option.tag);
arguments.append(String::formatted("{:{2}} {}", option.name, option.description, max_name_width));
if (mode == WhiptailMode::Checklist)
arguments.append(option.checked ? "1" : "0");
}
char* argv[arguments.size() + 1];
for (size_t i = 0; i < arguments.size(); ++i)
argv[i] = const_cast<char*>(arguments[i].characters());
argv[arguments.size()] = nullptr;
auto* term_variable = getenv("TERM");
if (!term_variable) {
warnln("getenv: TERM variable not set.");
close(write_fd);
close(read_fd);
return -1;
}
auto full_term_variable = String::formatted("TERM={}", term_variable);
auto colors = "NEWT_COLORS=root=,black\ncheckbox=black,lightgray";
char* env[3];
env[0] = const_cast<char*>(full_term_variable.characters());
env[1] = const_cast<char*>(colors);
env[2] = nullptr;
pid_t pid;
if (posix_spawnp(&pid, arguments[0].characters(), nullptr, nullptr, argv, env)) {
perror("posix_spawnp");
warnln("\e[31mError:\e[0m Could not execute 'whiptail', maybe it isn't installed.");
close(write_fd);
close(read_fd);
return -errno;
}
int status = -1;
if (waitpid(pid, &status, 0) < 0) {
perror("waitpid");
close(write_fd);
close(read_fd);
return -errno;
}
close(write_fd);
if (!WIFEXITED(status)) {
close(read_fd);
return -1;
}
int return_code = WEXITSTATUS(status);
if (return_code > 0) {
close(read_fd);
// posix_spawn returns 127 if it cannot exec the child, so maybe 'whiptail' is missing.
if (return_code == 127)
warnln("\e[31mError:\e[0m Could not execute 'whiptail', maybe it isn't installed.");
return return_code;
}
auto file = Core::File::construct();
file->open(read_fd, Core::OpenMode::ReadOnly, Core::File::ShouldCloseFileDescriptor::Yes);
auto data = String::copy(file->read_all());
return data.split('\n');
}
static bool run_system_command(String const& command, StringView command_name)
{
if (command.starts_with("cmake"sv))
warnln("\e[34mRunning CMake...\e[0m");
else
warnln("\e[34mRunning '{}'...\e[0m", command);
auto rc = system(command.characters());
if (rc < 0) {
perror("system");
warnln("\e[31mError:\e[0m Could not run {}.", command_name);
return false;
} else if (rc > 0) {
warnln("\e[31mError:\e[0m {} returned status code {}.", command_name, rc);
return false;
}
return true;
}
int main()
{
// Step 1: Check if everything is in order.
if (!isatty(STDIN_FILENO)) {
warnln("Not a terminal!");
return 1;
}
auto current_working_directory = Core::File::current_working_directory();
if (current_working_directory.is_null())
return 1;
auto lexical_cwd = LexicalPath(current_working_directory);
auto& parts = lexical_cwd.parts_view();
if (parts.size() < 2 || parts[parts.size() - 2] != "Build") {
warnln("\e[31mError:\e[0m This program needs to be executed from inside 'Build/*'.");
return 1;
}
if (!Core::File::exists("components.ini")) {
warnln("\e[31mError:\e[0m There is no 'components.ini' in the current working directory.");
warnln(" It can be generated by running CMake with 'cmake ../.. -G Ninja'");
return 1;
}
// Step 2: Open and parse the 'components.ini' file.
auto components_file = Core::ConfigFile::open("components.ini").release_value_but_fixme_should_propagate_errors();
if (components_file->groups().is_empty()) {
warnln("\e[31mError:\e[0m The 'components.ini' file is either not a valid ini file or contains no entries.");
return 1;
}
bool build_everything = components_file->read_bool_entry("Global", "build_everything", false);
auto components = read_component_data(components_file);
warnln("{} components were read from 'components.ini'.", components.size());
// Step 3: Ask the user which starting configuration to use.
Vector<WhiptailOption> configs;
configs.append({ "REQUIRED", "Required", "Only the essentials.", false });
configs.append({ "RECOMMENDED", "Recommended", "A sensible collection of programs.", false });
configs.append({ "FULL", "Full", "All available programs.", false });
configs.append({ "CUSTOM_REQUIRED", "Required", "Customizable.", false });
configs.append({ "CUSTOM_RECOMMENDED", "Recommended", "Customizable.", false });
configs.append({ "CUSTOM_FULL", "Full", "Customizable.", false });
configs.append({ "CUSTOM_CURRENT", "Current", "Customize current configuration.", false });
auto configs_result = run_whiptail(WhiptailMode::Menu, configs, "SerenityOS - System Configurations"sv, "Which system configuration do you want to use or customize?"sv);
if (configs_result.is_error()) {
warnln("ConfigureComponents cancelled.");
return 0;
}
VERIFY(configs_result.value().size() == 1);
auto type = configs_result.value().first();
bool customize = type.starts_with("CUSTOM_"sv);
StringView build_type = customize ? type.substring_view(7) : type.view();
// Step 4: Customize the configuration if the user requested to. In any case, set the components component.is_selected value correctly.
Vector<String> activated_components;
if (customize) {
Vector<WhiptailOption> options;
for (auto& component : components) {
auto is_required = component.category == ComponentCategory::Required;
StringBuilder description_builder;
description_builder.append(component.description);
if (is_required) {
if (!description_builder.is_empty())
description_builder.append(' ');
description_builder.append("[required]"sv);
}
// NOTE: Required components will always be preselected.
WhiptailOption option { component.name, component.name, description_builder.to_string(), is_required };
if (build_type == "REQUIRED") {
// noop
} else if (build_type == "RECOMMENDED") {
if (component.category == ComponentCategory::Recommended)
option.checked = true;
} else if (build_type == "FULL") {
option.checked = true;
} else if (build_type == "CURRENT") {
if (build_everything || component.was_selected)
option.checked = true;
} else {
VERIFY_NOT_REACHED();
}
options.append(move(option));
}
auto result = run_whiptail(WhiptailMode::Checklist, options, "SerenityOS - System Components"sv, "Which optional system components do you want to include?"sv);
if (result.is_error()) {
warnln("ConfigureComponents cancelled.");
return 0;
}
auto selected_components = result.value();
for (auto& component : components) {
if (selected_components.contains_slow(component.name)) {
component.is_selected = true;
} else if (component.category == ComponentCategory::Required) {
warnln("\e[33mWarning:\e[0m {} was not selected even though it is required. It will be enabled anyway.", component.name);
component.is_selected = true;
}
}
} else {
for (auto& component : components) {
if (build_type == "REQUIRED")
component.is_selected = component.category == ComponentCategory::Required;
else if (build_type == "RECOMMENDED")
component.is_selected = component.category == ComponentCategory::Required || component.category == ComponentCategory::Recommended;
else if (build_type == "FULL")
component.is_selected = true;
else
VERIFY_NOT_REACHED();
}
}
// Step 5: Generate the cmake command.
Vector<String> cmake_arguments = { "cmake", "../..", "-G", "Ninja", "-DBUILD_EVERYTHING=OFF" };
for (auto& component : components)
cmake_arguments.append(String::formatted("-DBUILD_{}={}", component.name.to_uppercase(), component.is_selected ? "ON" : "OFF"));
warnln("\e[34mThe following command will be run:\e[0m");
outln("{} \\", String::join(' ', cmake_arguments));
outln(" && ninja clean\n && rm -rf Root");
warn("\e[34mDo you want to run the command?\e[0m [Y/n] ");
auto character = getchar();
if (character == 'n' || character == 'N') {
warnln("ConfigureComponents cancelled.");
return 0;
}
// Step 6: Run CMake, 'ninja clean' and 'rm -rf Root'
auto command = String::join(' ', cmake_arguments);
if (!run_system_command(command, "CMake"sv))
return 1;
if (!run_system_command("ninja clean"sv, "Ninja"sv))
return 1;
if (!run_system_command("rm -rf Root"sv, "rm"sv))
return 1;
return 0;
}
|