13
13
14
14
#include < mrdox/Platform.hpp>
15
15
#include < mrdox/ADT/Optional.hpp>
16
+ #include < mrdox/Support/Error.hpp>
16
17
#include < mrdox/Support/String.hpp>
17
18
#include < fmt/format.h>
18
19
#include < atomic>
@@ -51,18 +52,7 @@ enum class Kind
51
52
//
52
53
// ------------------------------------------------
53
54
54
- /* * Abstract array interface.
55
-
56
- This interface is used by Array types.
57
- */
58
- class MRDOX_DECL
59
- ArrayImpl
60
- {
61
- public:
62
- virtual ~ArrayImpl () = 0 ;
63
- virtual std::size_t size () const noexcept = 0;
64
- virtual Value at (std::size_t ) const = 0;
65
- };
55
+ class ArrayImpl ;
66
56
67
57
/* * An array of values.
68
58
*/
@@ -72,6 +62,8 @@ class MRDOX_DECL
72
62
std::shared_ptr<ArrayImpl> impl_;
73
63
74
64
public:
65
+ using value_type = Value;
66
+ using size_type = std::size_t ;
75
67
using impl_type = std::shared_ptr<ArrayImpl>;
76
68
77
69
/* * Destructor.
@@ -102,40 +94,35 @@ class MRDOX_DECL
102
94
implementation, with shared ownership. The
103
95
pointer cannot not be null.
104
96
*/
105
- Array (std::shared_ptr<ArrayImpl> impl) noexcept
106
- : impl_(std::move(impl))
107
- {
108
- MRDOX_ASSERT (impl_);
109
- }
97
+ Array (impl_type impl) noexcept ;
110
98
111
99
/* * Return the implementation used by this object.
112
100
*/
113
- auto
114
- impl () const noexcept ->
115
- impl_type const &
116
- {
117
- return impl_;
118
- }
101
+ auto impl () const noexcept -> impl_type const &;
119
102
120
103
/* * Return true if the array is empty.
121
104
*/
122
- bool empty () const noexcept
123
- {
124
- return impl_->size () == 0 ;
125
- }
105
+ bool empty () const noexcept ;
126
106
127
107
/* * Return the number of elements in the array.
128
108
*/
129
- std::size_t size () const noexcept
130
- {
131
- return impl_->size ();
132
- }
109
+ size_type size () const noexcept ;
133
110
134
- /* * Return the zero-based element from the array .
111
+ /* * Return the i-th element, without bounds checking .
135
112
136
- @throw std::out_of_range ` index >= this->size()`
113
+ @param i The zero-based index of the element.
137
114
*/
138
- Value at (std::size_t index) const ;
115
+ value_type get (size_type i) const ;
116
+
117
+ /* * Return the i-th element, without bounds checking.
118
+ */
119
+ value_type operator [](size_type i) const ;
120
+
121
+ /* * Return the i-th element.
122
+
123
+ @throw Exception `i >= size()`
124
+ */
125
+ value_type at (size_type i) const ;
139
126
140
127
/* * Return a diagnostic string.
141
128
*/
@@ -144,6 +131,39 @@ class MRDOX_DECL
144
131
toString (Array const &);
145
132
};
146
133
134
+ // ------------------------------------------------
135
+ //
136
+ // ArrayImpl
137
+ //
138
+ // ------------------------------------------------
139
+
140
+ /* * Abstract array interface.
141
+
142
+ This interface is used by Array types.
143
+ */
144
+ class MRDOX_DECL
145
+ ArrayImpl
146
+ {
147
+ public:
148
+ // / @copydoc Array::value_type
149
+ using value_type = Array::value_type;
150
+
151
+ // / @copydoc Array::size_type
152
+ using size_type = Array::size_type;
153
+
154
+ /* * Destructor.
155
+ */
156
+ virtual ~ArrayImpl () = 0 ;
157
+
158
+ /* * Return the number of elements in the array.
159
+ */
160
+ virtual size_type size () const = 0;
161
+
162
+ /* * Return the i-th element, without bounds checking.
163
+ */
164
+ virtual value_type get (size_type i) const = 0;
165
+ };
166
+
147
167
/* * Return a new array using a custom implementation.
148
168
*/
149
169
template <class T , class ... Args>
@@ -266,12 +286,22 @@ class MRDOX_DECL
266
286
*/
267
287
std::size_t size () const ;
268
288
269
- /* * Return the i-th key/value pair , without bounds checking.
289
+ /* * Return the i-th element , without bounds checking.
270
290
271
291
@param i The zero-based index of the element.
272
292
*/
273
293
reference get (std::size_t i) const ;
274
294
295
+ /* * Return the i-th element, without bounds checking.
296
+ */
297
+ reference operator [](size_type i) const ;
298
+
299
+ /* * Return the i-th element.
300
+
301
+ @throw Exception `i >= size()`
302
+ */
303
+ reference at (size_type i) const ;
304
+
275
305
/* * Return true if a key exists.
276
306
*/
277
307
bool exists (std::string_view key) const ;
@@ -307,14 +337,6 @@ class MRDOX_DECL
307
337
*/
308
338
iterator end () const ;
309
339
310
- /* * Return the i-th element, without bounds checking.
311
- */
312
- reference operator [](size_type i) const ;
313
-
314
- /* * Return the i-th element, without bounds checking.
315
- */
316
- reference at (size_type i) const ;
317
-
318
340
// --------------------------------------------
319
341
320
342
/* * Return a diagnostic string.
@@ -596,14 +618,14 @@ class MRDOX_DECL
596
618
597
619
/* * Return the array.
598
620
599
- @throw Error `! isArray()`
621
+ @throw Exception `! isArray()`
600
622
*/
601
623
Array const &
602
624
getArray () const ;
603
625
604
626
/* * Return the object.
605
627
606
- @throw Error `! isObject()`
628
+ @throw Exception `! isObject()`
607
629
*/
608
630
Object const &
609
631
getObject () const ;
@@ -864,11 +886,45 @@ class MRDOX_DECL
864
886
// implementation
865
887
//
866
888
867
- inline Value Array::at (std::size_t index) const
889
+ inline Array::Array (impl_type impl) noexcept
890
+ : impl_(std::move(impl))
891
+ {
892
+ MRDOX_ASSERT (impl_);
893
+ }
894
+ inline auto Array::impl () const noexcept -> impl_type const &
895
+ {
896
+ return impl_;
897
+ }
898
+
899
+ inline bool Array::empty () const noexcept
868
900
{
869
- return impl_->at ( index ) ;
901
+ return impl_->size () == 0 ;
870
902
}
871
903
904
+ inline auto Array::size () const noexcept -> size_type
905
+ {
906
+ return impl_->size ();
907
+ }
908
+
909
+ inline auto Array::get (std::size_t i) const -> value_type
910
+ {
911
+ return impl_->get (i);
912
+ }
913
+
914
+ inline auto Array::operator [](std::size_t i) const -> value_type
915
+ {
916
+ return get (i);
917
+ }
918
+
919
+ inline auto Array::at (std::size_t i) const -> value_type
920
+ {
921
+ if (i < size ())
922
+ return get (i);
923
+ Error (" out of range" ).Throw ();
924
+ }
925
+
926
+ // ------------------------------------------------
927
+
872
928
inline bool Object::empty () const
873
929
{
874
930
return size () == 0 ;
@@ -884,6 +940,18 @@ inline auto Object::get(std::size_t i) const -> reference
884
940
return impl_->get (i);
885
941
}
886
942
943
+ inline auto Object::operator [](size_type i) const -> reference
944
+ {
945
+ return get (i);
946
+ }
947
+
948
+ inline auto Object::at (size_type i) const -> reference
949
+ {
950
+ if (i < size ())
951
+ return get (i);
952
+ Error (" out of range" ).Throw ();
953
+ }
954
+
887
955
inline Value Object::find (std::string_view key) const
888
956
{
889
957
return impl_->find (key);
@@ -904,10 +972,6 @@ inline auto Object::end() const -> iterator
904
972
return iterator (*impl_, impl_->size ());
905
973
}
906
974
907
- inline auto Object::operator [](size_type i) const -> reference
908
- {
909
- return impl_->get (i);
910
- }
911
975
912
976
// ------------------------------------------------
913
977
0 commit comments