summaryrefslogtreecommitdiff
path: root/src/bindings/eina_cxx/eina_array.hh
blob: eb9e5578aaa1ab3151fd8d3775d5d6e5f176f62b (plain)
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
#ifndef EINA_ARRAY_HH_
#define EINA_ARRAY_HH_

#include <Eo.h>
#include <eina_ptrarray.hh>
#include <eina_eo_concrete_fwd.hh>

#include <iostream>

namespace efl { namespace eina {

template <typename T, typename CloneAllocator = default_clone_allocator_placeholder, typename Enable = void>
class array : ptr_array<T, typename std::conditional
                      <std::is_same<CloneAllocator, default_clone_allocator_placeholder>::value
                       , heap_no_copy_allocator, CloneAllocator>::type>
{
  typedef ptr_array<T, typename std::conditional
                   <std::is_same<CloneAllocator, default_clone_allocator_placeholder>::value
                    , heap_no_copy_allocator, CloneAllocator>::type> _base_type;
public:
  typedef typename _base_type::value_type value_type; /**< The type of each element. */
  typedef typename _base_type::reference reference; /**< Type for a reference to an element. */
  typedef typename _base_type::const_reference const_reference; /**< Type for a constant reference to an element. */
  typedef typename _base_type::const_iterator const_iterator; /**< Type for a iterator for this container. */
  typedef typename _base_type::iterator iterator; /**< Type for a constant iterator for this container. */
  typedef typename _base_type::pointer pointer; /**< Type for a pointer to an element. */
  typedef typename _base_type::const_pointer const_pointer; /**< Type for a constant pointer for an element. */
  typedef typename _base_type::size_type size_type; /**< Type for size information used in the array. */
  typedef typename _base_type::difference_type difference_type; /**< Type to represent the distance between two iterators. */
  typedef typename _base_type::clone_allocator_type clone_allocator_type; /** Type for the clone allocator. */

  typedef typename _base_type::reverse_iterator reverse_iterator; /**< Type for reverse iterator for this container. */
  typedef typename _base_type::const_reverse_iterator const_reverse_iterator; /**< Type for reverse iterator for this container. */

  using _base_type::_base_type;
  using _base_type::clear;
  using _base_type::size;
  using _base_type::empty;
  using _base_type::get_clone_allocator;
  using _base_type::push_back;
  using _base_type::pop_back;
  using _base_type::insert;
  using _base_type::erase;
  using _base_type::assign;
  using _base_type::back;
  using _base_type::front;
  using _base_type::operator[];
  using _base_type::begin;
  using _base_type::end;
  using _base_type::rbegin;
  using _base_type::rend;
  using _base_type::cbegin;
  using _base_type::cend;
  using _base_type::crbegin;
  using _base_type::crend;
  using _base_type::ibegin;
  using _base_type::iend;
  using _base_type::cibegin;
  using _base_type::ciend;
  using _base_type::swap;
  using _base_type::max_size;
  using _base_type::native_handle;

  friend bool operator==(array<T, CloneAllocator> const& lhs, array<T, CloneAllocator> const& rhs)
  {
    return static_cast<_base_type const&>(lhs) == static_cast<_base_type const&>(rhs);
  }
};

/**
 * @internal
 */
template <typename T>
struct _ptr_eo_array_iterator : _ptr_array_iterator<Eo>
{
  typedef _ptr_array_iterator<Eo> _base_type;
  typedef _ptr_eo_array_iterator<T> _self_type;
  typedef typename remove_cv<T>::type value_type;
  typedef value_type* pointer;
  typedef value_type& reference;

  _base_type& _base() { return *this; }
  _base_type const& _base() const { return *this; }
  
  _ptr_eo_array_iterator(_base_type const& base) : _base_type(base) {}
  _ptr_eo_array_iterator() {}
  explicit _ptr_eo_array_iterator(void** ptr)
    : _base_type(ptr)
  {
  }
  _ptr_eo_array_iterator(_ptr_eo_array_iterator<value_type> const& other)
    : _base_type(static_cast<_base_type const&>(other))
  {
  }
  _self_type& operator=(_self_type const& other)
  {
    this->_base_type::operator=(other);
    return *this;
  }
  _self_type& operator++()
  {
    ++_base();
    return *this;
  }
  _self_type operator++(int)
  {
    _self_type tmp(*this);
    ++_base();
    return tmp;
  }
  _self_type& operator--()
  {
    --_base();
    return *this;
  }
  _self_type operator--(int)
  {
    _self_type tmp(*this);
    --_base();
    return tmp;
  }
  reference operator*() const
  {
    return *static_cast<pointer>(static_cast<void*>(native_handle()));
  }
  pointer operator->() const
  {
    return &**this;
  }

  using _base_type::native_handle;
};

template <typename T, typename CloneAllocator>
class array<T, CloneAllocator, typename std::enable_if<std::is_base_of<::efl::eo::concrete, T>::value>::type>
  : ptr_array<Eo, typename std::conditional
             <std::is_same<CloneAllocator, default_clone_allocator_placeholder>::value
              , eo_clone_allocator, CloneAllocator>::type>
{
  typedef ptr_array<Eo, typename std::conditional
                   <std::is_same<CloneAllocator, default_clone_allocator_placeholder>::value
                    , eo_clone_allocator, CloneAllocator>::type> _base_type;
  typedef array<T, CloneAllocator> _self_type;
public:
  typedef T value_type; /**< The type of each element. */
  typedef T& reference; /**< Type for a reference to an element. */
  typedef T const& const_reference; /**< Type for a constant reference to an element. */
  typedef _ptr_eo_array_iterator<T const> const_iterator; /**< Type for a iterator for this container. */
  typedef _ptr_eo_array_iterator<T> iterator; /**< Type for a constant iterator for this container. */
  typedef T* pointer; /**< Type for a pointer to an element. */
  typedef T const* const_pointer; /**< Type for a constant pointer for an element. */
  typedef typename _base_type::size_type size_type; /**< Type for size information used in the array. */
  typedef typename _base_type::difference_type difference_type; /**< Type to represent the distance between two iterators. */
  typedef typename _base_type::clone_allocator_type clone_allocator_type; /** Type for the clone allocator. */

  typedef std::reverse_iterator<iterator> reverse_iterator; /**< Type for reverse iterator for this container. */
  typedef std::reverse_iterator<const_iterator> const_reverse_iterator; /**< Type for reverse iterator for this container. */

  explicit array(Eina_Array* handle)
    : _base_type(handle) {}
  array(clone_allocator_type alloc) : _base_type(alloc) {}
  array() {}
  array(size_type n, const_reference t)
  {
    while(n--)
      push_back(t);
  }
  template <typename InputIterator>
  array(InputIterator i, InputIterator const& j
           , clone_allocator_type const& alloc = clone_allocator_type()
           , typename eina::enable_if<!eina::is_integral<InputIterator>::value>::type* = 0)
    : _base_type(alloc)
  {
    while(i != j)
      {
        push_back(*i);
        ++i;
      }
  }
  array(array<T, CloneAllocator> const& other)
    : _base_type()
  {
    insert(end(), other.begin(), other.end());
  }
  template <typename CloneAllocator1>
  array(array<T, CloneAllocator1>const& other)
    : _base_type()
  {
    insert(end(), other.begin(), other.end());
  }
  array<T, CloneAllocator>& operator=(array<T, CloneAllocator>const& other)
  {
    clear();
    insert(end(), other.begin(), other.end());
    return *this;
  }
  
  using _base_type::clear;
  using _base_type::size;
  using _base_type::empty;
  using _base_type::get_clone_allocator;
  using _base_type::pop_back;

  void push_back(const_reference w)
  {
    _base_type::push_back(this->_new_clone(*w._eo_ptr()));
  }
  iterator insert(iterator i, value_type const& t)
  {
    return _base_type::insert(i, this->_new_clone(*t._eo_ptr()));
  }
  iterator insert(iterator i, size_t n, value_type const& t)
  {
    return _base_type::insert(i, n, this->_new_clone(*t._eo_ptr()));
  }
  template <typename InputIterator>
  iterator insert(iterator p, InputIterator i, InputIterator j
                  , typename eina::enable_if<!eina::is_integral<InputIterator>::value>::type* = 0)
  {
    size_type index = p.native_handle() - this->_impl._array->data;
    while(i != j)
      {
        p = insert(p, *i);
        ++p;
        ++i;
      }
    return iterator(this->_impl._array->data + index);
  }
  iterator erase(iterator p)
  {
    return _base_type::erase(p);
  }
  iterator erase(iterator i, iterator j)
  {
    return _base_type::erase(i, j);
  }
  template <typename InputIterator>
  void assign(InputIterator i, InputIterator j
              , typename eina::enable_if<!eina::is_integral<InputIterator>::value>::type* = 0)
  {
    clear();
    insert(end(), i, j);
  }

  void assign(size_type n, value_type const& t)
  {
    clear();
    insert(end(), n, t);
  }
  reference front()
  {
    return *static_cast<pointer>(static_cast<void*>(&native_handle()->data[0]));
  }
  reference back()
  {
    return *static_cast<pointer>(static_cast<void*>(&native_handle()->data[eina_array_count(native_handle())-1]));
  }
  const_reference front() const { return const_cast<_self_type*>(this)->front(); }
  const_reference back() const { return const_cast<_self_type*>(this)->back(); }

  const_reference operator[](size_type n) const
  {
    return *static_cast<pointer>(static_cast<void*>(&native_handle()->data[n]));
  }
  reference operator[](size_type n)
  {
    return *static_cast<pointer>(static_cast<void*>(&native_handle()->data[n]));
  }

  iterator begin()
  {
    return iterator(&native_handle()->data[0]);
  }
  iterator end()
  {
    return iterator(&native_handle()->data[ ::eina_array_count(native_handle())]);
  }
  const_iterator begin() const
  {
    return const_cast< _self_type*>(this)->begin();
  }
  const_iterator end() const
  {
    return const_cast< _self_type*>(this)->end();
  }
  reverse_iterator rbegin()
  {
    return reverse_iterator(end());
  }
  reverse_iterator rend()
  {
    return reverse_iterator(begin());
  }
  const_reverse_iterator rbegin() const
  {
    return reverse_iterator(end());
  }
  const_reverse_iterator rend() const
  {
    return reverse_iterator(begin());
  }
  const_iterator cbegin() const
  {
    return begin();
  }
  const_iterator cend() const
  {
    return end();
  }
  const_reverse_iterator crbegin() const
  {
    return rbegin();
  }
  const_reverse_iterator crend() const
  {
    return rend();
  }
  
  using _base_type::swap;
  using _base_type::max_size;
  using _base_type::native_handle;

  friend bool operator==(array<T, CloneAllocator> const& lhs, array<T, CloneAllocator> const& rhs)
  {
    return lhs.size() == rhs.size() && std::equal(lhs.begin(), lhs.end(), rhs.begin());
  }
};

template <typename T, typename CloneAllocator>
bool operator!=(array<T, CloneAllocator> const& lhs, array<T, CloneAllocator> const& rhs)
{
  return !(lhs == rhs);
}
  
} }

#endif