summaryrefslogtreecommitdiffhomepage
path: root/vhosts/blog/content/posts
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-04-23 04:03:19 +0900
committernsfisis <nsfisis@gmail.com>2025-04-23 04:03:19 +0900
commit85394c5613f1f52407020abab650fda6b9da91ad (patch)
tree6e23febda1e2f6b7f995c3dbe0fbdcaa908495c6 /vhosts/blog/content/posts
parent1fc09ac76fce170a4944c551d05b78a9907e0d4b (diff)
downloadnsfisis.dev-85394c5613f1f52407020abab650fda6b9da91ad.tar.gz
nsfisis.dev-85394c5613f1f52407020abab650fda6b9da91ad.tar.zst
nsfisis.dev-85394c5613f1f52407020abab650fda6b9da91ad.zip
feat(blog/content): update post /posts/2023-10-02/compile-php-runtime-to-wasm/
Diffstat (limited to 'vhosts/blog/content/posts')
-rw-r--r--vhosts/blog/content/posts/2023-10-02/compile-php-runtime-to-wasm.dj30
1 files changed, 30 insertions, 0 deletions
diff --git a/vhosts/blog/content/posts/2023-10-02/compile-php-runtime-to-wasm.dj b/vhosts/blog/content/posts/2023-10-02/compile-php-runtime-to-wasm.dj
index da7438ab..0f74de70 100644
--- a/vhosts/blog/content/posts/2023-10-02/compile-php-runtime-to-wasm.dj
+++ b/vhosts/blog/content/posts/2023-10-02/compile-php-runtime-to-wasm.dj
@@ -11,6 +11,10 @@ tags = [
[[article.revisions]]
date = "2023-10-02"
remark = "公開"
+
+[[article.revisions]]
+date = "2025-04-23"
+remark = "fflush() の前に改行の出力が必要だった理由と正しい実装について追記"
---
{#intro}
# はじめに
@@ -102,6 +106,32 @@ int EMSCRIPTEN_KEEPALIVE php_wasm_run(const char* code) {
これにより、PHP コードの出力の後ろに余分な改行が追加されてしまう。
改行を出力せずともバッファを消費させる手段をご存知のかたはご教示願いたい。
+::: note
+**2025-04-23 追記**:
+
+`fflush()` の前に改行の出力が必要だった理由が判明したので追記する。
+これは、`index.mjs` で標準出力・標準エラー出力へ出力する方法を指定せず、デフォルトの実装に任せているため。
+Emscripten のデフォルト実装では、改行コードを出力するまで出力内容がバッファリングされ、`fflush()` が機能しない。
+
+デフォルトの出力方法は `index.mjs` の中で `PHPWasm()` を呼ぶとき、`stdout`・`stderr` というオプションを渡せば変更できる。
+
+```javascript
+const { ccall } = await PHPWasm({
+ stdout: (c) => {
+ if (c === null) {
+ // flush the standard output.
+ } else {
+ // output c to the standard output.
+ }
+ },
+});
+```
+
+`c` は `null` か 1バイト符号つき整数を取り、`null` が flush 要求を意味する。
+
+記事末尾のリポジトリはすでにこの変更を適用済み。`stdout` や `stderr` の完全なサンプルはそちらを参照のこと。
+:::
+
{#compile-to-wasm}
## WebAssembly にコンパイルする