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.io.File; 019 020/** 021 * HybsLoaderを生成するための、設定情報を管理するためのクラスです。 022 * 023 * @og.rev 5.1.1.0 (2009/12/01) 新規作成 024 * @og.group 業務ロジック 025 * 026 * @version 5.0 027 * @author Hiroki Nakamura 028 * @since JDK1.6, 029 */ 030public class HybsLoaderConfig { 031 private final String srcDir; 032 private final String classDir; 033 private final boolean useAutoCompile; // 5.1.8.0 (2010/07/01) メソッド名と同じフィールド名なので、変更 034 private final boolean useHotDeploy; // 5.1.8.0 (2010/07/01) メソッド名と同じフィールド名なので、変更 035 private final String classPath; 036 037 /** 038 * ソースディレクトリとクラスディレクトリのみを指定し、HybsLoaderの設定情報を構築します。 039 * この場合、AutoCompile機能、HotDeploy機能は無効になります。 040 * 041 * @param sDir ソースディレクトリ 042 * @param cDir クラスディレクトリ 043 */ 044 public HybsLoaderConfig( final String sDir, final String cDir ) { 045 this( sDir, cDir, false, false, null ); 046 } 047 048 /** 049 * HybsLoaderの設定情報を構築します。 050 * 051 * @param sDir ソースディレクトリ 052 * @param cDir クラスディレクトリ 053 * @param acom AutoCompile機能を有効にするか 054 * @param hdep HotDeploy機能を有効にするか 055 * @param clsPath コンパイル時のクラスパス 056 */ 057 public HybsLoaderConfig( final String sDir, final String cDir 058 ,final boolean acom, final boolean hdep, final String clsPath ) { 059 srcDir = sDir.charAt( sDir.length() -1 ) == File.separatorChar ? sDir : (sDir + File.separator); 060 classDir = cDir.charAt( cDir.length() -1 ) == File.separatorChar ? cDir : (cDir + File.separator); 061 062 useAutoCompile = acom; 063 useHotDeploy = hdep; 064 classPath = clsPath; 065 } 066 067 /** 068 * ソースディレクトリを取得します。 069 * 070 * @return ソースディレクトリ 071 */ 072 public String getSrcDir() { 073 return srcDir; 074 } 075 076 /** 077 * クラスディレクトリを取得します。 078 * 079 * @return クラスディレクトリ 080 */ 081 public String getClassDir() { 082 return classDir; 083 } 084 085 /** 086 * AutoCompileが有効化どうかを取得します。 087 * 088 * @return AutoCompileが有効か 089 */ 090 public boolean isAutoCompile() { 091 return useAutoCompile; 092 } 093 094 /** 095 * HotDeployが有効化どうかを取得します。 096 * 097 * @return HotDeployが有効か 098 */ 099 public boolean isHotDeploy() { 100 return useHotDeploy; 101 } 102 103 /** 104 * コンパイルのためのクラスパスを返します。 105 * コンストラクタで複数のクラスパスが指定された場合、 106 * ここで返されるクラスパスは、';'区切りのクラスパスになります。 107 * 108 * @return クラスパス 109 */ 110 public String getClassPath() { 111 return classPath; 112 } 113}