Go to file
Nathan Craddock bd78cafec1 chore: update Lua 5.1 for Zig 0.10.0
A fix was made in the Zig compiler yesterday and now the Lua 5.1 code
can be updated and tested.
2022-10-28 20:35:42 -06:00
.github/workflows cleanup: rename action and add badge to readme 2022-10-27 21:37:49 -06:00
lib feat: restructure and add Lua 5.3, 5.2, and 5.1 2022-10-03 20:24:17 -06:00
src chore: update Lua 5.1 for Zig 0.10.0 2022-10-28 20:35:42 -06:00
.gitignore initial commit: basic library framework 2022-05-31 19:09:27 -06:00
build.zig fix: libC linking during Lua step 2022-10-27 21:28:20 -06:00
docs.md docs: update readme and docs for Zig 0.10.0 2022-10-27 21:02:06 -06:00
license rename LICENSE -> license 2022-05-31 21:08:16 -06:00
makefile chore: update Lua 5.1 for Zig 0.10.0 2022-10-28 20:35:42 -06:00
readme.md cleanup: rename action and add badge to readme 2022-10-27 21:37:49 -06:00

Ziglua

shield showing current tests status

A Zig library that provides a complete and lightweight wrapper around the Lua C API. Ziglua currently supports the latest releases of Lua 5.1, 5.2, 5.3, and 5.4.

The Ziglua library offers two use cases:

  • embedded: used to statically embed the Lua VM in a Zig program
  • module: used to create shared Lua modules that can be loaded at runtime in other Lua-based software

In both cases, Ziglua will compile Lua from source and link against your Zig code making it easy to create software that integrates with Lua without requiring Lua libraries installed on your system.

Like the Lua C API, the Ziglua API "emphasizes flexibility and simplicity... common tasks may involve several API calls. This may be boring, but it gives us full control over all the details" (Programming In Lua 4th Edition). However, Ziglua takes advantage of Zig's features to make it easier and safer to interact with the Lua API.

Why use Ziglua?

In a nutshell, Ziglua is a simple wrapper around the C API you would get by using Zig's @cImport(). Ziglua aims to mirror the Lua C API as closely as possible, while improving ergonomics using Zig's features. For example:

  • Zig error unions to require failure state handling
  • Null-terminated slices instead of C strings
  • Type-checked enums for parameters and return values
  • Compiler-enforced checking of optional pointers
  • Better types in many cases (e.g. bool instead of int)

While there are some helper functions added to complement the C API, Ziglua aims to remain low-level. This allows full access to the Lua API through a layer of Zig's improvements over C.

If you want something higher-level (but doesn't expose the full API), perhaps try zoltan.

Getting Started

Adding Ziglua to your project takes only a couple of steps. First add this repo as a git submodule, or copy the source into your project (one day the Zig package manager will make this easier). Then add the following to your build.zig file (assuming cloned/copied into a lib/ subdirectory):

// use the path to the Ziglua build.zig file
const ziglua = @import("lib/ziglua/build.zig");

pub fn build(b: *Builder) void {
    ...
    exe.addPackage(ziglua.linkAndPackage(b, exe, .{}));
}

This will compile the Lua C sources and statically link with your project. Then simply import the ziglua package into your code. Here is a simple example that pushes and inspects an integer on the Lua stack:

const std = @import("std");
const ziglua = @import("ziglua");

const Lua = ziglua.Lua;

pub fn main() anyerror!void {
    var gpa = std.heap.GeneralPurposeAllocator(.{}){};
    const allocator = gpa.allocator();
    defer _ = gpa.deinit();

    var lua = try Lua.init(allocator);
    defer lua.deinit();

    lua.pushInteger(42);
    std.debug.print("{}\n", .{try lua.toInteger(1)});
}

See docs.md for documentation and detailed examples of using Ziglua.

Status

Nearly all functions, types, and constants in the C API have been wrapped in Ziglua. Only a few exceptions have been made when the function doesn't make sense in Zig (like functions using va_list).

Nearly all functions have associated Zig tests. Ziglua should be relatively stable and safe to use now, but I am still polishing things and function signatures may change from time to time.

Acknowledgements

Thanks to the following sources:

  • zoltan for insights into compiling Lua with Zig
  • zig-autolua for help on writing an alloc function
  • mach-glfw for inspiration on a clean build.zig

And finally Lua. Thank you to the Lua team for providing a great language!