Skip to content

Commit 7373604

Browse files
committed
chore: use Exception
1 parent 39b0e52 commit 7373604

13 files changed

+231
-161
lines changed

include/mrdox/Support/Dom.hpp

+115-51
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
#include <mrdox/Platform.hpp>
1515
#include <mrdox/ADT/Optional.hpp>
16+
#include <mrdox/Support/Error.hpp>
1617
#include <mrdox/Support/String.hpp>
1718
#include <fmt/format.h>
1819
#include <atomic>
@@ -51,18 +52,7 @@ enum class Kind
5152
//
5253
//------------------------------------------------
5354

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;
6656

6757
/** An array of values.
6858
*/
@@ -72,6 +62,8 @@ class MRDOX_DECL
7262
std::shared_ptr<ArrayImpl> impl_;
7363

7464
public:
65+
using value_type = Value;
66+
using size_type = std::size_t;
7567
using impl_type = std::shared_ptr<ArrayImpl>;
7668

7769
/** Destructor.
@@ -102,40 +94,35 @@ class MRDOX_DECL
10294
implementation, with shared ownership. The
10395
pointer cannot not be null.
10496
*/
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;
11098

11199
/** Return the implementation used by this object.
112100
*/
113-
auto
114-
impl() const noexcept ->
115-
impl_type const&
116-
{
117-
return impl_;
118-
}
101+
auto impl() const noexcept -> impl_type const&;
119102

120103
/** Return true if the array is empty.
121104
*/
122-
bool empty() const noexcept
123-
{
124-
return impl_->size() == 0;
125-
}
105+
bool empty() const noexcept;
126106

127107
/** Return the number of elements in the array.
128108
*/
129-
std::size_t size() const noexcept
130-
{
131-
return impl_->size();
132-
}
109+
size_type size() const noexcept;
133110

134-
/** Return the zero-based element from the array.
111+
/** Return the i-th element, without bounds checking.
135112
136-
@throw std::out_of_range `index >= this->size()`
113+
@param i The zero-based index of the element.
137114
*/
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;
139126

140127
/** Return a diagnostic string.
141128
*/
@@ -144,6 +131,39 @@ class MRDOX_DECL
144131
toString(Array const&);
145132
};
146133

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+
147167
/** Return a new array using a custom implementation.
148168
*/
149169
template<class T, class... Args>
@@ -266,12 +286,22 @@ class MRDOX_DECL
266286
*/
267287
std::size_t size() const;
268288

269-
/** Return the i-th key/value pair, without bounds checking.
289+
/** Return the i-th element, without bounds checking.
270290
271291
@param i The zero-based index of the element.
272292
*/
273293
reference get(std::size_t i) const;
274294

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+
275305
/** Return true if a key exists.
276306
*/
277307
bool exists(std::string_view key) const;
@@ -307,14 +337,6 @@ class MRDOX_DECL
307337
*/
308338
iterator end() const;
309339

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-
318340
//--------------------------------------------
319341

320342
/** Return a diagnostic string.
@@ -596,14 +618,14 @@ class MRDOX_DECL
596618

597619
/** Return the array.
598620
599-
@throw Error `! isArray()`
621+
@throw Exception `! isArray()`
600622
*/
601623
Array const&
602624
getArray() const;
603625

604626
/** Return the object.
605627
606-
@throw Error `! isObject()`
628+
@throw Exception `! isObject()`
607629
*/
608630
Object const&
609631
getObject() const;
@@ -864,11 +886,45 @@ class MRDOX_DECL
864886
// implementation
865887
//
866888

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
868900
{
869-
return impl_->at(index);
901+
return impl_->size() == 0;
870902
}
871903

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+
872928
inline bool Object::empty() const
873929
{
874930
return size() == 0;
@@ -884,6 +940,18 @@ inline auto Object::get(std::size_t i) const -> reference
884940
return impl_->get(i);
885941
}
886942

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+
887955
inline Value Object::find(std::string_view key) const
888956
{
889957
return impl_->find(key);
@@ -904,10 +972,6 @@ inline auto Object::end() const -> iterator
904972
return iterator(*impl_, impl_->size());
905973
}
906974

907-
inline auto Object::operator[](size_type i) const -> reference
908-
{
909-
return impl_->get(i);
910-
}
911975

912976
//------------------------------------------------
913977

include/mrdox/Support/Error.hpp

+5-18
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,7 @@ class [[nodiscard]] MRDOX_DECL
8484
Error(
8585
std::string reason,
8686
source_location loc =
87-
source_location::current())
88-
: message_(appendSourceLocation(std::string(reason), loc))
89-
, reason_(std::move(reason))
90-
, loc_(loc)
91-
{
92-
MRDOX_ASSERT(! message_.empty());
93-
}
87+
source_location::current());
9488

9589
/** Constructor.
9690
@@ -100,14 +94,7 @@ class [[nodiscard]] MRDOX_DECL
10094
Error(
10195
std::error_code const& ec,
10296
source_location loc =
103-
source_location::current())
104-
{
105-
if(! ec)
106-
return;
107-
message_ = appendSourceLocation(ec.message(), loc);
108-
reason_ = ec.message();
109-
loc_ = loc;
110-
}
97+
source_location::current());
11198

11299
explicit
113100
Error(
@@ -175,7 +162,7 @@ class [[nodiscard]] MRDOX_DECL
175162
176163
@pre this->failed()
177164
*/
178-
void Throw() const;
165+
[[noreturn]] void Throw() const;
179166

180167
/** Throw Exception(*this), or do nothing if no failure.
181168
*/
@@ -513,7 +500,7 @@ value() &
513500
{
514501
if(has_value())
515502
return v_;
516-
throw e_;
503+
e_.Throw();
517504
}
518505

519506
template<class T>
@@ -524,7 +511,7 @@ value() const&
524511
{
525512
if(has_value())
526513
return v_;
527-
throw e_;
514+
e_.Throw();
528515
}
529516

530517
template<class T>

source/-adoc/AdocGenerator.cpp

+4-10
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,8 @@ buildOne(
9494
ex->async(
9595
[&os](Builder& builder)
9696
{
97-
auto pageText =
98-
builder.renderSinglePageHeader();
99-
if(! pageText)
100-
throw pageText.error();
101-
os.write(pageText->data(), pageText->size());
97+
auto pageText = builder.renderSinglePageHeader().value();
98+
os.write(pageText.data(), pageText.size());
10299
});
103100
errors = ex->wait();
104101
if(! errors.empty())
@@ -113,11 +110,8 @@ buildOne(
113110
ex->async(
114111
[ &os](Builder& builder)
115112
{
116-
auto pageText =
117-
builder.renderSinglePageFooter();
118-
if(! pageText)
119-
throw pageText.error();
120-
os.write(pageText->data(), pageText->size());
113+
auto pageText = builder.renderSinglePageFooter().value();
114+
os.write(pageText.data(), pageText.size());
121115
});
122116
errors = ex->wait();
123117
if(! errors.empty())

0 commit comments

Comments
 (0)