AppBinderはアプリケーション間の拘束関係(バインディング)を作るアプリです。
アプリケーションバインディングとは「あるプログラムが起動したらあれを起動する」のような関係のことです。
このプログラムの目的は単なるアプリケーションランチャーではなく、バインドされたアプリの障害検知/修復および永続化を実現することです。
Calculatorとnotepad(C:\Windows\System32\notepad.exe)をバインディングする
Excel.exeとCalculatorのバインディングを追加する
リスタートポリシーでは"on_failure(exit codeが0以外)"と"always"が選べます
実行するトリガープログラムのプロセス名が拡張子.exeを除いたものと一致しない場合、うまく動きません。
Trigger EXE/Processの部分で適切なプロセス名を入力してください。
おそらくExit codeが0以外で終了しています。
一般的には正常終了では0がexit codeとなりますが、正常終了においても-1を返すプログラムがあります。
自身で書いたプログラムの場合は修正してください。
そうでない場合、自分がいつか除外するexit codeのオプションを実装する気になったときになんとかします。
逆方向のバインディングを追加すれば良いのですが、ちょっと面倒です。
必要な人が多そうならちゃんと考えるかも。
AppBinder is an application-binding program.
This is not a general application launcher.
It acheves fault detection/recover and application persistence.
Bind Calculator.exe and notepad.exe
We just bind a Calculator and Excel.exe
It supports restart policy such as "on failure" and "always".
If a process name of "something.exe" is different from "something", it does not work now. Please set the correct process name on the "Trigger EXE/Process" manually.
Probably, the trigger program's exit code is non-zero value(something fault).
If it is your application, please modify the return number.
When I get a motivation to make "exception exit-code", it will be better.
I am considering this.
It works when we add an opposite binding as a new config now, but it is not beautiful.