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

More improvements for CLR Interop #1616

Merged
merged 7 commits into from Aug 9, 2023
Merged

More improvements for CLR Interop #1616

merged 7 commits into from Aug 9, 2023

Conversation

viruscamp
Copy link
Contributor

  • Simplize nested CLR Type, can be got directly from parent type
  • Add more CLR helper functions: clrUnwrap, clrWrap, clrToString, clrType, clrTypeToObject, clrObjectToType. The last 3 need Options.Interop.AllowGetType == true.
  • Make CLR objects ToString meaningful: NamespaceReference, TypeReference, ClrFunctionInstance, MethodInfoFunctionInstance
  • Make Jint.Repl call ToString when Serialize failed

Jint/Options.cs Outdated Show resolved Hide resolved
Jint/Runtime/Interop/ClrHelper.cs Outdated Show resolved Hide resolved
Jint/Runtime/Interop/ClrHelper.cs Outdated Show resolved Hide resolved
Jint/Runtime/Interop/MethodInfoFunctionInstance.cs Outdated Show resolved Hide resolved
Jint/Runtime/Interop/NamespaceReference.cs Outdated Show resolved Hide resolved
Jint/Runtime/Interop/ObjectWrapper.cs Outdated Show resolved Hide resolved
Jint/Runtime/Interop/Reflection/MethodAccessor.cs Outdated Show resolved Hide resolved
Jint/Runtime/Interop/Reflection/NestedTypeAccessor.cs Outdated Show resolved Hide resolved
Jint/Runtime/Interop/Reflection/NestedTypeAccessor.cs Outdated Show resolved Hide resolved
Jint/Runtime/Interop/TypeReference.cs Outdated Show resolved Hide resolved
@lahma
Copy link
Collaborator

lahma commented Aug 9, 2023

Nice work and appreciate you improving the interop story! Added some review comments, please take a look. Branch also needs a rebase as it's a merge requirement that all PRs are against latest main before merge.

clrUnwrap: cast `obj as ISomeInterface` to `obj`
clrWrap: cast `obj` to `obj as ISomeInterface`
clrType: get `TypeReference(ISomeInterface)` from `obj as ISomeInterface`
clrToString: call `ToString`, mainly for `NamespaceReference`
make CLR objects ToString meaningful: NamespaceReference, TypeReference, ClrFunctionInstance, MethodInfoFunctionInstance
Type value returned from CLR will be TypeReference not ObjectWrapper.
clrTypeToObject: cast `TypeReference(SomeClass)` to `ObjectWrapper(SomeClass)`
clrObjectToType: cast `ObjectWrapper(SomeClass)` to `TypeReference(SomeClass)`
The two above and clrType are available only Options.Interop.AllowGetType == true
Copy link
Collaborator

@lahma lahma left a comment

Choose a reason for hiding this comment

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

Great work, thank you!

@lahma lahma merged commit f4982ee into sebastienros:main Aug 9, 2023
3 checks passed
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

2 participants