Skip to content

Commit 10c7818

Browse files
Skip loading .data bundle and mapping corresponding files when running as a worker for pthread (emscripten-core#15644)
1 parent 2a24e70 commit 10c7818

5 files changed

+22
-8
lines changed

tests/manual_download_data.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ int main()
1414
char str[128] = {};
1515
fread(str, 1, sizeof(str), handle);
1616
printf("str: %s\n", str);
17-
assert(!strcmp(str, "Hello!"));
17+
const bool success = (strcmp(str, "Hello!") == 0);
18+
assert(success);
1819
printf("OK\n");
1920
#ifdef REPORT_RESULT
20-
int result = EM_ASM_INT({return Module.manuallyDownloadedData;});
21-
REPORT_RESULT(result);
21+
REPORT_RESULT(success);
2222
#endif
2323
}

tests/manual_download_data.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -184,12 +184,12 @@
184184
return Module['downloadedData'];
185185
}
186186

187-
var dataDownload = download('manual_download_data.data').then(function(data) {
187+
var dataDownload = download('/test/manual_download_data.data').then(function(data) {
188188
console.log('downloaded data file');
189-
Module.manuallyDownloadedData = 1;
190189
Module['downloadedData'] = data;
191190
var jsDownload = download('manual_download_data.js').then(function(data) {
192191
console.log('downloaded js file');
192+
Module['mainScriptUrlOrBlob'] = new Blob([data]);
193193
addScriptToDom(data);
194194
});
195195
});

tests/test_browser.py

+12-2
Original file line numberDiff line numberDiff line change
@@ -412,13 +412,23 @@ def make_main_two_files(path1, path2, nonexistingpath):
412412
self.btest_exit('main.cpp', args=['--pre-js', 'pre.js', '--use-preload-plugins'])
413413

414414
# Tests that user .html shell files can manually download .data files created with --preload-file cmdline.
415-
def test_preload_file_with_manual_data_download(self):
415+
@parameterized({
416+
'default': ([],),
417+
'pthreads': (['-pthread', '-sPROXY_TO_PTHREAD', '-sEXIT_RUNTIME'],),
418+
})
419+
@requires_threads
420+
def test_preload_file_with_manual_data_download(self, args):
416421
src = test_file('manual_download_data.cpp')
417422

418423
create_file('file.txt', '''Hello!''')
419424

420-
self.compile_btest([src, '-o', 'manual_download_data.js', '--preload-file', 'file.txt@/file.txt'])
425+
self.compile_btest([src, '-o', 'manual_download_data.js', '--preload-file', 'file.txt@/file.txt'] + args)
421426
shutil.copyfile(test_file('manual_download_data.html'), 'manual_download_data.html')
427+
428+
# Move .data file out of server root to ensure that getPreloadedPackage is actually used
429+
os.mkdir('test')
430+
shutil.move('manual_download_data.data', 'test/manual_download_data.data')
431+
422432
self.run_browser('manual_download_data.html', 'Hello!', '/report_result?1')
423433

424434
# Tests that if the output files have single or double quotes in them, that it will be handled by

tools/file_packager.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,10 @@ def main():
291291
}
292292
Module.expectedDataFileDownloads++;
293293
(function() {
294-
var loadPackage = function(metadata) {
294+
// When running as a pthread, FS operations are proxied to the main thread, so we don't need to
295+
// fetch the .data bundle on the worker
296+
if (Module['ENVIRONMENT_IS_PTHREAD']) return;
297+
var loadPackage = function(metadata) {
295298
'''
296299

297300
code = '''

tools/js_manipulation.py

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ def add_files_pre_js(user_pre_js, files_pre_js):
1717
return files_pre_js + '''
1818
// All the pre-js content up to here must remain later on, we need to run
1919
// it.
20+
if (Module['ENVIRONMENT_IS_PTHREAD']) Module['preRun'] = [];
2021
var necessaryPreJSTasks = Module['preRun'].slice();
2122
''' + user_pre_js + '''
2223
if (!Module['preRun']) throw 'Module.preRun should exist because file support used it; did a pre-js delete it?';

0 commit comments

Comments
 (0)