sql_array.h 5.37 KB
Newer Older
1 2 3
#ifndef SQL_ARRAY_INCLUDED
#define SQL_ARRAY_INCLUDED

4 5
/* Copyright (c) 2003, 2005-2007 MySQL AB, 2009 Sun Microsystems, Inc.
   Use is subject to license terms.
6 7 8

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
unknown's avatar
unknown committed
9
   the Free Software Foundation; version 2 of the License.
10 11 12 13 14 15 16 17

   This program 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 General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
18
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA */
19 20 21

#include <my_sys.h>

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 91 92
/**
   A wrapper class which provides array bounds checking.
   We do *not* own the array, we simply have a pointer to the first element,
   and a length.

   @remark
   We want the compiler-generated versions of:
   - the copy CTOR (memberwise initialization)
   - the assignment operator (memberwise assignment)

   @param Element_type The type of the elements of the container.
 */
template <typename Element_type> class Bounds_checked_array
{
public:
  Bounds_checked_array() : m_array(NULL), m_size(0) {}

  Bounds_checked_array(Element_type *el, size_t size)
    : m_array(el), m_size(size)
  {}

  void reset() { m_array= NULL; m_size= 0; }
 
  void reset(Element_type *array, size_t size)
  {
    m_array= array;
    m_size= size;
  }

  /**
    Set a new bound on the array. Does not resize the underlying
    array, so the new size must be smaller than or equal to the
    current size.
   */
  void resize(size_t new_size)
  {
    DBUG_ASSERT(new_size <= m_size);
    m_size= new_size;
  }

  Element_type &operator[](size_t n)
  {
    DBUG_ASSERT(n < m_size);
    return m_array[n];
  }

  const Element_type &operator[](size_t n) const
  {
    DBUG_ASSERT(n < m_size);
    return m_array[n];
  }

  size_t element_size() const { return sizeof(Element_type); }
  size_t size() const         { return m_size; }

  bool is_null() const { return m_array == NULL; }

  void pop_front()
  {
    DBUG_ASSERT(m_size > 0);
    m_array+= 1;
    m_size-= 1;
  }

  Element_type *array() const { return m_array; }

private:
  Element_type *m_array;
  size_t        m_size;
};

93 94
/*
  A typesafe wrapper around DYNAMIC_ARRAY
95 96

  TODO: Change creator to take a THREAD_SPECIFIC option.
97 98 99 100 101 102 103
*/

template <class Elem> class Dynamic_array
{
  DYNAMIC_ARRAY  array;
public:
  Dynamic_array(uint prealloc=16, uint increment=16)
104 105 106 107 108
  {
    init(prealloc, increment);
  }

  void init(uint prealloc=16, uint increment=16)
109
  {
110
    init_dynamic_array2(&array, sizeof(Elem), 0, prealloc, increment, MYF(0));
111 112
  }

113 114 115 116
  /**
     @note Though formally this could be declared "const" it would be
     misleading at it returns a non-const pointer to array's data.
  */
117
  Elem& at(size_t idx)
118
  {
119
    DBUG_ASSERT(idx < array.elements);
120 121
    return *(((Elem*)array.buffer) + idx);
  }
122
  /// Const variant of at(), which cannot change data
Sergei Golubchik's avatar
Sergei Golubchik committed
123
  const Elem& at(size_t idx) const
124
  {
125
    return *(((Elem*)array.buffer) + idx);
126 127
  }

Sergei Golubchik's avatar
Sergei Golubchik committed
128
  /// @returns pointer to first element
129 130 131 132 133
  Elem *front()
  {
    return (Elem*)array.buffer;
  }

Sergei Golubchik's avatar
Sergei Golubchik committed
134
  /// @returns pointer to first element
135
  const Elem *front() const
136
  {
137
    return (const Elem*)array.buffer;
138 139
  }

Sergei Golubchik's avatar
Sergei Golubchik committed
140
  /// @returns pointer to last element
141 142
  Elem *back()
  {
Sergei Golubchik's avatar
Sergei Golubchik committed
143
    return ((Elem*)array.buffer) + array.elements - 1;
144 145
  }

Sergei Golubchik's avatar
Sergei Golubchik committed
146
  /// @returns pointer to last element
147
  const Elem *back() const
148
  {
Sergei Golubchik's avatar
Sergei Golubchik committed
149
    return ((const Elem*)array.buffer) + array.elements - 1;
150 151
  }

152 153 154 155 156
  /**
     @retval false ok
     @retval true  OOM, @c my_error() has been called.
  */
  bool append(const Elem &el)
157
  {
158
    return insert_dynamic(&array, &el);
159 160
  }

Sergei Golubchik's avatar
Sergei Golubchik committed
161
  bool append_val(Elem el)
162
  {
Sergei Golubchik's avatar
Sergei Golubchik committed
163
    return (insert_dynamic(&array, (uchar*)&el));
164 165
  }

166 167 168 169 170
  bool push(Elem &el)
  {
    return append(el);
  }

Michael Widenius's avatar
Michael Widenius committed
171 172
  /// Pops the last element. Does nothing if array is empty.
  Elem& pop()
173
  {
Michael Widenius's avatar
Michael Widenius committed
174
    return *((Elem*)pop_dynamic(&array));
175 176
  }

Michael Widenius's avatar
Michael Widenius committed
177
  void del(uint idx)
178
  {
Michael Widenius's avatar
Michael Widenius committed
179
    delete_dynamic_element(&array, idx);
180 181
  }

Sergei Golubchik's avatar
Sergei Golubchik committed
182
  size_t elements() const
183
  {
184
    return array.elements;
185 186
  }

Sergei Golubchik's avatar
Sergei Golubchik committed
187
  void elements(size_t num_elements)
188
  {
189 190
    DBUG_ASSERT(num_elements <= array.max_element);
    array.elements= num_elements;
191 192
  }

193
  void clear()
194
  {
195
    elements(0);
196 197
  }

198
  void set(uint idx, const Elem &el)
199
  {
200
    set_dynamic(&array, &el, idx);
201 202
  }

203 204 205 206 207
  void freeze()
  {
    freeze_size(&array);
  }

208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
  bool resize(size_t new_size, Elem default_val)
  {
    size_t old_size= elements();
    if (allocate_dynamic(&array, new_size))
      return true;
    
    if (new_size > old_size)
    {
      set_dynamic(&array, (uchar*)&default_val, new_size - 1);
      /*for (size_t i= old_size; i != new_size; i++)
      {
        at(i)= default_val;
      }*/
    }
    return false;
  }

225
  ~Dynamic_array()
226
  {
227
    delete_dynamic(&array);
228 229
  }

230 231 232 233 234
  void free_memory()
  {
    delete_dynamic(&array);
  }

235
  typedef int (*CMP_FUNC)(const Elem *el1, const Elem *el2);
236 237 238

  void sort(CMP_FUNC cmp_func)
  {
239
    my_qsort(array.buffer, array.elements, sizeof(Elem), (qsort_cmp)cmp_func);
240
  }
241 242 243 244 245 246

  typedef int (*CMP_FUNC2)(const Elem *el1, const Elem *el2, void *);
  void sort(CMP_FUNC2 cmp_func, void *data)
  {
    my_qsort2(array.buffer, array.elements, sizeof(Elem), (qsort2_cmp)cmp_func, data);
  }
247 248
};

249
#endif /* SQL_ARRAY_INCLUDED */