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

Modify how arrays are resolved by default #6428

Open
wants to merge 29 commits into
base: main
Choose a base branch
from

Conversation

AlitzelMendez
Copy link
Contributor

issue: #6372

@azure-sdk
Copy link
Collaborator

azure-sdk commented Mar 13, 2025

All changed packages have been documented.

  • @typespec/http-server-csharp
Show changes

@typespec/http-server-csharp - breaking ✏️

Change in Array Scaffolding from TypeSpec to C#,> ,> The default behavior for scaffolding arrays remains unchanged: arrays will continue to be scaffolded as T[] by default. However, for arrays decorated with the @uniqueItems decorator, they will now be scaffolded as ISet<T>, with HashSet<T> as the default implementation.,> ,> Additionally, a new emitter option, collection-type, has been introduced to provide flexibility in how collections are generated:,> - collection-type:,> - array (default): Generates arrays (T[]).,> - enumerable: Generates IEnumerable<T> for collections, with List<T> used as the default implementation when needed.,> ,> #### Unique Items,> For arrays decorated with the @uniqueItems decorator, they will be scaffolded as ISet<T>, regardless of the collection-type option, with HashSet<T> as the default implementation.,> ,> #### Byte Arrays,> The bytes type will always be treated as an array of bytes (byte[]) in C#, regardless of the collection-type option selected.

@azure-sdk
Copy link
Collaborator

azure-sdk commented Mar 13, 2025

You can try these changes here

🛝 Playground 🌐 Website 🛝 VSCode Extension

@markcowl markcowl self-assigned this Mar 13, 2025
@AlitzelMendez AlitzelMendez changed the title [WIP] Modify how arrays are resolved by default Modify how arrays are resolved by default Mar 17, 2025
@AlitzelMendez AlitzelMendez marked this pull request as ready for review March 17, 2025 21:53
Copy link
Contributor

@markcowl markcowl left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • We also need to ensure the mocks are generated correctly for these types
  • This will at least mean updating the logic in mock generation and in Initialiizer to handle enumerable types with an empty list of the appropriate type
  • I think we should pick out some specs to do end-to-end validation against manually : we should be able to compile and scaffold services containing array types in multiple contexts (operation param, operation result, model property)

Copy link
Contributor

@markcowl markcowl left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A few questions.

My biggest ask is that we have a plan for end-to-end testing

  • Adding to the test project for the new constraint attributes
  • Doing some manual end-to-end tests of actual specs

@markcowl markcowl removed the 1_0_E2E label Mar 25, 2025
Copy link
Contributor

@markcowl markcowl left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A question:

  • Thinking more about this, there is still good reason to use arrays for performance, how difficult would it be to add an option that chose between IEnumerable and array (collection-type = "array" | "enumerable")?
  • I think ISet<T> should be the default when @uniqueItems is present, regardless of the above.
  • I think we want to use IEnumerable<T> in all contexts (Controllers, interfaces, models) when this is chosen.

@AlitzelMendez
Copy link
Contributor Author

A question:

  • Thinking more about this, there is still good reason to use arrays for performance, how difficult would it be to add an option that chose between IEnumerable and array (collection-type = "array" | "enumerable")?
  • I think ISet<T> should be the default when @uniqueItems is present, regardless of the above.
  • I think we want to use IEnumerable<T> in all contexts (Controllers, interfaces, models) when this is chosen.

I think it should be quite simple to make this an option but let me work really quick on this, which one do we want to make the default?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[http-server-csharp] Change how arrays types are treated and resolved
3 participants