|
| 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 |
0 commit comments