diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-01-16 10:16:27 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-01-16 10:16:27 +0100 |
commit | ab12d384eafd624132c2051519b9d0dafbc6efc2 (patch) | |
tree | be24c6cb96111829285d6ad697d103fccf81b11b /doc/ja | |
parent | c775242a4ca9b4cc3606f76a4a21ae74a5481fcc (diff) | |
download | weechat-ab12d384eafd624132c2051519b9d0dafbc6efc2.zip |
doc: add example of hook_process with a script function (scripting guide)
Diffstat (limited to 'doc/ja')
-rw-r--r-- | doc/ja/weechat_scripting.ja.adoc | 69 |
1 files changed, 49 insertions, 20 deletions
diff --git a/doc/ja/weechat_scripting.ja.adoc b/doc/ja/weechat_scripting.ja.adoc index ef4a28172..bc3987b45 100644 --- a/doc/ja/weechat_scripting.ja.adoc +++ b/doc/ja/weechat_scripting.ja.adoc @@ -1078,26 +1078,54 @@ weechat.hook_timer(60 * 1000, 60, 0, "timer_cb", "") バックグラウンドプロセスを実行するには `+hook_process+` を使います。コールバックはデータの準備が整った時点で呼び出されます。複数回呼び出されることもあります。 -コールバックの最後の呼び出しでは _rc_ が 0 +コールバックの最後の呼び出しでは _return_code_ が 0 か正の値に設定されています。これはコマンドのリターンコードになります。 例: [source,python] ---- -process_output = "" - -def my_process_cb(data, command, rc, out, err): - global process_output - if out != "": - process_output += out - if int(rc) >= 0: - weechat.prnt("", process_output) +def my_process_cb(data, command, return_code, out, err): + if return_code == weechat.WEECHAT_HOOK_PROCESS_ERROR: + weechat.prnt("", "Error with command '%s'" % command) + return weechat.WEECHAT_RC_OK + if return_code >= 0: + weechat.prnt("", "return_code = %d" % return_code) + if out: + weechat.prnt("", "stdout: %s" % out) + if err: + weechat.prnt("", "stderr: %s" % err) return weechat.WEECHAT_RC_OK weechat.hook_process("/bin/ls -l /etc", 10 * 1000, "my_process_cb", "") ---- +// TRANSLATION MISSING +You can also call directly a script function that does something blocking, +instead of an external command: + +[source,python] +---- +def get_status(data): + # do something blocking... + # ... + return "this is the result" + +def my_process_cb(data, command, return_code, out, err): + if return_code == weechat.WEECHAT_HOOK_PROCESS_ERROR: + weechat.prnt("", "Error with command '%s'" % command) + return weechat.WEECHAT_RC_OK + if return_code >= 0: + weechat.prnt("", "return_code = %d" % return_code) + if out: + weechat.prnt("", "stdout: %s" % out) + if err: + weechat.prnt("", "stderr: %s" % err) + return weechat.WEECHAT_RC_OK + +hook = weechat.hook_process("func:get_status", 5000, "my_process_cb", "") +---- + [[url_transfer]] ==== URL 転送 @@ -1109,17 +1137,18 @@ URL をダウンロードする (または URL にポストする) には、関 オプション無しの URL 転送の例: HTML ページの内容はコールバックの "out" 引数 (プロセスの標準出力) を通して渡されます。 +// TRANSLATION MISSING [source,python] ---- -# 現在の WeeChat 安定版のバージョンを表示。 -weechat_version = "" +# Display latest stable version of WeeChat. +weechat_latest_version = "" -def weechat_process_cb(data, command, rc, out, err): - global weechat_version - if out != "": - weechat_version += out - if int(rc) >= 0: - weechat.prnt("", "Current WeeChat stable is: %s" % weechat_version) +def weechat_process_cb(data, command, return_code, out, err): + global weechat_latest_version + if out: + weechat_latest_version += out + if return_code >= 0: + weechat.prnt("", "Latest WeeChat version: %s" % weechat_latest_version) return weechat.WEECHAT_RC_OK weechat.hook_process("url:https://weechat.org/dev/info/stable/", @@ -1134,9 +1163,9 @@ _/tmp/weechat-devel.tar.gz_ にダウンロード: [source,python] ---- -def my_process_cb(data, command, rc, out, err): - if int(rc) >= 0: - weechat.prnt("", "End of transfer (rc=%s)" % rc) +def my_process_cb(data, command, return_code, out, err): + if return_code >= 0: + weechat.prnt("", "End of transfer (return code = %d)" % return_code) return weechat.WEECHAT_RC_OK weechat.hook_process_hashtable("url:https://weechat.org/files/src/weechat-devel.tar.gz", |