Skip to content

Commit a45679c

Browse files
committed
feat: dom::Function and major refactor
1 parent da279c1 commit a45679c

36 files changed

+3441
-2319
lines changed

CMakeLists.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,9 @@ unset(CMAKE_FOLDER)
107107

108108
file(
109109
GLOB_RECURSE LIB_SOURCES CONFIGURE_DEPENDS
110-
src/lib/*.cpp
111-
src/lib/*.hpp
110+
src/lib/*.cpp src/lib/*.hpp src/lib/*.ipp
112111
src/lib/*.natvis
113-
include/*.hpp
112+
include/*.hpp include/*.ipp
114113
include/*.natvis
115114
SourceFileNames.cpp)
116115
add_library(mrdox-core ${LIB_SOURCES})

include/mrdox/Dom.hpp

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
//
2+
// Licensed under the Apache License v2.0 with LLVM Exceptions.
3+
// See https://llvm.org/LICENSE.txt for license information.
4+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
5+
//
6+
// Copyright (c) 2023 Vinnie Falco ([email protected])
7+
//
8+
// Official repository: https://github.com/cppalliance/mrdox
9+
//
10+
11+
#ifndef MRDOX_API_DOM_HPP
12+
#define MRDOX_API_DOM_HPP
13+
14+
#include <mrdox/Dom/Value.hpp>
15+
16+
#endif

include/mrdox/Dom/Array.hpp

+309
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,309 @@
1+
//
2+
// Licensed under the Apache License v2.0 with LLVM Exceptions.
3+
// See https://llvm.org/LICENSE.txt for license information.
4+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
5+
//
6+
// Copyright (c) 2023 Vinnie Falco ([email protected])
7+
//
8+
// Official repository: https://github.com/cppalliance/mrdox
9+
//
10+
11+
#ifndef MRDOX_API_DOM_ARRAY_HPP
12+
#define MRDOX_API_DOM_ARRAY_HPP
13+
14+
#include <mrdox/Platform.hpp>
15+
#include <cstdint>
16+
#include <memory>
17+
#include <string>
18+
#include <vector>
19+
20+
namespace clang {
21+
namespace mrdox {
22+
namespace dom {
23+
24+
class ArrayImpl;
25+
class Value;
26+
27+
/** An array of values.
28+
*/
29+
class MRDOX_DECL
30+
Array final
31+
{
32+
std::shared_ptr<ArrayImpl> impl_;
33+
34+
public:
35+
/** The type of an element.
36+
*/
37+
using value_type = Value;
38+
39+
/** A reference to an element.
40+
41+
This is a read-only reference to an element.
42+
*/
43+
using reference = value_type const&;
44+
45+
/** A reference to an element.
46+
47+
This is a read-only reference to an element.
48+
*/
49+
using const_reference = value_type const&;
50+
51+
/** A pointer to an element.
52+
*/
53+
using pointer = value_type const*;
54+
55+
/** A pointer to an element.
56+
*/
57+
using const_pointer = value_type const*;
58+
59+
/** An unsigned integral type used for indexes and sizes.
60+
*/
61+
using size_type = std::size_t;
62+
63+
/** A signed integral type.
64+
*/
65+
using difference_type = std::ptrdiff_t;
66+
67+
/** The type of storage used by the default implementation.
68+
*/
69+
using storage_type = std::vector<value_type>;
70+
71+
/** The implementation type.
72+
*/
73+
using impl_type = std::shared_ptr<ArrayImpl>;
74+
75+
/** Destructor.
76+
*/
77+
~Array();
78+
79+
/** Constructor.
80+
81+
Default-constructed arrays refer to a new,
82+
empty array which is distinct from every
83+
other empty array.
84+
*/
85+
Array();
86+
87+
/** Constructor.
88+
89+
Ownership of the contents is transferred
90+
to the new object. The moved-from array
91+
will behave as if default-constructed.
92+
*/
93+
Array(Array&& other);
94+
95+
/** Constructor.
96+
97+
The newly constructed array will contain
98+
copies of the scalars in other, and
99+
references to its structured data.
100+
*/
101+
Array(Array const& other);
102+
103+
/** Assignment.
104+
105+
Ownership of the array is transferred
106+
to this, and ownership of the previous
107+
contents is released. The moved-from
108+
array behaves as if default constructed.
109+
*/
110+
Array& operator=(Array&&);
111+
112+
/** Assignment.
113+
114+
This acquires shared ownership of the copied
115+
array, and ownership of the previous contents
116+
is released.
117+
*/
118+
Array& operator=(Array const&) = default;
119+
120+
//--------------------------------------------
121+
122+
/** Constructor.
123+
124+
This constructs an array from an existing
125+
implementation, with shared ownership. The
126+
pointer cannot not be null.
127+
*/
128+
Array(impl_type impl) noexcept
129+
: impl_(std::move(impl))
130+
{
131+
MRDOX_ASSERT(impl_);
132+
}
133+
134+
/** Constructor.
135+
136+
Upon construction, the array will retain
137+
ownership of a shallow copy of the specified
138+
elements. In particular, dynamic objects will
139+
be acquired with shared ownership.
140+
141+
@param elements The elements to acquire.
142+
*/
143+
Array(storage_type elements);
144+
145+
/** Return the implementation used by this object.
146+
*/
147+
auto impl() const noexcept -> impl_type const&
148+
{
149+
return impl_;
150+
}
151+
152+
/** Return the type key of the implementation.
153+
*/
154+
char const* type_key() const noexcept;
155+
156+
/** Return true if the array is empty.
157+
*/
158+
bool empty() const noexcept;
159+
160+
/** Return the number of elements in the array.
161+
*/
162+
size_type size() const noexcept;
163+
164+
/** Return the i-th element, without bounds checking.
165+
166+
@param i The zero-based index of the element.
167+
*/
168+
value_type get(size_type i) const;
169+
170+
/** Return the i-th element, without bounds checking.
171+
*/
172+
value_type operator[](size_type i) const;
173+
174+
/** Return the i-th element.
175+
176+
@throw Exception `i >= size()`
177+
*/
178+
value_type at(size_type i) const;
179+
180+
/** Append an element to the end of the array.
181+
182+
If the array is read-only, an exception
183+
is thrown.
184+
*/
185+
void emplace_back(value_type value);
186+
187+
/** Swap two arrays.
188+
*/
189+
void swap(Array& other) noexcept
190+
{
191+
std::swap(impl_, other.impl_);
192+
}
193+
194+
/** Swap two arrays.
195+
*/
196+
friend void swap(Array& lhs, Array& rhs) noexcept
197+
{
198+
lhs.swap(rhs);
199+
}
200+
201+
/** Return a diagnostic string.
202+
*/
203+
friend
204+
std::string
205+
toString(Array const&);
206+
207+
template<class T, class... Args>
208+
requires std::derived_from<T, ArrayImpl>
209+
friend Array newArray(Args&&... args);
210+
};
211+
212+
//------------------------------------------------
213+
//
214+
// ArrayImpl
215+
//
216+
//------------------------------------------------
217+
218+
/** Abstract array interface.
219+
220+
This interface is used by Array types.
221+
*/
222+
class MRDOX_DECL
223+
ArrayImpl
224+
{
225+
public:
226+
/// @copydoc Array::value_type
227+
using value_type = Array::value_type;
228+
229+
/// @copydoc Array::size_type
230+
using size_type = Array::size_type;
231+
232+
/** Destructor.
233+
*/
234+
virtual ~ArrayImpl();
235+
236+
/** Return the type key of the implementation.
237+
*/
238+
virtual char const* type_key() const noexcept;
239+
240+
/** Return the number of elements in the array.
241+
*/
242+
virtual size_type size() const = 0;
243+
244+
/** Return the i-th element, without bounds checking.
245+
*/
246+
virtual value_type get(size_type i) const = 0;
247+
248+
/** Append an element to the end of the array.
249+
250+
The default implementation throws an exception,
251+
making the array effectively read-only.
252+
*/
253+
virtual void emplace_back(value_type value);
254+
};
255+
256+
//------------------------------------------------
257+
//
258+
// DefaultArrayImpl
259+
//
260+
//------------------------------------------------
261+
262+
/** The default array implementation.
263+
264+
This implementation is backed by a simple
265+
vector and allows appending.
266+
*/
267+
class MRDOX_DECL
268+
DefaultArrayImpl : public ArrayImpl
269+
{
270+
public:
271+
/// @copydoc Array::value_type
272+
using value_type = Array::value_type;
273+
274+
/// @copydoc Array::size_type
275+
using size_type = Array::size_type;
276+
277+
/// @copydoc Array::storage_type
278+
using storage_type = Array::storage_type;
279+
280+
DefaultArrayImpl();
281+
explicit DefaultArrayImpl(
282+
storage_type elements) noexcept;
283+
size_type size() const override;
284+
value_type get(size_type i) const override;
285+
void emplace_back(value_type value) override;
286+
287+
private:
288+
std::vector<value_type> elements_;
289+
};
290+
291+
/** Return a new array using a custom implementation.
292+
*/
293+
template<class T, class... Args>
294+
requires std::derived_from<T, ArrayImpl>
295+
Array
296+
newArray(Args&&... args)
297+
{
298+
return Array(std::make_shared<T>(
299+
std::forward<Args>(args)...));
300+
}
301+
302+
} // dom
303+
} // mrdox
304+
} // clang
305+
306+
// This is here because of circular references
307+
#include <mrdox/Dom/Value.hpp>
308+
309+
#endif

0 commit comments

Comments
 (0)