Skip to content

Commit 8265ca8

Browse files
vinniefalcosdkrystian
authored andcommitted
Add Optional
fix #214, close #215
1 parent 6829d3d commit 8265ca8

File tree

6 files changed

+112
-58
lines changed

6 files changed

+112
-58
lines changed

include/mrdox/Metadata/AnyList.hpp include/mrdox/ADT/AnyList.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
// Official repository: https://github.com/cppalliance/mrdox
1010
//
1111

12-
#ifndef MRDOX_METADATA_ANYLIST_HPP
13-
#define MRDOX_METADATA_ANYLIST_HPP
12+
#ifndef MRDOX_ADT_ANYLIST_HPP
13+
#define MRDOX_ADT_ANYLIST_HPP
1414

1515
#include <mrdox/Platform.hpp>
1616
#include <algorithm>

include/mrdox/ADT/BitField.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
//
77
// Copyright (c) 2023 Klemens D. Morgenstern
88
//
9-
//
109
// Official repository: https://github.com/cppalliance/mrdox
1110
//
1211

include/mrdox/ADT/Optional.hpp

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
//
2+
// This is a derivative work. originally part of the LLVM Project.
3+
// Licensed under the Apache License v2.0 with LLVM Exceptions.
4+
// See https://llvm.org/LICENSE.txt for license information.
5+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+
//
7+
// Copyright (c) 2023 Vinnie Falco ([email protected])
8+
//
9+
// Official repository: https://github.com/cppalliance/mrdox
10+
//
11+
12+
#ifndef MRDOX_ADT_OPTIONAL_HPP
13+
#define MRDOX_ADT_OPTIONAL_HPP
14+
15+
#include <mrdox/Platform.hpp>
16+
#include <type_traits>
17+
#include <utility>
18+
19+
namespace clang {
20+
namespace mrdox {
21+
22+
/** The default empty predicate.
23+
24+
This predicate is true when t.empty() returns
25+
`true` where `t` is a `T`.
26+
*/
27+
struct DefaultEmptyPredicate
28+
{
29+
template<class T>
30+
requires
31+
requires(T t) { t.empty(); }
32+
constexpr bool operator()(T const& t) const noexcept
33+
{
34+
return t.empty();
35+
}
36+
};
37+
38+
/** A compact optional.
39+
40+
This works like std::optional except the
41+
predicate is invoked to determine whether
42+
the optional is engaged. This is a space
43+
optimization.
44+
*/
45+
template<
46+
class T,
47+
class EmptyPredicate = DefaultEmptyPredicate>
48+
class Optional
49+
{
50+
T t_;
51+
52+
public:
53+
using value_type = T;
54+
55+
constexpr Optional() = default;
56+
constexpr Optional(
57+
Optional const& other) = default;
58+
constexpr Optional& operator=(
59+
Optional const& other) = default;
60+
61+
template<class U>
62+
requires std::is_constructible_v<T, U>
63+
constexpr explicit
64+
Optional(U&& u)
65+
: t_(std::forward<U>(u))
66+
{
67+
}
68+
69+
template<typename... Args>
70+
requires std::is_constructible_v<T, Args...>
71+
constexpr value_type& emplace(Args&&... args)
72+
{
73+
return t_ = T(std::forward<Args>(args)...);
74+
}
75+
76+
constexpr value_type& operator*() noexcept
77+
{
78+
return t_;
79+
}
80+
81+
constexpr value_type const& operator*() const noexcept
82+
{
83+
return t_;
84+
}
85+
86+
constexpr explicit operator bool() const noexcept
87+
{
88+
return has_value();
89+
}
90+
91+
constexpr bool has_value() const noexcept
92+
{
93+
return ! EmptyPredicate()(t_);
94+
}
95+
};
96+
97+
} // mrdox
98+
} // clang
99+
100+
#endif

include/mrdox/Metadata/Javadoc.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#define MRDOX_METADATA_JAVADOC_HPP
1414

1515
#include <mrdox/Platform.hpp>
16-
#include <mrdox/Metadata/AnyList.hpp>
16+
#include <mrdox/ADT/AnyList.hpp>
1717
#include <llvm/ADT/SmallString.h>
1818
#include <memory>
1919
#include <string>

include/mrdox/Metadata/Symbols.hpp

+8-53
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#define MRDOX_METADATA_SYMBOLS_HPP
1515

1616
#include <mrdox/Platform.hpp>
17+
#include <mrdox/ADT/Optional.hpp>
1718
#include <llvm/ADT/StringRef.h>
1819
#include <cstdint>
1920
#include <cstring>
@@ -44,6 +45,11 @@ class SymbolID
4445
c = *src++;
4546
}
4647

48+
constexpr bool empty() const noexcept
49+
{
50+
return *this == zero;
51+
}
52+
4753
constexpr auto data() const noexcept
4854
{
4955
return data_;
@@ -95,60 +101,9 @@ class SymbolID
95101
// to be an inline variable without it (it should; see [dcl.constexpr])
96102
constexpr inline SymbolID SymbolID::zero = SymbolID();
97103

98-
/** Like optional<SymbolID>
104+
/** Like std::optional<SymbolID>
99105
*/
100-
class OptionalSymbolID
101-
{
102-
SymbolID ID_{};
103-
104-
public:
105-
using value_type = SymbolID;
106-
107-
constexpr OptionalSymbolID() = default;
108-
109-
constexpr OptionalSymbolID(std::nullopt_t) noexcept
110-
: OptionalSymbolID()
111-
{
112-
}
113-
114-
constexpr OptionalSymbolID(
115-
OptionalSymbolID const& other) = default;
116-
117-
constexpr OptionalSymbolID& operator=(
118-
OptionalSymbolID const& other) = default;
119-
120-
constexpr OptionalSymbolID(value_type const& v) noexcept
121-
: ID_(v)
122-
{
123-
}
124-
125-
constexpr value_type& operator*() noexcept
126-
{
127-
return ID_;
128-
}
129-
130-
constexpr value_type const& operator*() const noexcept
131-
{
132-
return ID_;
133-
}
134-
135-
constexpr explicit operator bool() const noexcept
136-
{
137-
return has_value();
138-
}
139-
140-
constexpr bool has_value() const noexcept
141-
{
142-
return ID_ != SymbolID::zero;
143-
}
144-
145-
template<typename... Args>
146-
constexpr value_type& emplace(Args&&... args)
147-
{
148-
return *::new (&ID_) SymbolID(
149-
std::forward<Args>(args)...);
150-
}
151-
};
106+
using OptionalSymbolID = Optional<SymbolID>;
152107

153108
/** Info variant discriminator
154109
*/

source/AST/AnyNodeList.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include <mrdox/Platform.hpp>
1515
#include <mrdox/Error.hpp>
1616
#include <mrdox/Metadata/Javadoc.hpp>
17-
#include <mrdox/Metadata/AnyList.hpp>
17+
#include <mrdox/ADT/AnyList.hpp>
1818

1919
namespace clang {
2020
namespace mrdox {

0 commit comments

Comments
 (0)