Skip to content

Commit 6dbd8a9

Browse files
committed
refactor corpus and error handling
1 parent 7efbcdc commit 6dbd8a9

21 files changed

+824
-600
lines changed

CMakeLists.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,15 @@ source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/source/lib PREFIX "source" FILES $
133133
#-------------------------------------------------
134134

135135
file(GLOB_RECURSE TOOL_SOURCES CONFIGURE_DEPENDS
136-
source/mrdox/*.cpp
137-
source/mrdox/*.hpp)
136+
source/tool/*.cpp
137+
source/tool/*.hpp)
138138

139139
add_executable(mrdox ${TOOL_SOURCES})
140140
target_link_libraries(mrdox PRIVATE mrdox_lib)
141-
target_include_directories(mrdox PRIVATE ${PROJECT_SOURCE_DIR}/source/mrdox)
141+
target_include_directories(mrdox PRIVATE ${PROJECT_SOURCE_DIR}/source/tool)
142142

143143
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} PREFIX "" FILES CMakeLists.txt)
144-
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/source/mrdox PREFIX "" FILES ${TOOL_SOURCES})
144+
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/source/tool PREFIX "" FILES ${TOOL_SOURCES})
145145

146146
#-------------------------------------------------
147147
#
@@ -161,4 +161,4 @@ add_test(NAME mrdox_tests_bare COMMAND mrdox_tests "${CMAKE_CURRENT_SOURCE_DIR}/
161161
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} PREFIX "" FILES CMakeLists.txt)
162162
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/source/tests PREFIX "" FILES ${TEST_SOURCES})
163163

164-
#-------------------------------------------------
164+
#-------------------------------------------------

NOTES.adoc

-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
This worked for me:
44

5-
```
65
# From Administrator CMD.EXE,
76
# after running vcvars64.bat
87

@@ -14,6 +13,3 @@ cmake --install . --prefix "C:\Users\vinnie\src\llvm-install\Debug" --config Deb
1413

1514
# MrDox
1615
cmake -G "Visual Studio 17 2022" -A x64 -B bin64 -DCMAKE_PREFIX_PATH="C:\Users\vinnie\src\llvm-install\RelWithDebInfo" -DCMAKE_TOOLCHAIN_FILE="C:\Users\vinnie\src\mrdox\toolchain.cmake"
17-
```
18-
cmake --build . --config RelWithDebInfo
19-
cmake --install . --prefix path\to\install\RelWithDebInfo" --config RelWithDebInfo

include/mrdox/Config.hpp

-33
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ struct Config
3939

4040
tooling::ArgumentsAdjuster ArgAdjuster;
4141

42-
tooling::ExecutionContext* ECtx;
43-
4442
// Name of project being documented.
4543
std::string ProjectName;
4644

@@ -64,37 +62,6 @@ struct Config
6462
std::unique_ptr<Generator> G;
6563
};
6664

67-
//------------------------------------------------
68-
69-
/** Set up a docs context from command line arguments.
70-
*/
71-
llvm::Error
72-
setupConfig(
73-
Config& cfg,
74-
int argc, const char** argv);
75-
76-
/** Set up a docs context from command line arguments.
77-
*/
78-
llvm::Error
79-
setupConfig(
80-
Config& cfg,
81-
llvm::SmallVector<llvm::StringRef, 16> const& args);
82-
83-
llvm::Error
84-
doMapping(
85-
Corpus& corpus,
86-
Config const& cfg);
87-
88-
/** Build the internal index of the program under analysis.
89-
90-
This must happen before generating docs.
91-
*/
92-
llvm::Error
93-
buildIndex(
94-
Corpus& corpus,
95-
tooling::ToolResults& toolResults,
96-
Config const& cfg);
97-
9865
} // mrdox
9966
} // clang
10067

include/mrdox/Corpus.hpp

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

1515
#include "jad/Index.hpp"
16+
#include <mrdox/Config.hpp>
1617
#include <clang/Tooling/Execution.h>
1718

1819
namespace clang {
@@ -26,7 +27,9 @@ struct Corpus
2627
Corpus(Corpus const&) = delete;
2728
Corpus& operator=(Corpus const&) = delete;
2829

29-
std::unique_ptr<tooling::ToolExecutor> executor;
30+
// In ToolResults, the Key is the hashed USR and the value is the
31+
// bitcode-encoded representation of the Info object.
32+
tooling::InMemoryToolResults toolResults;
3033

3134
Index Idx;
3235

@@ -39,6 +42,27 @@ struct Corpus
3942
std::unique_ptr<mrdox::Info>> USRToInfo;
4043
};
4144

45+
/*
46+
llvm::Expected<Corpus>
47+
buildCorpus(
48+
Config const& config
49+
Reporter& R);
50+
*/
51+
52+
llvm::Error
53+
doMapping(
54+
Corpus& corpus,
55+
Config const& cfg);
56+
57+
/** Build the internal index of the program under analysis.
58+
59+
This must happen before generating docs.
60+
*/
61+
llvm::Error
62+
buildIndex(
63+
Corpus& corpus,
64+
Config const& cfg);
65+
4266
} // mrdox
4367
} // clang
4468

include/mrdox/ErrorCode.hpp

+120
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
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_ERRORCODE_HPP
13+
#define MRDOX_ERRORCODE_HPP
14+
15+
#include <mrdox/detail/access.hpp>
16+
#include <llvm/Support/Error.h>
17+
#include <llvm/Support/raw_ostream.h>
18+
#include <source_location>
19+
#include <system_error>
20+
21+
namespace clang {
22+
namespace mrdox {
23+
24+
//------------------------------------------------
25+
26+
namespace detail {
27+
CONST_FUNCTION_ACCESS(callGetPtr, llvm::Error, getPtr, llvm::ErrorInfoBase*);
28+
} // detail
29+
30+
/** Holds a portable error code
31+
*/
32+
class ErrorCode
33+
{
34+
std::error_code ec_;
35+
std::source_location loc_;
36+
37+
static
38+
llvm::ErrorInfoBase const*
39+
getPtr(llvm::Error const& e) noexcept
40+
{
41+
return access::callFunction<detail::callGetPtr>(e);
42+
}
43+
44+
static
45+
std::error_code
46+
getErrorCode(
47+
llvm::Error const& e) noexcept
48+
{
49+
auto const p = getPtr(e);
50+
if(! p)
51+
return std::error_code();
52+
return p->convertToErrorCode();
53+
}
54+
55+
public:
56+
ErrorCode() = default;
57+
ErrorCode(ErrorCode const&) = default;
58+
ErrorCode& operator=(ErrorCode const&) = default;
59+
60+
ErrorCode(
61+
llvm::Error& e,
62+
std::source_location const& loc =
63+
std::source_location::current()) noexcept
64+
: ec_(getErrorCode(e))
65+
, loc_(loc)
66+
{
67+
e.operator bool();
68+
}
69+
70+
ErrorCode(
71+
llvm::Error&& e,
72+
std::source_location const& loc =
73+
std::source_location::current()) noexcept
74+
: ec_(getErrorCode(e))
75+
, loc_(loc)
76+
{
77+
llvm::Error e_(std::move(e));
78+
e_.operator bool();
79+
}
80+
81+
std::string
82+
message() const
83+
{
84+
return ec_.message();
85+
}
86+
87+
std::source_location const&
88+
where() const noexcept
89+
{
90+
return loc_;
91+
}
92+
93+
bool failed() const noexcept
94+
{
95+
return ec_.operator bool();
96+
}
97+
98+
operator bool() const noexcept
99+
{
100+
return failed();
101+
}
102+
103+
friend
104+
llvm::raw_ostream&
105+
operator<<(
106+
llvm::raw_ostream& os,
107+
ErrorCode const& ec)
108+
{
109+
ec.write(os);
110+
return os;
111+
}
112+
113+
private:
114+
void write(llvm::raw_ostream& os) const;
115+
};
116+
117+
} // mrdox
118+
} // clang
119+
120+
#endif

source/lib/CorpusVisitor.cpp include/mrdox/Result.hpp

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

12-
#include "CorpusVisitor.hpp"
12+
#ifndef MRDOX_RESULT_HPP
13+
#define MRDOX_RESULT_HPP
1314

1415
namespace clang {
1516
namespace mrdox {
1617

17-
void
18-
CorpusVisitor::
19-
reportResult(
20-
StringRef Key, StringRef Value)
21-
{
22-
cfg_.ECtx->reportResult(Key, Value);
23-
}
18+
//------------------------------------------------
2419

2520
} // mrdox
2621
} // clang
22+
23+
#endif

include/mrdox/BasicVisitor.hpp include/mrdox/Visitor.hpp

+11-9
Original file line numberDiff line numberDiff line change
@@ -17,30 +17,32 @@
1717
// key is the declaration's USR and the value is the serialized bitcode.
1818
//
1919

20-
#ifndef MRDOX_BASIC_VISITOR_HPP
21-
#define MRDOX_BASIC_VISITOR_HPP
20+
#ifndef MRDOX_VISITOR_HPP
21+
#define MRDOX_VISITOR_HPP
2222

2323
#include "Representation.h"
2424
#include <mrdox/Config.hpp>
25+
#include <mrdox/Corpus.hpp>
2526
#include <clang/AST/ASTConsumer.h>
2627
#include <clang/AST/RecursiveASTVisitor.h>
2728
#include <utility>
2829

2930
namespace clang {
3031
namespace mrdox {
3132

32-
class BasicVisitor
33-
: public RecursiveASTVisitor<BasicVisitor>
33+
class Visitor
34+
: public RecursiveASTVisitor<Visitor>
3435
, public ASTConsumer
3536
{
36-
protected:
37+
Corpus& corpus_;
3738
Config const& cfg_;
3839

3940
public:
40-
explicit
41-
BasicVisitor(
41+
Visitor(
42+
Corpus& corpus,
4243
Config const& cfg) noexcept
43-
: cfg_(cfg)
44+
: corpus_(corpus)
45+
, cfg_(cfg)
4446
{
4547
}
4648

@@ -55,7 +57,7 @@ class BasicVisitor
5557
bool VisitTypeAliasDecl(TypeAliasDecl const* D);
5658

5759
private:
58-
virtual void reportResult(StringRef Key, StringRef Value) = 0;
60+
void reportResult(StringRef Key, StringRef Value);
5961

6062
template <typename T>
6163
bool mapDecl(T const* D);

0 commit comments

Comments
 (0)