Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cadl repo structure guidelines #20893

Merged
merged 9 commits into from
Oct 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ See the [README.md](./README.md) for a description of the directory structure to

weshaggard marked this conversation as resolved.
Show resolved Hide resolved
## Pull Requests

If you want to contribute to the repository, follow these steps:
If you want to contribute to the repository, follow these steps:
1. Fork the repository and create a new branch for your changes.
2. If you are introducing a new api-version, create a new directory for that api-version and copy all the files from the previous version into the new directory. Make this the very first commit in your branch and then make your changes in subsequent commits.
3. Use the [linting tools](#coding-style) to check your changes for compliance with the OpenAPI v2 standard, the Azure REST API Guidelines and that Azure API Style Guide.
Expand Down
24 changes: 13 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,24 +37,25 @@ The structure of the directory should strictly follow these rules:
> - Specification files and AutoRest configuration files in one RP folder are better to refer to files in the same RP folder. Note: Entity type definition that needs to be referred cross RP folders should be placed and maintained under the folder [**common-types**](https://github.com/Azure/azure-rest-api-specs#common-types).
> - For more considerations, you may consult the reviewer in API design review. To initiate the review, Please submit an [Azure SDK intake questionnaire](https://aka.ms/sdk-apex).
4. **'resource-manager' and 'data-plane' Folders**: the RPs can put specs in one of two categories: `resource-manager` (for ARM resources) and `data-plane` (for everything else). There should be an AutoRest configuration file (`readme.md`) for the RP inside both of these folders when present.

RP folders may contain resoure manager or data plane Cadl specs. Cadl is a language for describing cloud service APIs and generating other API description languages, client and service code, documentation, and other assets. Explore more by visiting the tutorial in the CADL repo: [Cadl tutorial](http://aka.ms/cadlTutorial). You can also ask questions for providing feedback in the internal Teams channel [Cadl Discussion](https://teams.microsoft.com/l/channel/19%3a906c1efbbec54dc8949ac736633e6bdf%40thread.skype/Cadl%2520Discussion%2520%25F0%259F%2590%25AE?groupId=3e17dcb0-4257-4a30-b843-77f47f1d4121&tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47).
weshaggard marked this conversation as resolved.
Show resolved Hide resolved

For more information about the structure of Cadl files in the repo see [Cadl repo structure](https://github.com/Azure/azure-rest-api-specs/blob/main/documentation/cadl-structure-guidelines.md).

5. **'cadl' Folders**: this folder holds CADL specs of either `resource-manager` or `data-plane`. CADL is a language for describing cloud service APIs and generating other API description languages, client and service code, documentation, and other assets. Explore more by visiting the tutorial in the CADL repo: [CADL tutorial](http://aka.ms/cadlTutorial). You can also ask questions for providing feedback in the teams channel [CADL Discussion](https://teams.microsoft.com/l/channel/19%3a906c1efbbec54dc8949ac736633e6bdf%40thread.skype/Cadl%2520Discussion%2520%25F0%259F%2590%25AE?groupId=3e17dcb0-4257-4a30-b843-77f47f1d4121&tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47).

4. **'resource-manager' and 'data-plane' Folders**: the RPs can put specs in one of two categories: `resource-manager` (for ARM resources) and `data-plane` (for everything else). There should be an AutoRest configuration file (`readme.md`) for the RP inside both of these folders when present.

6. **'Microsoft.{ARMNamespace}' Folders**: the folders are only required under the 'resource-manager' folder, which means only management-plane API specs require to have ARM Namespace in the file path. For ARM Namespace and ARM onboarding, please refer to the ARM wiki of [RP Onboarding](https://armwiki.azurewebsites.net/rp_onboarding/process/onboarding.html#0-on-boarding-meeting).
5. **'Microsoft.{ARMNamespace}' Folders**: the folders are only required under the 'resource-manager' folder, which means only management-plane API specs require to have ARM Namespace in the file path. For ARM Namespace and ARM onboarding, please refer to the ARM wiki of [RP Onboarding](https://armwiki.azurewebsites.net/rp_onboarding/process/onboarding.html#0-on-boarding-meeting).

7. **'preview' and 'stable' Folders**: This maps to the service/component lifecycle stage: Preview and GA. For example, if a service is in Preview stage, no matter Private Preview or Public Preview, the API specs of the service should be placed in the `preview` folder. If the service is GAed, but a component is in preview, then the API version contains the preview component entity should be placed in the `preview` folder as well. The `stable` folder should hold API versions of a GAed service and all GAed components.
6. **'preview' and 'stable' Folders**: This maps to the service/component lifecycle stage: Preview and GA. For example, if a service is in Preview stage, no matter Private Preview or Public Preview, the API specs of the service should be placed in the `preview` folder. If the service is GAed, but a component is in preview, then the API version contains the preview component entity should be placed in the `preview` folder as well. The `stable` folder should contain API versions of a GAed service and all GAed components.

> How's the Azure Breaking Change Policy apply to API specs in `preview` and `stable` folders? In fact, it is more relevant to if the repo is public or private.
> - API specs with components or resource types in Private Preview, or Limited Public Preview (behind [AFEC](https://armwiki.azurewebsites.net/rp_onboarding/afec/FeatureExposureControl.html) or managing visible subscriptions) are better to launch PR review in the private repository, aka., [azure-rest-api-specs-pr](https://github.com/Azure/azure-rest-api-specs-pr). And these API specs are free of breaking changes.
>
> - On the other hand, everything public in the main branch of the public repository, aka., [azure-rest-api-specs](https://github.com/Azure/azure-rest-api-specs), no matter in the `preview` folder or in the `stable` folder, should be treated as contract with Azure customers, must follow [Azure Breaking Changes Policy](http://aka.ms/AzBreakingChangesPolicy).
8. **API Versions Folders**: this folder is the direct child of the `preview` or `stable` folder. This folder contains the REST API Specs, and the `examples` folder.
7. **API Versions Folders**: this folder is the direct child of the `preview` or `stable` folder. This folder contains the REST API Specs, and the `examples` folder.

9. **'examples' Folders**: the example folder will contain the x-ms-examples files. it will reside under the APIs or Resources' version folders as different APIs or Resource types version can have different examples.
8. **'examples' Folders**: the example folder will contain the x-ms-examples files. it will reside under the APIs or Resources' version folders as different APIs or Resource types version can have different examples.

> Note: some general guidance for folder names, and file names under `specification`:
>
Expand Down Expand Up @@ -96,11 +97,12 @@ The structure should appear like so:
| | | \---2017-05-01
| | | \---examples
| | \---readme.md
| +---playfab
| \---resource-manager
| \---playfab
| +---Playfab
| | \---cadl-project.yaml
| | \---main.cadl
| \--resource-manager
| +---Microsoft.Playfab
| | +---cadl
| | | \---playfab.cadl
| | +---stable
| | | \---2017-02-27-preview
| | | \---examples
Expand Down
147 changes: 147 additions & 0 deletions documentation/cadl-structure-guidelines.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
# Repository Guidelines for Cadl Specs

## Purpose

We need to formulate a strategy for checking in actual Cadl service specs for Azure. Service teams need to know where
and how to check these in and tooling needs to know how to find and consume them. While OpenAPI specs traditionally have been just spec
documents, Cadl "specs" could include service-specific functions, decorators and so forth that elevate them to the level of a
library, and to maximize the benefits of Cadl, this approach needs to be supported as a first-class citizen.

## Repository

Cadl can co-exist with Swagger within the existing `azure-rest-api-specs` repository. This approach will make it easier to generate Swagger artifacts without needing to sync between repos at the downside of having to live with any baggage associated with the repo as it ages. There are currently over 1,000 issues and 500 open PRs in this repo.

## Structure Overview

This proposal strives to align with [Azure SDK Repo Structure Guidelines](https://azure.github.io/azure-sdk/policies_repostructure.html).

We eliminate the distinction between data-plane and resource-manager, treating all packages as siblings under the service family folder. This is what the SDKs do today. The legacy `data-plane` and `resource-manager` folders where Swagger specs live will remain.

A given Cadl folder could represent any of the following scenarios:

- an SDK and service spec (simplest, common for small services)
- a service spec only
- an SDK spec that aggregates many small service specs (one SDK to many microservices)
- an SDK spec that extracts a portion of a large service spec (many SDKs to a single large service)
weshaggard marked this conversation as resolved.
Show resolved Hide resolved
- a shared library that represents neither a service spec nor an SDK

Examples below:

```
-> specification
-> confidentialledger
-> ConfidentialLedger (data-plane SDK + service)
-> data-plane (swagger)
-> resource-manager (swagger)
-> compute
-> Compute.Management (mgmt SDK + service)
weshaggard marked this conversation as resolved.
Show resolved Hide resolved
-> Compute.Management.Shared (shared)
-> Compute.CloudService.Management (service)
tjprescott marked this conversation as resolved.
Show resolved Hide resolved
-> Compute.Diagnostic.Management (service)
-> Compute.Disk.Management (service)
-> Compute.Gallery.Management (service)
-> Compute.Skus.Management (service)
-> data-plane (swagger)
-> resource-manager (swagger)
weshaggard marked this conversation as resolved.
Show resolved Hide resolved
-> keyvault
-> KeyVault.Certificates (data-plane SDK + service)
-> KeyVault.Keys (data-plane SDK + service)
-> KeyVault.Secrets (data-plane SDK + service)
-> KeyVault.Management (mgmt SDK + service)
-> data-plane (swagger)
-> resource-manager (swagger)
```

## Service Folders

The service folder contains the entire Cadl library specification for a service, which could include custom linter rules, methods, etc.

The folder name should correspond to the RP-name, but dropping the leading "Azure" or "Microsoft" prefix. Two additional naming conventions should be following:

- `Management` at the end of the service RP-name indicates a management (resource manager) libarary.
tjprescott marked this conversation as resolved.
Show resolved Hide resolved
- `Shared` at the end of the name indicates a shared library. If a management library has a shared component (unlikely), `Shared` should follow `Management`.

### Packages

All services and service family libraries are modeled as Cadl packages, since you must install supporting librarie for proper tooling support. Per this proposal, all packages defined in the repo would be **unpublished**. Only packages in `cadl-azure` would be published. We will annotate the packages with `"private": true` in the `package.json` file to prevent publishing these to npm.
weshaggard marked this conversation as resolved.
Show resolved Hide resolved
tjprescott marked this conversation as resolved.
Show resolved Hide resolved

All packages defined in this repo would use the `@cadl-api-spec` scope and use a lowercased, dashed form of the service namespace (ex: `@cadl-api-spec/azure-storage-blob`).

### Structure

Each package should have the following minimum structure:

- `cadl-project.yaml`
weshaggard marked this conversation as resolved.
Show resolved Hide resolved
- `package.json`
- `main.cadl` file
- Supporting `*.cadl` files
- `examples/` folder for example JSON files
weshaggard marked this conversation as resolved.
Show resolved Hide resolved

Authors may use folders as desired for organizing cadl files.

Additionally, packages which wish to define custom linter rules or otherwise use TypeScript must place any `*.ts` files under a `src/` folder. Within the `src/` folder, the author may use as many subfolders as desired for organizing code.

To distinguish between folders which define a service, an SDK, or both, one can look to the `cadl-project.yaml` and/or the `package.json`.

- SDKs will take dependencies on the `@azure-tools/cadl-dpg` library, as well as SDK-specific emitters such as `@azure-tools/cadl-python` and configure them within `cadl-project.yaml`.
- SDKs _may_ have a sidecar file to customize how the SDK is shaped. Folders that describe service definitions only will not have a sidecar file. _Note: the absence of a sidecar does not mean that a folder does not describe an SDK, but the presence of one means it is an SDK._
weshaggard marked this conversation as resolved.
Show resolved Hide resolved
- Services will take a dependency on `@azure-tools/autorest` and configure the emitter in `cadl-project.yaml`.

## Service Family Libraries

The service family library concept allows a family of services to share common models, linter rules, templates, etc.

Service libraries can include unpublished service _family_ libraries via source dependency annotations in `package.json`:

```json
"peerDependencies": {
"@azure-tools/cadl-azure-core": "~x.x.x",
"@cadl-api-spec/azure-communication-common": "file: ../Communication.Shared"
},
```

While this would permit services from importing any service library described in the specs repo, as a matter of policy we should probably avoid that and have tooling to detect this scenario. Service family libraries **should** use versioning decorators and spec packages should reference them as versioned dependencies. Tooling would need to ensure that changes to service family libraries does not result in unexpected changes to any service version. One way to do this would be to diff the projection of the service versions on the `main` branch against the projection of the service versions that result from the change.
weshaggard marked this conversation as resolved.
Show resolved Hide resolved

weshaggard marked this conversation as resolved.
Show resolved Hide resolved
We treat the shared library as a sibling with other packages within the service family. This is similar to what we currently do for services that have a "Shared" package and would allow an arbitrary number of shared packages.

```
-> specification
-> communication
-> Communication.Chat (data-plane)
-> Communication.Calling (data-plane)
-> Communication.Management (management)
-> Communication.Shared (shared)
```

Here's an example of how Cognitive Services might use multiple shared libraries:

```
-> specification
-> cognitiveservices
-> Language.TextAnalytics (data-plane)
-> Language.QnA (data-plane)
-> Language.Shared (shared)
-> Vision.ComputerVision (data-plane)
-> Vision.CustomVision (data-plane)
-> Vision.Shared (shared)
```

# Spec Versioning

Cadl has a versioning library which allows a single spec to represent multiple versions through projections. Service teams have GA service versions as well as public and private Preview service versions. The versioning library is currently optimized for the kinds of changes allowed between GA service releases: long-lived, stable, backward compatible changes. Preview versions are shorter-lived and often have wildly breaking changes from one version to the next, for which the versioning library is not optimized.

### Service Folder

The service folder contains the Cadl files for the service package. Services transitioning to Cadl may simply begin by modeling their versioned Cadl from their latest stable Swagger. Existing services DO NOT need to model past service versions unless a business rationale exists. Future versions should be added to the spec using the necessary versioning decorators. The inital version in the spec need not feature version annotations since it is considered the baseline (i.e. it makes no implications about prior versions since it does not know about them).

### Working in Feature Branches

Feature branches enable diffing the proposed change directly against the main branch. Feature branches should be used for either GA or preview API version development. On the feature branch, the service team should directly modify the cadl within the service folder as this works well with GitHub's diffing strategy.
weshaggard marked this conversation as resolved.
Show resolved Hide resolved

### Publishing Specs

The purest approach to publish a spec is to merge the PR that modifies the Cadl spec in the service folder. This is the simplest experience for projecting the Cadl and generating artifacts, including server-side codegen.

In the event that a major break makes it infeasible to continue using a spec with version annotations, the spec could be reset to some base version (likely the breaking one) and continue versioning from there. The commit hash or tag that represented the spec prior to the reset would need to be tracked in order to regenerate older versions of the spec. At this point, if an update was needed to an older version of the spec no longer represented on the latest commit on `main`, we would need a servicing branch and update the hash pointers to the commit on that servicing branch.

This option is only suitable for _public_ previews. Private previews should live solely in a branch (in either the public or private repo) until/unless they become a public preview.