turbocharger

INDEX

turbochargerとは?

turbocharger は、一定間隔で発生するデータをワーカースレッドプールで処理します。
時間のかかる複数の処理を一定間隔で行うためのLuaスクリプティング環境です。
Windows Serviceとして提供されます。

以下のようなことが可能です。

動作環境
Windows XP and later
パッケージ内容
bin/turbocharger.exe
Windows Service 本体
bin/turbocharger.setting
設定ファイル
bin/sample.lua
サンプルスクリプト
注意事項
  1. 本ソフトウェアの利用は良識の範囲内でお願い致します。
  2. 本ソフトウェアの利用による損害の保証はお受けできません。
  3. 本ソフトウェアの利用は楽しんで行っていただきますようお願い致します。
インストール方法
  1. "turbocharger.setting" を目的の設定に編集。
  2. 管理者権限でSCコマンドを使用してサービスを登録。
    SC create [service name] binPath= "[path to exe] """[path to setting]""""
    SC create tcsvc1 binPath= "C:\turbocharger\turbocharger.exe """C:\turbocharger\turbocharger.setting""""
設定リファレンス
<setting/>

turbocharger設定のルート要素。

子要素
  • <service/> サービスの設定。
  • <script/> スクリプトエンジンの設定。
<service/>

サービスの設定。

属性
wake_interval
データを追加する間隔(ミリ秒)。デフォルト値/下限値:1000。
worker_num
プール内のワーカースレッド数。デフォルト値:5。
<script/>

スクリプトエンジンに関する設定。

属性
path
使用するLuaスクリプトファイルの絶対パス。必須。
スクリプト APIリファレンス

※スクリプトの具体的な記述方法は、同梱のsample.luaを参照してください。

エントリポイント関数
on_wake()
設定された間隔で呼び出されます。add_work を呼び出して処理されるデータを追加します。
戻り値:
[なし]
on_work( req, worker_id )
ワーカースレッドから呼ばれます。
パラメータ req:
add_work で追加したデータ。
パラメータ worker_id:
この関数を呼び出したワーカースレッドを識別するためのID。
戻り値:
[なし]
ユーティリティ関数
add_work( req )
on_wake内でデータを追加します。
パラメータ req:
データのテーブル。
戻り値:
[なし]
ndebug( msg )
cdb や ntsd などの標準デバッガに出力します。
パラメータ msg:
出力する文字列。
戻り値:
[なし]
更新履歴
2012/02/10
  • Version: 1.0.0.0
2014/06/10
  • Version: 1.0.1.0
  • Lua 5.1.5
クレジット
Lua (http://www.lua.org)

Copyright © 1994–2011 Lua.org, PUC-Rio.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Expat (http://expat.sourceforge.net)

Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and Clark Cooper
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Expat maintainers.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

LuaFileSystem (http://keplerproject.github.com/luafilesystem/)

Copyright © 1994–2011 Lua.org, PUC-Rio.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.