Skip to content

Commit c7b8933

Browse files
Merge pull request #206 from atc-net/feature/Support-for-AsyncEnumerable
Support for async enumerable
2 parents 9ccc3e8 + 2901aab commit c7b8933

File tree

276 files changed

+95146
-301
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

276 files changed

+95146
-301
lines changed

.editorconfig

+4-1
Original file line numberDiff line numberDiff line change
@@ -567,6 +567,7 @@ dotnet_diagnostic.CA1848.severity = suggestion # Use the LoggerMessage delegate
567567
dotnet_diagnostic.CA2254.severity = suggestion # Template should be a static expression - https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca2254
568568

569569
dotnet_diagnostic.S1172.severity = none # False positive
570+
dotnet_diagnostic.S2325.Severity = none # Make 'xxx' a static method
570571
dotnet_diagnostic.S2629.Severity = none
571572
dotnet_diagnostic.S3267.severity = none # Loop should be simplified by calling Select(x => x.Value)) - We dont like this rule because of readability/maintainability
572573
dotnet_diagnostic.S3878.Severity = none
@@ -586,4 +587,6 @@ dotnet_diagnostic.CA1861.Severity = none
586587
dotnet_diagnostic.S125.Severity = none
587588
dotnet_diagnostic.S1481.Severity = none
588589
dotnet_diagnostic.SA1512.Severity = none
589-
dotnet_diagnostic.SA1513.Severity = none
590+
dotnet_diagnostic.SA1513.Severity = none
591+
592+
dotnet_diagnostic.AsyncFixer02.Severity = none # ToListAsync should be used instead of xxx

Directory.Build.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
<ItemGroup Label="Code Analyzers">
4444
<PackageReference Include="AsyncFixer" Version="1.6.0" PrivateAssets="All" />
4545
<PackageReference Include="Asyncify" Version="0.9.7" PrivateAssets="All" />
46-
<PackageReference Include="Meziantou.Analyzer" Version="2.0.162" PrivateAssets="All" />
46+
<PackageReference Include="Meziantou.Analyzer" Version="2.0.163" PrivateAssets="All" />
4747
<PackageReference Include="SecurityCodeScan.VS2019" Version="5.6.7" PrivateAssets="All" />
4848
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" PrivateAssets="All" />
49-
<PackageReference Include="SonarAnalyzer.CSharp" Version="9.30.0.95878" PrivateAssets="All" />
49+
<PackageReference Include="SonarAnalyzer.CSharp" Version="9.32.0.97167" PrivateAssets="All" />
5050
</ItemGroup>
5151

5252
</Project>

README.md

+293-13
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,53 @@
1-
[![NuGet Version](https://img.shields.io/nuget/v/atc-rest-api-generator.svg?logo=nuget&style=for-the-badge)](https://www.nuget.org/packages/atc-rest-api-generator)
2-
31
# ATC-NET REST API Generator
42

3+
[![NuGet Version](https://img.shields.io/nuget/v/atc-rest-api-generator.svg?logo=nuget&style=for-the-badge)](https://www.nuget.org/packages/atc-rest-api-generator)
4+
5+
## Table of content
6+
7+
- [ATC-NET REST API Generator](#atc-net-rest-api-generator)
8+
- [Table of content](#table-of-content)
9+
- [Projects in the repository](#projects-in-the-repository)
10+
- [Project dependency graph](#project-dependency-graph)
11+
- [CLI Tool](#cli-tool)
12+
- [Prerequisites](#prerequisites)
13+
- [Requirements](#requirements)
14+
- [Installation](#installation)
15+
- [Update](#update)
16+
- [Usage](#usage)
17+
- [Option **-h | --help**](#option--h----help)
18+
- [Option **generate server all -h**](#option-generate-server-all--h)
19+
- [Command **options-file**](#command-options-file)
20+
- [Default options-file - ApiGeneratorOptions.json](#default-options-file---apigeneratoroptionsjson)
21+
- [PetStore Example](#petstore-example)
22+
- [Security - supporting role-based security and custom authentication-schemes](#security---supporting-role-based-security-and-custom-authentication-schemes)
23+
- [Roles and authentication-scheme validation](#roles-and-authentication-scheme-validation)
24+
- [Logic for determining `[Authorize]` or `[AllowAnonymous]` attributes](#logic-for-determining-authorize-or-allowanonymous-attributes)
25+
- [Example](#example)
26+
- [OpenApi Snippets](#openapi-snippets)
27+
- [List of items](#list-of-items)
28+
- [List of items with a custom PaginationResult](#list-of-items-with-a-custom-paginationresult)
29+
- [List of items with a built-in Pagination](#list-of-items-with-a-built-in-pagination)
30+
- [AsyncEnumerable of items](#asyncenumerable-of-items)
31+
- [AsyncEnumerable of items with a custom PaginationResult](#asyncenumerable-of-items-with-a-custom-paginationresult)
32+
- [AsyncEnumerable of items with a built-in Pagination](#asyncenumerable-of-items-with-a-built-in-pagination)
33+
- [Custom PaginationResult with query parameters](#custom-paginationresult-with-query-parameters)
34+
- [How to contribute](#how-to-contribute)
535

636
## Projects in the repository
737

838
|Project|Target Framework|Description|Nuget Download Link|
939
|---|---|---|---|
1040
|[Atc.Rest.ApiGenerator](src/Atc.Rest.ApiGenerator) | net8.0 | Atc.Rest.ApiGenerator is a WebApi C# code generator using a OpenApi 3.0.x specification YAML file. | [![Nuget](https://img.shields.io/nuget/dt/Atc.Rest.ApiGenerator?logo=nuget&style=flat-square)](https://www.nuget.org/packages/Atc.Rest.ApiGenerator) |
1141
|[Atc.Rest.ApiGenerator.CLI](src/Atc.Rest.ApiGenerator.CLI) |net8.0 | A CLI tool that use Atc.Rest.ApiGenerator to create/update a project specified by a OpenApi 3.0.x specification YAML file. | [![Nuget](https://img.shields.io/nuget/dt/atc-rest-api-generator?logo=nuget&style=flat-square)](https://www.nuget.org/packages/atc-rest-api-generator) |
12-
|[Atc.Rest.ApiGenerator.CodingRules](src/Atc.Rest.ApiGenerator.CodingRules) | net8.0| Create/update atc coding rules for the generated code |
13-
|[Atc.Rest.ApiGenerator.Contracts](src/Atc.Rest.ApiGenerator.Contracts) | net8.0| Shared contracts and interfaces for the generated code. |
14-
|[Atc.Rest.ApiGenerator.Framework.Mvc](src/Atc.Rest.ApiGenerator.Framework.Mvc) | net8.0| Provides support for generating ASP.NET MVC / Controller based REST API server implementations. |
15-
|[Atc.Rest.ApiGenerator.Framework.Minimal](src/Atc.Rest.ApiGenerator.Framework.Minimal) | net8.0| Provides support for generating MinimalAPI based REST server implementations. |
16-
|[Atc.Rest.ApiGenerator.Client.CSharp](src/Atc.Rest.ApiGenerator.Client.CSharp) | net8.0| Generates C# client code for interacting with the generated REST APIs. |
17-
|[Atc.Rest.ApiGenerator.Framework](src/Atc.Rest.ApiGenerator.Framework) | net8.0| Shared framework components and utilities for the API generator projects. |
18-
|[Atc.Rest.ApiGenerator.OpenApi](src/Atc.Rest.ApiGenerator.OpenApi) | net8.0| Handles OpenAPI specification parsing and manipulation for the API generator. |
19-
|[Atc.Rest.ApiGenerator.Nuget](src/Atc.Rest.ApiGenerator.Nuget) | net8.0| Manages NuGet packages required by the generated code and frameworks. |
20-
|[Atc.CodeGeneration.CSharp](src/Atc.CodeGeneration.CSharp) | net8.0| Provides utilities and functionalities for generating C# code. |
21-
42+
|[Atc.Rest.ApiGenerator.CodingRules](src/Atc.Rest.ApiGenerator.CodingRules) | net8.0| Create/update atc coding rules for the generated code | |
43+
|[Atc.Rest.ApiGenerator.Contracts](src/Atc.Rest.ApiGenerator.Contracts) | net8.0| Shared contracts and interfaces for the generated code. | |
44+
|[Atc.Rest.ApiGenerator.Framework.Mvc](src/Atc.Rest.ApiGenerator.Framework.Mvc) | net8.0| Provides support for generating ASP.NET MVC / Controller based REST API server implementations. | |
45+
|[Atc.Rest.ApiGenerator.Framework.Minimal](src/Atc.Rest.ApiGenerator.Framework.Minimal) | net8.0| Provides support for generating MinimalAPI based REST server implementations. | |
46+
|[Atc.Rest.ApiGenerator.Client.CSharp](src/Atc.Rest.ApiGenerator.Client.CSharp) | net8.0| Generates C# client code for interacting with the generated REST APIs. | |
47+
|[Atc.Rest.ApiGenerator.Framework](src/Atc.Rest.ApiGenerator.Framework) | net8.0| Shared framework components and utilities for the API generator projects. | |
48+
|[Atc.Rest.ApiGenerator.OpenApi](src/Atc.Rest.ApiGenerator.OpenApi) | net8.0| Handles OpenAPI specification parsing and manipulation for the API generator. | |
49+
|[Atc.Rest.ApiGenerator.Nuget](src/Atc.Rest.ApiGenerator.Nuget) | net8.0| Manages NuGet packages required by the generated code and frameworks. | |
50+
|[Atc.CodeGeneration.CSharp](src/Atc.CodeGeneration.CSharp) | net8.0| Provides utilities and functionalities for generating C# code. | |
2251

2352
## Project dependency graph
2453

@@ -463,8 +492,259 @@ components:
463492
securitySchemes: {}
464493
```
465494
495+
## OpenApi Snippets
496+
497+
### List of items
498+
499+
```yaml
500+
# Example with List of items
501+
/users:
502+
get:
503+
operationId: getUsers
504+
responses:
505+
'200':
506+
description: OK
507+
content:
508+
application/json:
509+
schema:
510+
type: array
511+
items:
512+
$ref: '#/components/schemas/User'
513+
```
514+
515+
```csharp
516+
// Output for result type
517+
IEnumerable<User>
518+
```
519+
520+
### List of items with a custom PaginationResult
521+
522+
```yaml
523+
# Example with List of items with a custom PaginationResult
524+
/users:
525+
get:
526+
operationId: getUsers
527+
responses:
528+
'200':
529+
description: success
530+
content:
531+
application/json:
532+
schema:
533+
allOf:
534+
- $ref: '#/components/schemas/PaginatedResult'
535+
- type: object
536+
properties:
537+
results:
538+
type: array
539+
items:
540+
$ref: '#/components/schemas/User'
541+
```
542+
543+
```csharp
544+
// Output for result type
545+
PaginationResult<User>
546+
```
547+
548+
### List of items with a built-in Pagination
549+
550+
```yaml
551+
# Example with List of items with a built-in Pagination
552+
/users:
553+
get:
554+
operationId: getUsers
555+
responses:
556+
'200':
557+
description: success
558+
content:
559+
application/json:
560+
schema:
561+
allOf:
562+
- $ref: '#/components/schemas/Pagination'
563+
- $ref: '#/components/schemas/User'
564+
```
565+
566+
```csharp
567+
// Output for result type
568+
Pagination<User>
569+
```
570+
571+
### AsyncEnumerable of items
572+
573+
```yaml
574+
# Example with AsyncEnumerable of items
575+
/users:
576+
get:
577+
operationId: getUsers
578+
x-return-async-enumerable: true
579+
responses:
580+
'200':
581+
description: OK
582+
content:
583+
application/json:
584+
schema:
585+
type: array
586+
items:
587+
$ref: '#/components/schemas/User'
588+
```
589+
590+
```csharp
591+
// Output for result type
592+
IAsyncEnumerable<User>
593+
```
594+
595+
### AsyncEnumerable of items with a custom PaginationResult
596+
597+
```yaml
598+
# Example with AsyncEnumerable of items with a custom PaginationResult
599+
/users:
600+
get:
601+
operationId: getUsers
602+
x-return-async-enumerable: true
603+
responses:
604+
'200':
605+
description: success
606+
content:
607+
application/json:
608+
schema:
609+
allOf:
610+
- $ref: '#/components/schemas/PaginatedResult'
611+
- type: object
612+
properties:
613+
results:
614+
type: array
615+
items:
616+
$ref: '#/components/schemas/User'
617+
```
618+
619+
```csharp
620+
// Output for result type
621+
IAsyncEnumerable<PaginationResult<User>>
622+
```
623+
624+
### AsyncEnumerable of items with a built-in Pagination
625+
626+
```yaml
627+
# Example with AsyncEnumerable of items with a built-in Pagination
628+
# Note: The build-in Pagination can be found in namespace Atc.Rest.Results
629+
/users:
630+
get:
631+
operationId: getUsers
632+
x-return-async-enumerable: true
633+
responses:
634+
'200':
635+
description: success
636+
content:
637+
application/json:
638+
schema:
639+
allOf:
640+
- $ref: '#/components/schemas/Pagination'
641+
- $ref: '#/components/schemas/User'
642+
```
643+
644+
```csharp
645+
// Output for result type
646+
IAsyncEnumerable<Pagination<User>>
647+
```
648+
649+
### Custom PaginationResult with query parameters
650+
651+
```yaml
652+
# Example with custom PaginationResult and use of query parameters
653+
paths:
654+
/users:
655+
get:
656+
operationId: getUsers
657+
parameters:
658+
- $ref: '#/components/parameters/pageSize'
659+
- $ref: '#/components/parameters/continuationToken'
660+
- $ref: '#/components/parameters/queryString'
661+
responses:
662+
'200':
663+
description: success
664+
content:
665+
application/json:
666+
schema:
667+
allOf:
668+
- $ref: '#/components/schemas/PaginationResult'
669+
- type: object
670+
properties:
671+
results:
672+
type: array
673+
items:
674+
$ref: '#/components/schemas/User'
675+
components:
676+
schemas:
677+
PaginationResult:
678+
type: object
679+
title: PaginationResult
680+
description: An item result subset of a data query.
681+
properties:
682+
pageSize:
683+
type: integer
684+
continuationToken:
685+
type: string
686+
nullable: true
687+
description: Token to indicate next result set.
688+
items:
689+
type: array
690+
items: {}
691+
parameters:
692+
pageSize:
693+
name: pageSize
694+
in: query
695+
required: true
696+
schema:
697+
type: integer
698+
default: 10
699+
continuationToken:
700+
name: continuationToken
701+
in: query
702+
required: false
703+
schema:
704+
type: string
705+
nullable: true
706+
queryString:
707+
name: queryString
708+
in: query
709+
required: true
710+
schema:
711+
type: string
712+
```
713+
714+
```csharp
715+
// Output for generated parameter class in Minimal-Api
716+
public record GetUsersParameters(
717+
[property: FromQuery] string? ContinuationToken,
718+
[property: FromQuery, Required] string QueryString,
719+
[property: FromQuery, Required] int PageSize = 10);
720+
721+
722+
// Output for generated result class in Minimal-Api
723+
public class GetUsersResult
724+
{
725+
private GetUsersResult(IResult result)
726+
{
727+
Result = result;
728+
}
729+
730+
public IResult Result { get; }
731+
732+
/// <summary>
733+
/// 200 - Ok response.
734+
/// </summary>
735+
public static GetUsersResult Ok(PaginationResult<User> result)
736+
=> new(TypedResults.Ok(result));
737+
738+
/// <summary>
739+
/// Performs an implicit conversion from GetUsersResult to IResult.
740+
/// </summary>
741+
public static IResult ToIResult(GetUsersResult result)
742+
=> result.Result;
743+
}
744+
```
745+
466746
## How to contribute
467747

468748
[Contribution Guidelines](https://atc-net.github.io/introduction/about-atc#how-to-contribute)
469749

470-
[Coding Guidelines](https://atc-net.github.io/introduction/about-atc#coding-guidelines)
750+
[Coding Guidelines](https://atc-net.github.io/introduction/about-atc#coding-guidelines)

src/Atc.CodeGeneration.CSharp/Atc.CodeGeneration.CSharp.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Atc" Version="2.0.500" />
10-
<PackageReference Include="Atc.CodeDocumentation" Version="2.0.500" />
9+
<PackageReference Include="Atc" Version="2.0.513" />
10+
<PackageReference Include="Atc.CodeDocumentation" Version="2.0.513" />
1111
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.10.0" />
1212
</ItemGroup>
1313

src/Atc.Rest.ApiGenerator.CLI/Atc.Rest.ApiGenerator.CLI.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Atc" Version="2.0.500" />
17-
<PackageReference Include="Atc.Console.Spectre" Version="2.0.500" />
16+
<PackageReference Include="Atc" Version="2.0.513" />
17+
<PackageReference Include="Atc.Console.Spectre" Version="2.0.513" />
1818
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
1919
</ItemGroup>
2020

src/Atc.Rest.ApiGenerator.Client.CSharp/Atc.Rest.ApiGenerator.Client.CSharp.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<ItemGroup>
99
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
10-
<PackageReference Include="Microsoft.OpenApi" Version="1.6.15" />
10+
<PackageReference Include="Microsoft.OpenApi" Version="1.6.17" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

0 commit comments

Comments
 (0)