Skip to content

Commit 7a27e5b

Browse files
committed
refactor generators
1 parent 7202689 commit 7a27e5b

12 files changed

+820
-709
lines changed

include/mrdox/Generator.hpp

+105
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
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+
// Generator classes for converting declaration
13+
// information into documentation in a specified format.
14+
15+
#ifndef MRDOX_GENERATOR_HPP
16+
#define MRDOX_GENERATOR_HPP
17+
18+
#include <mrdox/Config.hpp>
19+
#include <mrdox/Corpus.hpp>
20+
#include <mrdox/Errors.hpp>
21+
#include <llvm/ADT/StringRef.h>
22+
23+
namespace clang {
24+
namespace mrdox {
25+
26+
/** Base class for documentation generators.
27+
*/
28+
struct Generator
29+
{
30+
/** Destructor.
31+
*/
32+
virtual ~Generator() = default;
33+
34+
/** Return the full name of the generator.
35+
*/
36+
virtual
37+
llvm::StringRef
38+
name() const noexcept = 0;
39+
40+
/** Return the extension or tag of the generator.
41+
42+
This should be in all lower case. Examples
43+
of tags are:
44+
45+
@li "adoc" Asciidoctor
46+
@li "xml" XML
47+
48+
The returned string should not include
49+
a leading period.
50+
*/
51+
virtual
52+
llvm::StringRef
53+
extension() const noexcept = 0;
54+
55+
/** Build documentation from the corpus and configuration.
56+
57+
The default implementation calls @ref buildOneFile
58+
with a suitable filename calculated from the
59+
root directory and the generator's extension.
60+
61+
@return `true` upon success.
62+
*/
63+
virtual
64+
bool
65+
build(
66+
llvm::StringRef rootPath,
67+
Corpus const& corpus,
68+
Config const& cfg,
69+
Reporter& R) const;
70+
71+
/** Build single-file documentation from the corpus and configuration.
72+
73+
@return `true` upon success.
74+
*/
75+
virtual
76+
bool
77+
buildOne(
78+
llvm::StringRef fileName,
79+
Corpus const& corpus,
80+
Config const& cfg,
81+
Reporter& R) const = 0;
82+
83+
/** Build a string containing the single-file documentation.
84+
*/
85+
virtual
86+
bool
87+
buildString(
88+
std::string& dest,
89+
Corpus const& corpus,
90+
Config const& config,
91+
Reporter& R) const = 0;
92+
};
93+
94+
extern std::unique_ptr<Generator> makeXMLGenerator();
95+
extern std::unique_ptr<Generator> makeAsciidocGenerator();
96+
97+
//------------------------------------------------
98+
99+
// VFALCO This does not belong here
100+
std::string getTagType(TagTypeKind AS);
101+
102+
} // mrdox
103+
} // clang
104+
105+
#endif

include/mrdox/XML.hpp

-33
This file was deleted.

0 commit comments

Comments
 (0)