2025-08-19 04:48:25 +09:00
|
|
|
|
# Nyash Configuration File v2
|
|
|
|
|
|
# マルチBox型プラグイン対応
|
2025-08-18 09:32:54 +09:00
|
|
|
|
|
2025-08-19 04:48:25 +09:00
|
|
|
|
[libraries]
|
|
|
|
|
|
# ライブラリ定義(1つのプラグインで複数のBox型を提供可能)
|
|
|
|
|
|
[libraries."libnyash_filebox_plugin.so"]
|
|
|
|
|
|
boxes = ["FileBox"]
|
|
|
|
|
|
path = "./plugins/nyash-filebox-plugin/target/release/libnyash_filebox_plugin.so"
|
2025-08-18 09:32:54 +09:00
|
|
|
|
|
2025-08-21 16:46:07 +09:00
|
|
|
|
[libraries."libnyash_counter_plugin.so"]
|
|
|
|
|
|
boxes = ["CounterBox"]
|
|
|
|
|
|
path = "./plugins/nyash-counter-plugin/target/release/libnyash_counter_plugin.so"
|
|
|
|
|
|
|
2025-08-19 04:48:25 +09:00
|
|
|
|
# 将来の拡張例:
|
|
|
|
|
|
# "libnyash_database_plugin.so" = {
|
|
|
|
|
|
# boxes = ["PostgreSQLBox", "MySQLBox", "SQLiteBox"],
|
|
|
|
|
|
# path = "./target/release/libnyash_database_plugin.so"
|
|
|
|
|
|
# }
|
2025-08-18 09:32:54 +09:00
|
|
|
|
|
2025-08-19 04:48:25 +09:00
|
|
|
|
# FileBoxの型情報定義
|
|
|
|
|
|
[libraries."libnyash_filebox_plugin.so".FileBox]
|
2025-08-19 03:48:44 +09:00
|
|
|
|
type_id = 6
|
2025-08-18 14:10:41 +09:00
|
|
|
|
|
2025-08-19 04:48:25 +09:00
|
|
|
|
[libraries."libnyash_filebox_plugin.so".FileBox.methods]
|
2025-08-19 03:48:44 +09:00
|
|
|
|
# 全メソッドをmethod_idと共に定義
|
2025-08-19 04:48:25 +09:00
|
|
|
|
birth = { method_id = 0 }
|
2025-08-19 03:48:44 +09:00
|
|
|
|
open = { method_id = 1, args = ["path", "mode"] }
|
2025-08-19 04:48:25 +09:00
|
|
|
|
read = { method_id = 2 }
|
2025-08-19 03:48:44 +09:00
|
|
|
|
write = { method_id = 3, args = ["data"] }
|
2025-08-19 04:48:25 +09:00
|
|
|
|
close = { method_id = 4 }
|
|
|
|
|
|
fini = { method_id = 4294967295 }
|
2025-08-18 14:10:41 +09:00
|
|
|
|
|
2025-08-21 00:41:26 +09:00
|
|
|
|
# v2.1: Box引数を受け取るメソッド宣言(FileBox: copyFrom(other: Handle))
|
|
|
|
|
|
copyFrom = { method_id = 7, args = [ { kind = "box", category = "plugin" } ] }
|
|
|
|
|
|
|
|
|
|
|
|
# v2.2: BoxRef(Handle)を返すメソッド宣言
|
|
|
|
|
|
cloneSelf = { method_id = 8 }
|
|
|
|
|
|
|
2025-08-21 16:46:07 +09:00
|
|
|
|
[libraries."libnyash_counter_plugin.so".CounterBox]
|
|
|
|
|
|
type_id = 7
|
2025-08-21 21:35:17 +09:00
|
|
|
|
singleton = true
|
2025-08-21 16:46:07 +09:00
|
|
|
|
|
|
|
|
|
|
[libraries."libnyash_counter_plugin.so".CounterBox.methods]
|
|
|
|
|
|
birth = { method_id = 0 }
|
|
|
|
|
|
inc = { method_id = 1 }
|
|
|
|
|
|
get = { method_id = 2 }
|
|
|
|
|
|
fini = { method_id = 4294967295 }
|
|
|
|
|
|
|
2025-08-18 09:32:54 +09:00
|
|
|
|
[plugin_paths]
|
|
|
|
|
|
# プラグインの検索パス(デフォルト)
|
|
|
|
|
|
search_paths = [
|
2025-08-19 03:48:44 +09:00
|
|
|
|
"./target/release",
|
|
|
|
|
|
"./target/debug",
|
2025-08-18 09:32:54 +09:00
|
|
|
|
"./plugins/*/target/release",
|
|
|
|
|
|
"./plugins/*/target/debug",
|
|
|
|
|
|
"/usr/local/lib/nyash/plugins",
|
|
|
|
|
|
"~/.nyash/plugins"
|
2025-08-21 00:41:26 +09:00
|
|
|
|
]
|
2025-08-21 22:25:42 +09:00
|
|
|
|
[libraries."libnyash_net_plugin.so"]
|
2025-08-22 02:54:50 +09:00
|
|
|
|
boxes = ["HttpServerBox", "HttpRequestBox", "HttpResponseBox", "HttpClientBox", "SocketServerBox", "SocketClientBox", "SocketConnBox"]
|
2025-08-21 22:25:42 +09:00
|
|
|
|
path = "./plugins/nyash-net-plugin/target/release/libnyash_net_plugin.so"
|
|
|
|
|
|
|
|
|
|
|
|
[libraries."libnyash_net_plugin.so".HttpServerBox]
|
|
|
|
|
|
type_id = 20
|
|
|
|
|
|
|
|
|
|
|
|
[libraries."libnyash_net_plugin.so".HttpServerBox.methods]
|
|
|
|
|
|
birth = { method_id = 0 }
|
|
|
|
|
|
start = { method_id = 1, args = ["port"] }
|
|
|
|
|
|
stop = { method_id = 2 }
|
|
|
|
|
|
accept = { method_id = 3 }
|
|
|
|
|
|
fini = { method_id = 4294967295 }
|
|
|
|
|
|
|
|
|
|
|
|
[libraries."libnyash_net_plugin.so".HttpRequestBox]
|
|
|
|
|
|
type_id = 21
|
|
|
|
|
|
|
|
|
|
|
|
[libraries."libnyash_net_plugin.so".HttpRequestBox.methods]
|
|
|
|
|
|
birth = { method_id = 0 }
|
|
|
|
|
|
path = { method_id = 1 }
|
|
|
|
|
|
readBody = { method_id = 2 }
|
|
|
|
|
|
respond = { method_id = 3, args = [ { kind = "box", category = "plugin" } ] }
|
|
|
|
|
|
fini = { method_id = 4294967295 }
|
|
|
|
|
|
|
|
|
|
|
|
[libraries."libnyash_net_plugin.so".HttpResponseBox]
|
|
|
|
|
|
type_id = 22
|
|
|
|
|
|
|
|
|
|
|
|
[libraries."libnyash_net_plugin.so".HttpResponseBox.methods]
|
|
|
|
|
|
birth = { method_id = 0 }
|
|
|
|
|
|
setStatus = { method_id = 1 }
|
|
|
|
|
|
setHeader = { method_id = 2 }
|
|
|
|
|
|
write = { method_id = 3 }
|
|
|
|
|
|
readBody = { method_id = 4 }
|
2025-08-21 23:11:31 +09:00
|
|
|
|
getStatus = { method_id = 5 }
|
|
|
|
|
|
getHeader = { method_id = 6, args = ["name"] }
|
2025-08-21 22:25:42 +09:00
|
|
|
|
fini = { method_id = 4294967295 }
|
|
|
|
|
|
|
|
|
|
|
|
[libraries."libnyash_net_plugin.so".HttpClientBox]
|
|
|
|
|
|
type_id = 23
|
|
|
|
|
|
|
|
|
|
|
|
[libraries."libnyash_net_plugin.so".HttpClientBox.methods]
|
|
|
|
|
|
birth = { method_id = 0 }
|
2025-08-22 06:05:58 +09:00
|
|
|
|
get = { method_id = 1, returns_result = true }
|
|
|
|
|
|
post = { method_id = 2, returns_result = true }
|
2025-08-21 22:25:42 +09:00
|
|
|
|
fini = { method_id = 4294967295 }
|
2025-08-22 02:54:50 +09:00
|
|
|
|
|
2025-08-22 06:05:58 +09:00
|
|
|
|
## ResultBox normalization enabled above for get/post
|
|
|
|
|
|
|
2025-08-22 02:54:50 +09:00
|
|
|
|
[libraries."libnyash_net_plugin.so".SocketServerBox]
|
|
|
|
|
|
type_id = 30
|
|
|
|
|
|
|
|
|
|
|
|
[libraries."libnyash_net_plugin.so".SocketServerBox.methods]
|
|
|
|
|
|
birth = { method_id = 0 }
|
|
|
|
|
|
start = { method_id = 1, args = ["port"] }
|
|
|
|
|
|
stop = { method_id = 2 }
|
|
|
|
|
|
accept = { method_id = 3 }
|
|
|
|
|
|
acceptTimeout = { method_id = 4, args = ["timeout_ms"] }
|
|
|
|
|
|
fini = { method_id = 4294967295 }
|
|
|
|
|
|
|
2025-08-22 06:05:58 +09:00
|
|
|
|
# Optional: ResultBox normalization (recommendation)
|
|
|
|
|
|
# start = { method_id = 1, args = ["port"], returns_result = true }
|
|
|
|
|
|
# stop = { method_id = 2, returns_result = true }
|
|
|
|
|
|
# accept = { method_id = 3, returns_result = true }
|
|
|
|
|
|
|
2025-08-22 02:54:50 +09:00
|
|
|
|
[libraries."libnyash_net_plugin.so".SocketClientBox]
|
|
|
|
|
|
type_id = 32
|
|
|
|
|
|
|
|
|
|
|
|
[libraries."libnyash_net_plugin.so".SocketClientBox.methods]
|
|
|
|
|
|
birth = { method_id = 0 }
|
|
|
|
|
|
connect = { method_id = 1, args = ["host", "port"] }
|
|
|
|
|
|
fini = { method_id = 4294967295 }
|
|
|
|
|
|
|
2025-08-22 06:05:58 +09:00
|
|
|
|
# Optional: ResultBox normalization (recommendation)
|
|
|
|
|
|
# connect = { method_id = 1, args = ["host", "port"], returns_result = true }
|
|
|
|
|
|
|
2025-08-22 02:54:50 +09:00
|
|
|
|
[libraries."libnyash_net_plugin.so".SocketConnBox]
|
|
|
|
|
|
type_id = 31
|
|
|
|
|
|
|
|
|
|
|
|
[libraries."libnyash_net_plugin.so".SocketConnBox.methods]
|
|
|
|
|
|
birth = { method_id = 0 }
|
|
|
|
|
|
send = { method_id = 1 }
|
|
|
|
|
|
recv = { method_id = 2 }
|
|
|
|
|
|
close = { method_id = 3 }
|
|
|
|
|
|
recvTimeout = { method_id = 4, args = ["timeout_ms"] }
|
|
|
|
|
|
fini = { method_id = 4294967295 }
|