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.fukurou.util;
017
018import java.util.Date ;
019
020import org.opengion.fukurou.system.LogWriter;                                           // 6.4.2.0 (2016/01/29) package変更 fukurou.util → fukurou.system
021
022/**
023 * StopTimer は、指定の一定時間の間、実行を停止します。
024 * 引数に、停止時間を秒単位で指定します。
025 * 初期値は、5(秒)です。
026 *
027 * Usage: java org.opengion.fukurou.fukurou.util.StopTimer 停止時間(秒) [-T]
028 *
029 * @og.group ユーティリティ
030 *
031 * @version  4.0
032 * @author   Kazuhiko Hasegawa
033 * @since    JDK5.0,
034 */
035public final class StopTimer {
036
037        /**
038         * デフォルトコンストラクターをprivateにして、
039         * オブジェクトの生成をさせないようにする。
040         *
041         */
042        private StopTimer() {}
043
044        /**
045         * 処理を実行する main メソッドです。
046         *
047         * 引数には、処理を停止する 秒数 を入力します。
048         * -T を入力した場合は、処理開始時刻を表示します。
049         *
050         * Usage: java org.opengion.fukurou.fukurou.util.StopTimer 停止時間(秒) [-T]
051         *
052         * @param       args    コマンド引数配列
053         */
054        public static void main( final String[] args ) {
055                long stopTime ;
056
057                if( args.length >= 1 ) { stopTime = 1000L * Long.parseLong( args[0] ) ; }
058                else {
059                        LogWriter.log("Usage: java org.opengion.fukurou.fukurou.util.StopTimer 停止時間(秒) [-T]");
060                        return;
061                }
062
063                if( args.length ==2 && "-T".equals( args[1] ) ) {
064                        System.out.println( new Date() );
065                }
066
067                try {
068                        Thread.sleep( stopTime );
069                }
070                catch( final InterruptedException ex ) {
071                        LogWriter.log( "InterruptedException:" + ex.getMessage() );
072                }
073        }
074}