summaryrefslogtreecommitdiff
path: root/src/stream.cc
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2017-02-23 16:19:52 -0800
committerGitHub <noreply@github.com>2017-02-23 16:19:52 -0800
commite20131dac9bd01799ce4397cdf7e67f40001356d (patch)
tree9ae94b119bbe04e8047468fff74a165028fcb4a5 /src/stream.cc
parentadaf0c5b86925975ca2a7048b3057da6414722cc (diff)
downloadwabt-e20131dac9bd01799ce4397cdf7e67f40001356d.tar.gz
wabt-e20131dac9bd01799ce4397cdf7e67f40001356d.tar.bz2
wabt-e20131dac9bd01799ce4397cdf7e67f40001356d.zip
Switch C files to CC files (#309)
Mostly this involves adding additional casts. Though there are a few more substantial changes: * The default method for relocating parser stacks no longer works because Bison assumes that C++ values can't be memcpy'd. Ours can, but there's no easy way to make the generated code do the right thing, so we do it manually * Removed all uses of WabtBool and replaced with bool * Renamed all uses of export and mutable -> export_ and mutable_ * Casting an invalid value to an enum triggers ubsan, so we have to be a little more careful about when we do it (see binary-reader.c:read_sections()) * It's illegal to forward-declare enums, so we just #include instead. * Designated initializers are not allowed in g++, so we have to switch them to lazily initialized structures instead. Pretty horrible, so it will be nice to have a better solution for C++.
Diffstat (limited to 'src/stream.cc')
-rw-r--r--src/stream.cc162
1 files changed, 162 insertions, 0 deletions
diff --git a/src/stream.cc b/src/stream.cc
new file mode 100644
index 00000000..9ec9e2a5
--- /dev/null
+++ b/src/stream.cc
@@ -0,0 +1,162 @@
+/*
+ * Copyright 2016 WebAssembly Community Group participants
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "stream.h"
+
+#include <assert.h>
+#include <ctype.h>
+
+#define DUMP_OCTETS_PER_LINE 16
+#define DUMP_OCTETS_PER_GROUP 2
+
+static WabtFileStream s_stdout_stream;
+static WabtFileStream s_stderr_stream;
+
+void wabt_init_stream(WabtStream* stream,
+ WabtWriter* writer,
+ WabtStream* log_stream) {
+ stream->writer = writer;
+ stream->offset = 0;
+ stream->result = WABT_OK;
+ stream->log_stream = log_stream;
+}
+
+void wabt_init_file_stream_from_existing(WabtFileStream* stream, FILE* file) {
+ wabt_init_file_writer_existing(&stream->writer, file);
+ wabt_init_stream(&stream->base, &stream->writer.base, NULL);
+}
+
+WabtStream* wabt_init_stdout_stream(void) {
+ wabt_init_file_stream_from_existing(&s_stdout_stream, stdout);
+ return &s_stdout_stream.base;
+}
+
+WabtStream* wabt_init_stderr_stream(void) {
+ wabt_init_file_stream_from_existing(&s_stderr_stream, stderr);
+ return &s_stderr_stream.base;
+}
+
+void wabt_write_data_at(WabtStream* stream,
+ size_t offset,
+ const void* src,
+ size_t size,
+ WabtPrintChars print_chars,
+ const char* desc) {
+ if (WABT_FAILED(stream->result))
+ return;
+ if (stream->log_stream) {
+ wabt_write_memory_dump(stream->log_stream, src, size, offset, print_chars,
+ NULL, desc);
+ }
+ if (stream->writer->write_data) {
+ stream->result = stream->writer->write_data(offset, src, size,
+ stream->writer->user_data);
+ }
+}
+
+void wabt_write_data(WabtStream* stream,
+ const void* src,
+ size_t size,
+ const char* desc) {
+ wabt_write_data_at(stream, stream->offset, src, size, WABT_DONT_PRINT_CHARS,
+ desc);
+ stream->offset += size;
+}
+
+void wabt_move_data(WabtStream* stream,
+ size_t dst_offset,
+ size_t src_offset,
+ size_t size) {
+ if (WABT_FAILED(stream->result))
+ return;
+ if (stream->log_stream) {
+ wabt_writef(stream->log_stream, "; move data: [%" PRIzx ", %" PRIzx
+ ") -> [%" PRIzx ", %" PRIzx ")\n",
+ src_offset, src_offset + size, dst_offset, dst_offset + size);
+ }
+ if (stream->writer->write_data) {
+ stream->result = stream->writer->move_data(dst_offset, src_offset, size,
+ stream->writer->user_data);
+ }
+}
+
+void wabt_writef(WabtStream* stream, const char* format, ...) {
+ WABT_SNPRINTF_ALLOCA(buffer, length, format);
+ wabt_write_data(stream, buffer, length, NULL);
+}
+
+void wabt_write_u8(WabtStream* stream, uint32_t value, const char* desc) {
+ assert(value <= UINT8_MAX);
+ uint8_t value8 = value;
+ wabt_write_data_at(stream, stream->offset, &value8, sizeof(value8),
+ WABT_DONT_PRINT_CHARS, desc);
+ stream->offset += sizeof(value8);
+}
+
+void wabt_write_u32(WabtStream* stream, uint32_t value, const char* desc) {
+ wabt_write_data_at(stream, stream->offset, &value, sizeof(value),
+ WABT_DONT_PRINT_CHARS, desc);
+ stream->offset += sizeof(value);
+}
+
+void wabt_write_u64(WabtStream* stream, uint64_t value, const char* desc) {
+ wabt_write_data_at(stream, stream->offset, &value, sizeof(value),
+ WABT_DONT_PRINT_CHARS, desc);
+ stream->offset += sizeof(value);
+}
+
+void wabt_write_memory_dump(WabtStream* stream,
+ const void* start,
+ size_t size,
+ size_t offset,
+ WabtPrintChars print_chars,
+ const char* prefix,
+ const char* desc) {
+ const uint8_t* p = (const uint8_t*)start;
+ const uint8_t* end = p + size;
+ while (p < end) {
+ const uint8_t* line = p;
+ const uint8_t* line_end = p + DUMP_OCTETS_PER_LINE;
+ if (prefix)
+ wabt_writef(stream, "%s", prefix);
+ wabt_writef(stream, "%07" PRIzx ": ", (size_t)p - (size_t)start + offset);
+ while (p < line_end) {
+ int i;
+ for (i = 0; i < DUMP_OCTETS_PER_GROUP; ++i, ++p) {
+ if (p < end) {
+ wabt_writef(stream, "%02x", *p);
+ } else {
+ wabt_write_char(stream, ' ');
+ wabt_write_char(stream, ' ');
+ }
+ }
+ wabt_write_char(stream, ' ');
+ }
+
+ if (print_chars == WABT_PRINT_CHARS) {
+ wabt_write_char(stream, ' ');
+ p = line;
+ int i;
+ for (i = 0; i < DUMP_OCTETS_PER_LINE && p < end; ++i, ++p)
+ wabt_write_char(stream, isprint(*p) ? *p : '.');
+ }
+
+ /* if there are multiple lines, only print the desc on the last one */
+ if (p >= end && desc)
+ wabt_writef(stream, " ; %s", desc);
+ wabt_write_char(stream, '\n');
+ }
+}