js-runtime: Upload source code from upstream

This commit is contained in:
iddev5 2022-07-06 17:49:35 +05:30 committed by Stephen Gutekanst
parent 34514699a1
commit d10ab25c5d
5 changed files with 567 additions and 0 deletions

204
js-runtime/src/main.zig Normal file
View file

@ -0,0 +1,204 @@
const std = @import("std");
const Allocator = std.mem.Allocator;
const builtin = @import("builtin");
const js = struct {
extern fn zigCreateMap() u32;
extern fn zigCreateArray() u32;
extern fn zigCreateString(str: [*]const u8, len: u32) u32;
extern fn zigCreateFunction(id: *const anyopaque) u32;
extern fn zigGetProperty(id: u64, name: [*]const u8, len: u32, ret_ptr: *anyopaque) void;
extern fn zigSetProperty(id: u64, name: [*]const u8, len: u32, set_ptr: *const anyopaque) void;
extern fn zigDeleteProperty(id: u64, name: [*]const u8, len: u32) void;
extern fn zigGetIndex(id: u64, index: u32, ret_ptr: *anyopaque) void;
extern fn zigSetIndex(id: u64, index: u32, set_ptr: *const anyopaque) void;
extern fn zigGetString(val_id: u64, ptr: [*]const u8) void;
extern fn zigGetStringLength(val_id: u64) u32;
extern fn zigDeleteIndex(id: u64, index: u32) void;
extern fn zigFunctionCall(id: u64, name: [*]const u8, len: u32, args: ?*const anyopaque, args_len: u32, ret_ptr: *anyopaque) void;
extern fn zigFunctionInvoke(id: u64, args: ?*const anyopaque, args_len: u32, ret_ptr: *anyopaque) void;
extern fn zigCleanupObject(id: u64) void;
};
pub const Value = extern struct {
tag: ValueTag,
val: extern union {
ref: u64,
num: f64,
bool: bool,
},
const ValueTag = enum(u8) {
ref,
num,
bool,
str,
nulled,
undef,
func_js,
func_zig,
};
pub const Tag = enum {
object,
num,
bool,
str,
nulled,
undef,
func,
};
pub fn is(val: *const Value, comptime tag: Tag) bool {
return switch (tag) {
.object => val.tag == .object,
.num => val.tag == .num,
.bool => val.tag == .bool,
.str => val.tag == .str,
.nulled => val.tag == .nulled,
.undef => val.tag == .undef,
.func => val.tag == .func_js or val.tag == .func_zig,
};
}
pub fn value(val: *const Value, comptime tag: Tag, allocator: ?std.mem.Allocator) switch (tag) {
.object => Object,
.num => f64,
.bool => bool,
.str => std.mem.Allocator.Error![]const u8,
.func => Function,
.nulled, .undef => @compileError("Cannot get null or undefined as a value"),
} {
return switch (tag) {
.object => Object{ .ref = val.val.ref },
.num => val.val.num,
.bool => val.val.bool,
.str => blk: {
const len = js.zigGetStringLength(val.val.ref);
var slice = try allocator.?.alloc(u8, len);
js.zigGetString(val.val.ref, slice.ptr);
break :blk slice;
},
.func => Function{ .ref = val.val.ref },
else => unreachable,
};
}
};
pub const Object = struct {
ref: u64,
pub fn deinit(obj: *const Object) void {
js.zigCleanupObject(obj.ref);
}
pub fn toValue(obj: *const Object) Value {
return .{ .tag = .ref, .val = .{ .ref = obj.ref } };
}
pub fn get(obj: *const Object, prop: []const u8) Value {
var ret: Value = undefined;
js.zigGetProperty(obj.ref, prop.ptr, @intCast(u32, prop.len), &ret);
return ret;
}
pub fn set(obj: *const Object, prop: []const u8, value: Value) void {
js.zigSetProperty(obj.ref, prop.ptr, @intCast(u32, prop.len), &value);
}
pub fn delete(obj: *const Object, prop: []const u8) void {
js.zigDeleteProperty(obj.ref, prop.ptr, @intCast(u32, prop.len));
}
pub fn getIndex(obj: *const Object, index: u32) Value {
var ret: Value = undefined;
js.zigGetIndex(obj.ref, index, &ret);
return ret;
}
pub fn setIndex(obj: *const Object, index: u32, value: Value) void {
js.zigSetIndex(obj.ref, index, &value);
}
pub fn deleteIndex(obj: *const Object, index: u32) void {
js.zigDeleteIndex(obj.ref, index);
}
pub fn call(obj: *const Object, fun: []const u8, args: []const Value) Value {
var ret: Value = undefined;
js.zigFunctionCall(obj.ref, fun.ptr, fun.len, args.ptr, args.len, &ret);
return ret;
}
};
pub const Function = struct {
ref: u64,
pub fn deinit(func: *const Function) void {
js.zigCleanupObject(func.ref);
}
pub fn toValue(func: *const Function) Value {
return .{ .tag = .func_zig, .val = .{ .ref = func.ref } };
}
pub fn invoke(func: *const Function, args: []const Value) Value {
var ret: Value = undefined;
js.zigFunctionInvoke(func.ref, args.ptr, args.len, &ret);
return ret;
}
};
export fn wasmCallFunction(id: *anyopaque, args: u32, len: u32) void {
const obj = Object{ .ref = args };
if (builtin.zig_backend == .stage1) {
obj.set("return_value", functions.items[@ptrToInt(id) - 1](obj, len));
} else {
var func = @ptrCast(*FunType, @alignCast(std.meta.alignment(*FunType), id));
obj.set("return_value", func(obj, len));
}
}
pub fn global() Object {
return Object{ .ref = 0 };
}
pub fn createMap() Object {
return .{ .ref = js.zigCreateMap() };
}
pub fn createArray() Object {
return .{ .ref = js.zigCreateArray() };
}
pub fn createString(string: []const u8) Value {
return .{ .tag = .str, .val = .{ .ref = js.zigCreateString(string.ptr, string.len) } };
}
pub fn createNumber(num: f64) Value {
return .{ .tag = .num, .val = .{ .num = num } };
}
pub fn createBool(val: bool) Value {
return .{ .tag = .bool, .val = .{ .bool = val } };
}
pub fn createNull() Value {
return .{ .tag = .nulled, .val = undefined };
}
pub fn createUndefined() Value {
return .{ .tag = .undef, .val = undefined };
}
const FunType = fn (args: Object, args_len: u32) Value;
var functions: std.ArrayListUnmanaged(FunType) = .{};
pub fn createFunction(fun: FunType) Function {
if (builtin.zig_backend == .stage1) {
functions.append(std.heap.page_allocator, fun) catch unreachable;
return .{ .ref = js.zigCreateFunction(@intToPtr(*anyopaque, functions.items.len)) };
}
return .{ .ref = js.zigCreateFunction(&fun) };
}