summaryrefslogtreecommitdiff
path: root/src/wasm/wasm-io.cpp
diff options
context:
space:
mode:
authorDerek Schuff <dschuff@chromium.org>2023-09-14 14:08:40 -0700
committerGitHub <noreply@github.com>2023-09-14 14:08:40 -0700
commitf774effa54c6a40448487033a28a47caa3394f61 (patch)
treeee9764205ec4b6b916cc7e6e1ad94b59eb5f853d /src/wasm/wasm-io.cpp
parent11dba9b1c2ad988500b329727f39f4d8786918c5 (diff)
downloadbinaryen-f774effa54c6a40448487033a28a47caa3394f61.tar.gz
binaryen-f774effa54c6a40448487033a28a47caa3394f61.tar.bz2
binaryen-f774effa54c6a40448487033a28a47caa3394f61.zip
Encode command line to UTF8 on Windows (#5671)
This PR changes how file paths and the command line are handled. On startup on Windows, we process the wstring version of the command line (including the file paths) and re-encode it to UTF8 before handing it off to the rest of the command line handling logic. This means that all paths are stored in UTF8-encoded std::strings as they go through the program, right up until they are used to open files. At that time, they are converted to the appropriate native format with the new to_path function before passing to the stdlib open functions. This has the advantage that all of the non-file-opening code can use a single type to hold paths (which is good since std::filesystem::path has proved problematic in some cases), but has the disadvantage that someone could add new code that forgets to convert to_path before opening. That's somewhat mitigated by the fact that most of the code uses the ModuleIOBase classes for opening files. Fixes #4995
Diffstat (limited to 'src/wasm/wasm-io.cpp')
-rw-r--r--src/wasm/wasm-io.cpp14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/wasm/wasm-io.cpp b/src/wasm/wasm-io.cpp
index 65e6a982a..a340b4c23 100644
--- a/src/wasm/wasm-io.cpp
+++ b/src/wasm/wasm-io.cpp
@@ -26,6 +26,7 @@
#include "wasm-io.h"
#include "support/debug.h"
+#include "support/path.h"
#include "wasm-binary.h"
#include "wasm-s-parser.h"
#include "wat-parser.h"
@@ -69,7 +70,10 @@ void ModuleReader::readBinaryData(std::vector<char>& input,
parser.setSkipFunctionBodies(skipFunctionBodies);
if (sourceMapFilename.size()) {
sourceMapStream = std::make_unique<std::ifstream>();
- sourceMapStream->open(sourceMapFilename);
+ sourceMapStream->open(wasm::Path::to_path(sourceMapFilename));
+ if (!sourceMapStream->is_open()) {
+ Fatal() << "Failed opening '" << sourceMapFilename << "'";
+ }
parser.setDebugLocations(sourceMapStream.get());
}
parser.read();
@@ -89,7 +93,7 @@ void ModuleReader::readBinary(std::string filename,
bool ModuleReader::isBinaryFile(std::string filename) {
std::ifstream infile;
std::ios_base::openmode flags = std::ifstream::in | std::ifstream::binary;
- infile.open(filename, flags);
+ infile.open(wasm::Path::to_path(filename), flags);
char buffer[4] = {1, 2, 3, 4};
infile.read(buffer, 4);
infile.close();
@@ -157,7 +161,11 @@ void ModuleWriter::writeBinary(Module& wasm, Output& output) {
std::unique_ptr<std::ofstream> sourceMapStream;
if (sourceMapFilename.size()) {
sourceMapStream = std::make_unique<std::ofstream>();
- sourceMapStream->open(sourceMapFilename);
+ sourceMapStream->open(wasm::Path::to_path(sourceMapFilename));
+ if (!sourceMapStream->is_open()) {
+ Fatal() << "Failed opening sourcemap output file '" << sourceMapFilename
+ << "'";
+ }
writer.setSourceMap(sourceMapStream.get(), sourceMapUrl);
}
if (symbolMap.size() > 0) {