-
Notifications
You must be signed in to change notification settings - Fork 15
/
TransactionManager.h
90 lines (68 loc) · 2.32 KB
/
TransactionManager.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
This file is part of the Zero Reserve Plugin for Retroshare.
Zero Reserve is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Zero Reserve is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with Zero Reserve. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef TRANSACTIONMANAGER_H
#define TRANSACTIONMANAGER_H
#include <zrtypes.h>
#include <map>
#include <string>
#include <vector>
class RsZeroReserveItem;
class RsZeroReserveTxItem;
class RSZRRemoteTxItem;
/**
Manage multi hop transaction. The payer is the coordiantor, all in between
nodes and the payee are cohorts. Cancel TX if an in-between node tries to
cheat or if an in-between node goes away during the TX
*/
class TransactionManager
{
TransactionManager( const TransactionManager &);
TransactionManager();
public:
typedef std::map< std::string, TransactionManager *> TxManagers;
enum TxPhase {
INIT = 0,
QUERY,
VOTE_YES,
VOTE_NO,
COMMIT,
ACK_COMMIT,
ABORT,
ABORT_REQUEST,
PHASE_NUMBER
};
enum Role {
Coordinator = 0,
Payee,
Hop
};
TransactionManager( const ZR::TransactionId & txId );
virtual ~TransactionManager();
virtual ZR::RetVal init() = 0;
static int handleTxItem( RsZeroReserveTxItem * item );
static int handleTxItem( RSZRRemoteTxItem *item );
static void timeout();
protected:
virtual ZR::RetVal processItem( RsZeroReserveItem * item ) = 0;
virtual void rollback() = 0;
virtual bool isTimedOut();
const ZR::TransactionId m_TxId;
TxPhase m_Phase;
qint64 m_startOfPhase;
/** maximum time of each phase */
qint64 m_maxTime[ PHASE_NUMBER ];
static TxManagers currentTX;
static void split(const std::string & s, std::vector< std::string > & v, const char sep = ':' );
};
#endif // TRANSACTIONMANAGER_H