-
Notifications
You must be signed in to change notification settings - Fork 275
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
Associating GUID (or UUID) with types #1776
Conversation
…lways be relative.
# Conflicts: # source/slang/slang-include-system.cpp
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks pretty good, although I suppose there is a chance that a client would rather embed the GUIDs/UUIDs (I'm never totally clear on the distinction, but I know that UUID tends to be used outside of the Microsoft ecosystem) into their application via their own approach rather than rely on the accessor functions generated here. We can probably cross that bridge when we come to it, since the convenience here is high.
One other thing is that we could consider having another case of as<T>
for ISlangUnknown
-derived types that calls queryInterface
with T::getTypeGuid()
to streamline some of the casting sites. Not a real priority any time soon, though.
This wasn't a new idea - it's covered in #1645
The main observation is that whilst it's not possible to define a Guid directly within an interface, without it being implemented in a C++ file, it is possible to do so within a function. If we inline the function we get much the same effect - although there are no assurances around what the pointers will be across files.
I tested on compiler explorer, and all major compiler do correctly inline and behave as if it is a global in release.
I did not replace in gfx until deemed appropriate and since lots of changes there.