Hacker News new | ask | show | jobs
by Xorathena 874 days ago
...like the past few decades of Python/Ruby/Node/etc wrapping C-ABI libraries from any language?

https://docs.python.org/3/extending/extending.html

https://nodejs.org/dist/latest-v20.x/docs/api/n-api.html#nod...

https://docs.python.org/3/library/ctypes.html

https://swig.org

When using Zig functions and structs on the low side there are some nice opportunities for making the low/high interface more automatic at comptime, especially when you're jointly compiling (your Zig code + a Zig-based Python interpreter + your Python code) together into one WASM blob.

Disclaimer/public-commitment-to-getting-it-released: I've written most of a Python interpreter in Zig as part of another project. (just the basics — won't be big and professional like CPython.) I'll reply here eventually when it's done, available as FLOSS, and ready to say "high-low".

1 comments

ABIs are not enough, it is a huge pain in the ass to setup the function invocations, especially cross-platform. Having separate compiling and linking steps for each part of the codebase and stuff is a huge pain.

I think Bun (NodeJS-compatible runtime) was planning to add native support for importing C and Zig code directly from JS with typescript codegen. But even that is still a bit meh, you also need some data-exchange format so you can pass complex data structures without paying a serialisation/deserialisation cost.