-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add smithy-docgen to the repository (#2488)
- Loading branch information
1 parent
888bf20
commit 89f26d6
Showing
103 changed files
with
8,179 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
org.gradle.configureondmand=true | ||
org.gradle.jvmargs='-Dfile.encoding=UTF-8' | ||
org.gradle.parallel=true | ||
smithyGradleVersion=1.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,197 @@ | ||
## Smithy DocGen | ||
|
||
Smithy build plugin to generate API documentation from models authored in | ||
[Smithy](https://smithy.io) IDL. | ||
|
||
NOTE: this project is currently in a pre-release state. Interfaces and output | ||
formatting may change before full release. | ||
|
||
### Usage | ||
|
||
First, create a gradle-based Smithy model project. This can be done easily with | ||
the Smithy CLI: `smithy init -o /tmp/smithy-docgen -t quickstart-gradle`. | ||
|
||
Note: the generator currently cannot be run with non-gradle-based projects. | ||
|
||
Next, publish the generator to Maven local by running | ||
`./gradlew :smithy-docgen:publishToMavenLocal`. | ||
|
||
In `build.gradle.kts`, add | ||
`implementation("software.amazon.smithy:smithy-docgen:+")` under | ||
`dependencies`. | ||
|
||
Next, add the `docgen` plugin to the | ||
[plugin configuration](https://smithy.io/2.0/guides/smithy-build-json.html) in | ||
`smithy-build.json`: | ||
|
||
```json | ||
"plugins": { | ||
"docgen": { | ||
"service": "example.weather#Weather" | ||
} | ||
} | ||
``` | ||
|
||
Finally, build the model with Gradle: `./gradlew build` | ||
|
||
Build logs will provide the destination folder for the generated docs. | ||
|
||
### Current State | ||
|
||
A documentation site can be generated in one of two formats with wide support | ||
for built-in traits. Minor changes to layout may occur, but the final product | ||
will be similar to the current output. | ||
|
||
The one critical, missing component is full example support. This will drive both | ||
wire-level examples and client examples. | ||
|
||
#### Trait Support | ||
|
||
Currently, most prelude (`smithy.api`) traits are supported, or deliberately | ||
excluded where not relevant to customer documentation. Trait information is | ||
easily added using Smithy's | ||
[interceptor](https://github.com/smithy-lang/smithy/blob/main/smithy-utils/src/main/java/software/amazon/smithy/utils/CodeInterceptor.java) | ||
system. Most trait information is added using interceptors, the implementations | ||
of which can be found in the | ||
[interceptors](https://github.com/smithy-lang/smithy/tree/main/smithy-docgen/src/main/java/software/amazon/smithy/docgen/interceptors) | ||
package. | ||
|
||
Auth traits are automatically supported as part of the service's auth list, | ||
where the trait's docs are used by default. More context can be added using | ||
the same interceptors that are run on normal shapes. | ||
|
||
##### Traits Missing Support | ||
|
||
The following prelude traits and trait categories are currently unsupported. All | ||
traits outside of the prelude are unsupported, with the exception of auth traits | ||
which have default support. | ||
|
||
* Protocol Traits - These should get a similar treatment to auth traits, where a | ||
dedicated section is created for them and documentation is added without | ||
needing to add explicit support. Each protocol also needs to be able to register | ||
an example generator. | ||
* [Event Streaming](https://smithy.io/2.0/spec/streaming.html#event-streams) | ||
* [examples](https://smithy.io/2.0/spec/documentation-traits.html#smithy-api-examples-trait) - | ||
The sections and wrapping for these are created, and currently there's a | ||
stub that simply places the values of example inputs and outputs inside the | ||
example blocks. An interface needs to be created for code generators to | ||
actually integrate into this. Updates to directed codegen will likely be | ||
needed to make this feasible. Protocols will need to implement this also. | ||
|
||
### Configuration | ||
|
||
This generator supports the following top-level configuration options: | ||
|
||
* `service` - The shape ID of the service to generate documentation for. | ||
* `format` - The format that the documentation should be generated in. | ||
* `references` - A map of resource shape ID to URL for resources referenced by | ||
the [references trait](https://smithy.io/2.0/spec/resource-traits.html#references-trait) | ||
that aren't included in service. | ||
|
||
```json | ||
{ | ||
"version": "1.0", | ||
"projections": { | ||
"plain-markdown": { | ||
"plugins": { | ||
"docgen": { | ||
"service": "com.example#MyService", | ||
"format": "markdown", | ||
"references": { | ||
"com.example#ExternalReference": "https://example.com/" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
``` | ||
|
||
#### Supported Formats | ||
|
||
The output format can be selected with the `format` configuration option. The | ||
example below demonstrtates selecting a plain markdown output format: | ||
|
||
```json | ||
{ | ||
"version": "1.0", | ||
"projections": { | ||
"plain-markdown": { | ||
"plugins": { | ||
"docgen": { | ||
"service": "com.example#MyService", | ||
"format": "markdown" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
``` | ||
|
||
By default, two formats are currently supported: `markdown` and | ||
`sphinx-markdown`. The `markdown` format renders docs as plain | ||
[CommonMark](https://commonmark.org), while `sphinx-commonmark` creates a | ||
[Sphinx](https://www.sphinx-doc.org/) markdown project that gets rendered to | ||
HTTP. `sphinx-markdown` is used by default. | ||
|
||
The generator is designed to allow for different output formats by supplying a | ||
new | ||
[DocWriter](https://github.com/smithy-lang/smithy/blob/main/smithy-docgen/src/main/java/software/amazon/smithy/docgen/writers/DocWriter.java) | ||
via a | ||
[DocIntegration](https://github.com/smithy-lang/smithy/blob/main/smithy-docgen/src/main/java/software/amazon/smithy/docgen/DocIntegration.java). | ||
|
||
##### sphinx-markdown | ||
|
||
The `sphinx-markdown` format uses Sphinx's markdown support provided by | ||
[MySt](https://myst-parser.readthedocs.io/en/latest/), which builds on top of | ||
CommonMark. By default, it will render the generated markdown into HTML as long | ||
as Python 3 is found on the path. | ||
|
||
* `format` (default: `html`) - The | ||
[sphinx output format](https://www.sphinx-doc.org/en/master/usage/builders/index.html). | ||
* `theme` (default: [`furo`](https://github.com/pradyunsg/furo)) - The theme to | ||
use for sphinx. If this is changed, the new theme will likely need to be added | ||
to the `extraDependencies` list. | ||
* `extraDependencies` (default: `[]`) - A list of additional dependencies to be | ||
added to the `requirements.txt` file, which is installed before building the | ||
documentation. | ||
* `extraExtensions` (default: `[]`) - A list of additional sphinx extentions to | ||
add to the sphinx extensions list in `conf.py`. Any additional extensions will | ||
likely need to be added to the `extraDependencies` list. | ||
* `autoBuild` (default: `true`) - Whether to automatically render the | ||
documentation to HTML. You may wish to disable autobuild if you want to add | ||
additional documentation to the project before building, such as hand-written | ||
guides. | ||
|
||
The following example `smithy-build.json` demonstrates configuring the | ||
`sphinx-markdown` format. | ||
|
||
```json | ||
{ | ||
"version": "1.0", | ||
"projections": { | ||
"sphinx-markdown": { | ||
"plugins": { | ||
"docgen": { | ||
"service": "com.example#DocumentedService", | ||
"format": "sphinx-markdown", | ||
"integrations": { | ||
"sphinx": { | ||
"format": "dirhtml", | ||
"autoBuild": false | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
``` | ||
|
||
## Security | ||
|
||
See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information. | ||
|
||
## License | ||
|
||
This project is licensed under the Apache-2.0 License. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
plugins { | ||
id("smithy.module-conventions") | ||
id("smithy.integ-test-conventions") | ||
} | ||
|
||
description = "This module contains support for generating API documentation based on Smithy models." | ||
|
||
extra["displayName"] = "Smithy :: DocGen" | ||
extra["moduleName"] = "software.amazon.smithy.docgen" | ||
|
||
dependencies { | ||
implementation(project(":smithy-codegen-core")) | ||
implementation(project(":smithy-linters")) | ||
|
||
itImplementation(project(":smithy-aws-traits")) | ||
} | ||
|
||
java { | ||
sourceCompatibility = JavaVersion.VERSION_17 | ||
targetCompatibility = JavaVersion.VERSION_17 | ||
} |
92 changes: 92 additions & 0 deletions
92
smithy-docgen/src/it/java/software/amazon/smithy/docgen/PluginTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package software.amazon.smithy.docgen; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertFalse; | ||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
import java.nio.file.Path; | ||
import java.util.Set; | ||
import org.junit.jupiter.api.BeforeAll; | ||
import org.junit.jupiter.api.Test; | ||
import software.amazon.smithy.build.MockManifest; | ||
import software.amazon.smithy.build.PluginContext; | ||
import software.amazon.smithy.build.SmithyBuildPlugin; | ||
import software.amazon.smithy.model.Model; | ||
import software.amazon.smithy.model.node.Node; | ||
import software.amazon.smithy.model.node.ObjectNode; | ||
|
||
public class PluginTest { | ||
|
||
private static MockManifest manifest; | ||
private static Model model; | ||
private static SmithyBuildPlugin plugin; | ||
|
||
@BeforeAll | ||
public static void setup() { | ||
manifest = new MockManifest(); | ||
model = getModel("main.smithy"); | ||
plugin = new SmithyDocPlugin(); | ||
} | ||
|
||
@Test | ||
public void pluginGeneratesMarkdown() { | ||
ObjectNode settings = Node.objectNodeBuilder() | ||
.withMember("service", "com.example#DocumentedService") | ||
.withMember("format", "markdown") | ||
.withMember( | ||
"references", | ||
Node.objectNodeBuilder() | ||
.withMember("com.example#ExternalResource", "https://aws.amazon.com") | ||
.build()) | ||
.build(); | ||
PluginContext context = getPluginContext(model, settings); | ||
|
||
plugin.execute(context); | ||
|
||
assertFalse(manifest.getFiles().isEmpty()); | ||
Set<Path> files = manifest.getFiles(); | ||
assertTrue(files.contains(Path.of("/content", "index.md"))); | ||
} | ||
|
||
@Test | ||
public void pluginGeneratesSphinxMarkdown() { | ||
Model model = getModel("main.smithy"); | ||
ObjectNode settings = Node.objectNodeBuilder() | ||
.withMember("service", "com.example#DocumentedService") | ||
.withMember("format", "sphinx-markdown") | ||
.withMember( | ||
"references", | ||
Node.objectNodeBuilder() | ||
.withMember("com.example#ExternalResource", "https://aws.amazon.com") | ||
.build()) | ||
.build(); | ||
PluginContext context = getPluginContext(model, settings); | ||
|
||
plugin.execute(context); | ||
|
||
assertFalse(manifest.getFiles().isEmpty()); | ||
Set<Path> files = manifest.getFiles(); | ||
assertTrue(files.contains(Path.of("/requirements.txt"))); | ||
assertTrue(files.contains(Path.of("/content", "conf.py"))); | ||
assertTrue(files.contains(Path.of("/content", "index.md"))); | ||
} | ||
|
||
private static Model getModel(String path) { | ||
return Model.assembler() | ||
.addImport(PluginTest.class.getResource(path)) | ||
.discoverModels(PluginTest.class.getClassLoader()) | ||
.assemble() | ||
.unwrap(); | ||
} | ||
|
||
private static PluginContext getPluginContext(Model model, ObjectNode settings) { | ||
return PluginContext.builder() | ||
.fileManifest(manifest) | ||
.model(model) | ||
.settings(settings) | ||
.build(); | ||
} | ||
} |
Oops, something went wrong.