-
Notifications
You must be signed in to change notification settings - Fork 106
/
first.jai
365 lines (315 loc) · 12.7 KB
/
first.jai
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
363
364
365
VERSION :: #run -> string {
result, revision := run_command("git", "rev-parse", "--short", "HEAD", capture_and_return_output = true);
if revision return sprint("0.3.7-%", trim(revision));
return "0.3.7-dev";
}
RELEASE_DATE :: #run -> string {
current_time := to_calendar(current_time_consensus());
return calendar_to_string(current_time);
}
// // NOTE: Uncomment when releasing, comment out when not releasing
// VERSION :: "0.3.7";
// RELEASE_DATE :: "15 September 2024";
#run,stallable build();
build :: () {
options := get_build_options();
options.minimum_os_version = .{10, 13};
options.temporary_storage_size = 1048576; // 1 MB per thread
args := options.compile_time_command_line;
import_path: [..] string;
array_add(*import_path, "modules");
array_add(*import_path, ..options.import_path);
options.import_path = import_path;
set_build_options_dc(.{do_output=false});
set_working_directory(#filepath);
optimized := false;
windows7 := false;
set_optimization(*options, .DEBUG);
options.arithmetic_overflow_check = .FATAL;
build_dir := "build_debug";
options.output_executable_name = "focus";
for arg: args {
if arg == {
case "release";
optimized = true;
build_dir = "build_release";
set_optimization(*options, .VERY_OPTIMIZED);
options.llvm_options.enable_split_modules = false;
options.array_bounds_check = .ON;
options.null_pointer_check = .ON;
options.arithmetic_overflow_check = .OFF;
case "debug";
case "no_output";
options.output_type = .NO_OUTPUT;
case "windows7";
windows7 = true;
options.output_executable_name = "focus_windows7";
case;
compiler_report(tprint("Command-line argument #%, '%', is invalid. Valid options are: 'debug', 'release'.\n", it_index+1, arg));
}
}
options.output_path = build_dir;
make_directory_if_it_does_not_exist(build_dir);
w := compiler_create_workspace(options.output_executable_name);
set_build_options(options, w);
#if OS == .WINDOWS {
// Disable runtime console
if optimized {
set_build_options_dc(.{append_linker_arguments=.["/SUBSYSTEM:windows", "/ENTRY:mainCRTStartup"]}, w);
// For tracing release builds use this:
// set_build_options_dc(.{append_linker_arguments=.["/SUBSYSTEM:windows", "/ENTRY:mainCRTStartup", "ws2_32.lib", "msvcprtd.lib"]}, w);
} else {
set_build_options_dc(.{append_linker_arguments=.["ws2_32.lib", "msvcprtd.lib"]}, w);
}
}
compiler_begin_intercept(w);
add_build_file("src/main.jai", w);
build_constants := tprint(#string STRING
VERSION :: "%";
RELEASE_DATE :: "%";
DEBUG :: %;
WINDOWS7 :: %;
NO_OUTPUT_BUILD :: %;
STRING,
VERSION,
RELEASE_DATE,
ifx optimized then "false" else "true",
ifx windows7 then "true" else "false",
options.output_type == .NO_OUTPUT,
);
add_build_string(build_constants, w);
failed := false;
while true {
message := compiler_wait_for_message();
if message.workspace != w continue;
if message.kind == {
case .TYPECHECKED;
if options.output_type != .NO_OUTPUT {
typechecked := cast(*Message_Typechecked) message;
for typechecked.structs {
s := it.expression.defined_type;
if s.name == "Settings" register_settings_members(s, it.expression);
}
for typechecked.declarations {
if it.expression.name == "ADDED_SETTINGS" {
register_added_settings(it.expression);
} else if it.expression.name == "RENAMED_SETTINGS" {
register_renamed_settings(it.expression);
}
}
}
case .PHASE;
phase_message := cast(*Message_Phase) message;
if phase_message.phase == .ALL_TARGET_CODE_BUILT {
if options.output_type == .NO_OUTPUT exit(0);
check_settings();
}
case .COMPLETE;
m := cast(*Message_Complete) message;
if m.error_code == .COMPILATION_FAILED then failed = true;
break;
}
}
compiler_end_intercept(w);
// Don't try to set icon or manifest if we failed compilation
if failed then return;
#if OS == .WINDOWS {
exe_path := tprint("%/%.exe", build_dir, options.output_executable_name);
ico_data := create_ico_file_from_bitmap_filename("images/focus.png");
success := set_icon_by_data(exe_path, ico_data);
if !success {
log_error("ERROR: Couldn't set icon for '%'\n", exe_path);
}
manifest_options: Manifest_Options;
success = add_manifest_to_executable(exe_path, manifest_options);
if !success {
log_error("ERROR: Couldn't add manifest to executable '%'\n", exe_path);
}
} else #if OS == .MACOS {
if !optimized return; // When debugging, use the Unix program directly. This saves us compile time.
// Set up our temporary directory to turn into a .dmg disk image
DMG_DIR :: "dmg";
run_command("mkdir", DMG_DIR);
// Generate Focus.app inside our temporary directory
set_working_directory(DMG_DIR);
create_app_bundle("Focus", tprint("../build_release/%", options.output_executable_name), "../images/mac.png", "", true, true);
write_entire_file("Focus.app/Contents/Info.plist", tprint(INFO_PLIST_CONTENTS, VERSION, VERSION));
set_working_directory(#filepath);
// Create a symbolic link to /Applications (what all the cool kids do)
run_command("ln", "-s", "/Applications", DMG_DIR);
// Generate a .DMG using Disk Utility
run_command("hdiutil", "create", "-volname", tprint("Focus %", VERSION), "-srcfolder", DMG_DIR, "-ov", "-format", "UDZO", tprint("Focus-%-Intel.dmg", VERSION));
// Remove our temporary directory when we're done
run_command("rm", "-r", DMG_DIR);
#import "MacOS_Bundler";
#import "File";
}
}
register_settings_members :: (settings: *Type_Info_Struct, code_struct: *Code_Struct) {
for settings.members {
version := get_member_version_from_notes(it);
if !version {
compiler_report(tprint("Settings member \"%\" must have a version annotation!\n", it.name), make_location(code_struct));
}
array_add(*settings_info.setting_members, .{version, it.name});
}
settings_info.settings_node = code_struct;
}
get_member_version_from_notes :: (member: Type_Info_Struct_Member) -> int {
for member.notes {
if it && it[0] == #char "v" {
s := it;
advance(*s, 1);
v, ok := parse_int(*s);
if ok return v;
}
}
return 0;
}
register_added_settings :: (decl: Code_Declaration) {
literal := cast(*Code_Literal) decl.expression;
assert(literal.kind == .LITERAL && literal.value_type == .ARRAY);
for literal.array_literal_info.array_members {
entry := cast(*Code_Literal) it;
arguments := entry.struct_literal_info.arguments;
// Maybe there's a way to just get the value of ADDED_SETTINGS, which would be easier to use than
// what we're doing here, which is parsing the the code nodes of its literal.
version := 0;
for arguments {
literal := cast(*Code_Literal) it;
i := it_index % 3; // Number of members for Added_Settings
if i == {
case 0; version = literal._s64;
case 1; array_add(*settings_info.present_in_migrator, .{ version, literal._string});
case; // Remainder of struct members which we don't care about.
}
}
}
}
register_renamed_settings :: (decl: Code_Declaration) {
literal := cast(*Code_Literal) decl.expression;
assert(literal.kind == .LITERAL && literal.value_type == .ARRAY);
for literal.array_literal_info.array_members {
entry := cast(*Code_Literal) it;
arguments := entry.struct_literal_info.arguments;
version := 0;
for arguments {
literal := cast(*Code_Literal) it;
i := it_index % 5; // Number of members for Renamed_Settings
if i == {
case 0; version = literal._s64;
case 1; // Old name, which we don't care about.
case 2; array_add(*settings_info.present_in_migrator, .{ version, literal._string});
case; // Remainder of struct members which we don't care about.
}
}
}
}
check_settings :: () {
for member: settings_info.setting_members {
if member.version == 1 continue;
found := false;
for settings_info.present_in_migrator {
if it.name == member.name {
if member.version != it.version {
compiler_report(tprint("Setting member version for \"%\" in config.jai did not match version in config_migrator.jai (% != %)\n", member.name, member.version, it.version), make_location(settings_info.settings_node));
}
found = true;
break;
}
}
if !found {
compiler_report(tprint("Could not find entry in config_migrator.jai for \"%\". It should appear in ADDED_SETTINGS or RENAMED_SETTINGS! Be sure to increment CURRENT_CONFIG_VERSION if you haven't already. Also consider adding the setting to the default config.\n", member.name), make_location(settings_info.settings_node));
}
}
}
settings_info: struct {
settings_node: *Code_Node;
setting_members: [..] Version_Lookup;
present_in_migrator: [..] Version_Lookup;
Version_Lookup :: struct {
version: int;
name: string;
}
}
#import "Compiler";
#import "Basic";
#import "File";
#import "Process";
#import "String";
#if OS == .WINDOWS {
#import "Ico_File";
#import "Windows_Resources";
} else #if OS == .MACOS {
INFO_PLIST_CONTENTS :: #string STRING
<?xml version="1.0" ?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist>
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en-US</string>
<key>CFBundleDisplayName</key>
<string>Focus</string>
<key>CFBundleExecutable</key>
<string>Focus</string>
<key>CFBundleIconFile</key>
<string>icon_data.icns</string>
<key>CFBundleIdentifier</key>
<string>dev.focus-editor</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>Focus</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>%</string>
<key>CFBundleVersion</key>
<string>%</string>
<key>NSHumanReadableCopyright</key>
<string>© 2023 Ivan Ivanov</string>
<key>NSHighResolutionCapable</key>
<true/>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeName</key>
<string>Text Document</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSItemContentTypes</key>
<array>
<string>public.text</string>
</array>
<key>NSDocumentClass</key>
<string>Document</string>
</dict>
<dict>
<key>CFBundleTypeName</key>
<string>Text Document</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSItemContentTypes</key>
<array>
<string>public.plain-text</string>
</array>
<key>NSDocumentClass</key>
<string>Document</string>
</dict>
<dict>
<key>CFBundleTypeName</key>
<string>Unknown document</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>LSItemContentTypes</key>
<array>
<string>public.data</string>
</array>
<key>NSDocumentClass</key>
<string>Document</string>
</dict>
</array>
</dict>
</plist>
STRING
}