Skip to content

Commit 744eaee

Browse files
committed
docs: antora setup
1 parent 8460e1f commit 744eaee

20 files changed

+3326
-48
lines changed

.github/workflows/ci.yml

+47
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,53 @@ jobs:
102102
run:
103103
shell: bash
104104

105+
name: Publish docs
106+
timeout-minutes: 30
107+
runs-on: ubuntu-22.04
108+
permissions:
109+
contents: write
110+
111+
steps:
112+
- uses: actions/checkout@v3
113+
114+
- name: Install Node.js
115+
uses: actions/setup-node@v3
116+
with:
117+
node-version: '18'
118+
119+
- name: Install Antora
120+
working-directory: docs
121+
run: |
122+
npm install
123+
124+
- name: Generate Site
125+
working-directory: docs
126+
run: |
127+
master_antora_exists=$(curl --silent --fail --head https://github.com/cppalliance/mrdox/blob/master/docs/antora.yml >/dev/null && echo "true" || echo "false")
128+
develop_antora_exists=$(curl --silent --fail --head https://github.com/cppalliance/mrdox/blob/develop/docs/antora.yml >/dev/null && echo "true" || echo "false")
129+
if [ "$master_antora_exists" == "true" ] && [ "$develop_antora_exists" == "true" ]; then
130+
# Antora is set up in both master and develop: render complete playbook
131+
npx antora antora-playbook.yml
132+
else
133+
# Antora is not set up in master and develop yet: render local playbook while integration is not complete
134+
# The local playbook is used for local development and for the documentation included in the release
135+
npx antora local-antora-playbook.yml
136+
fi
137+
138+
- name: Publish to GitHub Pages
139+
uses: peaceiris/actions-gh-pages@v3
140+
with:
141+
github_token: ${{ secrets.GITHUB_TOKEN }}
142+
publish_dir: docs/build/site
143+
force_orphan: true
144+
145+
releases:
146+
needs: build
147+
if: ${{ github.event_name == 'push' && (contains(fromJSON('["master", "develop"]'), github.ref_name) || startsWith(github.ref, 'refs/tags/')) }}
148+
defaults:
149+
run:
150+
shell: bash
151+
105152
name: Create Release Packages
106153
timeout-minutes: 120
107154
runs-on: ubuntu-22.04

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@
88
/test-files/py
99
/test-files/**/*.adoc
1010
/test-files/**/*.bad.xml
11+
docs/node_modules
12+
docs/build

CMakeLists.txt

+41-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ include(GNUInstallDirs)
3636

3737
option(MRDOX_BUILD_TESTS "Build tests" ${BUILD_TESTING})
3838
option(MRDOX_BUILD_SHARED "Link shared" OFF)
39+
option(MRDOX_BUILD_DOCS "Configure install target" OFF)
3940
option(MRDOX_INSTALL "Configure install target" ON)
4041
option(MRDOX_PACKAGE "Build install package" ON)
4142

@@ -218,7 +219,7 @@ source_group(TREE ${PROJECT_SOURCE_DIR}/source PREFIX "source" FILES ${SOURCES})
218219
#
219220
#-------------------------------------------------
220221

221-
if (BUILD_TESTING)
222+
if (MRDOX_BUILD_TESTS)
222223
file(GLOB_RECURSE TEST_SOURCES CONFIGURE_DEPENDS source/*.cpp source/*.hpp)
223224
enable_testing()
224225
add_test(NAME mrdox-test COMMAND mrdox --action test
@@ -260,6 +261,37 @@ if (BUILD_TESTING)
260261
endif()
261262
endif()
262263

264+
265+
#-------------------------------------------------
266+
#
267+
# Docs
268+
#
269+
#-------------------------------------------------
270+
271+
if (MRDOX_BUILD_DOCS)
272+
find_program(NPM_EXECUTABLE npm)
273+
find_program(NPX_EXECUTABLE npx)
274+
275+
if(NPM_EXECUTABLE AND NPX_EXECUTABLE)
276+
message(STATUS "NPM found: ${NPM_EXECUTABLE}")
277+
message(STATUS "NPX found: ${NPX_EXECUTABLE}")
278+
279+
set(DOCS_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/docs)
280+
set(DOCS_BUILD_DIR ${DOCS_SOURCE_DIR}/build/site)
281+
set(DOCS_INSTALL_DIR ${CMAKE_INSTALL_PREFIX}/doc/mrdox/html)
282+
283+
# Add custom target for generating documentation
284+
add_custom_target(generate_docs
285+
COMMAND ${NPM_EXECUTABLE} install
286+
COMMAND ${NPX_EXECUTABLE} antora local-antora-playbook.yml
287+
WORKING_DIRECTORY ${DOCS_SOURCE_DIR}
288+
COMMENT "Generating MrDox documentation"
289+
)
290+
else()
291+
message(WARNING "NPM or NPX not found. Unable to generate documentation.")
292+
endif()
293+
endif ()
294+
263295
#-------------------------------------------------
264296
#
265297
# Install
@@ -285,6 +317,14 @@ if (MRDOX_INSTALL)
285317
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
286318
FILES_MATCHING PATTERN "*.[hic]pp")
287319

320+
# Set installation rules for generated documentation
321+
if (MRDOX_BUILD_DOCS)
322+
install(DIRECTORY ${DOCS_BUILD_DIR}
323+
DESTINATION ${DOCS_INSTALL_DIR}
324+
COMPONENT documentation
325+
)
326+
endif()
327+
288328
# Set variable where the cmake config is
289329
# https://cliutils.gitlab.io/modern-cmake/chapters/install/installing.html
290330
set(CONFIG_INSTALL_DIR ${CMAKE_INSTALL_LIBDIR}/cmake/mrdox)

NOTES.adoc

-33
This file was deleted.

docs/.asciidoctorconfig

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
:linkcss:
2+
:stylesdir: https://cppalliance.github.io/mrdox/_/stylesheets
3+
:stylesheet: site.css

docs/antora-playbook.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# npm install
2+
# npx antora --fetch antora-playbook.yml
3+
site:
4+
title: MrDox
5+
url: https://cppalliance.github.io/mrdox/
6+
start_page: mrdox::index.adoc
7+
robots: allow
8+
keys:
9+
repo_url: 'https://github.com/cppalliance/mrdox'
10+
11+
content:
12+
branches: [ master, develop ]
13+
tags: [ v* ]
14+
edit_url: 'https://github.com/cppalliance/mrdox/edit/{refname}/{path}'
15+
sources:
16+
- url: https://github.com/cppalliance/mrdox.git
17+
start_path: docs
18+
edit_url: 'https://github.com/cppalliance/mrdox/edit/{refname}/{path}'
19+
20+
ui:
21+
bundle:
22+
url: https://gitlab.com/antora/antora-ui-default/-/jobs/artifacts/HEAD/raw/build/ui-bundle.zip?job=bundle-stable
23+
snapshot: true
24+
25+
antora:
26+
extensions:
27+
- require: '@antora/lunr-extension' # https://gitlab.com/antora/antora-lunr-extension
28+
index_latest_only: true
29+

docs/antora.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: mrdox
2+
title: MrDox
3+
version: true
4+
start_page: index.adoc
5+
asciidoc:
6+
attributes:
7+
source-language: asciidoc@
8+
table-caption: false
9+
nav:
10+
- modules/ROOT/nav.adoc

docs/design-notes.adoc

-14
This file was deleted.

docs/local-antora-playbook.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# npm install
2+
# npx antora --fetch local-antora-playbook.yml
3+
site:
4+
title: MrDox
5+
url: https://cppalliance.github.io/mrdox/
6+
start_page: mrdox::index.adoc
7+
robots: allow
8+
keys:
9+
repo_url: 'https://github.com/cppalliance/mrdox'
10+
11+
content:
12+
sources:
13+
- url: ..
14+
start_path: docs
15+
edit_url: 'https://github.com/cppalliance/mrdox/edit/{refname}/{path}'
16+
17+
ui:
18+
bundle:
19+
url: https://gitlab.com/antora/antora-ui-default/-/jobs/artifacts/HEAD/raw/build/ui-bundle.zip?job=bundle-stable
20+
snapshot: true
21+
22+
antora:
23+
extensions:
24+
- require: '@antora/lunr-extension' # https://gitlab.com/antora/antora-lunr-extension
25+
index_latest_only: true
26+
294 KB
Loading

docs/modules/ROOT/nav.adoc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
* xref:index.adoc[]
2+
* xref:install.adoc[]
3+
* xref:design-notes.adoc[]
4+
* xref:usage.adoc[]
5+
* xref:contribute.adoc[]
6+
* xref:license.adoc[]
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
= Contribute
2+
3+
4+
5+
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
= Design Notes
2+
3+
== AST Traversal
4+
5+
During the AST traversal stage, the complete AST (generated by the clang frontend) is walked beginning with the root `TranslationUnitDecl` node.
6+
It is during this stage that USRs (universal symbol references) are generated and hashed with SHA1 to form the 160 bit `SymbolID` for an entity.
7+
With the exception of built-in types, *all* entities referenced in the corpus will be traversed and be assigned a `SymbolID`; including those from the standard library.
8+
This is necessary to generate the full interface for user-defined types.
9+
10+
== Bitcode
11+
12+
AST traversal is performed in parallel on a per-translation-unit basis.
13+
To maximize the size of the code base MrDox is capable of processing, `Info` types generated during traversal are serialized to a compressed bitcode representation.
14+
Once AST traversal is complete for all translation units, the bitcode is deserialized back into `Info` types, and then merged to form the corpus.
15+
The merging step is necessary as there may be multiple identical definitions of the same entity (e.g. for class types, templates, inline functions, etc), as well as functions declared in one translation unit & defined in another.
16+
17+
== The Corpus
18+
19+
After AST traversal and `Info` merging, the result is stored as a map of `Info`s indexed by their respective `SymbolID`s. Documentation generators may traverse this structure by calling `Corpus::traverse` with a `Corpus::Visitor` derived visitor and the `SymbolID` of the entity to visit (e.g. the global namespace).
20+
21+
== Namespaces
22+
23+
Namespaces do not have a source location.
24+
This is because there can be many namespaces.
25+
We probably don't want to store any javadocs for namespaces either.

docs/modules/ROOT/pages/index.adoc

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
= MrDox
2+
Alan Freitas <alandefreitas@gmail.com>
3+
:description: MrDox: A Clang/LLVM tool for building reference documentation from C++ code and javadoc comments.
4+
:sectanchors:
5+
:url-repo: https://github.com/cppalliance/mrdox
6+
:page-tags: mrdox
7+
:navtitle: Home
8+
9+
image::MrDoxBanner.png[]
10+
11+
Welcome to MrDox, the ultimate solution for generating comprehensive reference documentation from your {cpp} codebase and javadoc comments. MrDox harnesses the power of Clang/LLVM, offering a seamless and efficient way to document your {cpp} projects.
12+
13+
With MrDox, you can effortlessly extract valuable insights and produce detailed documentation for your {cpp} code. By leveraging the rich semantic knowledge provided by Clang/LLVM, MrDox accurately captures the nuances of your codebase, including class hierarchies, functions, and their respective parameters and return types. This ensures that your documentation is not only informative but also up-to-date, eliminating the need for manual documentation maintenance.
14+
15+
The integration of javadoc-style comments takes your documentation to the next level. With MrDox, you can easily embed human-readable explanations, usage examples, and additional contextual information directly within your code. These comments serve as a valuable resource for both developers and consumers of your code, promoting clarity and understanding.
16+
17+
MrDox seamlessly fits into your development workflow, with the freedom to customize the output format to suit your project requirements. MrDox offers versatile options for output formats, including XML and Asciidoc. In addition to the provided output formats, MrDox empowers users to bring their own creativity and customization to the documentation generation process. With support for handlebars templates, you can create and apply your own unique templates to the generated documentation. This allows you to customize the styling, layout, and overall presentation of your documentation, making it truly personalized and aligned with your project's branding.
18+
19+
MrDox empowers you to produce high-quality documentation that benefits both developers and users. Explore the power of MrDox today and experience the ease of building comprehensive reference documentation for your {cpp} projects. Say goodbye to tedious manual documentation and embrace the efficiency and accuracy of MrDox.
20+
21+
== Comparison
22+
23+
=== Doxygen:
24+
25+
* tries to work for many languages
26+
* use the inferior libclang API
27+
* old program with lots of technical debt
28+
* not written by me
29+
30+
=== MrDox:
31+
32+
* narrow and deep focus on {cpp} only
33+
* uses clang's unstable libtooling API:
34+
** Understands ALL C++: if clang can compile it, MrDox knows about it
35+
** This includes up to {cpp}20 and even experimental things in {cpp}23
36+
* brand-new program with no technical debt
37+
* written by me
38+

0 commit comments

Comments
 (0)