| // @@@ START COPYRIGHT @@@ |
| // |
| // Licensed to the Apache Software Foundation (ASF) under one |
| // or more contributor license agreements. See the NOTICE file |
| // distributed with this work for additional information |
| // regarding copyright ownership. The ASF licenses this file |
| // to you under the Apache License, Version 2.0 (the |
| // "License"); you may not use this file except in compliance |
| // with the License. You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, |
| // software distributed under the License is distributed on an |
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| // KIND, either express or implied. See the License for the |
| // specific language governing permissions and limitations |
| // under the License. |
| // |
| // @@@ END COPYRIGHT @@@ |
| |
| #ifndef TMRMHBASE_H_ |
| #define TMRMHBASE_H_ |
| |
| #include "tmrm.h" |
| //#include "tmtxbase.h" |
| //#include "tmtxmsg.h" |
| |
| class CTmTxBase; |
| class CTmTxMessage; |
| |
| // HBase Branch implementation |
| class RM_Info_HBASE :public virtual RM_Info |
| { |
| public: |
| RM_Info_HBASE(); |
| ~RM_Info_HBASE(){} |
| |
| virtual int32 num_rm_partic(CTmTxBase *pp_txn); |
| virtual int32 num_rms_unresolved(CTmTxBase *pp_txn); |
| virtual void reset_resolved(CTmTxBase *pp_txn); |
| virtual int32 num_rm_failed(CTmTxBase *pp_txn); |
| virtual void init_rms(CTmTxBase *pp_txn, bool pv_partic); |
| virtual int32 shutdown_branches(bool pv_leadTM, bool pv_clean); |
| |
| // HBASE branch interface |
| virtual int32 commit_branches (CTmTxBase *pp_txn, int64 pv_flags, CTmTxMessage * pp_msg); |
| virtual int32 completeRequest_branches (CTmTxBase *pp_txn); |
| virtual int32 end_branches (CTmTxBase *pp_txn, int64 pv_flags); |
| virtual int32 forget_branches (CTmTxBase *pp_txn, int64 pv_flags); |
| virtual int32 forget_heur_branches (CTmTxBase *pp_txn, int64 pv_flags); |
| virtual int32 prepare_branches (CTmTxBase *pp_txn, int64 pv_flags, CTmTxMessage * pp_msg); |
| virtual int32 rollback_branches (CTmTxBase *pp_txn, int64 pv_flags, CTmTxMessage * pp_msg, |
| bool lv_error_condition = false); |
| virtual int32 start_branches (CTmTxBase *pp_txn, int64 pv_flags, CTmTxMessage * pp_msg); |
| virtual int32 registerRegion (CTmTxBase *pp_txn, int64 pv_flags, CTmTxMessage * pp_msg); |
| virtual int32 hb_ddl_operation(CTmTxBase *pp_txn, int64 pv_flags, CTmTxMessage * pp_msg); |
| }; |
| |
| #endif // TMRMHBASE_H_ |