001/* 002 * Copyright (c) 2009 The openGion Project. 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 013 * either express or implied. See the License for the specific language 014 * governing permissions and limitations under the License. 015 */ 016package org.opengion.plugin.daemon; 017 018import java.io.File; 019import java.util.Date; 020 021import org.opengion.hayabusa.common.HybsSystem; 022import org.opengion.fukurou.util.Shell; 023import org.opengion.fukurou.util.StringUtil; 024import org.opengion.fukurou.util.HybsTimerTask; 025 026/** 027 * 【Shell実行】 028 * 指定したパラメータでShellを実行します。 029 * このクラスは、HybsTimerTask を継承した タイマータスククラスです。 030 * startDaemon() がタイマータスクによって、呼び出されます。 031 * 032 * 接続のためのパラメータは以下です 033 * fukurouのShellをキックするパラメータと同じです。 034 * program : 動作プオグラム 035 * workDir : 実行ディレクトリ 036 * useBatch : BATCHプロセスを実行するのかどうか(初期値:false) 037 * stdout : 標準出を出力するかどうか(初期値:false) 038 * stderr : エラー出力を出力するかどうか(初期値:false) 039 * wait : プロセスの終了を待つ(true)/待たない(false) (初期値:true) 040 * 041 * @og.rev 5.6.9.1 (2013/10/11) 新規作成 042 * @og.group デーモン 043 * 044 * @version 4.0 045 * @author Takahashi Masakazu 046 * @since JDK5.0, 047 */ 048public class Daemon_RunShell extends HybsTimerTask { 049 /** このプログラムのVERSION文字列を設定します。 {@value} */ 050 private static final String VERSION = "6.4.2.0 (2016/01/29)" ; 051 052 /** カウンタを24回に設定 */ 053 private static final int LOOP_COUNTER = 24; 054 055 /** 3.6.1.0 (2005/01/05) タイムアウト時間を設定 */ 056 private final int timeout = HybsSystem.sysInt( "SHELL_TIMEOUT" ); 057 058 private int loopCnt ; 059 private String program ; 060 /** BATCHプロセスを実行するのかどうか(初期値:false) */ 061 private boolean useBatch ; 062 /** 標準出を出力するかどうか(初期値:false) */ 063 private boolean stdout ; 064 /** エラー出力を出力するかどうか(初期値:false) */ 065 private boolean stderr ; 066 /** プロセスの終了を待つ(true)/待たない(false) (初期値:true) */ 067 private boolean wait = true; 068 private File workDir ; 069 private boolean debug ; 070 071 private Shell shell; 072 073 /** 074 * デフォルトコンストラクター 075 * 076 * @og.rev 6.4.2.0 (2016/01/29) PMD refactoring. Each class should declare at least one constructor. 077 */ 078 public Daemon_RunShell() { super(); } // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。 079 080 /** 081 * このタイマータスクによって初期化されるアクションです。 082 * パラメータを使用した初期化を行います。 083 * 084 */ 085 @Override 086 public void initDaemon() { 087 debug = StringUtil.nval( getValue( "DEBUG" ),debug ) ; 088 program = StringUtil.nval( getValue( "program" ), program ); 089 useBatch = StringUtil.nval( getValue( "useBatch" ), useBatch ); 090 stdout = StringUtil.nval( getValue( "stdout" ), stdout ); 091 stderr = StringUtil.nval( getValue( "stderr" ), stderr ); 092 wait = StringUtil.nval( getValue( "wait" ), wait ); 093 if( getValue( "workDir" ) != null ){ workDir = new File(getValue( "workDir" )); } 094 shell = new Shell(); 095 shell.setCommand( program,useBatch ); 096 shell.setWait( wait ); 097 shell.setTimeout( timeout ); // 3.6.1.0 (2005/01/05) 098 shell.setWorkDir( workDir ); 099 if( debug ) { System.out.println(program+"/"+useBatch+"/"+wait+"/"+timeout+"/"+workDir.toString()); } 100 } 101 102 /** 103 * タイマータスクのデーモン処理の開始ポイントです。 104 * 105 */ 106 @Override 107 protected void startDaemon() { 108 if( loopCnt % LOOP_COUNTER == 0 ) { 109 loopCnt = 1; 110 System.out.println( toString() + " " + new Date() + " " ); 111 } 112 else { 113 loopCnt++ ; 114 } 115 // 実行 116 final int rtnCode = shell.exec(); // 0 は正常終了を示す 117 if( rtnCode < 0 ){System.out.println( "Shell Run Error:" + program );} 118 } 119}