1/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
3#ident "$Id$"
4/*======
5This file is part of PerconaFT.
6
7
8Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved.
9
10 PerconaFT is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License, version 2,
12 as published by the Free Software Foundation.
13
14 PerconaFT is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with PerconaFT. If not, see <http://www.gnu.org/licenses/>.
21
22----------------------------------------
23
24 PerconaFT is free software: you can redistribute it and/or modify
25 it under the terms of the GNU Affero General Public License, version 3,
26 as published by the Free Software Foundation.
27
28 PerconaFT is distributed in the hope that it will be useful,
29 but WITHOUT ANY WARRANTY; without even the implied warranty of
30 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 GNU Affero General Public License for more details.
32
33 You should have received a copy of the GNU Affero General Public License
34 along with PerconaFT. If not, see <http://www.gnu.org/licenses/>.
35======= */
36
37#ident "Copyright (c) 2006, 2015, Percona and/or its affiliates. All rights reserved."
38
39#pragma once
40
41#include "ft/txn/rollback.h"
42
43class rollback_log_node_cache {
44public:
45 void init (uint32_t max_num_avail_nodes);
46 void destroy();
47 // returns true if rollback log node was successfully added,
48 // false otherwise
49 bool give_rollback_log_node(TOKUTXN txn, ROLLBACK_LOG_NODE log);
50 // if a rollback log node is available, will set log to it,
51 // otherwise, will set log to NULL and caller is on his own
52 // for getting a rollback log node
53 void get_rollback_log_node(TOKUTXN txn, ROLLBACK_LOG_NODE* log);
54
55private:
56 BLOCKNUM* m_avail_blocknums;
57 uint32_t m_first;
58 uint32_t m_num_avail;
59 uint32_t m_max_num_avail;
60 toku_mutex_t m_mutex;
61};
62
63ENSURE_POD(rollback_log_node_cache);
64