summaryrefslogtreecommitdiff
path: root/src/bindings/cxx/eina_cxx/eina_ptrlist.hh
blob: 2c2416c06ec0c8b877c106fd8ce0e76c16eb7e1c (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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
/*
 * Copyright 2019 by its authors. See AUTHORS.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#ifndef EINA_PTRLIST_HH_
#define EINA_PTRLIST_HH_

#include <Eina.h>
#include <eina_clone_allocators.hh>
#include <eina_lists_auxiliary.hh>
#include <eina_type_traits.hh>
#include <eina_accessor.hh>
#include <eina_eo_concrete_fwd.hh>
#include <eina_iterator.hh>
#include <eina_throw.hh>
#include <eina_range_types.hh>

#include <memory>
#include <iterator>
#include <type_traits>

/**
 * @addtogroup Eina_Cxx_Containers_Group
 *
 * @{
 */

namespace efl { namespace eina {

/**
 * @defgroup Eina_Cxx_Pointer_List_Group List of Pointers
 * @ingroup Eina_Cxx_Containers_Group
 *
 * @{
 */

/**
 * @internal
 */
struct _ptr_list_iterator_base
{
  typedef std::ptrdiff_t difference_type;
  typedef std::bidirectional_iterator_tag iterator_category;

  _ptr_list_iterator_base() : _list(0) {}
  _ptr_list_iterator_base(Eina_List* list, Eina_List* node)
    : _list(list), _node(node)
  {}

protected:
  Eina_List *_list, *_node;
};

/**
 * @internal
 */
template <typename T>
struct _ptr_list_iterator : _ptr_list_iterator_base
{
  typedef typename remove_cv<T>::type value_type;
  typedef value_type* pointer;
  typedef value_type& reference;

  _ptr_list_iterator() {}
  explicit _ptr_list_iterator(Eina_List* list, Eina_List* node)
    : _ptr_list_iterator_base(list, node)
  {
  }
  operator _ptr_list_iterator<T const>()
  {
    return _ptr_list_iterator<T const>{_list, _node};
  }

  _ptr_list_iterator<T>& operator++()
  {
    _node = eina_list_next(_node);
    return *this;
  }
  _ptr_list_iterator<T> operator++(int)
  {
    _ptr_list_iterator<T> tmp(*this);
    ++*this;
    return tmp;
  }
  _ptr_list_iterator<T>& operator--()
  {
    if(_node)
      _node = eina_list_prev(_node);
    else
      _node = eina_list_last(_list);
    return *this;
  }
  _ptr_list_iterator<T> operator--(int)
  {
    _ptr_list_iterator<T> tmp(*this);
    --*this;
    return tmp;
  }
  reference operator*() const
  {
    void* data = eina_list_data_get(_node);
    return *static_cast<pointer>(data);
  }
  pointer operator->() const
  {
    return &**this;
  }
  Eina_List* native_handle()
  {
    return _node;
  }
  Eina_List const* native_handle() const
  {
    return _node;
  }
  friend inline bool operator==(_ptr_list_iterator<T> lhs, _ptr_list_iterator<T> rhs)
  {
    return lhs._node == rhs._node;
  }
  friend inline bool operator!=(_ptr_list_iterator<T> lhs, _ptr_list_iterator<T> rhs)
  {
    return !(lhs == rhs);
  }
};

/**
 * @internal
 */
struct _ptr_list_access_traits
{
  template <typename T>
  struct iterator
  {
    typedef _ptr_list_iterator<T> type;
  };
  template <typename T>
  struct const_iterator : iterator<T const> {};
  template <typename T>
  struct native_handle
  {
    typedef Eina_List* type;
  };
  template <typename T>
  struct const_native_handle
  {
    typedef Eina_List const* type;
  };
  template <typename T>
  static Eina_List* native_handle_from_const(Eina_List const* list)
  {
    return const_cast<Eina_List*>(list);
  }
  template <typename T>
  static T& back(Eina_List* list)
  {
    return *static_cast<T*>(eina_list_data_get(eina_list_last(list)));
  }
  template <typename T>
  static T const& back(Eina_List const* list)
  {
    return _ptr_list_access_traits::back<T>(const_cast<Eina_List*>(list));
  }
  template <typename T>
  static T& front(Eina_List* list)
  {
    return *static_cast<T*>(eina_list_data_get(list));
  }
  template <typename T>
  static T const& front(Eina_List const* list)
  {
    return _ptr_list_access_traits::front<T>(const_cast<Eina_List*>(list));
  }
  template <typename T>
  static _ptr_list_iterator<T> begin(Eina_List* list)
  {
    return _ptr_list_iterator<T>(list, list);
  }
  template <typename T>
  static _ptr_list_iterator<T> end(Eina_List* list)
  {
    return _ptr_list_iterator<T>(list, 0);
  }
  template <typename T>
  static _ptr_list_iterator<T const> begin(Eina_List const* list)
  {
    return _ptr_list_access_traits::begin<T>(const_cast<Eina_List*>(list));
  }
  template <typename T>
  static _ptr_list_iterator<T const> end(Eina_List const* list)
  {
    return _ptr_list_access_traits::end<T>(const_cast<Eina_List*>(list));
  }
  template <typename T>
  static std::reverse_iterator<_ptr_list_iterator<T> > rbegin(Eina_List* list)
  {
    return std::reverse_iterator<_ptr_list_iterator<T> >(_ptr_list_access_traits::end<T>(list));
  }
  template <typename T>
  static std::reverse_iterator<_ptr_list_iterator<T> > rend(Eina_List* list)
  {
    return std::reverse_iterator<_ptr_list_iterator<T> >(_ptr_list_access_traits::begin<T>(list));
  }
  template <typename T>
  static std::reverse_iterator<_ptr_list_iterator<T const> > rbegin(Eina_List const* list)
  {
    return _ptr_list_access_traits::rbegin<T>(const_cast<Eina_List*>(list));
  }
  template <typename T>
  static std::reverse_iterator<_ptr_list_iterator<T const> > rend(Eina_List const* list)
  {
    return _ptr_list_access_traits::rend<T>(const_cast<Eina_List*>(list));
  }
  template <typename T>
  static _ptr_list_iterator<T const> cbegin(Eina_List const* list)
  {
    return _ptr_list_access_traits::begin<T>(list);
  }
  template <typename T>
  static _ptr_list_iterator<T const> cend(Eina_List const* list)
  {
    return _ptr_list_access_traits::end<T>(list);
  }
  template <typename T>
  static std::reverse_iterator<_ptr_list_iterator<T const> > crbegin(Eina_List const* list)
  {
    return _ptr_list_access_traits::rbegin<T>(list);
  }
  template <typename T>
  static std::reverse_iterator<_ptr_list_iterator<T const> > crend(Eina_List const* list)
  {
    return _ptr_list_access_traits::rend<T>(list);
  }
  template <typename T>
  static eina::iterator<T> ibegin(Eina_List* list)
  {
    return eina::iterator<T>( ::eina_list_iterator_new(list) );
  }
  template <typename T>
  static eina::iterator<T> iend(Eina_List*)
  {
    return eina::iterator<T>();
  }
  template <typename T>
  static eina::iterator<T const> ibegin(Eina_List const* list)
  {
    return eina::iterator<T const>( ::eina_list_iterator_new(list) );
  }
  template <typename T>
  static eina::iterator<T const> iend(Eina_List const*)
  {
    return eina::iterator<T const>();
  }
  template <typename T>
  static eina::iterator<T const> cibegin(Eina_List const* list)
  {
    return _ptr_list_access_traits::ibegin<T>(list);
  }
  template <typename T>
  static eina::iterator<T const> ciend(Eina_List const* list)
  {
    return _ptr_list_access_traits::iend<T>(list);
  }
  template <typename T>
  static std::size_t size(Eina_List const* list)
  {
    return eina_list_count(list);
  }
  template <typename T>
  static bool empty(Eina_List const* list)
  {
    return _ptr_list_access_traits::size<T>(list) == 0u;
  }
};

template <typename T, typename Allocator>
class ptr_list;

/**
 * @ingroup Eina_Cxx_Range_Group
 *
 * Range class for @ref ptr_list.
 */
template <typename T>
struct range_ptr_list : _range_template<T, _ptr_list_access_traits>
{
  typedef _range_template<T, _ptr_list_access_traits> _base_type; /**< Type for the base class. */
  typedef typename _base_type::value_type value_type; /**< The type of each element. */
  typedef typename _base_type::native_handle_type native_handle_type; /** Type for the native Eina list handle. */

  /**
   * @brief Creates a singular range
   */
  range_ptr_list()
  {}

  /**
   * @brief Creates a range from a native Eina list handle.
   */
  range_ptr_list(native_handle_type list)
    : _base_type(list)
  {}

  /**
   * @brief Creates a range from a @c ptr_list object.
   */
  template <typename Allocator>
  range_ptr_list(ptr_list<value_type, Allocator>& list)
    : _base_type(list.native_handle())
  {}
};

/**
 * Common implementations for @c ptr_list.
 */
template <typename T, typename CloneAllocator>
struct _ptr_list_common_base
{
  typedef typename remove_cv<typename std::remove_reference<T>::type>::type value_type;
  typedef CloneAllocator clone_allocator_type; /**< Type for the clone allocator. */

  /**
   * @brief Creates an list with the given clone allocator.
   */
  _ptr_list_common_base(CloneAllocator clone_allocator)
    : _impl(clone_allocator)
  {}

  /**
   * @brief Create a new object from a handle to a native Eina_List.
   * @param _list Handle to a native Eina_List.
   *
   * This constructor wraps a pre-allocated Eina_List providing an OOP
   * interface to it.
   *
   * @warning It is important to note that the created object gains
   * ownership of the handle, deallocating it at destruction time.
   */
  _ptr_list_common_base(Eina_List* _list)
    : _impl(_list)
  {}

  _ptr_list_common_base<T, CloneAllocator>& operator=(_ptr_list_common_base<T, CloneAllocator>&& other) = default;
  _ptr_list_common_base(_ptr_list_common_base<T, CloneAllocator>&& other) = default;

  /**
   * @brief Default constructor. Create an empty list.
   *
   * This constructor creates a list with no elements.
   */
  _ptr_list_common_base() {}

  /**
   * @internal
   */
  CloneAllocator& _get_clone_allocator()
  {
    return _impl;
  }

  /**
   * @internal
   */
  CloneAllocator const& _get_clone_allocator() const
  {
    return _impl;
  }

  /**
   * @internal
   */
  void _delete_clone(value_type const* p)
  {
    _get_clone_allocator().deallocate_clone(p);
  }

  /**
   * @internal
   */
  value_type* _new_clone(typename container_value_type<T>::type const& a)
  {
    return _get_clone_allocator().allocate_clone(a);
  }

  /**
   * @internal
   */
  struct _ptr_list_impl : CloneAllocator
  {
    _ptr_list_impl() : _list(0) {}
    _ptr_list_impl(Eina_List* list) : _list(list) {}
    _ptr_list_impl(CloneAllocator allocator)
      : clone_allocator_type(allocator), _list(0) {}

    Eina_List* _list;
  };

  /**
   * @internal
   */
  _ptr_list_impl _impl;

private:
  /** Disabled copy constructor. */
  _ptr_list_common_base(_ptr_list_common_base const& other);
  /** Disabled assignment operator. */
  _ptr_list_common_base& operator=(_ptr_list_common_base const& other);
};

/**
 * List class. It provides an OOP interface to the @c Eina_List
 * functions, and automatically take care of allocating and deallocating
 * resources using the RAII programming idiom.
 *
 * It also provides additional member functions to facilitate the access
 * to the list content, much like a STL list.
 */
template <typename T, typename CloneAllocator = heap_no_copy_allocator>
class ptr_list : protected _ptr_list_common_base<T, CloneAllocator>
{
  typedef _ptr_list_common_base<T, CloneAllocator> _base_type; /**< Type for the base class. */
public:
  typedef typename container_value_type<T>::type
    value_type; /**< The type of each element. */
  typedef value_type& reference; /**< Type for a reference to an element. */
  typedef value_type const& const_reference; /**< Type for a constant reference to an element. */
  typedef _ptr_list_iterator<value_type const> const_iterator; /**< Type for a iterator for this container. */
  typedef _ptr_list_iterator<value_type> iterator; /**< Type for a constant iterator for this container. */
  typedef value_type* pointer; /**< Type for a pointer to an element. */
  typedef value_type const* const_pointer; /**< Type for a constant pointer for an element. */
  typedef std::size_t size_type; /**< Type for size information. */
  typedef std::ptrdiff_t difference_type; /**< Type to represent the distance between two iterators. */
  typedef CloneAllocator 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. */

  typedef Eina_List* native_handle_type;
  
  typedef std::unique_ptr<value_type, clone_allocator_deleter<clone_allocator_type> > _unique_ptr;

  /**
   * @brief Default constructor. Create an empty list.
   *
   * This constructor creates a @c ptr_list object with no elements.
   */
  ptr_list() {}

  ptr_list(Eina_List* handle) : _base_type(handle) {}
  
  ptr_list(clone_allocator_type alloc)
    : _base_type(alloc)
  {}

  ptr_list<T, CloneAllocator>& operator=(ptr_list<T, CloneAllocator>&& other) = default;
  ptr_list(ptr_list<T, CloneAllocator>&& other) = default;
  
  /**
   * @brief Construct an list object with @p n copies of @p t.
   * @param n Number of elements.
   * @param t Value to be copied to each element.
   *
   * This constructor creates an @c ptr_list with @p n elements, each
   * one as a copy of @p t.
   */
  ptr_list(size_type n, const_reference t)
  {
    while(n--)
      push_back(t);
  }

  /**
   * @brief Create a list with elements from the given range.
   * @param i Iterator to the initial position. The element pointed by this iterator will be copied.
   * @param j Iterator to the final position. The element pointed by this iterator will NOT be copied.
   * @param alloc Clone allocator to be used.
   *
   * This constructor creates a @c ptr_list with copies of the elements
   * between @p i and @p j in the same order.
   *
   * @note The ending element (pointed by @p j) is not copied.
   */
  template <typename InputIterator>
  ptr_list(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;
      }
  }

  /**
   * @brief Copy constructor. Creates a copy of the given @c ptr_list.
   * @param other Another @c ptr_list of the same type.
   *
   * This constructor creates a @c ptr_list containing a copy of each
   * element inside @p other in the same order.
   */
  ptr_list(ptr_list<T, CloneAllocator> const& other)
    : _base_type()
  {
    insert(end(), other.begin(), other.end());
  }

  /**
   * @brief Creates a copy of a @c ptr_list with a different clone allocator.
   * @param other Another @c ptr_list with a different clone allocator.
   *
   * This constructor creates a @c ptr_list containing a copy of each
   * element inside @p other in the same order, even if the given list
   * uses a different clone allocator.
   */
  template <typename CloneAllocator1>
  ptr_list(ptr_list<T, CloneAllocator1>const& other)
    : _base_type()
  {
    insert(end(), other.begin(), other.end());
  }

  /**
   * @brief Destructor. Release all allocated elements.
   */
  ~ptr_list()
  {
    clear();
  }

  /**
   * @brief Replace the current content with the cotent of another list.
   * @param other Another @c ptr_list of the same type.
   *
   * This assignment operator replaces the content of the list by a copy
   * of the content of @p other. The list size is adjusted accordingly
   * and the newly copied elements keep their original order.
   */
  ptr_list<T, CloneAllocator>& operator=(ptr_list<T, CloneAllocator>const& other)
  {
    clear();
    insert(end(), other.begin(), other.end());
    return *this;
  }

  /**
   * @brief Remove all the elements of the list.
   */
  void clear()
  {
    for(iterator first = begin(), last = end(); first != last; ++first)
      this->_delete_clone(&*first);
    eina_list_free(this->_impl._list);
    this->_impl._list = 0;
  }

  /**
   * @brief Get the current size of the list.
   * @return Number of elements in the list.
   *
   * This member function returns the current number of elements inside
   * the list.
   */
  std::size_t size() const
  {
    return _ptr_list_access_traits::size<value_type>(this->_impl._list);
  }

  /**
   * @brief Check if the list is empty.
   * @return @c true if the list is empty, @c false otherwise.
   *
   * This member function returns @c true if the list does not contain
   * any elements, otherwise it returns @c false.
   */
  bool empty() const
  {
    return _ptr_list_access_traits::empty<value_type>(this->_impl._list);
  }

  /**
   * @brief Get the clone allocator of the list.
   * @return Reference to the clone allocator.
   */
  clone_allocator_type get_clone_allocator() const
  {
    return clone_allocator_type(this->_get_clone_allocator());
  }

  /**
   * @brief Add a copy of the given element at the end of the list.
   * @param a Element to be added at the end of the list.
   *
   * This member function allocates a new element, as a copy of @p a,
   * and inserts it at the end of the list.
   */
  void push_back(const_reference a)
  {
    push_back(this->_new_clone(a));
  }

  /**
   * @brief Add the object pointed by @p p as a element at the end of the list.
   * @param p Pointer to a pre-allocated element to be inserted at the end of the list.
   *
   * This member function adds the object pointed by @p p as a element
   * at the end of the list. The list gains ownership of the pointer and
   * nothing is copied.
   *
   * @warning The list gains ownership of the given pointer and will
   * release the pointed object upon element destruction.
   */
  void push_back(pointer p)
  {
    _unique_ptr p1(p);
    push_back(p1);
  }

  /**
   * @brief Add the object pointed by @p p as a element at the end of the list.
   * @param p Reference to a @c unique_ptr pointing to a element to be inserted at the end of the list.
   *
   * This member function adds the object pointed by the given
   * @c unique_ptr as a element at the end of the list. The object
   * ownership is transfered to the list and nothing is copied.
   *
   * @warning The list gains ownership of the object managed by the
   * given @c unique_ptr and will release it upon element destruction.
   */
  template <typename Deleter>
  void push_back(std::unique_ptr<T, Deleter>& p)
  {
    Eina_List* new_list = eina_list_append(this->_impl._list, p.get());
    if(new_list)
      {
         this->_impl._list = new_list;
         p.release();
      }
    else
       EFL_CXX_THROW(std::bad_alloc());
  }

  /**
   * @brief Add a copy of the given element at the beginning of the list.
   * @param a Element to be added at the beginning of the list.
   *
   * This member function allocates a new element, as a copy of @p a,
   * and inserts it at the beginning of the list.
   */
  void push_front(const_reference a)
  {
    push_front(this->_new_clone(a));
  }

  /**
   * @brief Add the object pointed by @p p as a element at the beginning of the list.
   * @param p Pointer to a pre-allocated element to be inserted at the beginning of the list.
   *
   * This member function adds the object pointed by @p p as a element
   * at the beginning of the list. The list gains ownership of the
   * pointer and nothing is copied.
   *
   * @warning The list gains ownership of the given pointer and will
   * release the pointed object upon element destruction.
   */
  void push_front(pointer p)
  {
    _unique_ptr p1(p);
    push_front(p1);
  }

  /**
   * @brief Add the object pointed by @p p as a element at the beginning of the list.
   * @param p Reference to a @c unique_ptr pointing to a element to be inserted at the beginning of the list.
   *
   * This member function adds the object pointed by the given
   * @c unique_ptr as a element at the beginning of the list. The object
   * ownership is transfered to the list and nothing is copied.
   *
   * @warning The list gains ownership of the object managed by the
   * given @c unique_ptr and will release it upon element destruction.
   */
  template <typename Deleter>
  void push_front(std::unique_ptr<T, Deleter>& p)
  {
    Eina_List* new_list = eina_list_prepend(this->_impl._list, p.get());
    if(new_list)
      {
         this->_impl._list = new_list;
         p.release();
      }
    else
       EFL_CXX_THROW(std::bad_alloc());
  }

  /**
   * @brief Remove the last element of the list.
   */
  void pop_back()
  {
    this->_impl._list = eina_list_remove_list(this->_impl._list, eina_list_last(this->_impl._list));
  }

  /**
   * @brief Remove the first element of the list.
   */
  void pop_front()
  {
    this->_impl._list = eina_list_remove_list(this->_impl._list, this->_impl._list);
  }

  /**
   * @brief Insert a copy of the given element at the given position.
   * @param i Iterator pointing to the position where the new element will be inserted.
   * @param t Value to be copied to the new element.
   * @return Iterator pointing to the new element inserted.
   *
   * This member function inserts a copy of the element @p t at the
   * position @p i. The new element comes right before the element
   * originally pointed by @p i.
   *
   * At the end, a valid iterator pointing to the element just inserted
   * is returned.
   */
  iterator insert(iterator i, value_type const& t)
  {
    return insert(i, this->_new_clone(t));
  }

  /**
   * @brief Insert the object pointed by @p pv as a element at the given position.
   * @param i Iterator pointing to the position where the new element will be inserted.
   * @param pv Pointer to a pre-allocated object to be inserted to the list.
   * @return Iterator pointing to the new element inserted.
   *
   * This member function adds the object pointed by @p pv as a element
   * at the given position. The new element comes right before the
   * element originally pointed by @p i. The list gains ownership of
   * the pointer and nothing is copied.
   *
   * At the end, a valid iterator pointing to the element just inserted
   * is returned.
   *
   * @warning The list gains ownership of the given pointer and will
   * release the pointed object upon element destruction.
   */
  iterator insert(iterator i, pointer pv)
  {
    _unique_ptr p(pv);
    return insert(i, p);
  }

  /**
   * @brief Insert the object pointed by @p p as a element at the given position.
   * @param i Iterator pointing to the position where the new element will be inserted.
   * @param p Reference to a @c unique_ptr pointing to the element to be inserted in the list.
   * @return Iterator pointing to the new element inserted.
   *
   * This member function adds the object pointed by @p p as a element
   * at the given position. The new element comes right before the
   * element originally pointed by @p i. The object ownership is
   * transfered to the list and nothing is copied.
   *
   * At the end, a valid iterator pointing to the element just inserted
   * is returned.
   *
   * @warning The list gains ownership of the object managed by the
   * given @c unique_ptr and will release it upon element destruction.
   */
  template <typename Deleter>
  iterator insert(iterator i, std::unique_ptr<value_type, Deleter>& p)
  {
    this->_impl._list = _eina_list_prepend_relative_list
      (this->_impl._list, p.get(), i.native_handle());
    if(this->_impl._list)
      p.release();
    else
       EFL_CXX_THROW(std::bad_alloc());
    return iterator(this->_impl._list
                    , i.native_handle()
                    ? ::eina_list_prev(i.native_handle())
                    : ::eina_list_last(this->_impl._list)
                    );
  }

  /**
   * @brief Insert @p n copies of @p t at the given position.
   * @param i Iterator pointing to the position where the new elements will be inserted.
   * @param n Number of elements to be inserted.
   * @param t Value to be copied to each new inserted element.
   * @return Iterator pointing to the first inserted element.
   *
   * This member function inserts @p n new elements at position @p i
   * in the list, each one as a copy of @p t. The new elements come
   * right before the element originally pointed by @p i.
   *
   * At the end, a valid iterator pointing to the first element inserted
   * is returned.
   */
  iterator insert(iterator i, size_t n, value_type const& t)
  {
    iterator r = i;
    if(n--)
      r = insert(i, t);
    while(n--)
      insert(i, t);
    return r;
  }

  /**
   * @brief Insert the object pointed by @p p and <tt>n-1</tt> copies of it as elements at the given position.
   * @param i Iterator pointing to the position where the new elements will be inserted.
   * @param n Number of elements to be inserted.
   * @param p Pointer to a pre-allocated object to be inserted in the list.
   * @return Iterator pointing to the first inserted element.
   *
   * This member function inserts the object pointed by @p p and
   * <tt>n-1</tt> copies of it as elements at the given position. The
   * new elements come right before the element originally pointed by
   * @p i.
   *
   * At the end, a valid iterator pointing to the first element inserted
   * is returned.
   *
   * @warning The list gains ownership of the given pointer and will
   * release the pointed object upon element destruction.
   */
  iterator insert(iterator i, size_t n, pointer p)
  {
    iterator r = i;
    if(n--)
      r = insert(i, p);
    while(n--)
      insert(i, this->_new_clone(p));
    return r;
  }

  /**
   * @brief Insert the elements between the given range at the given position.
   * @param p Iterator pointing to the position where the new elements will be inserted.
   * @param i Iterator to the initial position. The element pointed by this iterator will be copied.
   * @param j Iterator to the final position. The element pointed by this iterator will NOT be copied.
   * @return Iterator pointing to the first inserted element.
   *
   * This member function inserts a copy of the elements between @p i
   * and @p j at the position @p p. The new elements come right before
   * the element originally pointed by @p p. Note that the element
   * pointed by @p j is not copied.
   *
   * At the end, a valid iterator pointing to the first element inserted
   * is returned.
   */
  template <typename InputIterator>
  iterator insert(iterator p, InputIterator i, InputIterator j
                  , typename eina::enable_if<!eina::is_integral<InputIterator>::value>::type* = 0)
  {
    iterator r = p;
    if(i != j)
      {
        r = insert(p, this->_new_clone(*i));
        ++i;
      }
    while(i != j)
      {
        insert(p, this->_new_clone(*i));
        ++i;
      }
    return r;
  }

  /**
   * @brief Remove the element at the given position.
   * @param q Iterator pointing to the element to be removed.
   * @return Iterator pointing to the element after the removed one.
   *
   * This member function removes the element pointed by the iterator
   * @p q, reducing the list size by one. At the end, a valid iterator
   * pointing to the element right after the removed one is returned.
   */
  iterator erase(iterator q)
  {
    if(q.native_handle())
      {
        iterator r(this->_impl._list, eina_list_next(q.native_handle()));
        this->_impl._list = eina_list_remove_list(this->_impl._list, q.native_handle());
        return r;
      }
    else
      return q;
  }

  /**
   * @brief Remove the elements between the given range.
   * @param i Iterator pointing to the starting position to be removed.
   * @param j Iterator pointing to the ending position to be removed.
   *          The element pointed by this iterator is not removed.
   * @return Iterator pointing to the new position of the first
   *         non-removed element after the removed ones (i.e. the one
   *         originally pointed by @p j).
   *
   * This member function removes the elements between the iterators
   * @p i and @p j, including the element pointed by @p i but not the
   * element pointed by @j.
   */
  iterator erase(iterator i, iterator j)
  {
    while(i != j)
      i = erase(i);
    if(j.native_handle())
      return j;
    else
      return end();
  }

  /**
   * @brief Replace the content of the list by the elements in the given range.
   * @param i Iterator pointing to the beginning of the elements to be copied.
   * @param j Iterator pointing to the end of the elements to be copied.
   *          Note that the element pointed by j will NOT be copied.
   *
   * This member function replaces the current elements by copies of the
   * elements between the iterators @p i and @p j, including the element
   * pointed by @p i but not the one pointed by @p j. The size of the
   * list is adjusted accordingly and the newly copied elements remain
   * in their original order.
   */
  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);
  }

  /**
   * @brief Replace the content of the list by @p n copies @p t.
   * @param n Number of elements.
   * @param t Value to be copied to each element.
   */
  void assign(size_type n, value_type const& t)
  {
    clear();
    insert(end(), n, t);
  }

  /**
   * @brief Get a reference to the last element.
   * @return Reference to the last element in the list.
   */
  value_type& back()
  {
    return _ptr_list_access_traits::back<value_type>(this->_impl._list);
  }

  /**
   * @brief Get a constant reference to the last element.
   * @return Constant reference to the last element in the list.
   *
   * Version of @ref back() for const-qualified objects. Returns a
   * constant reference instead.
   */
  value_type const& back() const
  {
    return _ptr_list_access_traits::back<value_type>(this->_impl._list);
  }

  /**
   * @brief Get a reference to the first element.
   * @return Reference to the first element of the list.
   */
  value_type& front()
  {
    return _ptr_list_access_traits::front<value_type>(this->_impl._list);
  }

  /**
   * @brief Get a constant reference to the first element.
   * @return Constant reference to the first element of the list.
   *
   * Version of @ref front() for const-qualified objects. Returns a
   * constant reference instead.
   */
  value_type const& front() const
  {
    return _ptr_list_access_traits::front<value_type>(this->_impl._list);
  }

  /**
   * @brief Get a constant iterator pointing to the first element of the list.
   * @return Constant iterator to the initial position of the list.
   *
   * Version of @ref begin() for const-qualified objects. Returns a
   * constant iterator instead.
   */
  const_iterator begin() const
  {
    return _ptr_list_access_traits::cbegin<value_type>(this->_impl._list);
  }

  /**
   * @brief Get a constant iterator to the position following the last element of the list.
   * @return Constant iterator to the final position of the list.
   *
   * Version of @ref end() for const-qualified objects. Returns a
   * constant iterator instead.
   */
  const_iterator end() const
  {
    return _ptr_list_access_traits::cend<value_type>(this->_impl._list);
  }

  /**
   * @brief Get an iterator pointing to the first element of the list.
   * @return Iterator to the initial position of the list.
   *
   * This member function returns an iterator pointing to the first
   * element of the list. If the list is empty the returned iterator
   * is the same as the one returned by @ref end().
   */
  iterator begin()
  {
    return _ptr_list_access_traits::begin<value_type>(this->_impl._list);
  }

  /**
   * @brief Get an iterator to the position following the last element of the list.
   * @return Iterator to the final position of the list.
   *
   * This member function returns an iterator to the position following
   * the last element in the list. If the list is empty the returned
   * iterator is the same as the one returned by @ref begin().
   *
   * @note Note that attempting to access this position causes undefined
   * behavior.
   */
  iterator end()
  {
    return _ptr_list_access_traits::end<value_type>(this->_impl._list);
  }

  /**
   * @brief Get a constant reverse iterator pointing to the reverse begin of the list.
   * @return Constant reverse iterator pointing to the reverse begin of the list.
   *
   * Version of @ref rbegin() for const-qualified objects. Returns a
   * constant reverse iterator instead.
   */
  const_reverse_iterator rbegin() const
  {
    return _ptr_list_access_traits::rbegin<value_type>(this->_impl._list);
  }

  /**
   * @brief Get a constant reverse iterator pointing to the reverse end of the list.
   * @return Constant reverse iterator pointing to the reverse end of the list.
   *
   * Version of @ref rend() for const-qualified objects. Returns a
   * constant reverse iterator instead.
   */
  const_reverse_iterator rend() const
  {
    return _ptr_list_access_traits::rend<value_type>(this->_impl._list);
  }

  /**
   * @brief Get a reverse iterator pointing to the reverse begin of the list.
   * @return Reverse iterator pointing to the reverse begin of the list.
   *
   * This member function returns a reverse iterator pointing to the
   * last element of the list. If the list is empty the returned
   * reverse iterator is the same as the one returned by @ref rend().
   */
  reverse_iterator rbegin()
  {
    return _ptr_list_access_traits::rbegin<value_type>(this->_impl._list);
  }

  /**
   * @brief Get a reverse iterator pointing to the reverse end of the list.
   * @return Reverse iterator pointing to the reverse end of the list.
   *
   * This member function returns a reverse iterator pointing to the
   * position before the first element of the list. If the list is
   * empty the returned iterator is the same as the one returned by
   * @ref rbegin().
   *
   * @note Note that attempting to access this position causes undefined
   * behavior.
   */
  reverse_iterator rend()
  {
    return _ptr_list_access_traits::rend<value_type>(this->_impl._list);
  }

  /**
   * @brief Get a constant iterator pointing to the first element of the list.
   * @return Constant iterator to the initial position of the list.
   *
   * This member function works like @ref begin() const but is granted
   * to return a constant iterator even for lists that are not
   * const-qualified.
   */
  const_iterator cbegin() const
  {
    return _ptr_list_access_traits::cbegin<value_type>(this->_impl._list);
  }

  /**
   * @brief Get a constant iterator to the position following the last element of the list.
   * @return Constant iterator to the final position of the list.
   *
   * This member function works like @ref end() const  but is granted to
   * return a constant iterator even for lists that are not
   * const-qualified.
   */
  const_iterator cend() const
  {
    return _ptr_list_access_traits::cend<value_type>(this->_impl._list);
  }

  /**
   * @brief Get a constant reverse iterator pointing to the reverse begin of the list.
   * @return Constant reverse iterator pointing to the reverse begin of the list.
   *
   * This member function works like @ref rbegin() const but is granted
   * to return a constant reverse iterator even for lists that are not
   * const-qualified.
   */
  const_reverse_iterator crbegin() const
  {
    return _ptr_list_access_traits::crbegin<value_type>(this->_impl._list);
  }

  /**
   * @brief Get a constant reverse iterator pointing to the reverse end of the list.
   * @return Constant reverse iterator pointing to the reverse end of the list.
   *
   * This member function works like @ref rend() const but is granted to
   * return a constant reverse iterator even for lists that are not
   * const-qualified.
   */
  const_reverse_iterator crend() const
  {
    return _ptr_list_access_traits::crend<value_type>(this->_impl._list);
  }

  /**
   * @brief Get an <tt>eina::iterator</tt> pointing to the first element of the list.
   * @return <tt>eina::iterator</tt> to the initial position of the list.
   *
   * This member function returns an <tt>eina::iterator</tt> pointing to
   * the first element of the list. If the list is empty the returned
   * iterator is the same as the one returned by @ref iend().
   */
  eina::iterator<value_type> ibegin()
  {
    return _ptr_list_access_traits::ibegin<value_type>(this->_impl._list);
  }

  /**
   * @brief Get an <tt>eina::iterator</tt> to the position following the last element of the list.
   * @return <tt>eina::iterator</tt> to the final position of the list.
   *
   * This member function returns an <tt>eina::iterator</tt> to the
   * position following the last element in the list. If the list is
   * empty the returned iterator is the same as the one returned by
   * @ref ibegin().
   *
   * @note Note that attempting to access this position causes undefined
   * behavior.
   */
  eina::iterator<value_type> iend()
  {
    return _ptr_list_access_traits::iend<value_type>(this->_impl._list);
  }

  /**
   * @brief Get a constant <tt>eina::iterator</tt> pointing to the first element of the list.
   * @return Constant <tt>eina::iterator</tt> to the initial position of the list.
   *
   * Version of @ref ibegin() for const-qualified objects. Returns a
   * constant <tt>eina::iterator</tt> instead.
   */
  eina::iterator<T const> ibegin() const
  {
    return _ptr_list_access_traits::ibegin<value_type>(this->_impl._list);
  }

  /**
   * @brief Get an constant <tt>eina::iterator</tt> to the position following the last element of the list.
   * @return Constant <tt>eina::iterator</tt> to the final position of the list.
   *
   * Version of @ref iend() for const-qualified objects. Returns a
   * constant <tt>eina::iterator</tt> instead.
   */
  eina::iterator<T const> iend() const
  {
    return _ptr_list_access_traits::iend<value_type>(this->_impl._list);
  }

  /**
   * @brief Get an <tt>eina::iterator</tt> pointing to the first element of the list.
   * @return <tt>eina::iterator</tt> to the initial position of the list.
   *
   * This member function works like @ref ibegin() const but is granted
   * to return a constant iterator even for lists that are not
   * const-qualified.
   */
  eina::iterator<T const> cibegin() const
  {
    return _ptr_list_access_traits::cibegin<value_type>(this->_impl._list);
  }

  /**
   * @brief Get an constant <tt>eina::iterator</tt> to the position following the last element of the list.
   * @return Constant <tt>eina::iterator</tt> to the final position of the list.
   *
   * This member function works like @ref iend() const but is granted to
   * return a constant iterator even for lists that are not
   * const-qualified.
   */
  eina::iterator<T const> ciend() const
  {
    return _ptr_list_access_traits::ciend<value_type>(this->_impl._list);
  }

  /**
   * @brief Swap content between two lists.
   * @param other Other @c ptr_list of the same type.
   */
  void swap(ptr_list<T, CloneAllocator>& other)
  {
    std::swap(this->_impl._list, other._impl._list);
  }

  /**
   * @brief Get the maximum number of elements @c ptr_list can hold.
   * @return Maximum number of elements a @c ptr_list can hold.
   */
  size_type max_size() const { return -1; }

  Eina_List* release_native_handle()
  {
    Eina_List* tmp = this->_impl._list;
    this->_impl._list = 0;
    return tmp;
  }
  
  /**
   * @brief Get a handle for the wrapped @c Eina_List.
   * @return Handle for the native Eina list.
   *
   * This member function returns the native Eina_List handle that is
   * wrapped inside this object.
   *
   * @warning It is important to take care when using it, since the
   * handle will be automatically released upon object destruction.
   */
  Eina_List* native_handle()
  {
    return this->_impl._list;
  }

  /**
   * @brief Get a constant handle for the wrapped Eina_List.
   * @return Constant handle for the native Eina list.
   *
   * Version of @ref native_handle() for const-qualified objects.
   * Returns a constant handle instead.
   *
   * @see native_handle()
   */
  Eina_List const* native_handle() const
  {
    return this->_impl._list;
  }

  /**
   * @brief Get a constant @ref eina::accessor for the list.
   * @return Constant <tt>eina::accessor</tt> to the list.
   *
   * Version of @ref accessor() to const-qualified inline lists. Returns
   * a const-qualified <tt>eina::accessor</tt> instead.
   */
  eina::accessor<T const> accessor() const
  {
    return eina::accessor<T const>(eina_list_accessor_new(this->_impl._list));
  }

  /**
   * @brief Get a @ref eina::accessor for the list.
   * @return <tt>eina::accessor</tt> to the list.
   */
  eina::accessor<value_type> accessor()
  {
    return eina::accessor<value_type>(eina_list_accessor_new(this->_impl._list));
  }
};

/**
 * @brief Check if both lists are equal.
 * @param lhs @c ptr_list at the left side of the expression.
 * @param rhs @c ptr_list at the right side of the expression.
 * @return @c true if the lists are equals, @c false otherwise.
 *
 * This operator checks if the given lists are equal. To be considered
 * equal both lists need to have the same number of elements, and each
 * element in one list must be equal to the element at the same
 * position in the other list.
 */
template <typename T, typename CloneAllocator1, typename CloneAllocator2>
bool operator==(ptr_list<T, CloneAllocator1> const& lhs, ptr_list<T, CloneAllocator2> const& rhs)
{
  return lhs.size() == rhs.size()
    && std::equal(lhs.begin(), lhs.end(), rhs.begin());
}

/**
 * @brief Check if two lists are different.
 * @param lhs @c ptr_list at the left side of the expression.
 * @param rhs @c ptr_list at the right side of the expression.
 * @return @c true if the lists are not equal , @c false otherwise.
 *
 * This operator returns the opposite of
 * @ref operator==(ptr_list<T, CloneAllocator1> const& lhs, ptr_list<T, CloneAllocator2> const& rhs).
 */
template <typename T, typename CloneAllocator1, typename CloneAllocator2>
bool operator!=(ptr_list<T, CloneAllocator1> const& lhs, ptr_list<T, CloneAllocator2> const& rhs)
{
  return !(lhs == rhs);
}

/**
 * @brief Swap content between two lists.
 * @param other Other @c ptr_list of the same type.
 */
template <typename T, typename CloneAllocator>
void swap(ptr_list<T, CloneAllocator>& lhs, ptr_list<T, CloneAllocator>& rhs)
{
  lhs.swap(rhs);
}
/**
 * @}
 */

} }

/**
 * @}
 */

#endif