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

[API Proposal]: Add overload for EventSource primitives #83751

Merged
merged 15 commits into from Jun 14, 2023

Conversation

agocke
Copy link
Member

@agocke agocke commented Mar 21, 2023

Summary

I've seen a lot of calls to the varargs EventSource overload that have to manually suppress the trim warning because they only use primitive types.

This PR adds an overload that only supports primitive types, and thus will always be trim-compatible.

Adding this overload solves two problems:

  1. Users won't get a warning if their usage is safe.
  2. Users won't have to suppress a warning.

Proposed API

        protected void WriteEvent(int eventId, params EventSourcePrimitive[] args) { }

        public readonly struct EventSourcePrimitive
        {
            public static implicit operator EventSourcePrimitive(bool value) => ...;
            public static implicit operator EventSourcePrimitive(byte value) => ...;
            public static implicit operator EventSourcePrimitive(short value) => ...;
            public static implicit operator EventSourcePrimitive(int value) => ...;
            public static implicit operator EventSourcePrimitive(long value) => ...;
            public static implicit operator EventSourcePrimitive(string? value) => ...;
        }

This API exploits C# implicit conversion and overload resolution rules to prefer binding to an EventSourcePrimitive when the input type is one of the implicitly converted types.

@dotnet-issue-labeler
Copy link

Note regarding the new-api-needs-documentation label:

This serves as a reminder for when your PR is modifying a ref *.cs file and adding/modifying public APIs, to please make sure the API implementation in the src *.cs file is documented with triple slash comments, so the PR reviewers can sign off that change.

@ghost
Copy link

ghost commented Mar 21, 2023

Tagging subscribers to this area: @tarekgh, @tommcdon, @pjanotti
See info in area-owners.md if you want to be subscribed.

Issue Details

I've seen a lot of calls to the varargs EventSource overload that have to manually suppress the trim warning because they only use primitive types.

Adding this overload solves two problems:

  1. Users won't get a warning if their usage is safe.
  2. Users won't have to suppress a warning.
Author: agocke
Assignees: agocke
Labels:

area-System.Diagnostics.Tracing, new-api-needs-documentation

Milestone: -

@stephentoub stephentoub added the NO-MERGE The PR is not ready for merge yet (see discussion for detailed reasons) label Mar 21, 2023
@agocke agocke marked this pull request as ready for review March 22, 2023 19:57
@agocke agocke removed the NO-MERGE The PR is not ready for merge yet (see discussion for detailed reasons) label Mar 22, 2023
@eerhardt
Copy link
Member

@agocke
Copy link
Member Author

agocke commented Mar 22, 2023

@eerhardt Happy to go through that as well. I wanted to get some early feedback on whether this would address areas you've seen. Turns out, I found a bunch of places in the framework that it solves, so maybe that answered my question.

@noahfalk
Copy link
Member

I take it C# overload resolution rules bind params EventSourcePrimitive[] with higher priority than params object[] when all the parameter types have implicit casting rules defined?

How many warnings does this handle? My guess is that if the number of sites is measured in hundreds then it could be worth adding the API, but if it is <100 we should probably just annotate them.

The API itself looked fine to me assuming a final version includes all the other things that go along with new APIs like tests and docs.

@noahfalk
Copy link
Member

@davmason

@davmason
Copy link
Member

I don't have a warm fuzzy feeling about adding new APIs just to make the trimmer happy. Is it possible to make emitting the warning smarter? It seems like it wouldn't be that hard to check if it's just primitives then don't warn, but I haven't thought super hard about it.

@agocke
Copy link
Member Author

agocke commented Mar 24, 2023

@davmason Adding new APIs when the originals are unsafe is the design recommendation.

@agocke
Copy link
Member Author

agocke commented Mar 24, 2023

I take it C# overload resolution rules bind params EventSourcePrimitive[] with higher priority than params object[] when all the parameter types have implicit casting rules defined?

Yup

How many warnings does this handle? My guess is that if the number of sites is measured in hundreds then it could be worth adding the API, but if it is <100 we should probably just annotate them.

I've hit a warning from this in almost every third-party library I've tried to annotate, so this is likely worth it just because users wouldn't have to add suppressions (which we explicitly recommend against).

The API itself looked fine to me assuming a final version includes all the other things that go along with new APIs like tests and docs.

Yeah, I could use some guidance on where the tests live. This may actually be inadvertently testing some old code paths, since they preferentially bind to this one now.

@eerhardt
Copy link
Member

I could use some guidance on where the tests live

You can write trimming tests (small .exe apps that get full trimmed and then executed - ensuring they return exit code 100) here:
https://github.com/dotnet/runtime/tree/main/src/libraries/System.Diagnostics.Tracing/tests/TrimmingTests

@agocke
Copy link
Member Author

agocke commented Mar 24, 2023

@eerhardt Given that we're compiling libraries tests with AOT now, is that the preferred path? Or is there another reason for the separation?

@eerhardt
Copy link
Member

The reason for the separation is the same as it always has been: When you are unit testing, your goal is exercise all the code in the code you are testing. Which means very little of it gets trimmed away (if it DOES get trimmed it means you have a test hole).

The point of the trimming tests is to use the API under test in an isolated manner, with no other code being rooted in the app.

See https://github.com/dotnet/designs/blob/main/accepted/2020/linking-libraries.md#testing for more info.

@agocke agocke changed the title Add overload for EventSource primitives [API Proposal]: Add overload for EventSource primitives Mar 29, 2023
@agocke agocke added the api-ready-for-review API is ready for review, it is NOT ready for implementation label Mar 29, 2023
I've seen a lot of calls to the varargs EventSource overload that have to manually
suppress the trim warning because they only use primitive types.

Adding this overload solves two problems:
  1. Users won't get a warning if their usage is safe.
  2. Users won't have to suppress a warning.
@bartonjs
Copy link
Member

bartonjs commented Apr 13, 2023

Video

  • This type should support all of the types that EventSource considers a primitive.
  • If any of the specific types are a trimming problem then the conversion operator can/will gain the trimmer warning attributes.
  • nuint is in the list to force it to explicitly go through ToString instead of an implicit ulong conversion.
  • Passing a literal null into WriteEvent(int, params object[])/WriteEvent(int, params EventSourcePrimitive[]) will become a source breaking change, but we're OK with that.
  • Tracing may want to look into adding support for additional types (e.g. TimeOnly/DateOnly/DateTimeOffSet/Half/Int128/UInt128/nuint), all of which currently go through ToString(). This proposal merely pointed out the strangeness at this boundary.
namespace System.Diagnostics.Tracing
{
    public class EventSource : IDisposable
    {
        protected void WriteEvent(int eventId, params EventSourcePrimitive[] args) { }

        public readonly struct EventSourcePrimitive
        {
            private object _reference;
            private int _value;

            public static implicit operator EventSourcePrimitive(bool value) => ...;
            public static implicit operator EventSourcePrimitive(byte value) => ...;
            public static implicit operator EventSourcePrimitive(short value) => ...;
            public static implicit operator EventSourcePrimitive(int value) => ...;
            public static implicit operator EventSourcePrimitive(long value) => ...;

            public static implicit operator EventSourcePrimitive(sbyte value) => ...;
            public static implicit operator EventSourcePrimitive(ushort value) => ...;
            public static implicit operator EventSourcePrimitive(uint value) => ...;
            public static implicit operator EventSourcePrimitive(ulong value) => ...;

            public static implicit operator EventSourcePrimitive(float value) => ...;
            public static implicit operator EventSourcePrimitive(double value) => ...;
            public static implicit operator EventSourcePrimitive(decimal value) => ...;

            public static implicit operator EventSourcePrimitive(string? value) => ...;
            public static implicit operator EventSourcePrimitive(byte[]? value) => ...;

            public static implicit operator EventSourcePrimitive(Guid value) => ...;
            public static implicit operator EventSourcePrimitive(DateTime value) => ...;
            public static implicit operator EventSourcePrimitive(nint value) => ...;
            public static implicit operator EventSourcePrimitive(nuint value) => ...;
            public static implicit operator EventSourcePrimitive(char value) => ...;

            public static implicit operator EventSourcePrimitive(Enum value) => ...;
        }
    }
}

@bartonjs bartonjs added api-approved API was approved in API review, it can be implemented and removed api-ready-for-review API is ready for review, it is NOT ready for implementation labels Apr 13, 2023
@davidfowl
Copy link
Member

@JeremyKuhne this feels like your variant proposal from a while back.

@JeremyKuhne
Copy link
Member

@davidfowl yes, it does seem very similar. See #28882. I have a fully working prototype that Azure is already using internally. https://github.com/JeremyKuhne/ValuePrototype

It would be nice to have a general purpose struct for this sort of stuff.

@JeremyKuhne
Copy link
Member

One notable difference here is that my proposal has an additional type that EventSource would not be able to handle (DateTimeOffset). Presumably that could just throw an ArgumentException?

@agocke
Copy link
Member Author

agocke commented May 10, 2023

I've deliberately left some options open here for optimizations. Also noted is some deficiencies in the overall API support

TimeOnly/DateOnly/DateTimeOffSet/Half/Int128/UInt128/nuint

Those things would have to be addressed in a future evolution.

@agocke
Copy link
Member Author

agocke commented May 23, 2023

@davmason I think this is ready to merge. Can you take a look?

@agocke agocke requested a review from davmason May 23, 2023 21:08
Copy link
Member

@davmason davmason left a comment

Choose a reason for hiding this comment

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

LGTM, thanks!

@tommcdon
Copy link
Member

@agocke are there any outstanding work items that need to be completed or is this PR ready to merge?

@agocke
Copy link
Member Author

agocke commented Jun 13, 2023

@tommcdon Two failing tests: CoreCLR Linux x64 Debug and Mono Linux x64 Debug are both timing out. Trying to figure out why.

@agocke
Copy link
Member Author

agocke commented Jun 14, 2023

Failures are unrelated -- also happening in main.

@agocke agocke merged commit 48e1fb8 into dotnet:main Jun 14, 2023
158 of 169 checks passed
@agocke agocke deleted the eventsource-overload branch June 14, 2023 05:58
@dotnet dotnet locked as resolved and limited conversation to collaborators Jul 14, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
api-approved API was approved in API review, it can be implemented area-System.Diagnostics.Tracing new-api-needs-documentation
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

None yet

10 participants