-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make WASMFS FS.createPath match the FS version behavior on EEXIST
If the file packager tries to add content to *an existing path* in the filesystem (e.g., if the filesystem already has some directories, OPFS content, loading multiple package, etc), the different behavior of createPath causes an exception on WASMFS and no exception on JS FS.
- Loading branch information
Showing
3 changed files
with
87 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
// Copyright 2013 The Emscripten Authors. All rights reserved. | ||
// Emscripten is available under two separate licenses, the MIT license and the | ||
// University of Illinois/NCSA Open Source License. Both these licenses can be | ||
// found in the LICENSE file. | ||
|
||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <string.h> | ||
#include <assert.h> | ||
|
||
#include <emscripten.h> | ||
|
||
int value = 0; | ||
|
||
EMSCRIPTEN_KEEPALIVE void set(int x) { | ||
printf("set! %d\n", x); | ||
value = x; | ||
} | ||
|
||
void load3() { | ||
printf("load3\n"); | ||
char buffer[10]; | ||
memset(buffer, 0, 10); | ||
FILE *f = fopen("/target/file1.txt", "r"); | ||
assert(f); | ||
fread(buffer, 1, 5, f); | ||
fclose(f); | ||
assert(strcmp(buffer, "first") == 0); | ||
|
||
memset(buffer, 0, 10); | ||
f = fopen("/target/file2.txt", "r"); | ||
assert(f); | ||
fread(buffer, 1, 6, f); | ||
fclose(f); | ||
assert(strcmp(buffer, "second") == 0); | ||
exit(0); | ||
} | ||
|
||
void error3() { | ||
printf("fail3\n"); | ||
} | ||
|
||
void error2() { | ||
printf("fail2\n"); | ||
} | ||
|
||
void load2() { | ||
printf("load2\n"); | ||
emscripten_async_load_script("script3.js", load3, error3); | ||
} | ||
|
||
void load1() { | ||
printf("load1\n"); | ||
assert(value == 456); | ||
|
||
emscripten_async_load_script("script2.js", load2, error2); | ||
} | ||
|
||
void error1() { | ||
printf("fail1\n"); | ||
} | ||
|
||
int main() { | ||
emscripten_async_load_script("script1.js", load1, error1); | ||
return 99; | ||
} |