2017-04-18 02:40:39 +00:00
|
|
|
/*
|
2020-01-12 16:50:37 +00:00
|
|
|
* Copyright (c) 2020 Calvin Rose
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
2017-07-02 01:51:16 +00:00
|
|
|
*
|
2017-04-18 02:40:39 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
#ifndef JANET_AMALG
|
2019-12-31 00:06:15 +00:00
|
|
|
#include "features.h"
|
2019-02-19 01:13:35 +00:00
|
|
|
#include <janet.h>
|
2018-01-06 16:09:15 +00:00
|
|
|
#include "util.h"
|
2018-06-12 18:24:45 +00:00
|
|
|
#include "state.h"
|
2018-01-19 21:43:19 +00:00
|
|
|
#include "gc.h"
|
2020-07-03 15:13:55 +00:00
|
|
|
#ifdef JANET_WINDOWS
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
2019-01-24 05:15:58 +00:00
|
|
|
#endif
|
2017-04-26 14:21:03 +00:00
|
|
|
|
2019-12-31 00:06:15 +00:00
|
|
|
#include <inttypes.h>
|
|
|
|
|
2017-11-27 19:03:34 +00:00
|
|
|
/* Base 64 lookup table for digits */
|
2018-09-06 02:18:42 +00:00
|
|
|
const char janet_base64[65] =
|
2017-11-27 19:03:34 +00:00
|
|
|
"0123456789"
|
|
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
|
|
"abcdefghijklmnopqrstuvwxyz"
|
|
|
|
"_=";
|
2017-07-03 00:51:52 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* The JANET value types in order. These types can be used as
|
2017-11-06 03:05:47 +00:00
|
|
|
* mnemonics instead of a bit pattern for type checking */
|
2019-01-03 00:41:07 +00:00
|
|
|
const char *const janet_type_names[16] = {
|
|
|
|
"number",
|
|
|
|
"nil",
|
|
|
|
"boolean",
|
|
|
|
"fiber",
|
|
|
|
"string",
|
|
|
|
"symbol",
|
|
|
|
"keyword",
|
|
|
|
"array",
|
|
|
|
"tuple",
|
|
|
|
"table",
|
|
|
|
"struct",
|
|
|
|
"buffer",
|
|
|
|
"function",
|
|
|
|
"cfunction",
|
2019-03-13 18:50:25 +00:00
|
|
|
"abstract",
|
|
|
|
"pointer"
|
2017-11-06 03:05:47 +00:00
|
|
|
};
|
2017-07-03 00:51:52 +00:00
|
|
|
|
2018-12-13 23:46:53 +00:00
|
|
|
const char *const janet_signal_names[14] = {
|
2019-01-03 00:41:07 +00:00
|
|
|
"ok",
|
|
|
|
"error",
|
|
|
|
"debug",
|
|
|
|
"yield",
|
|
|
|
"user0",
|
|
|
|
"user1",
|
|
|
|
"user2",
|
|
|
|
"user3",
|
|
|
|
"user4",
|
|
|
|
"user5",
|
|
|
|
"user6",
|
|
|
|
"user7",
|
|
|
|
"user8",
|
|
|
|
"user9"
|
2018-12-13 23:46:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const char *const janet_status_names[16] = {
|
2019-01-03 00:41:07 +00:00
|
|
|
"dead",
|
|
|
|
"error",
|
|
|
|
"debug",
|
|
|
|
"pending",
|
|
|
|
"user0",
|
|
|
|
"user1",
|
|
|
|
"user2",
|
|
|
|
"user3",
|
|
|
|
"user4",
|
|
|
|
"user5",
|
|
|
|
"user6",
|
|
|
|
"user7",
|
|
|
|
"user8",
|
|
|
|
"user9",
|
|
|
|
"new",
|
|
|
|
"alive"
|
2018-12-13 23:46:53 +00:00
|
|
|
};
|
|
|
|
|
2020-01-17 03:06:03 +00:00
|
|
|
#ifdef JANET_NO_PRF
|
|
|
|
|
|
|
|
int32_t janet_string_calchash(const uint8_t *str, int32_t len) {
|
|
|
|
const uint8_t *end = str + len;
|
|
|
|
uint32_t hash = 5381;
|
|
|
|
while (str < end)
|
|
|
|
hash = (hash << 5) + hash + *str++;
|
|
|
|
return (int32_t) hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2020-01-16 22:52:29 +00:00
|
|
|
/*
|
|
|
|
Public domain siphash implementation sourced from:
|
|
|
|
|
|
|
|
https://raw.githubusercontent.com/veorq/SipHash/master/halfsiphash.c
|
|
|
|
|
|
|
|
We have made a few alterations, such as hardcoding the output size
|
|
|
|
and then removing dead code.
|
|
|
|
*/
|
|
|
|
#define cROUNDS 2
|
|
|
|
#define dROUNDS 4
|
|
|
|
|
|
|
|
#define ROTL(x, b) (uint32_t)(((x) << (b)) | ((x) >> (32 - (b))))
|
|
|
|
|
|
|
|
#define U8TO32_LE(p) \
|
|
|
|
(((uint32_t)((p)[0])) | ((uint32_t)((p)[1]) << 8) | \
|
|
|
|
((uint32_t)((p)[2]) << 16) | ((uint32_t)((p)[3]) << 24))
|
|
|
|
|
|
|
|
#define SIPROUND \
|
|
|
|
do { \
|
|
|
|
v0 += v1; \
|
|
|
|
v1 = ROTL(v1, 5); \
|
|
|
|
v1 ^= v0; \
|
|
|
|
v0 = ROTL(v0, 16); \
|
|
|
|
v2 += v3; \
|
|
|
|
v3 = ROTL(v3, 8); \
|
|
|
|
v3 ^= v2; \
|
|
|
|
v0 += v3; \
|
|
|
|
v3 = ROTL(v3, 7); \
|
|
|
|
v3 ^= v0; \
|
|
|
|
v2 += v1; \
|
|
|
|
v1 = ROTL(v1, 13); \
|
|
|
|
v1 ^= v2; \
|
|
|
|
v2 = ROTL(v2, 16); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
static uint32_t halfsiphash(const uint8_t *in, const size_t inlen, const uint8_t *k) {
|
|
|
|
|
|
|
|
uint32_t v0 = 0;
|
|
|
|
uint32_t v1 = 0;
|
|
|
|
uint32_t v2 = UINT32_C(0x6c796765);
|
|
|
|
uint32_t v3 = UINT32_C(0x74656462);
|
|
|
|
uint32_t k0 = U8TO32_LE(k);
|
|
|
|
uint32_t k1 = U8TO32_LE(k + 4);
|
|
|
|
uint32_t m;
|
|
|
|
int i;
|
|
|
|
const uint8_t *end = in + inlen - (inlen % sizeof(uint32_t));
|
|
|
|
const int left = inlen & 3;
|
|
|
|
uint32_t b = ((uint32_t)inlen) << 24;
|
|
|
|
v3 ^= k1;
|
|
|
|
v2 ^= k0;
|
|
|
|
v1 ^= k1;
|
|
|
|
v0 ^= k0;
|
|
|
|
|
|
|
|
for (; in != end; in += 4) {
|
|
|
|
m = U8TO32_LE(in);
|
|
|
|
v3 ^= m;
|
|
|
|
|
|
|
|
for (i = 0; i < cROUNDS; ++i)
|
|
|
|
SIPROUND;
|
|
|
|
|
|
|
|
v0 ^= m;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (left) {
|
|
|
|
case 3:
|
|
|
|
b |= ((uint32_t)in[2]) << 16;
|
2020-01-18 06:17:08 +00:00
|
|
|
/* fallthrough */
|
2020-01-16 22:52:29 +00:00
|
|
|
case 2:
|
|
|
|
b |= ((uint32_t)in[1]) << 8;
|
2020-01-18 06:17:08 +00:00
|
|
|
/* fallthrough */
|
2020-01-16 22:52:29 +00:00
|
|
|
case 1:
|
|
|
|
b |= ((uint32_t)in[0]);
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
v3 ^= b;
|
|
|
|
|
|
|
|
for (i = 0; i < cROUNDS; ++i)
|
|
|
|
SIPROUND;
|
|
|
|
|
|
|
|
v0 ^= b;
|
|
|
|
|
|
|
|
v2 ^= 0xff;
|
|
|
|
|
|
|
|
for (i = 0; i < dROUNDS; ++i)
|
|
|
|
SIPROUND;
|
|
|
|
|
|
|
|
b = v1 ^ v3;
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
/* end of siphash */
|
|
|
|
|
2020-01-17 04:24:32 +00:00
|
|
|
static uint8_t hash_key[JANET_HASH_KEY_SIZE] = {0};
|
2020-01-16 22:52:29 +00:00
|
|
|
|
2020-01-17 04:24:32 +00:00
|
|
|
void janet_init_hash_key(uint8_t new_key[JANET_HASH_KEY_SIZE]) {
|
2020-01-16 22:52:29 +00:00
|
|
|
memcpy(hash_key, new_key, sizeof(hash_key));
|
|
|
|
}
|
|
|
|
|
2018-01-19 21:43:19 +00:00
|
|
|
/* Calculate hash for string */
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t janet_string_calchash(const uint8_t *str, int32_t len) {
|
2020-01-16 22:52:29 +00:00
|
|
|
uint32_t hash;
|
|
|
|
hash = halfsiphash(str, len, hash_key);
|
|
|
|
return (int32_t)hash;
|
2018-01-19 21:43:19 +00:00
|
|
|
}
|
|
|
|
|
2020-01-17 03:06:03 +00:00
|
|
|
#endif
|
|
|
|
|
2017-11-27 19:03:34 +00:00
|
|
|
/* Computes hash of an array of values */
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t janet_array_calchash(const Janet *array, int32_t len) {
|
|
|
|
const Janet *end = array + len;
|
2017-11-27 19:03:34 +00:00
|
|
|
uint32_t hash = 5381;
|
|
|
|
while (array < end)
|
2018-09-06 02:18:42 +00:00
|
|
|
hash = (hash << 5) + hash + janet_hash(*array++);
|
2017-11-28 23:27:55 +00:00
|
|
|
return (int32_t) hash;
|
2017-11-27 19:03:34 +00:00
|
|
|
}
|
|
|
|
|
2018-01-05 21:17:55 +00:00
|
|
|
/* Computes hash of an array of values */
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t janet_kv_calchash(const JanetKV *kvs, int32_t len) {
|
|
|
|
const JanetKV *end = kvs + len;
|
2018-01-05 21:17:55 +00:00
|
|
|
uint32_t hash = 5381;
|
|
|
|
while (kvs < end) {
|
2018-09-06 02:18:42 +00:00
|
|
|
hash = (hash << 5) + hash + janet_hash(kvs->key);
|
|
|
|
hash = (hash << 5) + hash + janet_hash(kvs->value);
|
2018-01-05 21:17:55 +00:00
|
|
|
kvs++;
|
|
|
|
}
|
|
|
|
return (int32_t) hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculate next power of 2. May overflow. If n is 0,
|
|
|
|
* will return 0. */
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t janet_tablen(int32_t n) {
|
2018-01-05 21:17:55 +00:00
|
|
|
n |= n >> 1;
|
|
|
|
n |= n >> 2;
|
|
|
|
n |= n >> 4;
|
|
|
|
n |= n >> 8;
|
|
|
|
n |= n >> 16;
|
|
|
|
return n + 1;
|
|
|
|
}
|
|
|
|
|
2020-01-29 05:38:52 +00:00
|
|
|
/* Avoid some undefined behavior that was common in the code base. */
|
|
|
|
void safe_memcpy(void *dest, const void *src, size_t len) {
|
|
|
|
if (!len) return;
|
|
|
|
memcpy(dest, src, len);
|
|
|
|
}
|
|
|
|
|
2018-09-09 16:13:32 +00:00
|
|
|
/* Helper to find a value in a Janet struct or table. Returns the bucket
|
2019-01-06 08:23:03 +00:00
|
|
|
* containing the key, or the first empty bucket if there is no such key. */
|
2018-09-09 16:13:32 +00:00
|
|
|
const JanetKV *janet_dict_find(const JanetKV *buckets, int32_t cap, Janet key) {
|
|
|
|
int32_t index = janet_maphash(cap, janet_hash(key));
|
|
|
|
int32_t i;
|
|
|
|
const JanetKV *first_bucket = NULL;
|
|
|
|
/* Higher half */
|
|
|
|
for (i = index; i < cap; i++) {
|
|
|
|
const JanetKV *kv = buckets + i;
|
|
|
|
if (janet_checktype(kv->key, JANET_NIL)) {
|
|
|
|
if (janet_checktype(kv->value, JANET_NIL)) {
|
|
|
|
return kv;
|
|
|
|
} else if (NULL == first_bucket) {
|
|
|
|
first_bucket = kv;
|
|
|
|
}
|
|
|
|
} else if (janet_equals(kv->key, key)) {
|
|
|
|
return buckets + i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Lower half */
|
|
|
|
for (i = 0; i < index; i++) {
|
|
|
|
const JanetKV *kv = buckets + i;
|
|
|
|
if (janet_checktype(kv->key, JANET_NIL)) {
|
|
|
|
if (janet_checktype(kv->value, JANET_NIL)) {
|
|
|
|
return kv;
|
|
|
|
} else if (NULL == first_bucket) {
|
|
|
|
first_bucket = kv;
|
|
|
|
}
|
|
|
|
} else if (janet_equals(kv->key, key)) {
|
|
|
|
return buckets + i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return first_bucket;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get a value from a janet struct or table. */
|
|
|
|
Janet janet_dictionary_get(const JanetKV *data, int32_t cap, Janet key) {
|
|
|
|
const JanetKV *kv = janet_dict_find(data, cap, key);
|
|
|
|
if (kv && !janet_checktype(kv->key, JANET_NIL)) {
|
|
|
|
return kv->value;
|
|
|
|
}
|
|
|
|
return janet_wrap_nil();
|
|
|
|
}
|
|
|
|
|
2018-09-10 01:20:33 +00:00
|
|
|
/* Iterate through a struct or dictionary generically */
|
|
|
|
const JanetKV *janet_dictionary_next(const JanetKV *kvs, int32_t cap, const JanetKV *kv) {
|
|
|
|
const JanetKV *end = kvs + cap;
|
|
|
|
kv = (kv == NULL) ? kvs : kv + 1;
|
|
|
|
while (kv < end) {
|
|
|
|
if (!janet_checktype(kv->key, JANET_NIL))
|
|
|
|
return kv;
|
|
|
|
kv++;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-01-06 08:23:03 +00:00
|
|
|
/* Compare a janet string with a cstring. More efficient than loading
|
2018-09-06 02:18:42 +00:00
|
|
|
* c string as a janet string. */
|
|
|
|
int janet_cstrcmp(const uint8_t *str, const char *other) {
|
|
|
|
int32_t len = janet_string_length(str);
|
2018-01-05 21:17:55 +00:00
|
|
|
int32_t index;
|
|
|
|
for (index = 0; index < len; index++) {
|
|
|
|
uint8_t c = str[index];
|
|
|
|
uint8_t k = ((const uint8_t *)other)[index];
|
|
|
|
if (c < k) return -1;
|
|
|
|
if (c > k) return 1;
|
|
|
|
if (k == '\0') break;
|
|
|
|
}
|
|
|
|
return (other[index] == '\0') ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
2018-07-04 03:07:35 +00:00
|
|
|
/* Do a binary search on a static array of structs. Each struct must
|
|
|
|
* have a string as its first element, and the struct must be sorted
|
2019-01-06 08:23:03 +00:00
|
|
|
* lexicographically by that element. */
|
2018-09-06 02:18:42 +00:00
|
|
|
const void *janet_strbinsearch(
|
2019-02-20 01:51:34 +00:00
|
|
|
const void *tab,
|
|
|
|
size_t tabcount,
|
|
|
|
size_t itemsize,
|
|
|
|
const uint8_t *key) {
|
2018-07-04 03:07:35 +00:00
|
|
|
size_t low = 0;
|
|
|
|
size_t hi = tabcount;
|
|
|
|
const char *t = (const char *)tab;
|
|
|
|
while (low < hi) {
|
|
|
|
size_t mid = low + ((hi - low) / 2);
|
|
|
|
const char **item = (const char **)(t + mid * itemsize);
|
|
|
|
const char *name = *item;
|
2018-09-06 02:18:42 +00:00
|
|
|
int comp = janet_cstrcmp(key, name);
|
2018-07-04 03:07:35 +00:00
|
|
|
if (comp < 0) {
|
|
|
|
hi = mid;
|
|
|
|
} else if (comp > 0) {
|
|
|
|
low = mid + 1;
|
|
|
|
} else {
|
|
|
|
return (const void *)item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-08-26 18:35:01 +00:00
|
|
|
/* Register a value in the global registry */
|
2018-10-21 05:35:07 +00:00
|
|
|
void janet_register(const char *name, JanetCFunction cfun) {
|
2018-11-15 20:45:41 +00:00
|
|
|
Janet key = janet_wrap_cfunction(cfun);
|
|
|
|
Janet value = janet_csymbolv(name);
|
|
|
|
janet_table_put(janet_vm_registry, key, value);
|
2018-08-23 01:41:25 +00:00
|
|
|
}
|
|
|
|
|
2018-08-26 18:35:01 +00:00
|
|
|
/* Add a def to an environment */
|
2018-11-15 20:45:41 +00:00
|
|
|
void janet_def(JanetTable *env, const char *name, Janet val, const char *doc) {
|
|
|
|
JanetTable *subt = janet_table(2);
|
2019-01-03 00:41:07 +00:00
|
|
|
janet_table_put(subt, janet_ckeywordv("value"), val);
|
2018-11-15 20:45:41 +00:00
|
|
|
if (doc)
|
2019-01-03 00:41:07 +00:00
|
|
|
janet_table_put(subt, janet_ckeywordv("doc"), janet_cstringv(doc));
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_table_put(env, janet_csymbolv(name), janet_wrap_table(subt));
|
2018-01-16 01:14:21 +00:00
|
|
|
}
|
|
|
|
|
2018-01-18 22:25:45 +00:00
|
|
|
/* Add a var to the environment */
|
2018-11-15 20:45:41 +00:00
|
|
|
void janet_var(JanetTable *env, const char *name, Janet val, const char *doc) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetArray *array = janet_array(1);
|
2018-11-15 20:45:41 +00:00
|
|
|
JanetTable *subt = janet_table(2);
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_array_push(array, val);
|
2019-01-03 00:41:07 +00:00
|
|
|
janet_table_put(subt, janet_ckeywordv("ref"), janet_wrap_array(array));
|
2018-11-15 20:45:41 +00:00
|
|
|
if (doc)
|
2019-01-03 00:41:07 +00:00
|
|
|
janet_table_put(subt, janet_ckeywordv("doc"), janet_cstringv(doc));
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_table_put(env, janet_csymbolv(name), janet_wrap_table(subt));
|
2018-01-18 22:25:45 +00:00
|
|
|
}
|
|
|
|
|
2018-01-19 21:43:19 +00:00
|
|
|
/* Load many cfunctions at once */
|
2020-04-17 18:37:52 +00:00
|
|
|
static void _janet_cfuns_prefix(JanetTable *env, const char *regprefix, const JanetReg *cfuns, int defprefix) {
|
2020-01-03 04:02:57 +00:00
|
|
|
uint8_t *longname_buffer = NULL;
|
|
|
|
size_t prefixlen = 0;
|
|
|
|
size_t bufsize = 0;
|
|
|
|
if (NULL != regprefix) {
|
|
|
|
prefixlen = strlen(regprefix);
|
2020-01-10 23:25:10 +00:00
|
|
|
bufsize = prefixlen + 256;
|
2020-01-03 04:02:57 +00:00
|
|
|
longname_buffer = malloc(bufsize);
|
|
|
|
if (NULL == longname_buffer) {
|
|
|
|
JANET_OUT_OF_MEMORY;
|
|
|
|
}
|
2020-01-29 05:38:52 +00:00
|
|
|
safe_memcpy(longname_buffer, regprefix, prefixlen);
|
2020-01-03 04:02:57 +00:00
|
|
|
longname_buffer[prefixlen] = '/';
|
|
|
|
prefixlen++;
|
|
|
|
}
|
2018-01-19 21:43:19 +00:00
|
|
|
while (cfuns->name) {
|
2020-01-03 04:02:57 +00:00
|
|
|
Janet name;
|
|
|
|
if (NULL != regprefix) {
|
2018-08-26 18:35:01 +00:00
|
|
|
int32_t nmlen = 0;
|
|
|
|
while (cfuns->name[nmlen]) nmlen++;
|
2020-01-12 17:31:41 +00:00
|
|
|
int32_t totallen = (int32_t) prefixlen + nmlen;
|
|
|
|
if ((size_t) totallen > bufsize) {
|
2020-01-16 01:58:14 +00:00
|
|
|
bufsize = (size_t)(totallen) + 128;
|
2020-01-12 17:31:41 +00:00
|
|
|
longname_buffer = realloc(longname_buffer, bufsize);
|
|
|
|
if (NULL == longname_buffer) {
|
|
|
|
JANET_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 05:38:52 +00:00
|
|
|
safe_memcpy(longname_buffer + prefixlen, cfuns->name, nmlen);
|
2020-01-12 17:31:41 +00:00
|
|
|
name = janet_wrap_symbol(janet_symbol(longname_buffer, totallen));
|
2020-01-03 04:02:57 +00:00
|
|
|
} else {
|
|
|
|
name = janet_csymbolv(cfuns->name);
|
2018-08-26 18:35:01 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
Janet fun = janet_wrap_cfunction(cfuns->cfun);
|
2020-04-17 18:37:52 +00:00
|
|
|
if (defprefix) {
|
|
|
|
JanetTable *subt = janet_table(2);
|
|
|
|
janet_table_put(subt, janet_ckeywordv("value"), fun);
|
|
|
|
if (cfuns->documentation)
|
|
|
|
janet_table_put(subt, janet_ckeywordv("doc"), janet_cstringv(cfuns->documentation));
|
|
|
|
janet_table_put(env, name, janet_wrap_table(subt));
|
|
|
|
} else {
|
|
|
|
janet_def(env, cfuns->name, fun, cfuns->documentation);
|
|
|
|
}
|
2020-01-03 04:02:57 +00:00
|
|
|
janet_table_put(janet_vm_registry, fun, name);
|
2018-01-19 21:43:19 +00:00
|
|
|
cfuns++;
|
|
|
|
}
|
2020-01-03 04:02:57 +00:00
|
|
|
free(longname_buffer);
|
2018-01-19 21:43:19 +00:00
|
|
|
}
|
|
|
|
|
2020-04-17 18:37:52 +00:00
|
|
|
void janet_cfuns_prefix(JanetTable *env, const char *regprefix, const JanetReg *cfuns) {
|
|
|
|
_janet_cfuns_prefix(env, regprefix, cfuns, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void janet_cfuns(JanetTable *env, const char *regprefix, const JanetReg *cfuns) {
|
|
|
|
_janet_cfuns_prefix(env, regprefix, cfuns, 0);
|
|
|
|
}
|
|
|
|
|
2020-03-14 15:25:39 +00:00
|
|
|
/* Abstract type introspection */
|
2019-02-22 14:57:48 +00:00
|
|
|
|
2019-02-24 01:02:54 +00:00
|
|
|
void janet_register_abstract_type(const JanetAbstractType *at) {
|
2019-03-08 05:41:26 +00:00
|
|
|
Janet sym = janet_csymbolv(at->name);
|
2020-03-14 15:25:39 +00:00
|
|
|
if (!(janet_checktype(janet_table_get(janet_vm_abstract_registry, sym), JANET_NIL))) {
|
2019-03-08 05:41:26 +00:00
|
|
|
janet_panicf("cannot register abstract type %s, "
|
|
|
|
"a type with the same name exists", at->name);
|
2019-02-23 16:13:43 +00:00
|
|
|
}
|
2020-03-14 15:25:39 +00:00
|
|
|
janet_table_put(janet_vm_abstract_registry, sym, janet_wrap_pointer((void *) at));
|
2019-02-22 14:57:48 +00:00
|
|
|
}
|
|
|
|
|
2019-02-24 01:51:34 +00:00
|
|
|
const JanetAbstractType *janet_get_abstract_type(Janet key) {
|
2020-03-14 15:25:39 +00:00
|
|
|
Janet wrapped = janet_table_get(janet_vm_abstract_registry, key);
|
|
|
|
if (janet_checktype(wrapped, JANET_NIL)) {
|
2019-02-23 16:13:43 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2020-03-14 15:25:39 +00:00
|
|
|
return (JanetAbstractType *)(janet_unwrap_pointer(wrapped));
|
2019-02-22 09:54:22 +00:00
|
|
|
}
|
|
|
|
|
2019-02-08 05:44:30 +00:00
|
|
|
#ifndef JANET_BOOTSTRAP
|
|
|
|
void janet_core_def(JanetTable *env, const char *name, Janet x, const void *p) {
|
|
|
|
(void) p;
|
2019-03-08 16:39:18 +00:00
|
|
|
Janet key = janet_csymbolv(name);
|
2019-12-02 02:28:12 +00:00
|
|
|
janet_table_put(env, key, x);
|
|
|
|
if (janet_checktype(x, JANET_CFUNCTION)) {
|
|
|
|
janet_table_put(janet_vm_registry, x, key);
|
2019-03-27 04:14:51 +00:00
|
|
|
}
|
2019-02-08 05:44:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void janet_core_cfuns(JanetTable *env, const char *regprefix, const JanetReg *cfuns) {
|
|
|
|
(void) regprefix;
|
|
|
|
while (cfuns->name) {
|
|
|
|
Janet fun = janet_wrap_cfunction(cfuns->cfun);
|
|
|
|
janet_core_def(env, cfuns->name, fun, cfuns->documentation);
|
|
|
|
cfuns++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-06-17 17:55:02 +00:00
|
|
|
/* Resolve a symbol in the environment */
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetBindingType janet_resolve(JanetTable *env, const uint8_t *sym, Janet *out) {
|
|
|
|
Janet ref;
|
|
|
|
JanetTable *entry_table;
|
|
|
|
Janet entry = janet_table_get(env, janet_wrap_symbol(sym));
|
|
|
|
if (!janet_checktype(entry, JANET_TABLE))
|
|
|
|
return JANET_BINDING_NONE;
|
|
|
|
entry_table = janet_unwrap_table(entry);
|
|
|
|
if (!janet_checktype(
|
2019-02-20 01:51:34 +00:00
|
|
|
janet_table_get(entry_table, janet_ckeywordv("macro")),
|
|
|
|
JANET_NIL)) {
|
2019-01-03 00:41:07 +00:00
|
|
|
*out = janet_table_get(entry_table, janet_ckeywordv("value"));
|
2018-09-06 02:18:42 +00:00
|
|
|
return JANET_BINDING_MACRO;
|
2018-06-17 17:55:02 +00:00
|
|
|
}
|
2019-01-03 00:41:07 +00:00
|
|
|
ref = janet_table_get(entry_table, janet_ckeywordv("ref"));
|
2018-09-06 02:18:42 +00:00
|
|
|
if (janet_checktype(ref, JANET_ARRAY)) {
|
2018-06-17 17:55:02 +00:00
|
|
|
*out = ref;
|
2018-09-06 02:18:42 +00:00
|
|
|
return JANET_BINDING_VAR;
|
2018-01-18 22:25:45 +00:00
|
|
|
}
|
2019-01-03 00:41:07 +00:00
|
|
|
*out = janet_table_get(entry_table, janet_ckeywordv("value"));
|
2018-09-06 02:18:42 +00:00
|
|
|
return JANET_BINDING_DEF;
|
2018-01-16 01:14:21 +00:00
|
|
|
}
|
|
|
|
|
2019-12-02 10:15:22 +00:00
|
|
|
/* Resolve a symbol in the core environment. */
|
|
|
|
Janet janet_resolve_core(const char *name) {
|
|
|
|
JanetTable *env = janet_core_env(NULL);
|
|
|
|
Janet out = janet_wrap_nil();
|
|
|
|
janet_resolve(env, janet_csymbol(name), &out);
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2017-11-28 23:27:55 +00:00
|
|
|
/* Read both tuples and arrays as c pointers + int32_t length. Return 1 if the
|
2017-04-24 17:12:55 +00:00
|
|
|
* view can be constructed, 0 if an invalid type. */
|
2018-09-06 02:18:42 +00:00
|
|
|
int janet_indexed_view(Janet seq, const Janet **data, int32_t *len) {
|
|
|
|
if (janet_checktype(seq, JANET_ARRAY)) {
|
|
|
|
*data = janet_unwrap_array(seq)->data;
|
|
|
|
*len = janet_unwrap_array(seq)->count;
|
2017-04-24 17:12:55 +00:00
|
|
|
return 1;
|
2018-09-06 02:18:42 +00:00
|
|
|
} else if (janet_checktype(seq, JANET_TUPLE)) {
|
|
|
|
*data = janet_unwrap_tuple(seq);
|
2019-02-08 00:03:21 +00:00
|
|
|
*len = janet_tuple_length(janet_unwrap_tuple(seq));
|
2017-04-24 17:12:55 +00:00
|
|
|
return 1;
|
2017-07-02 01:51:16 +00:00
|
|
|
}
|
2017-04-24 17:12:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-11-28 23:27:55 +00:00
|
|
|
/* Read both strings and buffer as unsigned character array + int32_t len.
|
2017-04-24 17:12:55 +00:00
|
|
|
* Returns 1 if the view can be constructed and 0 if the type is invalid. */
|
2018-09-06 02:18:42 +00:00
|
|
|
int janet_bytes_view(Janet str, const uint8_t **data, int32_t *len) {
|
2019-01-03 00:41:07 +00:00
|
|
|
if (janet_checktype(str, JANET_STRING) || janet_checktype(str, JANET_SYMBOL) ||
|
|
|
|
janet_checktype(str, JANET_KEYWORD)) {
|
2018-09-06 02:18:42 +00:00
|
|
|
*data = janet_unwrap_string(str);
|
|
|
|
*len = janet_string_length(janet_unwrap_string(str));
|
2017-04-24 17:12:55 +00:00
|
|
|
return 1;
|
2018-09-06 02:18:42 +00:00
|
|
|
} else if (janet_checktype(str, JANET_BUFFER)) {
|
|
|
|
*data = janet_unwrap_buffer(str)->data;
|
|
|
|
*len = janet_unwrap_buffer(str)->count;
|
2017-04-24 17:12:55 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-04-25 01:00:56 +00:00
|
|
|
/* Read both structs and tables as the entries of a hashtable with
|
2017-04-24 17:12:55 +00:00
|
|
|
* identical structure. Returns 1 if the view can be constructed and
|
|
|
|
* 0 if the type is invalid. */
|
2018-09-06 02:18:42 +00:00
|
|
|
int janet_dictionary_view(Janet tab, const JanetKV **data, int32_t *len, int32_t *cap) {
|
|
|
|
if (janet_checktype(tab, JANET_TABLE)) {
|
|
|
|
*data = janet_unwrap_table(tab)->data;
|
|
|
|
*cap = janet_unwrap_table(tab)->capacity;
|
|
|
|
*len = janet_unwrap_table(tab)->count;
|
2017-04-24 17:12:55 +00:00
|
|
|
return 1;
|
2018-09-06 02:18:42 +00:00
|
|
|
} else if (janet_checktype(tab, JANET_STRUCT)) {
|
|
|
|
*data = janet_unwrap_struct(tab);
|
|
|
|
*cap = janet_struct_capacity(janet_unwrap_struct(tab));
|
|
|
|
*len = janet_struct_length(janet_unwrap_struct(tab));
|
2017-04-24 17:12:55 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2018-04-28 22:10:57 +00:00
|
|
|
|
2018-12-27 18:05:29 +00:00
|
|
|
int janet_checkint(Janet x) {
|
|
|
|
if (!janet_checktype(x, JANET_NUMBER))
|
|
|
|
return 0;
|
|
|
|
double dval = janet_unwrap_number(x);
|
|
|
|
return janet_checkintrange(dval);
|
|
|
|
}
|
|
|
|
|
|
|
|
int janet_checkint64(Janet x) {
|
|
|
|
if (!janet_checktype(x, JANET_NUMBER))
|
|
|
|
return 0;
|
|
|
|
double dval = janet_unwrap_number(x);
|
|
|
|
return janet_checkint64range(dval);
|
|
|
|
}
|
2018-12-30 19:23:52 +00:00
|
|
|
|
2019-03-08 05:41:26 +00:00
|
|
|
int janet_checksize(Janet x) {
|
|
|
|
if (!janet_checktype(x, JANET_NUMBER))
|
|
|
|
return 0;
|
|
|
|
double dval = janet_unwrap_number(x);
|
2020-06-27 16:23:47 +00:00
|
|
|
if (dval != (double)((size_t) dval)) return 0;
|
|
|
|
if (SIZE_MAX > JANET_INTMAX_INT64) {
|
|
|
|
return dval <= JANET_INTMAX_INT64;
|
|
|
|
} else {
|
|
|
|
return dval <= SIZE_MAX;
|
|
|
|
}
|
2018-12-30 19:23:52 +00:00
|
|
|
}
|
2019-12-15 02:39:14 +00:00
|
|
|
|
|
|
|
JanetTable *janet_get_core_table(const char *name) {
|
|
|
|
JanetTable *env = janet_core_env(NULL);
|
|
|
|
Janet out = janet_wrap_nil();
|
|
|
|
JanetBindingType bt = janet_resolve(env, janet_csymbol(name), &out);
|
|
|
|
if (bt == JANET_BINDING_NONE) return NULL;
|
|
|
|
if (!janet_checktype(out, JANET_TABLE)) return NULL;
|
|
|
|
return janet_unwrap_table(out);
|
|
|
|
}
|
2020-07-03 14:54:58 +00:00
|
|
|
|
|
|
|
/* Clock shims for various platforms */
|
|
|
|
#ifdef JANET_GETTIME
|
|
|
|
#ifdef JANET_WINDOWS
|
|
|
|
int janet_gettime(struct timespec *spec) {
|
|
|
|
FILETIME ftime;
|
|
|
|
GetSystemTimeAsFileTime(&ftime);
|
|
|
|
int64_t wintime = (int64_t)(ftime.dwLowDateTime) | ((int64_t)(ftime.dwHighDateTime) << 32);
|
|
|
|
/* Windows epoch is January 1, 1601 apparently */
|
|
|
|
wintime -= 116444736000000000LL;
|
|
|
|
spec->tv_sec = wintime / 10000000LL;
|
|
|
|
/* Resolution is 100 nanoseconds. */
|
|
|
|
spec->tv_nsec = wintime % 10000000LL * 100;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#elif defined(__MACH__)
|
|
|
|
int janet_gettime(struct timespec *spec) {
|
|
|
|
clock_serv_t cclock;
|
|
|
|
mach_timespec_t mts;
|
|
|
|
host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, &cclock);
|
|
|
|
clock_get_time(cclock, &mts);
|
|
|
|
mach_port_deallocate(mach_task_self(), cclock);
|
|
|
|
spec->tv_sec = mts.tv_sec;
|
|
|
|
spec->tv_nsec = mts.tv_nsec;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
int janet_gettime(struct timespec *spec) {
|
|
|
|
return clock_gettime(CLOCK_MONOTONIC, spec);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|