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

Get rid of _EventBundle #118

Closed
wants to merge 2 commits into from
Closed

Conversation

bluetech
Copy link
Contributor

This is based on #116 so you can ignore the first commit.

_EventBundle uses a lot of dynamic python features to save on some duplication, but it slows things down, and will also make it much harder to add static typing. Since these types are now pretty stable, it seems not worth it.

On the bench/ micro-benchmark:

Before:  9322.6 requests/sec
After : 10544.6 requests/sec

_EventBundle uses a lot of dynamic python features to save on some
duplication, but it slows things down, and will also make it much harder
to add static typing. Since these types are now pretty stable, it seems
not worth it.

On the bench/ micro-benchmark:

Before:  9322.6 requests/sec
After : 10544.6 requests/sec
@bluetech
Copy link
Contributor Author

@pgjones if this conflicts with something you're doing let me know! (In #114 you mentioned converting to dataclasses, but these require py37 and I personally prefer to avoid them in public library API).

@pgjones
Copy link
Member

pgjones commented Nov 18, 2020

I'm happy with this, I've no strong attachment to dataclasses. I'm minded to merge after #116.

Copy link
Member

@sethmlarson sethmlarson left a comment

Choose a reason for hiding this comment

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

Seems good to me, one question:

@@ -197,7 +197,7 @@
}


class ConnectionState(object):
class ConnectionState:
Copy link
Member

Choose a reason for hiding this comment

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

Should we use __slots__ for this object as well since it's accessed frequently?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I'm in favor of adding slots to everything personally. I'll do it in a separate PR after some of the others are settled.

_defaults = {"http_version": b"1.1", "reason": b""}
# Useful for tests
def __eq__(self, other):
if not isinstance(other, type(self)):
Copy link
Member

Choose a reason for hiding this comment

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

Whilst this changes the logic of what is equal or not (from self.__class__ == other.__class__) to include subclasses and potentially raising if incompatible classes are compared (rather than returning False) I think it is fine as this is mostly (and likely only) used for tests.

@pgjones
Copy link
Member

pgjones commented Dec 26, 2020

Having said I've no attachment to dataclasses; what do you think of the usage of frozen as in wsproto? I think that better clarifies the API for these objects.

@sethmlarson
Copy link
Member

I'm +1 on using dataclasses and frozen.

@pgjones
Copy link
Member

pgjones commented Dec 27, 2020

See #124 as the dataclass alternative.

@pgjones
Copy link
Member

pgjones commented May 16, 2021

I've merged the dataclass approach for the reasons discussed, plus that we have a desire to use dataclasses consistently in the hyper projects.

@pgjones pgjones closed this May 16, 2021
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.

3 participants