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.util.Date; 019 020import org.opengion.fukurou.util.HybsTimerTask; 021import org.opengion.fukurou.system.LogWriter; 022 023import org.opengion.hayabusa.mail.MailManager_DB; 024 025/** 026 * メールパラメータテーブルを監視して、メール送信プログラムを呼び出します。 027 * このクラスは、HybsTimerTask を継承した タイマータスククラスです。 028 * startDaemon() がタイマータスクによって、呼び出されます。 029 * 030 * @og.group メールモジュール 031 * 032 * @version 4.0 033 * @author Sen.Li 034 * @since JDK1.6 035 */ 036public class MailDaemon extends HybsTimerTask { 037 038 private static final int LOOP_COUNTER = 24; // カウンタを24回に設定 039 040 private int loopCnt ; 041 042 /** 043 * デフォルトコンストラクター 044 * 045 * @og.rev 6.4.2.0 (2016/01/29) PMD refactoring. Each class should declare at least one constructor. 046 */ 047 public MailDaemon() { super(); } // これも、自動的に呼ばれるが、空のメソッドを作成すると警告されるので、明示的にしておきます。 048 049 /** 050 * このタイマータスクによって初期化されるアクションです。 051 * パラメータを使用した初期化を行います。 052 * 053 */ 054 @Override 055 public void initDaemon() { 056 // 何もありません。(PMD エラー回避) 057 } 058 059 /** 060 * タイマータスクのデーモン処理の開始ポイントです。 061 * 062 */ 063 @Override 064 protected void startDaemon() { 065 if( loopCnt % LOOP_COUNTER == 0 ) { 066 loopCnt = 1; 067 System.out.println( toString() + " " + new Date() + " " ); 068 } 069 else { 070 String systemId = null; 071 try { 072 systemId = getValue( "SYSTEM_ID" ); 073 final MailManager_DB manager = new MailManager_DB(); 074 manager.sendDBMail( systemId ); 075 } 076 catch( final RuntimeException rex ) { 077 final String errMsg = "メール送信失敗しました。" 078 + " SYSTEM_ID=" + systemId // 5.1.8.0 (2010/07/01) errMsg 修正 079 + " " + rex.getMessage(); // 5.10.7.0 (2019/01/11) 追加 080 LogWriter.log( errMsg ); 081 } 082 loopCnt++ ; 083 } 084 } 085}