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

h.26x: refactor descriptor Dump / Decode logic #252

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

mildsunrise
Copy link
Contributor

there's a lot of repetitive work when writing the Dump() function, and there's also the CHECK macro that we define in several files... move that to a single descriptor.h header, and introduce some more macros + a base class to remove most of the repetitive work.

nested objects are treated very differently by Dump(),
and the output syntax differs a lot between objects,
so introduce a base Descriptor class and macros to avoid
repeating stuff like the field name.

Dump() now takes an optional prefix, so that nested objects
are dumped with the same syntax but indented as needed.
typeid(x) on a polymorphic type relies on RTTI
to work, and we have that disabled for the Node.js
addons. switch to static polymorphism to avoid that.

(also known as the "Curiously Repeating Template Pattern")
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.

None yet

1 participant