Skip to content

Commit 3a5b9ad

Browse files
committedApr 1, 2023
move type to its own header
1 parent a74b883 commit 3a5b9ad

10 files changed

+103
-89
lines changed
 

‎CMakeLists.txt

+3-5
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,9 @@ target_include_directories(
115115
PUBLIC
116116
"$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include/>"
117117
"$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/source/lib>" # VFALCO THIS IS HACK, FIX ASAP
118-
${LLVM_INCLUDE_DIRS} # VFALCO THIS SHOULD PROBABLY BE PRIVATE?
119-
${CLANG_INCLUDE_DIRS} # VFALCO THIS SHOULD PROBABLY BE PRIVATE?
118+
${LLVM_INCLUDE_DIRS}
119+
${CLANG_INCLUDE_DIRS}
120120
PRIVATE
121-
#${LLVM_INCLUDE_DIRS}
122-
#${CLANG_INCLUDE_DIRS}
123121
${PROJECT_SOURCE_DIR}/source/lib
124122
)
125123

@@ -137,7 +135,7 @@ target_link_libraries(
137135
)
138136

139137
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} PREFIX "" FILES CMakeLists.txt)
140-
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/include/mrdox PREFIX "" FILES ${LIB_INCLUDES})
138+
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/include PREFIX "" FILES ${LIB_INCLUDES})
141139
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR}/source/lib PREFIX "source" FILES ${LIB_SOURCES})
142140

143141
#-------------------------------------------------

‎include/mrdox/ClangDocContext.hpp

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
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 (vinnie.falco@gmail.com)
8+
//
9+
// Official repository: https://github.com/cppalliance/mrdox
10+
//
11+
12+
#ifndef MRDOX_CLANGDOCCONTEXT_HPP
13+
#define MRDOX_CLANGDOCCONTEXT_HPP
14+
15+
#include "Representation.h"
16+
#include <clang/Tooling/Execution.h>
17+
#include <memory>
18+
#include <string>
19+
20+
namespace clang {
21+
namespace mrdox {
22+
23+
/** State information for a complete run of the tool
24+
*/
25+
struct ClangDocContext
26+
{
27+
ClangDocContext(
28+
ClangDocContext&&) = delete;
29+
ClangDocContext& operator=(
30+
ClangDocContext&&) = delete;
31+
32+
ClangDocContext();
33+
34+
std::unique_ptr<tooling::ToolExecutor> Executor;
35+
36+
tooling::ExecutionContext* ECtx;
37+
38+
// Name of project being documented.
39+
std::string ProjectName;
40+
41+
// Indicates if only public declarations are documented.
42+
bool PublicOnly;
43+
44+
// Directory for outputting generated files.
45+
std::string OutDirectory;
46+
47+
// Directory where processed files are stored. Links
48+
// to definition locations will only be generated if
49+
// the file is in this dir.
50+
std::string SourceRoot;
51+
52+
// URL of repository that hosts code used
53+
// for links to definition locations.
54+
std::optional<std::string> RepositoryUrl;
55+
56+
Index Idx;
57+
};
58+
59+
} // namespace mrdox
60+
} // namespace clang
61+
62+
#endif

‎include/mrdox/mrdox.hpp

+3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ llvm::Expected<llvm::Twine>
2323
renderXML(
2424
llvm::StringRef fileName);
2525

26+
//llvm::Error
27+
28+
2629
} // mrdox
2730
} // clang
2831

‎source/lib/ClangDoc.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_DOC_CLANGDOC_H
2121

2222
#include "Representation.h"
23-
24-
#include "clang/Tooling/Tooling.h"
23+
#include <mrdox/ClangDocContext.hpp>
24+
#include <clang/Tooling/Tooling.h>
2525

2626
namespace clang {
2727
namespace mrdox {

‎source/lib/ClangDocContext.cpp

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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 (vinnie.falco@gmail.com)
8+
//
9+
// Official repository: https://github.com/cppalliance/mrdox
10+
//
11+
12+
#include <mrdox/ClangDocContext.hpp>
13+
14+
namespace clang {
15+
namespace mrdox {
16+
17+
ClangDocContext::
18+
ClangDocContext()
19+
{
20+
llvm::SmallString<128> SourceRootDir;
21+
llvm::sys::fs::current_path(SourceRootDir);
22+
SourceRoot = std::string(SourceRootDir.str());
23+
}
24+
25+
} // mrdox
26+
} // clang

‎source/lib/Generators.h

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_DOC_GENERATOR_H
1717

1818
#include "Representation.h"
19+
#include <mrdox/ClangDocContext.hpp>
1920
#include "llvm/Support/Error.h"
2021
#include "llvm/Support/Registry.h"
2122

‎source/lib/Mapper.h

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
#define LLVM_CLANG_TOOLS_EXTRA_CLANG_DOC_MAPPER_H
2222

2323
#include "Representation.h"
24+
#include <mrdox/ClangDocContext.hpp>
2425
#include "clang/AST/RecursiveASTVisitor.h"
2526
#include "clang/Tooling/Execution.h"
2627

‎source/lib/Representation.cpp

+3-38
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
#include "Reduce.h"
2727
#include "Representation.h"
28+
#include <mrdox/ClangDocContext.hpp>
2829
#include "llvm/Support/Error.h"
2930
#include "llvm/Support/Path.h"
3031

@@ -359,41 +360,5 @@ void Index::sort() {
359360
C.sort();
360361
}
361362

362-
ClangDocContext::
363-
ClangDocContext()
364-
{
365-
llvm::SmallString<128> SourceRootDir;
366-
llvm::sys::fs::current_path(SourceRootDir);
367-
SourceRoot = std::string(SourceRootDir.str());
368-
}
369-
370-
ClangDocContext::
371-
ClangDocContext(
372-
tooling::ExecutionContext* ECtx,
373-
StringRef ProjectName,
374-
bool PublicOnly,
375-
StringRef OutDirectory,
376-
StringRef SourceRoot,
377-
StringRef RepositoryUrl)
378-
: ECtx(ECtx)
379-
, ProjectName(ProjectName)
380-
, PublicOnly(PublicOnly)
381-
, OutDirectory(OutDirectory)
382-
{
383-
llvm::SmallString<128> SourceRootDir(SourceRoot);
384-
if (SourceRoot.empty())
385-
{
386-
// If no SourceRoot was provided the current path is used as the default
387-
llvm::sys::fs::current_path(SourceRootDir);
388-
}
389-
this->SourceRoot = std::string(SourceRootDir.str());
390-
if (!RepositoryUrl.empty()) {
391-
this->RepositoryUrl = std::string(RepositoryUrl);
392-
if (!RepositoryUrl.empty() && RepositoryUrl.find("http://") != 0 &&
393-
RepositoryUrl.find("https://") != 0)
394-
this->RepositoryUrl->insert(0, "https://");
395-
}
396-
}
397-
398-
} // namespace mrdox
399-
} // namespace clang
363+
} // mrdox
364+
} // clang

‎source/lib/Representation.h

-44
Original file line numberDiff line numberDiff line change
@@ -626,50 +626,6 @@ struct Index
626626
llvm::Expected<std::unique_ptr<Info>>
627627
mergeInfos(std::vector<std::unique_ptr<Info>>& Values);
628628

629-
/** State information for a complete run of the tool
630-
*/
631-
struct ClangDocContext
632-
{
633-
ClangDocContext(
634-
ClangDocContext&&) = delete;
635-
ClangDocContext& operator=(
636-
ClangDocContext&&) = delete;
637-
638-
ClangDocContext();
639-
640-
ClangDocContext(
641-
tooling::ExecutionContext* ECtx,
642-
StringRef ProjectName,
643-
bool PublicOnly,
644-
StringRef OutDirectory,
645-
StringRef SourceRoot,
646-
StringRef RepositoryUrl);
647-
648-
std::unique_ptr<tooling::ToolExecutor> Executor;
649-
650-
tooling::ExecutionContext* ECtx;
651-
652-
// Name of project being documented.
653-
std::string ProjectName;
654-
655-
// Indicates if only public declarations are documented.
656-
bool PublicOnly;
657-
658-
// Directory for outputting generated files.
659-
std::string OutDirectory;
660-
661-
// Directory where processed files are stored. Links
662-
// to definition locations will only be generated if
663-
// the file is in this dir.
664-
std::string SourceRoot;
665-
666-
// URL of repository that hosts code used
667-
// for links to definition locations.
668-
std::optional<std::string> RepositoryUrl;
669-
670-
Index Idx;
671-
};
672-
673629
} // namespace mrdox
674630
} // namespace clang
675631

‎source/tests/test_main.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ do_main(int argc, const char** argv)
110110
}
111111
expectedXml = xmlResult->get()->getBuffer();
112112

113+
ClangDocContext CDCtx;
114+
113115
{
114116
#if 0
115117
auto Executor =

0 commit comments

Comments
 (0)
Please sign in to comment.