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     */
016    package org.opengion.fukurou.db;
017    
018    import org.opengion.fukurou.util.ApplicationInfo;
019    
020    
021    /**
022     * Transaction インターフェースを継承した、リアルタイãƒ?ƒˆランザクションクラスですã?
023     *
024     * これはã€??常のトランザクションクラスと異なりã?トランザクション処ç�?‚’しませんã€?
025     * つまりã?トランザクション処ç�?‚’行わなã�?�¨きに、メソãƒ?ƒ‰等ã?共通的な使用ができるようにするã€?
026     * Connection のラãƒ??クラスになりますã?
027     * ただしã?こã?クラスが生成されてから、クローズされるまでは、å?部に保留した Connection はã€?
028     * ずっと使ã�?¶šけられますã?で、ConnectionFactory から取り出した Connection と同様に
029     * トランザクション性は維持されますã?
030     * こã?クラスより作æ?されたã?Statement は、取りå?しå?で、きちんとクロース処ç�?‚’
031     *
032     * こã?クラスでは、コミットã?ロールバック、クローズ処ç�??、リアルタイãƒ?�«行われますã?
033     *
034     * @og.rev 5.1.9.0 (2010/08/01) 新規作æ?
035     * @og.rev 5.3.8.0 (2011/08/01) クラスのå†?ƒ¨構é?変更
036     *
037     * @version  5.0
038     * @author       Kazuhiko Hasegawa
039     * @since    JDK6.0,
040     */
041    public class TransactionReal extends TransactionImpl {
042    //public class TransactionReal implements Transaction {
043    //      private final Connection conn ;
044    //      private final String     dbid ;
045    //      private         ApplicationInfo appInfo = null;
046    //      private         String     dbid = null;
047    //      private         Connection conn = null;                 // 5.3.7.0 (2011/07/01) ä¸?º¦ã�?�‘ close するように変更しますã?
048    
049            /**
050             * ApplicationInfo を指定して作æ?する、コンストラクター
051             *
052             * こã?クラスは、トランザクション処ç�?‚’しなã�??合に、従来の Connection の
053             * 代わりに使用することを想定したクラスのオブジェクトを作æ?しますã?
054             *
055             * @og.rev 5.3.7.0 (2011/07/01) dbidを引数から削除
056             * @og.rev 5.3.8.0 (2011/08/01) 親クラスを呼ぶように変更
057             *
058             * @param       appInfo å†?ƒ¨統制用のアクセスæƒ??
059             */
060    //      public TransactionReal( final String dbid , final ApplicationInfo appInfo ) {
061            public TransactionReal( final ApplicationInfo appInfo ) {
062                    super( appInfo );
063    //              this.appInfo = appInfo;
064    //              this.dbid = dbid;
065    //              this.conn = ConnectionFactory.connection( dbid,appInfo );
066            }
067    
068            /**
069             * 呼ばれる都度、新しい Connection を返しますã?ただしã?Connection 自身はã€?
070             * ConnectionFactory から取得するためã?基本çš?�«はキャãƒ?‚·ュされたConnectionですã?
071             *
072             * @og.rev 5.3.7.0 (2011/07/01) dbidチェãƒ?‚¯
073             * @og.rev 5.3.8.0 (2011/08/01) 親クラスのメソãƒ?ƒ‰を呼ぶ為、å»?­¢
074             *
075             * @param       dbid  接続å?ID (こã?クラスでは無視されまã�?
076             *
077             * @return      æŒ?®šã?DBID に対応したã?Connection オブジェクãƒ?
078             */
079    //      public Connection getConnection( final String dbid ) {
080    //              if( conn != null ) { close(); }
081    //
082    //              this.dbid = dbid;
083    //              this.conn = ConnectionFactory.connection( dbid,appInfo );
084    //              return conn ;
085    //      }
086    
087            /**
088             * コミットå?ç�?‚’行いますã?
089             *
090             * これは、呼ばれる都度、リアルタイãƒ?�«処ç�?�—ますã?
091             *
092             * @og.rev 5.3.8.0 (2011/08/01) 親クラスのメソãƒ?ƒ‰を呼ぶ為、å»?­¢
093             *
094             * @return 正常:true/異常:false
095             */
096    //      public boolean commit() {
097    //              return Closer.commit( conn );
098    //      }
099    
100            /**
101             * ロールバック処ç�?‚’行いますã?
102             *
103             * これは、呼ばれる都度、リアルタイãƒ?�«処ç�?�—ますã?
104             *
105             * @og.rev 5.3.8.0 (2011/08/01) 親クラスのメソãƒ?ƒ‰を呼ぶ為、å»?­¢
106             *
107             * @return 正常:true/異常:false
108             */
109    //      public boolean rollback() {
110    //              return Closer.rollback( conn );
111    //      }
112    
113            /**
114             * トランザクションの、終äº?™‚処ç�?‚’行いますã?
115             *
116             * @og.rev 5.3.8.0 (2011/08/01) 親クラスのメソãƒ?ƒ‰を呼ぶ為、å»?­¢
117             *
118             * @see #close( boolean )
119             *
120             * @return 正常:true/異常:false
121             */
122    //      public boolean close() {
123    //              return close( false );
124    //      }
125    
126            /**
127             * コネクションの、終äº?™‚処ç�?‚’行いますã?
128             *
129             * 引数は、正常かどã�?�‹を判定するフラグですã?異常の場合ã?、true をセãƒ?ƒˆしますã?
130             * これは、ConnectionFactory のプã?ルに戻すかどã�?�‹を判断するのに使われますã?
131             * ä¸?º¦でもã?エラーが発生したコネクションは、ç?æ£?�—ますã?
132             * それ以外ã?、ã?ールに戻しますã?
133             *
134             * @og.rev 5.3.7.0 (2011/07/01) close時に、コネクションã‚?null 化しておくã€?
135             * @og.rev 5.3.8.0 (2011/08/01) 終äº??ç�?‚’行い、親クラスのrealClose() を呼ぶã€?
136             *
137             * @param       errFlag  [true:エラー状æ…?false:通常]
138             *
139             * @return 正常:true/異常:false
140             */
141            @Override
142            public boolean close( final boolean errFlag ) {
143    //              if( errFlag ) { ConnectionFactory.remove( conn,dbid ); }        // 削除
144    //              else {                  ConnectionFactory.close( conn,dbid );  }        // 返却
145    
146    //              conn = null;    // 5.3.7.0 (2011/07/01)
147    //              return true;
148    
149                    // 5.3.8.0 (2011/08/01) 終äº??ç�?‚’行い、親クラスのrealClose() を呼ぶã€?
150                    super.close( errFlag );
151                    finish();
152                    realClose();
153    
154                    return true;
155            }
156    }