summaryrefslogtreecommitdiffstats
path: root/ffi.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-08-16 06:44:13 -0700
committerKaz Kylheku <kaz@kylheku.com>2017-08-16 06:44:13 -0700
commit45e2d317b52cf5eec1212c175a39a97222ee9e3b (patch)
treefa644cb1ee01c03c75c7eda7754301f1e3cb25c2 /ffi.c
parentf7833712f1ff318e19cb8c041f1dcef5e9488350 (diff)
downloadtxr-45e2d317b52cf5eec1212c175a39a97222ee9e3b.tar.gz
txr-45e2d317b52cf5eec1212c175a39a97222ee9e3b.tar.bz2
txr-45e2d317b52cf5eec1212c175a39a97222ee9e3b.zip
ffi: new FFI type I/O functions.
* ffi.c (put_obj, get_obj, fill_obj): New functions. (ffi_init): put-obj, get-obj, fill-obj intrinsics registered. * ffi.h (put_obj, get_obj, fill_obj): Declared. * txr.1: Documented.
Diffstat (limited to 'ffi.c')
-rw-r--r--ffi.c45
1 files changed, 45 insertions, 0 deletions
diff --git a/ffi.c b/ffi.c
index b6eed992..82a28b5b 100644
--- a/ffi.c
+++ b/ffi.c
@@ -5486,6 +5486,48 @@ val zero_fill(val type, val obj)
return ret;
}
+val put_obj(val obj, val type, val stream)
+{
+ val self = lit("put-obj");
+ struct txr_ffi_type *tft = ffi_type_struct_checked(type);
+ cnum size = tft->size;
+ val len = num(size);
+ mem_t *data = coerce(mem_t *, zalloca(size));
+ obj_t buf_obj;
+ val buf = init_borrowed_buf(&buf_obj, len, data);
+ tft->put(tft, obj, data, self);
+ return eql(put_buf(buf, zero, stream), len);
+}
+
+
+val get_obj(val type, val stream)
+{
+ val self = lit("get-obj");
+ struct txr_ffi_type *tft = ffi_type_struct_checked(type);
+ cnum size = tft->size;
+ val len = num(size);
+ mem_t *data = coerce(mem_t *, zalloca(size));
+ obj_t buf_obj;
+ val buf = init_borrowed_buf(&buf_obj, len, data);
+ if (neql(fill_buf(buf, zero, stream), len))
+ return nil;
+ return tft->get(tft, data, self);
+}
+
+val fill_obj(val obj, val type, val stream)
+{
+ val self = lit("fill-obj");
+ struct txr_ffi_type *tft = ffi_type_struct_checked(type);
+ cnum size = tft->size;
+ val len = num(size);
+ mem_t *data = coerce(mem_t *, zalloca(size));
+ obj_t buf_obj;
+ val buf = init_borrowed_buf(&buf_obj, len, data);
+ if (neql(fill_buf(buf, zero, stream), len))
+ return nil;
+ return tft->in(tft, 1, data, obj, self);
+}
+
void ffi_init(void)
{
prot1(&ffi_typedef_hash);
@@ -5615,6 +5657,9 @@ void ffi_init(void)
reg_fun(intern(lit("union-out"), user_package), func_n3(union_out));
reg_fun(intern(lit("make-zstruct"), user_package), func_n1v(make_zstruct));
reg_fun(intern(lit("zero-fill"), user_package), func_n2(zero_fill));
+ reg_fun(intern(lit("put-obj"), user_package), func_n3o(put_obj, 2));
+ reg_fun(intern(lit("get-obj"), user_package), func_n2o(get_obj, 1));
+ reg_fun(intern(lit("fill-obj"), user_package), func_n3o(fill_obj, 2));
ffi_typedef_hash = make_hash(nil, nil, nil);
ffi_init_types();
ffi_init_extra_types();