1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#ifndef DRIZZLED_DISCRETE_INTERVAL_H
22
#define DRIZZLED_DISCRETE_INTERVAL_H
25
Such interval is "discrete": it is the set of
26
{ auto_inc_interval_min + k * increment,
27
0 <= k <= (auto_inc_interval_values-1) }
28
Where "increment" is maintained separately by the user of this class (and is
29
currently only session->variables.auto_increment_increment).
30
It mustn't derive from Sql_alloc, because SET INSERT_ID needs to
31
allocate memory which must stay allocated for use by the next statement.
33
class Discrete_interval {
35
uint64_t interval_min;
36
uint64_t interval_values;
37
uint64_t interval_max; // excluded bound. Redundant.
39
Discrete_interval *next; // used when linked into Discrete_intervals_list
40
void replace(uint64_t start, uint64_t val, uint64_t incr)
44
interval_max= (val == UINT64_MAX) ? val : start + val * incr;
46
Discrete_interval(uint64_t start, uint64_t val, uint64_t incr) :
47
interval_min(start), interval_values(val),
48
interval_max((val == UINT64_MAX) ? val : start + val * incr),
52
interval_min(0), interval_values(0),
53
interval_max(0), next(NULL)
55
uint64_t minimum() const { return interval_min; };
56
uint64_t values() const { return interval_values; };
57
uint64_t maximum() const { return interval_max; };
59
If appending [3,5] to [1,2], we merge both in [1,5] (they should have the
60
same increment for that, user of the class has to ensure that). That is
61
just a space optimization. Returns 0 if merge succeeded.
63
bool merge_if_contiguous(uint64_t start, uint64_t val, uint64_t incr)
65
if (interval_max == start)
67
if (val == UINT64_MAX)
69
interval_values= interval_max= val;
73
interval_values+= val;
74
interval_max= start + val * incr;
84
/* List of Discrete_interval objects */
85
class Discrete_intervals_list {
87
Discrete_interval *head;
88
Discrete_interval *tail;
90
When many intervals are provided at the beginning of the execution of a
91
statement (in a replication slave or SET INSERT_ID), "current" points to
92
the interval being consumed by the thread now (so "current" goes from
93
"head" to "tail" then to NULL).
95
Discrete_interval *current;
96
uint32_t elements; // number of elements
98
/* helper function for copy construct and assignment operator */
99
void copy_(const Discrete_intervals_list& from)
101
for (Discrete_interval *i= from.head; i; i= i->next)
103
Discrete_interval j= *i;
108
Discrete_intervals_list() :
109
head(NULL), tail(NULL),
110
current(NULL), elements(0) {};
111
Discrete_intervals_list(const Discrete_intervals_list& from) :
112
head(NULL), tail(NULL),
113
current(NULL), elements(0)
117
Discrete_intervals_list& operator=(const Discrete_intervals_list& from)
130
for (Discrete_interval *i= head; i;)
132
Discrete_interval *next= i->next;
139
const Discrete_interval* get_next()
141
Discrete_interval *tmp= current;
143
current= current->next;
146
~Discrete_intervals_list() { empty(); };
147
uint64_t minimum() const { return (head ? head->minimum() : 0); };
148
uint64_t maximum() const { return (head ? tail->maximum() : 0); };
149
uint32_t nb_elements() const { return elements; }
151
bool append(uint64_t start, uint64_t val, uint64_t incr)
153
/* first, see if this can be merged with previous */
154
if ((head == NULL) || tail->merge_if_contiguous(start, val, incr))
156
/* it cannot, so need to add a new interval */
157
Discrete_interval *new_interval= new Discrete_interval(start, val, incr);
158
return(append(new_interval));
163
bool append(Discrete_interval *new_interval)
165
if (unlikely(new_interval == NULL))
168
head= current= new_interval;
170
tail->next= new_interval;
178
#endif /* DRIZZLED_DISCRETE_INTERVAL_H */