Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

AArnott
Copy link
Collaborator

@AArnott AArnott commented Oct 8, 2024

Report MsgPack004 on non-public members only after an attribute appears on a non-public member

Also report MsgPack011 only when a private member is to be serialized.

Add MessagePackObjectAttribute.AllowPrivate property

Update DynamicObjectResolver

  • to honor the new attribute property. This means that types that require private members to be serialized no longer must ask the application to use DynamicObjectResolverAllowPrivate, because the attribute will switch the ordinary resolver into AllowPrivate mode for that particular type.

Update the source generated formatters:

  • to not require partial types for serializing protected internal members.
  • to only serialize public members in map mode, or all members when the new attribute property is true.

Update the analyzer code fix provider

  • to require non-public members to be attributed when the new attribute property is set to true.

Update tests

  • several new tests added
  • map mode tests that used internal were changed either to public or to use the new attribute property (somewhat arbitrarily) in order to keep the tests passing.

Fix missing analyzer docs

Add MsgPack015 analyzer to encourage use of new AllowPrivate property

While source generators don't require it, it makes a real difference when using DynamicObjectResolver (which is the default, when a source generated formatter isn't found).

This analyzer comes with a code fix provider.

Plenty of tests (mostly testing source generated formatters) were using internal rather than public so with the analyzer enabled, a lot of test fixes were required.

Closes #1899

…rs on a non-public member

Also report MsgPack011 only when a private member is to be serialized.
Update `DynamicObjectResolver`
- to honor the new attribute property. This means that types that require private members to be serialized no longer must ask the application to use `DynamicObjectResolverAllowPrivate`, because the attribute will switch the ordinary resolver into AllowPrivate mode for that particular type.

Update the source generated formatters:
- to not require partial types for serializing `protected internal` members.
- to only serialize public members in map mode, or all members when the new attribute property is `true`.

Update the analyzer code fix provider
- to require non-public members to be attributed when the new attribute property is set to `true`.

Update tests
- several new tests added
- map mode tests that used `internal` were changed either to `public` or to use the new attribute property (somewhat arbitrarily) in order to keep the tests passing.
While source generators don't require it, it makes a real difference when using `DynamicObjectResolver` (which is the default, when a source generated formatter isn't found).

This analyzer comes with a code fix provider.

Plenty of tests (mostly testing source generated formatters) were using `internal` rather than `public` so with the analyzer enabled, a lot of test fixes were required.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant