webassembly/library: Extract and send data to print as UInt8Array.

This allows utf-8 data to work.  It's the receiving layer's responsibility
to deal with decoding the data.
pull/10133/head
Antonin ENFRUN 2022-11-23 21:41:35 +01:00 zatwierdzone przez Damien George
rodzic f3d9fe7b2c
commit db19ee7e15
2 zmienionych plików z 7 dodań i 11 usunięć

Wyświetl plik

@ -70,7 +70,7 @@ something to stdout. The following code demonstrates basic functionality:
<script>
document.addEventListener("micropython-print", function(e) {
let output = document.getElementById("micropython-stdout");
output.innerText += e.detail;
output.innerText += new TextDecoder().decode(e.detail);
}, false);
var mp_js_startup = Module["onRuntimeInitialized"];

Wyświetl plik

@ -26,16 +26,12 @@
mergeInto(LibraryManager.library, {
mp_js_write: function(ptr, len) {
for (var i = 0; i < len; ++i) {
if (typeof window === 'undefined') {
var b = Buffer.alloc(1);
b.writeInt8(getValue(ptr + i, 'i8'));
process.stdout.write(b);
} else {
var c = String.fromCharCode(getValue(ptr + i, 'i8'));
var printEvent = new CustomEvent('micropython-print', { detail: c });
document.dispatchEvent(printEvent);
}
const buffer = HEAPU8.subarray(ptr, ptr + len)
if (typeof window === 'undefined') {
process.stdout.write(buffer);
} else {
const printEvent = new CustomEvent('micropython-print', { detail: buffer });
document.dispatchEvent(printEvent);
}
},