2018-09-06 02:18:42 +00:00
|
|
|
/*
|
2019-01-06 08:23:03 +00:00
|
|
|
* Copyright (c) 2019 Calvin Rose
|
2018-09-06 02:18:42 +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:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef JANET_H_defined
|
|
|
|
#define JANET_H_defined
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/***** START SECTION CONFIG *****/
|
|
|
|
|
2019-03-22 18:31:20 +00:00
|
|
|
#include "janetconf.h"
|
|
|
|
|
|
|
|
#ifndef JANET_VERSION
|
|
|
|
#define JANET_VERSION "latest"
|
|
|
|
#endif
|
2018-12-08 19:17:03 +00:00
|
|
|
|
|
|
|
#ifndef JANET_BUILD
|
|
|
|
#define JANET_BUILD "local"
|
2018-10-31 20:21:21 +00:00
|
|
|
#endif
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Detect OS and endianess.
|
|
|
|
* From webkit source. There is likely some extreneous
|
|
|
|
* detection for unsupported platforms
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Check Unix */
|
|
|
|
#if defined(_AIX) \
|
|
|
|
|| defined(__APPLE__) /* Darwin */ \
|
|
|
|
|| defined(__FreeBSD__) || defined(__DragonFly__) \
|
|
|
|
|| defined(__FreeBSD_kernel__) \
|
|
|
|
|| defined(__GNU__) /* GNU/Hurd */ \
|
2019-05-14 10:41:33 +00:00
|
|
|
|| defined(__HAIKU__) \
|
2018-09-06 02:18:42 +00:00
|
|
|
|| defined(__linux__) \
|
|
|
|
|| defined(__NetBSD__) \
|
|
|
|
|| defined(__OpenBSD__) \
|
|
|
|
|| defined(__QNXNTO__) \
|
|
|
|
|| defined(sun) || defined(__sun) /* Solaris */ \
|
|
|
|
|| defined(unix) || defined(__unix) || defined(__unix__)
|
|
|
|
#define JANET_UNIX 1
|
|
|
|
/* Enable certain posix features */
|
|
|
|
#ifndef _POSIX_C_SOURCE
|
|
|
|
#define _POSIX_C_SOURCE 200112L
|
|
|
|
#endif
|
|
|
|
#elif defined(__EMSCRIPTEN__)
|
|
|
|
#define JANET_WEB 1
|
|
|
|
#elif defined(WIN32) || defined(_WIN32)
|
|
|
|
#define JANET_WINDOWS 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Check 64-bit vs 32-bit */
|
|
|
|
#if ((defined(__x86_64__) || defined(_M_X64)) \
|
|
|
|
&& (defined(JANET_UNIX) || defined(JANET_WINDOWS))) \
|
2019-02-19 23:41:21 +00:00
|
|
|
|| (defined(_WIN64)) /* Windows 64 bit */ \
|
2018-09-06 02:18:42 +00:00
|
|
|
|| (defined(__ia64__) && defined(__LP64__)) /* Itanium in LP64 mode */ \
|
|
|
|
|| defined(__alpha__) /* DEC Alpha */ \
|
|
|
|
|| (defined(__sparc__) && defined(__arch64__) || defined (__sparcv9)) /* BE */ \
|
|
|
|
|| defined(__s390x__) /* S390 64-bit (BE) */ \
|
|
|
|
|| (defined(__ppc64__) || defined(__PPC64__)) \
|
|
|
|
|| defined(__aarch64__) /* ARM 64-bit */
|
|
|
|
#define JANET_64 1
|
|
|
|
#else
|
|
|
|
#define JANET_32 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Check big endian */
|
|
|
|
#if defined(__MIPSEB__) /* MIPS 32-bit */ \
|
|
|
|
|| defined(__ppc__) || defined(__PPC__) /* CPU(PPC) - PowerPC 32-bit */ \
|
|
|
|
|| defined(__powerpc__) || defined(__powerpc) || defined(__POWERPC__) \
|
|
|
|
|| defined(_M_PPC) || defined(__PPC) \
|
|
|
|
|| defined(__ppc64__) || defined(__PPC64__) /* PowerPC 64-bit */ \
|
|
|
|
|| defined(__sparc) /* Sparc 32bit */ \
|
|
|
|
|| defined(__sparc__) /* Sparc 64-bit */ \
|
|
|
|
|| defined(__s390x__) /* S390 64-bit */ \
|
|
|
|
|| defined(__s390__) /* S390 32-bit */ \
|
|
|
|
|| defined(__ARMEB__) /* ARM big endian */ \
|
|
|
|
|| ((defined(__CC_ARM) || defined(__ARMCC__)) /* ARM RealView compiler */ \
|
|
|
|
&& defined(__BIG_ENDIAN))
|
|
|
|
#define JANET_BIG_ENDIAN 1
|
|
|
|
#else
|
|
|
|
#define JANET_LITTLE_ENDIAN 1
|
|
|
|
#endif
|
|
|
|
|
2018-10-17 03:08:26 +00:00
|
|
|
/* Check emscripten */
|
|
|
|
#ifdef __EMSCRIPTEN__
|
|
|
|
#define JANET_NO_DYNAMIC_MODULES
|
|
|
|
#endif
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* Define how global janet state is declared */
|
|
|
|
#ifdef JANET_SINGLE_THREADED
|
|
|
|
#define JANET_THREAD_LOCAL
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
#define JANET_THREAD_LOCAL __thread
|
|
|
|
#elif defined(_MSC_BUILD)
|
|
|
|
#define JANET_THREAD_LOCAL __declspec(thread)
|
|
|
|
#else
|
|
|
|
#define JANET_THREAD_LOCAL
|
|
|
|
#endif
|
|
|
|
|
2019-01-06 08:23:03 +00:00
|
|
|
/* Enable or disable dynamic module loading. Enabled by default. */
|
2018-09-06 02:18:42 +00:00
|
|
|
#ifndef JANET_NO_DYNAMIC_MODULES
|
|
|
|
#define JANET_DYNAMIC_MODULES
|
|
|
|
#endif
|
|
|
|
|
2018-09-29 14:58:57 +00:00
|
|
|
/* Enable or disable the assembler. Enabled by default. */
|
|
|
|
#ifndef JANET_NO_ASSEMBLER
|
|
|
|
#define JANET_ASSEMBLER
|
|
|
|
#endif
|
|
|
|
|
2019-02-18 02:22:03 +00:00
|
|
|
/* Enable or disable the peg module */
|
|
|
|
#ifndef JANET_NO_PEG
|
|
|
|
#define JANET_PEG
|
|
|
|
#endif
|
|
|
|
|
2019-02-20 23:15:48 +00:00
|
|
|
/* Enable or disable the typedarray module */
|
|
|
|
#ifndef JANET_NO_TYPED_ARRAY
|
|
|
|
#define JANET_TYPED_ARRAY
|
|
|
|
#endif
|
|
|
|
|
2019-03-19 01:12:38 +00:00
|
|
|
/* Enable or disable large int types (for now 64 bit, maybe 128 / 256 bit integer types) */
|
|
|
|
#ifndef JANET_NO_INT_TYPES
|
|
|
|
#define JANET_INT_TYPES
|
2019-03-12 22:58:54 +00:00
|
|
|
#endif
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* How to export symbols */
|
|
|
|
#ifndef JANET_API
|
|
|
|
#ifdef JANET_WINDOWS
|
|
|
|
#define JANET_API __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define JANET_API __attribute__((visibility ("default")))
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2019-05-31 14:10:20 +00:00
|
|
|
/* Tell complier some functions don't return */
|
|
|
|
#ifndef JANET_NO_RETURN
|
|
|
|
#ifdef JANET_WINDOWS
|
|
|
|
#define JANET_NO_RETURN __declspec(noreturn)
|
|
|
|
#else
|
|
|
|
#define JANET_NO_RETURN __attribute__ ((noreturn))
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* Prevent some recursive functions from recursing too deeply
|
|
|
|
* ands crashing (the parser). Instead, error out. */
|
|
|
|
#define JANET_RECURSION_GUARD 1024
|
|
|
|
|
|
|
|
/* Maximum depth to follow table prototypes before giving up and returning nil. */
|
|
|
|
#define JANET_MAX_PROTO_DEPTH 200
|
|
|
|
|
|
|
|
/* Maximum depth to follow table prototypes before giving up and returning nil. */
|
|
|
|
#define JANET_MAX_MACRO_EXPAND 200
|
|
|
|
|
|
|
|
/* Define max stack size for stacks before raising a stack overflow error.
|
|
|
|
* If this is not defined, fiber stacks can grow without limit (until memory
|
|
|
|
* runs out) */
|
2019-02-27 21:28:43 +00:00
|
|
|
#ifndef JANET_STACK_MAX
|
|
|
|
#define JANET_STACK_MAX 16384
|
|
|
|
#endif
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Use nanboxed values - uses 8 bytes per value instead of 12 or 16.
|
|
|
|
* To turn of nanboxing, for debugging purposes or for certain
|
|
|
|
* architectures (Nanboxing only tested on x86 and x64), comment out
|
|
|
|
* the JANET_NANBOX define.*/
|
2018-09-30 00:01:57 +00:00
|
|
|
#ifndef JANET_NO_NANBOX
|
2018-11-18 21:43:43 +00:00
|
|
|
#ifdef JANET_32
|
|
|
|
#define JANET_NANBOX_32
|
2019-04-18 16:52:28 +00:00
|
|
|
#elif defined(__x86_64__) || defined(_WIN64)
|
|
|
|
/* We will only enable nanboxing by default on 64 bit systems
|
|
|
|
* on x86. This is mainly because the approach is tied to the
|
|
|
|
* implicit 47 bit address space. */
|
2018-11-18 21:43:43 +00:00
|
|
|
#define JANET_NANBOX_64
|
|
|
|
#endif
|
2018-09-30 00:01:57 +00:00
|
|
|
#endif
|
2018-09-06 02:18:42 +00:00
|
|
|
|
2019-05-28 01:43:35 +00:00
|
|
|
/* Runtime config constants */
|
|
|
|
#ifdef JANET_NO_NANBOX
|
|
|
|
#define JANET_NANBOX_BIT 0
|
|
|
|
#else
|
2019-05-30 01:57:03 +00:00
|
|
|
#define JANET_NANBOX_BIT 0x1
|
2019-05-28 01:43:35 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef JANET_SINGLE_THREADED
|
2019-05-30 01:57:03 +00:00
|
|
|
#define JANET_SINGLE_THREADED_BIT 0x2
|
2019-05-28 01:43:35 +00:00
|
|
|
#else
|
|
|
|
#define JANET_SINGLE_THREADED_BIT 0
|
|
|
|
#endif
|
|
|
|
|
2019-05-30 01:57:03 +00:00
|
|
|
#define JANET_CURRENT_CONFIG_BITS \
|
|
|
|
(JANET_SINGLE_THREADED_BIT | \
|
|
|
|
JANET_NANBOX_BIT)
|
|
|
|
|
|
|
|
/* Represents the settings used to compile Janet, as well as the version */
|
2019-05-28 01:43:35 +00:00
|
|
|
typedef struct {
|
2019-05-30 01:57:03 +00:00
|
|
|
unsigned major;
|
|
|
|
unsigned minor;
|
|
|
|
unsigned patch;
|
|
|
|
unsigned bits;
|
2019-05-28 01:43:35 +00:00
|
|
|
} JanetBuildConfig;
|
|
|
|
|
2019-05-30 01:57:03 +00:00
|
|
|
/* Get config of current compilation unit. */
|
|
|
|
#define janet_config_current() ((JanetBuildConfig){ \
|
|
|
|
JANET_VERSION_MAJOR, \
|
|
|
|
JANET_VERSION_MINOR, \
|
|
|
|
JANET_VERSION_PATCH, \
|
|
|
|
JANET_CURRENT_CONFIG_BITS })
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/***** END SECTION CONFIG *****/
|
|
|
|
|
|
|
|
/***** START SECTION TYPES *****/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
2019-01-05 04:20:34 +00:00
|
|
|
#include <setjmp.h>
|
2019-02-21 16:22:29 +00:00
|
|
|
#include <stddef.h>
|
2019-04-27 19:45:28 +00:00
|
|
|
#include <stdio.h>
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Names of all of the types */
|
2019-06-03 00:09:16 +00:00
|
|
|
JANET_API const char *const janet_type_names[16];
|
|
|
|
JANET_API const char *const janet_signal_names[14];
|
|
|
|
JANET_API const char *const janet_status_names[16];
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Fiber signals */
|
|
|
|
typedef enum {
|
|
|
|
JANET_SIGNAL_OK,
|
|
|
|
JANET_SIGNAL_ERROR,
|
|
|
|
JANET_SIGNAL_DEBUG,
|
|
|
|
JANET_SIGNAL_YIELD,
|
|
|
|
JANET_SIGNAL_USER0,
|
|
|
|
JANET_SIGNAL_USER1,
|
|
|
|
JANET_SIGNAL_USER2,
|
|
|
|
JANET_SIGNAL_USER3,
|
|
|
|
JANET_SIGNAL_USER4,
|
|
|
|
JANET_SIGNAL_USER5,
|
|
|
|
JANET_SIGNAL_USER6,
|
|
|
|
JANET_SIGNAL_USER7,
|
|
|
|
JANET_SIGNAL_USER8,
|
|
|
|
JANET_SIGNAL_USER9
|
|
|
|
} JanetSignal;
|
|
|
|
|
|
|
|
/* Fiber statuses - mostly corresponds to signals. */
|
|
|
|
typedef enum {
|
|
|
|
JANET_STATUS_DEAD,
|
|
|
|
JANET_STATUS_ERROR,
|
|
|
|
JANET_STATUS_DEBUG,
|
|
|
|
JANET_STATUS_PENDING,
|
|
|
|
JANET_STATUS_USER0,
|
|
|
|
JANET_STATUS_USER1,
|
|
|
|
JANET_STATUS_USER2,
|
|
|
|
JANET_STATUS_USER3,
|
|
|
|
JANET_STATUS_USER4,
|
|
|
|
JANET_STATUS_USER5,
|
|
|
|
JANET_STATUS_USER6,
|
|
|
|
JANET_STATUS_USER7,
|
|
|
|
JANET_STATUS_USER8,
|
|
|
|
JANET_STATUS_USER9,
|
|
|
|
JANET_STATUS_NEW,
|
|
|
|
JANET_STATUS_ALIVE
|
|
|
|
} JanetFiberStatus;
|
|
|
|
|
2018-11-18 21:43:43 +00:00
|
|
|
#ifdef JANET_NANBOX_64
|
|
|
|
typedef union Janet Janet;
|
|
|
|
#elif defined(JANET_NANBOX_32)
|
2018-09-06 02:18:42 +00:00
|
|
|
typedef union Janet Janet;
|
|
|
|
#else
|
|
|
|
typedef struct Janet Janet;
|
|
|
|
#endif
|
|
|
|
|
2019-02-21 16:22:29 +00:00
|
|
|
/* Use type punning for GC objects */
|
|
|
|
typedef struct JanetGCObject JanetGCObject;
|
|
|
|
|
|
|
|
/* All of the primary Janet GCed types */
|
2018-09-06 02:18:42 +00:00
|
|
|
typedef struct JanetFunction JanetFunction;
|
|
|
|
typedef struct JanetArray JanetArray;
|
|
|
|
typedef struct JanetBuffer JanetBuffer;
|
|
|
|
typedef struct JanetTable JanetTable;
|
|
|
|
typedef struct JanetFiber JanetFiber;
|
|
|
|
|
2019-02-21 16:22:29 +00:00
|
|
|
/* Prefixed Janet types */
|
|
|
|
typedef struct JanetTupleHead JanetTupleHead;
|
|
|
|
typedef struct JanetStructHead JanetStructHead;
|
|
|
|
typedef struct JanetStringHead JanetStringHead;
|
|
|
|
typedef struct JanetAbstractHead JanetAbstractHead;
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* Other structs */
|
|
|
|
typedef struct JanetFuncDef JanetFuncDef;
|
|
|
|
typedef struct JanetFuncEnv JanetFuncEnv;
|
|
|
|
typedef struct JanetKV JanetKV;
|
|
|
|
typedef struct JanetStackFrame JanetStackFrame;
|
|
|
|
typedef struct JanetAbstractType JanetAbstractType;
|
|
|
|
typedef struct JanetReg JanetReg;
|
2019-02-06 00:43:41 +00:00
|
|
|
typedef struct JanetMethod JanetMethod;
|
2018-09-06 02:18:42 +00:00
|
|
|
typedef struct JanetSourceMapping JanetSourceMapping;
|
2019-01-06 01:09:03 +00:00
|
|
|
typedef struct JanetView JanetView;
|
|
|
|
typedef struct JanetByteView JanetByteView;
|
|
|
|
typedef struct JanetDictView JanetDictView;
|
|
|
|
typedef struct JanetRange JanetRange;
|
2019-02-20 01:51:34 +00:00
|
|
|
typedef Janet(*JanetCFunction)(int32_t argc, Janet *argv);
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Basic types for all Janet Values */
|
|
|
|
typedef enum JanetType {
|
2018-12-30 17:37:50 +00:00
|
|
|
JANET_NUMBER,
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_NIL,
|
2019-03-13 18:50:25 +00:00
|
|
|
JANET_BOOLEAN,
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_FIBER,
|
|
|
|
JANET_STRING,
|
|
|
|
JANET_SYMBOL,
|
2019-01-03 00:41:07 +00:00
|
|
|
JANET_KEYWORD,
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_ARRAY,
|
|
|
|
JANET_TUPLE,
|
|
|
|
JANET_TABLE,
|
|
|
|
JANET_STRUCT,
|
|
|
|
JANET_BUFFER,
|
|
|
|
JANET_FUNCTION,
|
|
|
|
JANET_CFUNCTION,
|
2019-03-13 18:50:25 +00:00
|
|
|
JANET_ABSTRACT,
|
|
|
|
JANET_POINTER
|
2018-09-06 02:18:42 +00:00
|
|
|
} JanetType;
|
|
|
|
|
2019-03-13 18:50:25 +00:00
|
|
|
#define JANET_COUNT_TYPES (JANET_POINTER + 1)
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Type flags */
|
|
|
|
#define JANET_TFLAG_NIL (1 << JANET_NIL)
|
2019-03-13 18:50:25 +00:00
|
|
|
#define JANET_TFLAG_BOOLEAN (1 << JANET_BOOLEAN)
|
2018-09-06 02:18:42 +00:00
|
|
|
#define JANET_TFLAG_FIBER (1 << JANET_FIBER)
|
2018-12-27 18:05:29 +00:00
|
|
|
#define JANET_TFLAG_NUMBER (1 << JANET_NUMBER)
|
2018-09-06 02:18:42 +00:00
|
|
|
#define JANET_TFLAG_STRING (1 << JANET_STRING)
|
|
|
|
#define JANET_TFLAG_SYMBOL (1 << JANET_SYMBOL)
|
2019-01-03 00:41:07 +00:00
|
|
|
#define JANET_TFLAG_KEYWORD (1 << JANET_KEYWORD)
|
2018-09-06 02:18:42 +00:00
|
|
|
#define JANET_TFLAG_ARRAY (1 << JANET_ARRAY)
|
|
|
|
#define JANET_TFLAG_TUPLE (1 << JANET_TUPLE)
|
|
|
|
#define JANET_TFLAG_TABLE (1 << JANET_TABLE)
|
|
|
|
#define JANET_TFLAG_STRUCT (1 << JANET_STRUCT)
|
|
|
|
#define JANET_TFLAG_BUFFER (1 << JANET_BUFFER)
|
|
|
|
#define JANET_TFLAG_FUNCTION (1 << JANET_FUNCTION)
|
|
|
|
#define JANET_TFLAG_CFUNCTION (1 << JANET_CFUNCTION)
|
|
|
|
#define JANET_TFLAG_ABSTRACT (1 << JANET_ABSTRACT)
|
2019-03-13 18:50:25 +00:00
|
|
|
#define JANET_TFLAG_POINTER (1 << JANET_POINTER)
|
2018-09-06 02:18:42 +00:00
|
|
|
|
2019-01-03 03:08:51 +00:00
|
|
|
#define JANET_TFLAG_BYTES (JANET_TFLAG_STRING | JANET_TFLAG_SYMBOL | JANET_TFLAG_BUFFER | JANET_TFLAG_KEYWORD)
|
2018-09-06 02:18:42 +00:00
|
|
|
#define JANET_TFLAG_INDEXED (JANET_TFLAG_ARRAY | JANET_TFLAG_TUPLE)
|
|
|
|
#define JANET_TFLAG_DICTIONARY (JANET_TFLAG_TABLE | JANET_TFLAG_STRUCT)
|
|
|
|
#define JANET_TFLAG_LENGTHABLE (JANET_TFLAG_BYTES | JANET_TFLAG_INDEXED | JANET_TFLAG_DICTIONARY)
|
2019-05-21 19:35:39 +00:00
|
|
|
#define JANET_TFLAG_CALLABLE (JANET_TFLAG_FUNCTION | JANET_TFLAG_CFUNCTION | \
|
|
|
|
JANET_TFLAG_LENGTHABLE | JANET_TFLAG_ABSTRACT)
|
2018-09-06 02:18:42 +00:00
|
|
|
|
2019-01-06 08:23:03 +00:00
|
|
|
/* We provide three possible implementations of Janets. The preferred
|
2018-11-18 21:43:43 +00:00
|
|
|
* nanboxing approach, for 32 or 64 bits, and the standard C version. Code in the rest of the
|
2018-09-06 02:18:42 +00:00
|
|
|
* application must interact through exposed interface. */
|
|
|
|
|
|
|
|
/* Required interface for Janet */
|
|
|
|
/* wrap and unwrap for all types */
|
|
|
|
/* Get type quickly */
|
|
|
|
/* Check against type quickly */
|
|
|
|
/* Small footprint */
|
|
|
|
/* 32 bit integer support */
|
|
|
|
|
|
|
|
/* janet_type(x)
|
|
|
|
* janet_checktype(x, t)
|
|
|
|
* janet_wrap_##TYPE(x)
|
|
|
|
* janet_unwrap_##TYPE(x)
|
|
|
|
* janet_truthy(x)
|
|
|
|
* janet_memclear(p, n) - clear memory for hash tables to nils
|
|
|
|
* janet_u64(x) - get 64 bits of payload for hashing
|
|
|
|
*/
|
|
|
|
|
2019-04-27 19:45:28 +00:00
|
|
|
/***** START SECTION NON-C API *****/
|
|
|
|
|
|
|
|
/* Some janet types use offset tricks to make operations easier in C. For
|
|
|
|
* external bindings, we should prefer using the Head structs directly, and
|
|
|
|
* use the host language to add sugar around the manipulation of the Janet types. */
|
|
|
|
|
|
|
|
JANET_API JanetStructHead *janet_struct_head(const JanetKV *st);
|
|
|
|
JANET_API JanetAbstractHead *janet_abstract_head(const void *abstract);
|
|
|
|
JANET_API JanetStringHead *janet_string_head(const uint8_t *s);
|
|
|
|
JANET_API JanetTupleHead *janet_tuple_head(const Janet *tuple);
|
|
|
|
|
|
|
|
/* Some language bindings won't have access to the macro versions. */
|
|
|
|
|
|
|
|
JANET_API JanetType janet_type(Janet x);
|
|
|
|
JANET_API int janet_checktype(Janet x, JanetType type);
|
|
|
|
JANET_API int janet_checktypes(Janet x, int typeflags);
|
|
|
|
JANET_API int janet_truthy(Janet x);
|
|
|
|
|
|
|
|
JANET_API const JanetKV *janet_unwrap_struct(Janet x);
|
|
|
|
JANET_API const Janet *janet_unwrap_tuple(Janet x);
|
|
|
|
JANET_API JanetFiber *janet_unwrap_fiber(Janet x);
|
|
|
|
JANET_API JanetArray *janet_unwrap_array(Janet x);
|
|
|
|
JANET_API JanetTable *janet_unwrap_table(Janet x);
|
|
|
|
JANET_API JanetBuffer *janet_unwrap_buffer(Janet x);
|
|
|
|
JANET_API const uint8_t *janet_unwrap_string(Janet x);
|
|
|
|
JANET_API const uint8_t *janet_unwrap_symbol(Janet x);
|
|
|
|
JANET_API const uint8_t *janet_unwrap_keyword(Janet x);
|
|
|
|
JANET_API void *janet_unwrap_abstract(Janet x);
|
|
|
|
JANET_API void *janet_unwrap_pointer(Janet x);
|
|
|
|
JANET_API JanetFunction *janet_unwrap_function(Janet x);
|
|
|
|
JANET_API JanetCFunction janet_unwrap_cfunction(Janet x);
|
|
|
|
JANET_API int janet_unwrap_boolean(Janet x);
|
|
|
|
JANET_API double janet_unwrap_number(Janet x);
|
|
|
|
JANET_API int32_t janet_unwrap_integer(Janet x);
|
|
|
|
|
|
|
|
JANET_API Janet janet_wrap_nil(void);
|
|
|
|
JANET_API Janet janet_wrap_number(double x);
|
|
|
|
JANET_API Janet janet_wrap_true(void);
|
|
|
|
JANET_API Janet janet_wrap_false(void);
|
|
|
|
JANET_API Janet janet_wrap_boolean(int x);
|
|
|
|
JANET_API Janet janet_wrap_string(const uint8_t *x);
|
|
|
|
JANET_API Janet janet_wrap_symbol(const uint8_t *x);
|
|
|
|
JANET_API Janet janet_wrap_keyword(const uint8_t *x);
|
|
|
|
JANET_API Janet janet_wrap_array(JanetArray *x);
|
|
|
|
JANET_API Janet janet_wrap_tuple(const Janet *x);
|
|
|
|
JANET_API Janet janet_wrap_struct(const JanetKV *x);
|
|
|
|
JANET_API Janet janet_wrap_fiber(JanetFiber *x);
|
|
|
|
JANET_API Janet janet_wrap_buffer(JanetBuffer *x);
|
|
|
|
JANET_API Janet janet_wrap_function(JanetFunction *x);
|
|
|
|
JANET_API Janet janet_wrap_cfunction(JanetCFunction x);
|
|
|
|
JANET_API Janet janet_wrap_table(JanetTable *x);
|
|
|
|
JANET_API Janet janet_wrap_abstract(void *x);
|
|
|
|
JANET_API Janet janet_wrap_pointer(void *x);
|
|
|
|
JANET_API Janet janet_wrap_integer(int32_t x);
|
|
|
|
|
|
|
|
/***** END SECTION NON-C API *****/
|
|
|
|
|
2018-11-18 21:43:43 +00:00
|
|
|
#ifdef JANET_NANBOX_64
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
2018-11-18 21:43:43 +00:00
|
|
|
/* 64 Nanboxed Janet value */
|
2018-09-06 02:18:42 +00:00
|
|
|
union Janet {
|
|
|
|
uint64_t u64;
|
|
|
|
int64_t i64;
|
2018-12-27 18:05:29 +00:00
|
|
|
double number;
|
2018-11-18 19:17:50 +00:00
|
|
|
void *pointer;
|
2018-09-06 02:18:42 +00:00
|
|
|
};
|
|
|
|
#define janet_u64(x) ((x).u64)
|
|
|
|
|
|
|
|
#define JANET_NANBOX_TAGBITS 0xFFFF800000000000llu
|
|
|
|
#define JANET_NANBOX_PAYLOADBITS 0x00007FFFFFFFFFFFllu
|
2018-11-18 21:43:43 +00:00
|
|
|
#define janet_nanbox_lowtag(type) ((uint64_t)(type) | 0x1FFF0)
|
|
|
|
#define janet_nanbox_tag(type) (janet_nanbox_lowtag(type) << 47)
|
2018-09-06 02:18:42 +00:00
|
|
|
#define janet_type(x) \
|
2018-12-27 18:05:29 +00:00
|
|
|
(isnan((x).number) \
|
2018-09-06 02:18:42 +00:00
|
|
|
? (((x).u64 >> 47) & 0xF) \
|
2018-12-27 18:05:29 +00:00
|
|
|
: JANET_NUMBER)
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
#define janet_nanbox_checkauxtype(x, type) \
|
|
|
|
(((x).u64 & JANET_NANBOX_TAGBITS) == janet_nanbox_tag((type)))
|
|
|
|
|
2018-12-27 18:05:29 +00:00
|
|
|
#define janet_nanbox_isnumber(x) \
|
|
|
|
(!isnan((x).number) || janet_nanbox_checkauxtype((x), JANET_NUMBER))
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
#define janet_checktype(x, t) \
|
2018-12-27 18:05:29 +00:00
|
|
|
(((t) == JANET_NUMBER) \
|
|
|
|
? janet_nanbox_isnumber(x) \
|
2018-09-06 02:18:42 +00:00
|
|
|
: janet_nanbox_checkauxtype((x), (t)))
|
|
|
|
|
|
|
|
JANET_API void *janet_nanbox_to_pointer(Janet x);
|
|
|
|
JANET_API Janet janet_nanbox_from_pointer(void *p, uint64_t tagmask);
|
|
|
|
JANET_API Janet janet_nanbox_from_cpointer(const void *p, uint64_t tagmask);
|
|
|
|
JANET_API Janet janet_nanbox_from_double(double d);
|
|
|
|
JANET_API Janet janet_nanbox_from_bits(uint64_t bits);
|
|
|
|
|
|
|
|
#define janet_truthy(x) \
|
2019-03-13 18:50:25 +00:00
|
|
|
(!janet_checktype((x), JANET_NIL) && \
|
|
|
|
(!janet_checktype((x), JANET_BOOLEAN) || ((x).u64 & 0x1)))
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
#define janet_nanbox_from_payload(t, p) \
|
|
|
|
janet_nanbox_from_bits(janet_nanbox_tag(t) | (p))
|
|
|
|
|
|
|
|
#define janet_nanbox_wrap_(p, t) \
|
|
|
|
janet_nanbox_from_pointer((p), janet_nanbox_tag(t))
|
|
|
|
|
|
|
|
#define janet_nanbox_wrap_c(p, t) \
|
|
|
|
janet_nanbox_from_cpointer((p), janet_nanbox_tag(t))
|
|
|
|
|
|
|
|
/* Wrap the simple types */
|
|
|
|
#define janet_wrap_nil() janet_nanbox_from_payload(JANET_NIL, 1)
|
2019-03-13 18:50:25 +00:00
|
|
|
#define janet_wrap_true() janet_nanbox_from_payload(JANET_BOOLEAN, 1)
|
|
|
|
#define janet_wrap_false() janet_nanbox_from_payload(JANET_BOOLEAN, 0)
|
|
|
|
#define janet_wrap_boolean(b) janet_nanbox_from_payload(JANET_BOOLEAN, !!(b))
|
2018-12-27 18:05:29 +00:00
|
|
|
#define janet_wrap_number(r) janet_nanbox_from_double(r)
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Unwrap the simple types */
|
2019-03-13 18:50:25 +00:00
|
|
|
#define janet_unwrap_boolean(x) ((x).u64 & 0x1)
|
2018-12-27 18:05:29 +00:00
|
|
|
#define janet_unwrap_number(x) ((x).number)
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Wrap the pointer types */
|
|
|
|
#define janet_wrap_struct(s) janet_nanbox_wrap_c((s), JANET_STRUCT)
|
|
|
|
#define janet_wrap_tuple(s) janet_nanbox_wrap_c((s), JANET_TUPLE)
|
|
|
|
#define janet_wrap_fiber(s) janet_nanbox_wrap_((s), JANET_FIBER)
|
|
|
|
#define janet_wrap_array(s) janet_nanbox_wrap_((s), JANET_ARRAY)
|
|
|
|
#define janet_wrap_table(s) janet_nanbox_wrap_((s), JANET_TABLE)
|
|
|
|
#define janet_wrap_buffer(s) janet_nanbox_wrap_((s), JANET_BUFFER)
|
|
|
|
#define janet_wrap_string(s) janet_nanbox_wrap_c((s), JANET_STRING)
|
|
|
|
#define janet_wrap_symbol(s) janet_nanbox_wrap_c((s), JANET_SYMBOL)
|
2019-01-03 00:41:07 +00:00
|
|
|
#define janet_wrap_keyword(s) janet_nanbox_wrap_c((s), JANET_KEYWORD)
|
2018-09-06 02:18:42 +00:00
|
|
|
#define janet_wrap_abstract(s) janet_nanbox_wrap_((s), JANET_ABSTRACT)
|
|
|
|
#define janet_wrap_function(s) janet_nanbox_wrap_((s), JANET_FUNCTION)
|
|
|
|
#define janet_wrap_cfunction(s) janet_nanbox_wrap_((s), JANET_CFUNCTION)
|
2019-03-13 18:50:25 +00:00
|
|
|
#define janet_wrap_pointer(s) janet_nanbox_wrap_((s), JANET_POINTER)
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Unwrap the pointer types */
|
|
|
|
#define janet_unwrap_struct(x) ((const JanetKV *)janet_nanbox_to_pointer(x))
|
|
|
|
#define janet_unwrap_tuple(x) ((const Janet *)janet_nanbox_to_pointer(x))
|
|
|
|
#define janet_unwrap_fiber(x) ((JanetFiber *)janet_nanbox_to_pointer(x))
|
|
|
|
#define janet_unwrap_array(x) ((JanetArray *)janet_nanbox_to_pointer(x))
|
|
|
|
#define janet_unwrap_table(x) ((JanetTable *)janet_nanbox_to_pointer(x))
|
|
|
|
#define janet_unwrap_buffer(x) ((JanetBuffer *)janet_nanbox_to_pointer(x))
|
|
|
|
#define janet_unwrap_string(x) ((const uint8_t *)janet_nanbox_to_pointer(x))
|
|
|
|
#define janet_unwrap_symbol(x) ((const uint8_t *)janet_nanbox_to_pointer(x))
|
2019-01-03 00:41:07 +00:00
|
|
|
#define janet_unwrap_keyword(x) ((const uint8_t *)janet_nanbox_to_pointer(x))
|
2018-09-06 02:18:42 +00:00
|
|
|
#define janet_unwrap_abstract(x) (janet_nanbox_to_pointer(x))
|
|
|
|
#define janet_unwrap_pointer(x) (janet_nanbox_to_pointer(x))
|
|
|
|
#define janet_unwrap_function(x) ((JanetFunction *)janet_nanbox_to_pointer(x))
|
|
|
|
#define janet_unwrap_cfunction(x) ((JanetCFunction)janet_nanbox_to_pointer(x))
|
|
|
|
|
2018-11-18 21:43:43 +00:00
|
|
|
#elif defined(JANET_NANBOX_32)
|
|
|
|
|
|
|
|
/* 32 bit nanboxed janet */
|
|
|
|
union Janet {
|
|
|
|
struct {
|
|
|
|
#ifdef JANET_BIG_ENDIAN
|
|
|
|
uint32_t type;
|
|
|
|
union {
|
|
|
|
int32_t integer;
|
|
|
|
void *pointer;
|
|
|
|
} payload;
|
|
|
|
#else
|
|
|
|
union {
|
|
|
|
int32_t integer;
|
|
|
|
void *pointer;
|
|
|
|
} payload;
|
|
|
|
uint32_t type;
|
|
|
|
#endif
|
|
|
|
} tagged;
|
2018-12-27 18:05:29 +00:00
|
|
|
double number;
|
2018-11-18 21:43:43 +00:00
|
|
|
uint64_t u64;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define JANET_DOUBLE_OFFSET 0xFFFF
|
|
|
|
|
|
|
|
#define janet_u64(x) ((x).u64)
|
2018-12-27 18:05:29 +00:00
|
|
|
#define janet_type(x) (((x).tagged.type < JANET_DOUBLE_OFFSET) ? (x).tagged.type : JANET_NUMBER)
|
2018-12-30 19:23:52 +00:00
|
|
|
#define janet_checktype(x, t) ((t) == JANET_NUMBER \
|
|
|
|
? (x).tagged.type >= JANET_DOUBLE_OFFSET \
|
|
|
|
: (x).tagged.type == (t))
|
2019-03-13 18:50:25 +00:00
|
|
|
#define janet_truthy(x) \
|
|
|
|
((x).tagged.type != JANET_NIL && ((x).tagged.type != JANET_BOOLEAN || ((x).tagged.payload.integer & 0x1)))
|
2018-11-18 21:43:43 +00:00
|
|
|
|
|
|
|
JANET_API Janet janet_nanbox32_from_tagi(uint32_t tag, int32_t integer);
|
|
|
|
JANET_API Janet janet_nanbox32_from_tagp(uint32_t tag, void *pointer);
|
|
|
|
|
|
|
|
#define janet_wrap_nil() janet_nanbox32_from_tagi(JANET_NIL, 0)
|
2019-03-13 18:50:25 +00:00
|
|
|
#define janet_wrap_true() janet_nanbox32_from_tagi(JANET_BOOLEAN, 1)
|
|
|
|
#define janet_wrap_false() janet_nanbox32_from_tagi(JANET_BOOLEAN, 0)
|
|
|
|
#define janet_wrap_boolean(b) janet_nanbox32_from_tagi(JANET_BOOLEAN, !!(b))
|
2018-11-18 21:43:43 +00:00
|
|
|
|
|
|
|
/* Wrap the pointer types */
|
|
|
|
#define janet_wrap_struct(s) janet_nanbox32_from_tagp(JANET_STRUCT, (void *)(s))
|
|
|
|
#define janet_wrap_tuple(s) janet_nanbox32_from_tagp(JANET_TUPLE, (void *)(s))
|
|
|
|
#define janet_wrap_fiber(s) janet_nanbox32_from_tagp(JANET_FIBER, (void *)(s))
|
|
|
|
#define janet_wrap_array(s) janet_nanbox32_from_tagp(JANET_ARRAY, (void *)(s))
|
|
|
|
#define janet_wrap_table(s) janet_nanbox32_from_tagp(JANET_TABLE, (void *)(s))
|
|
|
|
#define janet_wrap_buffer(s) janet_nanbox32_from_tagp(JANET_BUFFER, (void *)(s))
|
|
|
|
#define janet_wrap_string(s) janet_nanbox32_from_tagp(JANET_STRING, (void *)(s))
|
|
|
|
#define janet_wrap_symbol(s) janet_nanbox32_from_tagp(JANET_SYMBOL, (void *)(s))
|
2019-01-03 03:08:51 +00:00
|
|
|
#define janet_wrap_keyword(s) janet_nanbox32_from_tagp(JANET_KEYWORD, (void *)(s))
|
2018-11-18 21:43:43 +00:00
|
|
|
#define janet_wrap_abstract(s) janet_nanbox32_from_tagp(JANET_ABSTRACT, (void *)(s))
|
|
|
|
#define janet_wrap_function(s) janet_nanbox32_from_tagp(JANET_FUNCTION, (void *)(s))
|
|
|
|
#define janet_wrap_cfunction(s) janet_nanbox32_from_tagp(JANET_CFUNCTION, (void *)(s))
|
2019-03-13 18:50:25 +00:00
|
|
|
#define janet_wrap_pointer(s) janet_nanbox32_from_tagp(JANET_POINTER, (void *)(s))
|
2018-11-18 21:43:43 +00:00
|
|
|
|
|
|
|
#define janet_unwrap_struct(x) ((const JanetKV *)(x).tagged.payload.pointer)
|
|
|
|
#define janet_unwrap_tuple(x) ((const Janet *)(x).tagged.payload.pointer)
|
|
|
|
#define janet_unwrap_fiber(x) ((JanetFiber *)(x).tagged.payload.pointer)
|
|
|
|
#define janet_unwrap_array(x) ((JanetArray *)(x).tagged.payload.pointer)
|
|
|
|
#define janet_unwrap_table(x) ((JanetTable *)(x).tagged.payload.pointer)
|
|
|
|
#define janet_unwrap_buffer(x) ((JanetBuffer *)(x).tagged.payload.pointer)
|
|
|
|
#define janet_unwrap_string(x) ((const uint8_t *)(x).tagged.payload.pointer)
|
|
|
|
#define janet_unwrap_symbol(x) ((const uint8_t *)(x).tagged.payload.pointer)
|
2019-01-03 00:41:07 +00:00
|
|
|
#define janet_unwrap_keyword(x) ((const uint8_t *)(x).tagged.payload.pointer)
|
2018-11-18 21:43:43 +00:00
|
|
|
#define janet_unwrap_abstract(x) ((x).tagged.payload.pointer)
|
|
|
|
#define janet_unwrap_pointer(x) ((x).tagged.payload.pointer)
|
|
|
|
#define janet_unwrap_function(x) ((JanetFunction *)(x).tagged.payload.pointer)
|
|
|
|
#define janet_unwrap_cfunction(x) ((JanetCFunction)(x).tagged.payload.pointer)
|
2019-03-13 18:50:25 +00:00
|
|
|
#define janet_unwrap_boolean(x) ((x).tagged.payload.integer)
|
2018-11-18 21:43:43 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
#else
|
|
|
|
|
2018-11-18 21:43:43 +00:00
|
|
|
/* A general janet value type for more standard C */
|
2018-09-06 02:18:42 +00:00
|
|
|
struct Janet {
|
|
|
|
union {
|
|
|
|
uint64_t u64;
|
2018-12-27 18:05:29 +00:00
|
|
|
double number;
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t integer;
|
|
|
|
void *pointer;
|
|
|
|
const void *cpointer;
|
|
|
|
} as;
|
|
|
|
JanetType type;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define janet_u64(x) ((x).as.u64)
|
|
|
|
#define janet_type(x) ((x).type)
|
|
|
|
#define janet_checktype(x, t) ((x).type == (t))
|
|
|
|
#define janet_truthy(x) \
|
2019-03-13 18:50:25 +00:00
|
|
|
((x).type != JANET_NIL && ((x).type != JANET_BOOLEAN || ((x).as.integer & 0x1)))
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
#define janet_unwrap_struct(x) ((const JanetKV *)(x).as.pointer)
|
|
|
|
#define janet_unwrap_tuple(x) ((const Janet *)(x).as.pointer)
|
|
|
|
#define janet_unwrap_fiber(x) ((JanetFiber *)(x).as.pointer)
|
|
|
|
#define janet_unwrap_array(x) ((JanetArray *)(x).as.pointer)
|
|
|
|
#define janet_unwrap_table(x) ((JanetTable *)(x).as.pointer)
|
|
|
|
#define janet_unwrap_buffer(x) ((JanetBuffer *)(x).as.pointer)
|
|
|
|
#define janet_unwrap_string(x) ((const uint8_t *)(x).as.pointer)
|
|
|
|
#define janet_unwrap_symbol(x) ((const uint8_t *)(x).as.pointer)
|
2019-01-03 00:41:07 +00:00
|
|
|
#define janet_unwrap_keyword(x) ((const uint8_t *)(x).as.pointer)
|
2018-09-06 02:18:42 +00:00
|
|
|
#define janet_unwrap_abstract(x) ((x).as.pointer)
|
|
|
|
#define janet_unwrap_pointer(x) ((x).as.pointer)
|
|
|
|
#define janet_unwrap_function(x) ((JanetFunction *)(x).as.pointer)
|
|
|
|
#define janet_unwrap_cfunction(x) ((JanetCFunction)(x).as.pointer)
|
2019-03-13 18:50:25 +00:00
|
|
|
#define janet_unwrap_boolean(x) ((x).as.u64 & 0x1)
|
2018-12-27 18:05:29 +00:00
|
|
|
#define janet_unwrap_number(x) ((x).as.number)
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* End of tagged union implementation */
|
|
|
|
#endif
|
|
|
|
|
2018-12-27 18:05:29 +00:00
|
|
|
JANET_API int janet_checkint(Janet x);
|
|
|
|
JANET_API int janet_checkint64(Janet x);
|
2019-03-08 05:41:26 +00:00
|
|
|
JANET_API int janet_checksize(Janet x);
|
2018-12-30 01:07:56 +00:00
|
|
|
#define janet_checkintrange(x) ((x) == (int32_t)(x))
|
2018-12-27 18:05:29 +00:00
|
|
|
#define janet_checkint64range(x) ((x) == (int64_t)(x))
|
|
|
|
#define janet_unwrap_integer(x) ((int32_t) janet_unwrap_number(x))
|
|
|
|
#define janet_wrap_integer(x) janet_wrap_number((int32_t)(x))
|
|
|
|
|
2019-01-04 03:46:25 +00:00
|
|
|
#define janet_checktypes(x, tps) ((1 << janet_type(x)) & (tps))
|
2019-01-03 01:50:31 +00:00
|
|
|
|
2019-02-21 16:22:29 +00:00
|
|
|
/* GC Object type pun. The lower 16 bits of flags are reserved for the garbage collector,
|
|
|
|
* but the upper 16 can be used per type for custom flags. The current collector is a linked
|
|
|
|
* list of blocks, which is naive but works. */
|
|
|
|
struct JanetGCObject {
|
|
|
|
int32_t flags;
|
|
|
|
JanetGCObject *next;
|
|
|
|
};
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* Fiber signal masks. */
|
|
|
|
#define JANET_FIBER_MASK_ERROR 2
|
|
|
|
#define JANET_FIBER_MASK_DEBUG 4
|
|
|
|
#define JANET_FIBER_MASK_YIELD 8
|
|
|
|
|
|
|
|
#define JANET_FIBER_MASK_USER0 (16 << 0)
|
|
|
|
#define JANET_FIBER_MASK_USER1 (16 << 1)
|
|
|
|
#define JANET_FIBER_MASK_USER2 (16 << 2)
|
|
|
|
#define JANET_FIBER_MASK_USER3 (16 << 3)
|
|
|
|
#define JANET_FIBER_MASK_USER4 (16 << 4)
|
|
|
|
#define JANET_FIBER_MASK_USER5 (16 << 5)
|
|
|
|
#define JANET_FIBER_MASK_USER6 (16 << 6)
|
|
|
|
#define JANET_FIBER_MASK_USER7 (16 << 7)
|
|
|
|
#define JANET_FIBER_MASK_USER8 (16 << 8)
|
|
|
|
#define JANET_FIBER_MASK_USER9 (16 << 9)
|
|
|
|
|
|
|
|
#define JANET_FIBER_MASK_USERN(N) (16 << (N))
|
|
|
|
#define JANET_FIBER_MASK_USER 0x3FF0
|
|
|
|
|
|
|
|
#define JANET_FIBER_STATUS_MASK 0xFF0000
|
|
|
|
#define JANET_FIBER_STATUS_OFFSET 16
|
|
|
|
|
|
|
|
/* A lightweight green thread in janet. Does not correspond to
|
|
|
|
* operating system threads. */
|
|
|
|
struct JanetFiber {
|
2019-02-21 16:22:29 +00:00
|
|
|
JanetGCObject gc; /* GC Object stuff */
|
|
|
|
int32_t flags; /* More flags */
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t frame; /* Index of the stack frame */
|
|
|
|
int32_t stackstart; /* Beginning of next args */
|
|
|
|
int32_t stacktop; /* Top of stack. Where values are pushed and popped from. */
|
|
|
|
int32_t capacity;
|
|
|
|
int32_t maxstack; /* Arbitrary defined limit for stack overflow */
|
2019-04-16 19:41:45 +00:00
|
|
|
JanetTable *env; /* Dynamic bindings table (usually current environment). */
|
2019-02-21 16:22:29 +00:00
|
|
|
Janet *data;
|
|
|
|
JanetFiber *child; /* Keep linked list of fibers for restarting pending fibers */
|
2018-09-06 02:18:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Mark if a stack frame is a tail call for debugging */
|
|
|
|
#define JANET_STACKFRAME_TAILCALL 1
|
|
|
|
|
2019-02-01 16:56:25 +00:00
|
|
|
/* Mark if a stack frame is an entrance frame */
|
|
|
|
#define JANET_STACKFRAME_ENTRANCE 2
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* A stack frame on the fiber. Is stored along with the stack values. */
|
|
|
|
struct JanetStackFrame {
|
|
|
|
JanetFunction *func;
|
|
|
|
uint32_t *pc;
|
|
|
|
JanetFuncEnv *env;
|
|
|
|
int32_t prevframe;
|
|
|
|
int32_t flags;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Number of Janets a frame takes up in the stack */
|
|
|
|
#define JANET_FRAME_SIZE ((sizeof(JanetStackFrame) + sizeof(Janet) - 1) / sizeof(Janet))
|
|
|
|
|
|
|
|
/* A dynamic array type. */
|
|
|
|
struct JanetArray {
|
2019-02-21 16:22:29 +00:00
|
|
|
JanetGCObject gc;
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t count;
|
|
|
|
int32_t capacity;
|
2019-02-21 16:22:29 +00:00
|
|
|
Janet *data;
|
2018-09-06 02:18:42 +00:00
|
|
|
};
|
|
|
|
|
2019-01-06 08:23:03 +00:00
|
|
|
/* A byte buffer type. Used as a mutable string or string builder. */
|
2018-09-06 02:18:42 +00:00
|
|
|
struct JanetBuffer {
|
2019-02-21 16:22:29 +00:00
|
|
|
JanetGCObject gc;
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t count;
|
|
|
|
int32_t capacity;
|
2019-02-21 16:22:29 +00:00
|
|
|
uint8_t *data;
|
2018-09-06 02:18:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* A mutable associative data type. Backed by a hashtable. */
|
|
|
|
struct JanetTable {
|
2019-02-21 16:22:29 +00:00
|
|
|
JanetGCObject gc;
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t count;
|
|
|
|
int32_t capacity;
|
|
|
|
int32_t deleted;
|
2019-02-21 16:22:29 +00:00
|
|
|
JanetKV *data;
|
|
|
|
JanetTable *proto;
|
2018-09-06 02:18:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* A key value pair in a struct or table */
|
|
|
|
struct JanetKV {
|
|
|
|
Janet key;
|
|
|
|
Janet value;
|
|
|
|
};
|
|
|
|
|
2019-02-21 16:22:29 +00:00
|
|
|
/* Prefix for a tuple */
|
|
|
|
struct JanetTupleHead {
|
|
|
|
JanetGCObject gc;
|
|
|
|
int32_t length;
|
|
|
|
int32_t hash;
|
|
|
|
int32_t sm_start;
|
|
|
|
int32_t sm_end;
|
|
|
|
const Janet data[];
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Prefix for a struct */
|
|
|
|
struct JanetStructHead {
|
|
|
|
JanetGCObject gc;
|
|
|
|
int32_t length;
|
|
|
|
int32_t hash;
|
|
|
|
int32_t capacity;
|
|
|
|
const JanetKV data[];
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Prefix for a string */
|
|
|
|
struct JanetStringHead {
|
|
|
|
JanetGCObject gc;
|
|
|
|
int32_t length;
|
|
|
|
int32_t hash;
|
|
|
|
const uint8_t data[];
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Prefix for an abstract value */
|
|
|
|
struct JanetAbstractHead {
|
|
|
|
JanetGCObject gc;
|
|
|
|
const JanetAbstractType *type;
|
|
|
|
size_t size;
|
2019-02-24 18:43:38 +00:00
|
|
|
long long data[]; /* Use long long to ensure most general alignment */
|
2019-02-21 16:22:29 +00:00
|
|
|
};
|
|
|
|
|
2019-01-06 08:23:03 +00:00
|
|
|
/* Some function definition flags */
|
2018-09-06 02:18:42 +00:00
|
|
|
#define JANET_FUNCDEF_FLAG_VARARG 0x10000
|
|
|
|
#define JANET_FUNCDEF_FLAG_NEEDSENV 0x20000
|
|
|
|
#define JANET_FUNCDEF_FLAG_HASNAME 0x80000
|
|
|
|
#define JANET_FUNCDEF_FLAG_HASSOURCE 0x100000
|
|
|
|
#define JANET_FUNCDEF_FLAG_HASDEFS 0x200000
|
|
|
|
#define JANET_FUNCDEF_FLAG_HASENVS 0x400000
|
|
|
|
#define JANET_FUNCDEF_FLAG_HASSOURCEMAP 0x800000
|
2019-05-24 21:03:22 +00:00
|
|
|
#define JANET_FUNCDEF_FLAG_STRUCTARG 0x1000000
|
2018-09-06 02:18:42 +00:00
|
|
|
#define JANET_FUNCDEF_FLAG_TAG 0xFFFF
|
|
|
|
|
|
|
|
/* Source mapping structure for a bytecode instruction */
|
|
|
|
struct JanetSourceMapping {
|
2018-12-13 23:46:53 +00:00
|
|
|
int32_t start;
|
|
|
|
int32_t end;
|
2018-09-06 02:18:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* A function definition. Contains information needed to instantiate closures. */
|
|
|
|
struct JanetFuncDef {
|
2019-02-21 16:22:29 +00:00
|
|
|
JanetGCObject gc;
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t *environments; /* Which environments to capture from parent. */
|
|
|
|
Janet *constants;
|
|
|
|
JanetFuncDef **defs;
|
|
|
|
uint32_t *bytecode;
|
|
|
|
|
|
|
|
/* Various debug information */
|
|
|
|
JanetSourceMapping *sourcemap;
|
|
|
|
const uint8_t *source;
|
|
|
|
const uint8_t *name;
|
|
|
|
|
|
|
|
int32_t flags;
|
|
|
|
int32_t slotcount; /* The amount of stack space required for the function */
|
|
|
|
int32_t arity; /* Not including varargs */
|
2019-03-12 04:23:14 +00:00
|
|
|
int32_t min_arity; /* Including varargs */
|
|
|
|
int32_t max_arity; /* Including varargs */
|
2018-09-06 02:18:42 +00:00
|
|
|
int32_t constants_length;
|
|
|
|
int32_t bytecode_length;
|
2018-10-17 03:08:26 +00:00
|
|
|
int32_t environments_length;
|
|
|
|
int32_t defs_length;
|
2018-09-06 02:18:42 +00:00
|
|
|
};
|
|
|
|
|
2019-01-06 08:23:03 +00:00
|
|
|
/* A function environment */
|
2018-09-06 02:18:42 +00:00
|
|
|
struct JanetFuncEnv {
|
2019-02-21 16:22:29 +00:00
|
|
|
JanetGCObject gc;
|
2018-09-06 02:18:42 +00:00
|
|
|
union {
|
|
|
|
JanetFiber *fiber;
|
|
|
|
Janet *values;
|
|
|
|
} as;
|
|
|
|
int32_t length; /* Size of environment */
|
|
|
|
int32_t offset; /* Stack offset when values still on stack. If offset is <= 0, then
|
|
|
|
environment is no longer on the stack. */
|
|
|
|
};
|
|
|
|
|
2019-05-04 19:03:41 +00:00
|
|
|
#define JANET_FUNCFLAG_TRACE (1 << 16)
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* A function */
|
|
|
|
struct JanetFunction {
|
2019-02-21 16:22:29 +00:00
|
|
|
JanetGCObject gc;
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetFuncDef *def;
|
|
|
|
JanetFuncEnv *envs[];
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct JanetParseState JanetParseState;
|
|
|
|
typedef struct JanetParser JanetParser;
|
|
|
|
|
|
|
|
enum JanetParserStatus {
|
|
|
|
JANET_PARSE_ROOT,
|
|
|
|
JANET_PARSE_ERROR,
|
2019-02-27 18:09:19 +00:00
|
|
|
JANET_PARSE_PENDING,
|
|
|
|
JANET_PARSE_DEAD
|
2018-09-06 02:18:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* A janet parser */
|
|
|
|
struct JanetParser {
|
2019-02-20 01:51:34 +00:00
|
|
|
Janet *args;
|
2018-09-06 02:18:42 +00:00
|
|
|
const char *error;
|
|
|
|
JanetParseState *states;
|
|
|
|
uint8_t *buf;
|
|
|
|
size_t argcount;
|
|
|
|
size_t argcap;
|
|
|
|
size_t statecount;
|
|
|
|
size_t statecap;
|
|
|
|
size_t bufcount;
|
|
|
|
size_t bufcap;
|
2018-12-13 23:46:53 +00:00
|
|
|
size_t offset;
|
2019-01-04 01:44:58 +00:00
|
|
|
size_t pending;
|
2018-09-06 02:18:42 +00:00
|
|
|
int lookback;
|
2019-02-27 18:09:19 +00:00
|
|
|
int flag;
|
2018-09-06 02:18:42 +00:00
|
|
|
};
|
|
|
|
|
2019-02-24 01:02:54 +00:00
|
|
|
typedef struct {
|
|
|
|
void *m_state; /* void* to not expose MarshalState ?*/
|
|
|
|
void *u_state;
|
|
|
|
int flags;
|
|
|
|
const uint8_t *data;
|
|
|
|
} JanetMarshalContext;
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* Defines an abstract type */
|
|
|
|
struct JanetAbstractType {
|
|
|
|
const char *name;
|
|
|
|
int (*gc)(void *data, size_t len);
|
|
|
|
int (*gcmark)(void *data, size_t len);
|
2019-02-20 01:51:34 +00:00
|
|
|
Janet(*get)(void *data, Janet key);
|
2019-02-05 16:14:13 +00:00
|
|
|
void (*put)(void *data, Janet key, Janet value);
|
2019-02-24 01:02:54 +00:00
|
|
|
void (*marshal)(void *p, JanetMarshalContext *ctx);
|
|
|
|
void (*unmarshal)(void *p, JanetMarshalContext *ctx);
|
2019-03-19 17:36:26 +00:00
|
|
|
void (*tostring)(void *p, JanetBuffer *buffer);
|
2018-09-06 02:18:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct JanetReg {
|
|
|
|
const char *name;
|
|
|
|
JanetCFunction cfun;
|
2018-11-15 20:45:41 +00:00
|
|
|
const char *documentation;
|
2018-09-06 02:18:42 +00:00
|
|
|
};
|
|
|
|
|
2019-02-06 00:43:41 +00:00
|
|
|
struct JanetMethod {
|
|
|
|
const char *name;
|
|
|
|
JanetCFunction cfun;
|
|
|
|
};
|
|
|
|
|
2019-01-06 01:09:03 +00:00
|
|
|
struct JanetView {
|
|
|
|
const Janet *items;
|
|
|
|
int32_t len;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct JanetByteView {
|
|
|
|
const uint8_t *bytes;
|
|
|
|
int32_t len;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct JanetDictView {
|
|
|
|
const JanetKV *kvs;
|
|
|
|
int32_t len;
|
|
|
|
int32_t cap;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct JanetRange {
|
|
|
|
int32_t start;
|
|
|
|
int32_t end;
|
|
|
|
};
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/***** END SECTION TYPES *****/
|
|
|
|
|
|
|
|
/***** START SECTION OPCODES *****/
|
|
|
|
|
|
|
|
/* Bytecode op argument types */
|
|
|
|
enum JanetOpArgType {
|
|
|
|
JANET_OAT_SLOT,
|
|
|
|
JANET_OAT_ENVIRONMENT,
|
|
|
|
JANET_OAT_CONSTANT,
|
|
|
|
JANET_OAT_INTEGER,
|
|
|
|
JANET_OAT_TYPE,
|
|
|
|
JANET_OAT_SIMPLETYPE,
|
|
|
|
JANET_OAT_LABEL,
|
|
|
|
JANET_OAT_FUNCDEF
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Various types of instructions */
|
|
|
|
enum JanetInstructionType {
|
|
|
|
JINT_0, /* No args */
|
|
|
|
JINT_S, /* Slot(3) */
|
|
|
|
JINT_L, /* Label(3) */
|
|
|
|
JINT_SS, /* Slot(1), Slot(2) */
|
|
|
|
JINT_SL, /* Slot(1), Label(2) */
|
|
|
|
JINT_ST, /* Slot(1), Slot(2) */
|
|
|
|
JINT_SI, /* Slot(1), Immediate(2) */
|
|
|
|
JINT_SD, /* Slot(1), Closure(2) */
|
|
|
|
JINT_SU, /* Slot(1), Unsigned Immediate(2) */
|
|
|
|
JINT_SSS, /* Slot(1), Slot(1), Slot(1) */
|
|
|
|
JINT_SSI, /* Slot(1), Slot(1), Immediate(1) */
|
|
|
|
JINT_SSU, /* Slot(1), Slot(1), Unsigned Immediate(1) */
|
|
|
|
JINT_SES, /* Slot(1), Environment(1), Far Slot(1) */
|
|
|
|
JINT_SC /* Slot(1), Constant(2) */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* All opcodes for the bytecode interpreter. */
|
|
|
|
enum JanetOpCode {
|
|
|
|
JOP_NOOP,
|
|
|
|
JOP_ERROR,
|
|
|
|
JOP_TYPECHECK,
|
|
|
|
JOP_RETURN,
|
|
|
|
JOP_RETURN_NIL,
|
|
|
|
JOP_ADD_IMMEDIATE,
|
|
|
|
JOP_ADD,
|
|
|
|
JOP_SUBTRACT,
|
|
|
|
JOP_MULTIPLY_IMMEDIATE,
|
|
|
|
JOP_MULTIPLY,
|
|
|
|
JOP_DIVIDE_IMMEDIATE,
|
|
|
|
JOP_DIVIDE,
|
|
|
|
JOP_BAND,
|
|
|
|
JOP_BOR,
|
|
|
|
JOP_BXOR,
|
|
|
|
JOP_BNOT,
|
|
|
|
JOP_SHIFT_LEFT,
|
|
|
|
JOP_SHIFT_LEFT_IMMEDIATE,
|
|
|
|
JOP_SHIFT_RIGHT,
|
|
|
|
JOP_SHIFT_RIGHT_IMMEDIATE,
|
|
|
|
JOP_SHIFT_RIGHT_UNSIGNED,
|
|
|
|
JOP_SHIFT_RIGHT_UNSIGNED_IMMEDIATE,
|
|
|
|
JOP_MOVE_FAR,
|
|
|
|
JOP_MOVE_NEAR,
|
|
|
|
JOP_JUMP,
|
|
|
|
JOP_JUMP_IF,
|
|
|
|
JOP_JUMP_IF_NOT,
|
|
|
|
JOP_GREATER_THAN,
|
|
|
|
JOP_GREATER_THAN_IMMEDIATE,
|
|
|
|
JOP_LESS_THAN,
|
|
|
|
JOP_LESS_THAN_IMMEDIATE,
|
|
|
|
JOP_EQUALS,
|
|
|
|
JOP_EQUALS_IMMEDIATE,
|
|
|
|
JOP_COMPARE,
|
|
|
|
JOP_LOAD_NIL,
|
|
|
|
JOP_LOAD_TRUE,
|
|
|
|
JOP_LOAD_FALSE,
|
|
|
|
JOP_LOAD_INTEGER,
|
|
|
|
JOP_LOAD_CONSTANT,
|
|
|
|
JOP_LOAD_UPVALUE,
|
|
|
|
JOP_LOAD_SELF,
|
|
|
|
JOP_SET_UPVALUE,
|
|
|
|
JOP_CLOSURE,
|
|
|
|
JOP_PUSH,
|
|
|
|
JOP_PUSH_2,
|
|
|
|
JOP_PUSH_3,
|
|
|
|
JOP_PUSH_ARRAY,
|
|
|
|
JOP_CALL,
|
|
|
|
JOP_TAILCALL,
|
|
|
|
JOP_RESUME,
|
|
|
|
JOP_SIGNAL,
|
2019-06-24 16:44:13 +00:00
|
|
|
JOP_PROPAGATE,
|
2018-09-06 02:18:42 +00:00
|
|
|
JOP_GET,
|
|
|
|
JOP_PUT,
|
|
|
|
JOP_GET_INDEX,
|
|
|
|
JOP_PUT_INDEX,
|
|
|
|
JOP_LENGTH,
|
|
|
|
JOP_MAKE_ARRAY,
|
|
|
|
JOP_MAKE_BUFFER,
|
|
|
|
JOP_MAKE_STRING,
|
|
|
|
JOP_MAKE_STRUCT,
|
|
|
|
JOP_MAKE_TABLE,
|
|
|
|
JOP_MAKE_TUPLE,
|
2019-03-31 18:14:25 +00:00
|
|
|
JOP_MAKE_BRACKET_TUPLE,
|
2018-09-06 02:18:42 +00:00
|
|
|
JOP_NUMERIC_LESS_THAN,
|
|
|
|
JOP_NUMERIC_LESS_THAN_EQUAL,
|
|
|
|
JOP_NUMERIC_GREATER_THAN,
|
|
|
|
JOP_NUMERIC_GREATER_THAN_EQUAL,
|
|
|
|
JOP_NUMERIC_EQUAL,
|
|
|
|
JOP_INSTRUCTION_COUNT
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Info about all instructions */
|
|
|
|
extern enum JanetInstructionType janet_instructions[JOP_INSTRUCTION_COUNT];
|
|
|
|
|
|
|
|
/***** END SECTION OPCODES *****/
|
|
|
|
|
|
|
|
/***** START SECTION MAIN *****/
|
|
|
|
|
|
|
|
/* Parsing */
|
|
|
|
JANET_API void janet_parser_init(JanetParser *parser);
|
|
|
|
JANET_API void janet_parser_deinit(JanetParser *parser);
|
2019-02-27 18:09:19 +00:00
|
|
|
JANET_API void janet_parser_consume(JanetParser *parser, uint8_t c);
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_API enum JanetParserStatus janet_parser_status(JanetParser *parser);
|
|
|
|
JANET_API Janet janet_parser_produce(JanetParser *parser);
|
|
|
|
JANET_API const char *janet_parser_error(JanetParser *parser);
|
|
|
|
JANET_API void janet_parser_flush(JanetParser *parser);
|
2019-02-27 18:09:19 +00:00
|
|
|
JANET_API void janet_parser_eof(JanetParser *parser);
|
2019-04-27 19:45:28 +00:00
|
|
|
JANET_API int janet_parser_has_more(JanetParser *parser);
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Assembly */
|
2018-09-29 14:58:57 +00:00
|
|
|
#ifdef JANET_ASSEMBLER
|
2018-09-06 02:18:42 +00:00
|
|
|
typedef struct JanetAssembleResult JanetAssembleResult;
|
|
|
|
enum JanetAssembleStatus {
|
|
|
|
JANET_ASSEMBLE_OK,
|
|
|
|
JANET_ASSEMBLE_ERROR
|
|
|
|
};
|
|
|
|
struct JanetAssembleResult {
|
|
|
|
JanetFuncDef *funcdef;
|
|
|
|
const uint8_t *error;
|
|
|
|
enum JanetAssembleStatus status;
|
|
|
|
};
|
|
|
|
JANET_API JanetAssembleResult janet_asm(Janet source, int flags);
|
|
|
|
JANET_API Janet janet_disasm(JanetFuncDef *def);
|
|
|
|
JANET_API Janet janet_asm_decode_instruction(uint32_t instr);
|
2018-09-29 14:58:57 +00:00
|
|
|
#endif
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Compilation */
|
|
|
|
typedef struct JanetCompileResult JanetCompileResult;
|
|
|
|
enum JanetCompileStatus {
|
|
|
|
JANET_COMPILE_OK,
|
|
|
|
JANET_COMPILE_ERROR
|
|
|
|
};
|
|
|
|
struct JanetCompileResult {
|
|
|
|
JanetFuncDef *funcdef;
|
|
|
|
const uint8_t *error;
|
|
|
|
JanetFiber *macrofiber;
|
|
|
|
JanetSourceMapping error_mapping;
|
|
|
|
enum JanetCompileStatus status;
|
|
|
|
};
|
|
|
|
JANET_API JanetCompileResult janet_compile(Janet source, JanetTable *env, const uint8_t *where);
|
|
|
|
|
|
|
|
/* Get the default environment for janet */
|
2019-03-08 16:39:18 +00:00
|
|
|
JANET_API JanetTable *janet_core_env(JanetTable *replacements);
|
2018-09-06 02:18:42 +00:00
|
|
|
|
2018-10-17 03:08:26 +00:00
|
|
|
JANET_API int janet_dobytes(JanetTable *env, const uint8_t *bytes, int32_t len, const char *sourcePath, Janet *out);
|
|
|
|
JANET_API int janet_dostring(JanetTable *env, const char *str, const char *sourcePath, Janet *out);
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Number scanning */
|
2019-01-03 00:41:07 +00:00
|
|
|
JANET_API int janet_scan_number(const uint8_t *str, int32_t len, double *out);
|
2019-03-19 01:12:38 +00:00
|
|
|
JANET_API int janet_scan_int64(const uint8_t *str, int32_t len, int64_t *out);
|
|
|
|
JANET_API int janet_scan_uint64(const uint8_t *str, int32_t len, uint64_t *out);
|
2018-09-06 02:18:42 +00:00
|
|
|
|
2018-12-15 18:52:07 +00:00
|
|
|
/* Debugging */
|
2019-01-06 01:09:03 +00:00
|
|
|
JANET_API void janet_debug_break(JanetFuncDef *def, int32_t pc);
|
|
|
|
JANET_API void janet_debug_unbreak(JanetFuncDef *def, int32_t pc);
|
|
|
|
JANET_API void janet_debug_find(
|
2019-02-20 01:51:34 +00:00
|
|
|
JanetFuncDef **def_out, int32_t *pc_out,
|
|
|
|
const uint8_t *source, int32_t offset);
|
2018-12-15 18:52:07 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* Array functions */
|
|
|
|
JANET_API JanetArray *janet_array(int32_t capacity);
|
|
|
|
JANET_API JanetArray *janet_array_n(const Janet *elements, int32_t n);
|
2018-11-08 03:27:06 +00:00
|
|
|
JANET_API void janet_array_ensure(JanetArray *array, int32_t capacity, int32_t growth);
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_API void janet_array_setcount(JanetArray *array, int32_t count);
|
|
|
|
JANET_API void janet_array_push(JanetArray *array, Janet x);
|
|
|
|
JANET_API Janet janet_array_pop(JanetArray *array);
|
|
|
|
JANET_API Janet janet_array_peek(JanetArray *array);
|
|
|
|
|
|
|
|
/* Buffer functions */
|
|
|
|
JANET_API JanetBuffer *janet_buffer(int32_t capacity);
|
|
|
|
JANET_API JanetBuffer *janet_buffer_init(JanetBuffer *buffer, int32_t capacity);
|
|
|
|
JANET_API void janet_buffer_deinit(JanetBuffer *buffer);
|
2018-11-08 03:27:06 +00:00
|
|
|
JANET_API void janet_buffer_ensure(JanetBuffer *buffer, int32_t capacity, int32_t growth);
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_API void janet_buffer_setcount(JanetBuffer *buffer, int32_t count);
|
2019-01-06 01:09:03 +00:00
|
|
|
JANET_API void janet_buffer_extra(JanetBuffer *buffer, int32_t n);
|
|
|
|
JANET_API void janet_buffer_push_bytes(JanetBuffer *buffer, const uint8_t *string, int32_t len);
|
|
|
|
JANET_API void janet_buffer_push_string(JanetBuffer *buffer, const uint8_t *string);
|
|
|
|
JANET_API void janet_buffer_push_cstring(JanetBuffer *buffer, const char *cstring);
|
|
|
|
JANET_API void janet_buffer_push_u8(JanetBuffer *buffer, uint8_t x);
|
|
|
|
JANET_API void janet_buffer_push_u16(JanetBuffer *buffer, uint16_t x);
|
|
|
|
JANET_API void janet_buffer_push_u32(JanetBuffer *buffer, uint32_t x);
|
|
|
|
JANET_API void janet_buffer_push_u64(JanetBuffer *buffer, uint64_t x);
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Tuple */
|
2019-02-09 16:00:35 +00:00
|
|
|
|
2019-02-21 16:22:29 +00:00
|
|
|
#define JANET_TUPLE_FLAG_BRACKETCTOR 0x10000
|
2019-02-09 16:00:35 +00:00
|
|
|
|
2019-02-21 16:22:29 +00:00
|
|
|
#define janet_tuple_head(t) ((JanetTupleHead *)((char *)t - offsetof(JanetTupleHead, data)))
|
|
|
|
#define janet_tuple_length(t) (janet_tuple_head(t)->length)
|
|
|
|
#define janet_tuple_hash(t) (janet_tuple_head(t)->hash)
|
|
|
|
#define janet_tuple_sm_start(t) (janet_tuple_head(t)->sm_start)
|
|
|
|
#define janet_tuple_sm_end(t) (janet_tuple_head(t)->sm_end)
|
|
|
|
#define janet_tuple_flag(t) (janet_tuple_head(t)->gc.flags)
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_API Janet *janet_tuple_begin(int32_t length);
|
|
|
|
JANET_API const Janet *janet_tuple_end(Janet *tuple);
|
|
|
|
JANET_API const Janet *janet_tuple_n(const Janet *values, int32_t n);
|
|
|
|
JANET_API int janet_tuple_equal(const Janet *lhs, const Janet *rhs);
|
|
|
|
JANET_API int janet_tuple_compare(const Janet *lhs, const Janet *rhs);
|
|
|
|
|
|
|
|
/* String/Symbol functions */
|
2019-02-21 16:22:29 +00:00
|
|
|
#define janet_string_head(s) ((JanetStringHead *)((char *)s - offsetof(JanetStringHead, data)))
|
|
|
|
#define janet_string_length(s) (janet_string_head(s)->length)
|
|
|
|
#define janet_string_hash(s) (janet_string_head(s)->hash)
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_API uint8_t *janet_string_begin(int32_t length);
|
|
|
|
JANET_API const uint8_t *janet_string_end(uint8_t *str);
|
|
|
|
JANET_API const uint8_t *janet_string(const uint8_t *buf, int32_t len);
|
|
|
|
JANET_API const uint8_t *janet_cstring(const char *cstring);
|
|
|
|
JANET_API int janet_string_compare(const uint8_t *lhs, const uint8_t *rhs);
|
|
|
|
JANET_API int janet_string_equal(const uint8_t *lhs, const uint8_t *rhs);
|
|
|
|
JANET_API int janet_string_equalconst(const uint8_t *lhs, const uint8_t *rhs, int32_t rlen, int32_t rhash);
|
|
|
|
JANET_API const uint8_t *janet_description(Janet x);
|
|
|
|
JANET_API const uint8_t *janet_to_string(Janet x);
|
|
|
|
JANET_API void janet_to_string_b(JanetBuffer *buffer, Janet x);
|
2019-01-06 02:23:44 +00:00
|
|
|
JANET_API void janet_description_b(JanetBuffer *buffer, Janet x);
|
2018-09-06 02:18:42 +00:00
|
|
|
#define janet_cstringv(cstr) janet_wrap_string(janet_cstring(cstr))
|
|
|
|
#define janet_stringv(str, len) janet_wrap_string(janet_string((str), (len)))
|
|
|
|
JANET_API const uint8_t *janet_formatc(const char *format, ...);
|
2019-03-19 17:36:26 +00:00
|
|
|
JANET_API void janet_formatb(JanetBuffer *bufp, const char *format, va_list args);
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Symbol functions */
|
|
|
|
JANET_API const uint8_t *janet_symbol(const uint8_t *str, int32_t len);
|
|
|
|
JANET_API const uint8_t *janet_csymbol(const char *str);
|
|
|
|
JANET_API const uint8_t *janet_symbol_gen(void);
|
|
|
|
#define janet_symbolv(str, len) janet_wrap_symbol(janet_symbol((str), (len)))
|
|
|
|
#define janet_csymbolv(cstr) janet_wrap_symbol(janet_csymbol(cstr))
|
|
|
|
|
2019-01-03 00:41:07 +00:00
|
|
|
/* Keyword functions */
|
|
|
|
#define janet_keyword janet_symbol
|
|
|
|
#define janet_ckeyword janet_csymbol
|
|
|
|
#define janet_keywordv(str, len) janet_wrap_keyword(janet_keyword((str), (len)))
|
|
|
|
#define janet_ckeywordv(cstr) janet_wrap_keyword(janet_ckeyword(cstr))
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* Structs */
|
2019-02-21 16:22:29 +00:00
|
|
|
#define janet_struct_head(t) ((JanetStructHead *)((char *)t - offsetof(JanetStructHead, data)))
|
|
|
|
#define janet_struct_length(t) (janet_struct_head(t)->length)
|
|
|
|
#define janet_struct_capacity(t) (janet_struct_head(t)->capacity)
|
|
|
|
#define janet_struct_hash(t) (janet_struct_head(t)->hash)
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_API JanetKV *janet_struct_begin(int32_t count);
|
|
|
|
JANET_API void janet_struct_put(JanetKV *st, Janet key, Janet value);
|
|
|
|
JANET_API const JanetKV *janet_struct_end(JanetKV *st);
|
|
|
|
JANET_API Janet janet_struct_get(const JanetKV *st, Janet key);
|
|
|
|
JANET_API JanetTable *janet_struct_to_table(const JanetKV *st);
|
|
|
|
JANET_API int janet_struct_equal(const JanetKV *lhs, const JanetKV *rhs);
|
|
|
|
JANET_API int janet_struct_compare(const JanetKV *lhs, const JanetKV *rhs);
|
|
|
|
JANET_API const JanetKV *janet_struct_find(const JanetKV *st, Janet key);
|
|
|
|
|
|
|
|
/* Table functions */
|
|
|
|
JANET_API JanetTable *janet_table(int32_t capacity);
|
|
|
|
JANET_API JanetTable *janet_table_init(JanetTable *table, int32_t capacity);
|
|
|
|
JANET_API void janet_table_deinit(JanetTable *table);
|
|
|
|
JANET_API Janet janet_table_get(JanetTable *t, Janet key);
|
|
|
|
JANET_API Janet janet_table_rawget(JanetTable *t, Janet key);
|
|
|
|
JANET_API Janet janet_table_remove(JanetTable *t, Janet key);
|
|
|
|
JANET_API void janet_table_put(JanetTable *t, Janet key, Janet value);
|
|
|
|
JANET_API const JanetKV *janet_table_to_struct(JanetTable *t);
|
|
|
|
JANET_API void janet_table_merge_table(JanetTable *table, JanetTable *other);
|
|
|
|
JANET_API void janet_table_merge_struct(JanetTable *table, const JanetKV *other);
|
|
|
|
JANET_API JanetKV *janet_table_find(JanetTable *t, Janet key);
|
2019-07-08 04:18:39 +00:00
|
|
|
JANET_API JanetTable *janet_table_clone(JanetTable *table);
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Fiber */
|
2019-01-12 22:31:15 +00:00
|
|
|
JANET_API JanetFiber *janet_fiber(JanetFunction *callee, int32_t capacity, int32_t argc, const Janet *argv);
|
|
|
|
JANET_API JanetFiber *janet_fiber_reset(JanetFiber *fiber, JanetFunction *callee, int32_t argc, const Janet *argv);
|
2019-04-27 19:45:28 +00:00
|
|
|
JANET_API JanetFiberStatus janet_fiber_status(JanetFiber *fiber);
|
2019-05-04 23:07:04 +00:00
|
|
|
JANET_API JanetFiber *janet_current_fiber(void);
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Treat similar types through uniform interfaces for iteration */
|
|
|
|
JANET_API int janet_indexed_view(Janet seq, const Janet **data, int32_t *len);
|
|
|
|
JANET_API int janet_bytes_view(Janet str, const uint8_t **data, int32_t *len);
|
|
|
|
JANET_API int janet_dictionary_view(Janet tab, const JanetKV **data, int32_t *len, int32_t *cap);
|
2018-09-09 16:13:32 +00:00
|
|
|
JANET_API Janet janet_dictionary_get(const JanetKV *data, int32_t cap, Janet key);
|
2018-09-10 01:20:33 +00:00
|
|
|
JANET_API const JanetKV *janet_dictionary_next(const JanetKV *kvs, int32_t cap, const JanetKV *kv);
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Abstract */
|
2019-04-27 19:45:28 +00:00
|
|
|
#define janet_abstract_head(u) ((JanetAbstractHead *)((char *)u - offsetof(JanetAbstractHead, data)))
|
|
|
|
#define janet_abstract_type(u) (janet_abstract_head(u)->type)
|
|
|
|
#define janet_abstract_size(u) (janet_abstract_head(u)->size)
|
2019-06-20 16:37:57 +00:00
|
|
|
JANET_API void *janet_abstract_begin(const JanetAbstractType *type, size_t size);
|
|
|
|
JANET_API void *janet_abstract_end(void *);
|
|
|
|
JANET_API void *janet_abstract(const JanetAbstractType *type, size_t size); /* begin and end in one call */
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* Native */
|
2019-01-06 01:09:03 +00:00
|
|
|
typedef void (*JanetModule)(JanetTable *);
|
2019-05-30 02:11:56 +00:00
|
|
|
typedef JanetBuildConfig(*JanetModconf)(void);
|
2019-01-06 01:09:03 +00:00
|
|
|
JANET_API JanetModule janet_native(const char *name, const uint8_t **error);
|
2018-09-06 02:18:42 +00:00
|
|
|
|
2018-09-10 01:20:33 +00:00
|
|
|
/* Marshaling */
|
2019-02-22 15:10:41 +00:00
|
|
|
JANET_API void janet_marshal(
|
2019-02-20 01:51:34 +00:00
|
|
|
JanetBuffer *buf,
|
|
|
|
Janet x,
|
|
|
|
JanetTable *rreg,
|
|
|
|
int flags);
|
2019-02-22 15:10:41 +00:00
|
|
|
JANET_API Janet janet_unmarshal(
|
2019-02-20 01:51:34 +00:00
|
|
|
const uint8_t *bytes,
|
|
|
|
size_t len,
|
|
|
|
int flags,
|
|
|
|
JanetTable *reg,
|
|
|
|
const uint8_t **next);
|
2018-10-21 15:46:36 +00:00
|
|
|
JANET_API JanetTable *janet_env_lookup(JanetTable *env);
|
2018-09-10 01:20:33 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* GC */
|
|
|
|
JANET_API void janet_mark(Janet x);
|
|
|
|
JANET_API void janet_sweep(void);
|
|
|
|
JANET_API void janet_collect(void);
|
|
|
|
JANET_API void janet_clear_memory(void);
|
|
|
|
JANET_API void janet_gcroot(Janet root);
|
|
|
|
JANET_API int janet_gcunroot(Janet root);
|
|
|
|
JANET_API int janet_gcunrootall(Janet root);
|
|
|
|
JANET_API int janet_gclock(void);
|
|
|
|
JANET_API void janet_gcunlock(int handle);
|
|
|
|
|
|
|
|
/* Functions */
|
|
|
|
JANET_API JanetFuncDef *janet_funcdef_alloc(void);
|
|
|
|
JANET_API JanetFunction *janet_thunk(JanetFuncDef *def);
|
|
|
|
JANET_API int janet_verify(JanetFuncDef *def);
|
|
|
|
|
2019-03-24 19:00:22 +00:00
|
|
|
/* Pretty printing */
|
|
|
|
#define JANET_PRETTY_COLOR 1
|
|
|
|
JANET_API JanetBuffer *janet_pretty(JanetBuffer *buffer, int depth, int flags, Janet x);
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* Misc */
|
|
|
|
JANET_API int janet_equals(Janet x, Janet y);
|
|
|
|
JANET_API int32_t janet_hash(Janet x);
|
|
|
|
JANET_API int janet_compare(Janet x, Janet y);
|
|
|
|
JANET_API int janet_cstrcmp(const uint8_t *str, const char *other);
|
2019-01-05 05:33:20 +00:00
|
|
|
JANET_API Janet janet_get(Janet ds, Janet key);
|
|
|
|
JANET_API Janet janet_getindex(Janet ds, int32_t index);
|
|
|
|
JANET_API int32_t janet_length(Janet x);
|
|
|
|
JANET_API void janet_put(Janet ds, Janet key, Janet value);
|
|
|
|
JANET_API void janet_putindex(Janet ds, int32_t index, Janet value);
|
2019-06-12 16:05:01 +00:00
|
|
|
JANET_API uint64_t janet_getflags(const Janet *argv, int32_t n, const char *flags);
|
|
|
|
#define janet_flag_at(F, I) ((F) & ((1ULL) << (I)))
|
2019-07-12 12:19:29 +00:00
|
|
|
JANET_API Janet janet_wrap_number_safe(double x);
|
2018-09-06 02:18:42 +00:00
|
|
|
|
|
|
|
/* VM functions */
|
|
|
|
JANET_API int janet_init(void);
|
|
|
|
JANET_API void janet_deinit(void);
|
|
|
|
JANET_API JanetSignal janet_continue(JanetFiber *fiber, Janet in, Janet *out);
|
2019-01-12 22:31:15 +00:00
|
|
|
JANET_API JanetSignal janet_pcall(JanetFunction *fun, int32_t argn, const Janet *argv, Janet *out, JanetFiber **f);
|
|
|
|
JANET_API Janet janet_call(JanetFunction *fun, int32_t argc, const Janet *argv);
|
2019-01-31 04:07:30 +00:00
|
|
|
JANET_API void janet_stacktrace(JanetFiber *fiber, Janet err);
|
2018-09-06 02:18:42 +00:00
|
|
|
|
2019-06-02 03:31:39 +00:00
|
|
|
/* Scratch Memory API */
|
|
|
|
JANET_API void *janet_smalloc(size_t size);
|
|
|
|
JANET_API void *janet_srealloc(void *mem, size_t size);
|
|
|
|
JANET_API void janet_sfree(void *mem);
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* C Library helpers */
|
|
|
|
typedef enum {
|
|
|
|
JANET_BINDING_NONE,
|
|
|
|
JANET_BINDING_DEF,
|
|
|
|
JANET_BINDING_VAR,
|
|
|
|
JANET_BINDING_MACRO
|
|
|
|
} JanetBindingType;
|
2018-11-15 20:45:41 +00:00
|
|
|
JANET_API void janet_def(JanetTable *env, const char *name, Janet val, const char *documentation);
|
|
|
|
JANET_API void janet_var(JanetTable *env, const char *name, Janet val, const char *documentation);
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_API void janet_cfuns(JanetTable *env, const char *regprefix, const JanetReg *cfuns);
|
|
|
|
JANET_API JanetBindingType janet_resolve(JanetTable *env, const uint8_t *sym, Janet *out);
|
2018-10-21 05:35:07 +00:00
|
|
|
JANET_API void janet_register(const char *name, JanetCFunction cfun);
|
2018-09-06 02:18:42 +00:00
|
|
|
|
2019-01-05 04:20:34 +00:00
|
|
|
/* New C API */
|
2019-01-06 01:09:03 +00:00
|
|
|
|
2019-05-30 01:57:03 +00:00
|
|
|
#define JANET_MODULE_ENTRY \
|
|
|
|
JANET_API JanetBuildConfig _janet_mod_config(void) { \
|
|
|
|
return janet_config_current(); \
|
|
|
|
} \
|
|
|
|
JANET_API void _janet_init
|
2019-05-28 01:43:35 +00:00
|
|
|
|
2019-05-31 14:10:20 +00:00
|
|
|
JANET_NO_RETURN JANET_API void janet_panicv(Janet message);
|
|
|
|
JANET_NO_RETURN JANET_API void janet_panic(const char *message);
|
|
|
|
JANET_NO_RETURN JANET_API void janet_panics(const uint8_t *message);
|
|
|
|
JANET_NO_RETURN JANET_API void janet_panicf(const char *format, ...);
|
2019-04-27 19:45:28 +00:00
|
|
|
JANET_API void janet_printf(const char *format, ...);
|
2019-05-31 14:10:20 +00:00
|
|
|
JANET_NO_RETURN JANET_API void janet_panic_type(Janet x, int32_t n, int expected);
|
|
|
|
JANET_NO_RETURN JANET_API void janet_panic_abstract(Janet x, int32_t n, const JanetAbstractType *at);
|
2019-01-06 01:09:03 +00:00
|
|
|
JANET_API void janet_arity(int32_t arity, int32_t min, int32_t max);
|
2019-01-06 01:45:24 +00:00
|
|
|
JANET_API void janet_fixarity(int32_t arity, int32_t fix);
|
2019-01-06 01:09:03 +00:00
|
|
|
|
2019-02-06 00:43:41 +00:00
|
|
|
JANET_API Janet janet_getmethod(const uint8_t *method, const JanetMethod *methods);
|
2019-01-06 01:09:03 +00:00
|
|
|
JANET_API double janet_getnumber(const Janet *argv, int32_t n);
|
|
|
|
JANET_API JanetArray *janet_getarray(const Janet *argv, int32_t n);
|
|
|
|
JANET_API const Janet *janet_gettuple(const Janet *argv, int32_t n);
|
|
|
|
JANET_API JanetTable *janet_gettable(const Janet *argv, int32_t n);
|
|
|
|
JANET_API const JanetKV *janet_getstruct(const Janet *argv, int32_t n);
|
|
|
|
JANET_API const uint8_t *janet_getstring(const Janet *argv, int32_t n);
|
2019-03-29 03:22:58 +00:00
|
|
|
JANET_API const char *janet_getcstring(const Janet *argv, int32_t n);
|
2019-01-06 01:09:03 +00:00
|
|
|
JANET_API const uint8_t *janet_getsymbol(const Janet *argv, int32_t n);
|
|
|
|
JANET_API const uint8_t *janet_getkeyword(const Janet *argv, int32_t n);
|
|
|
|
JANET_API JanetBuffer *janet_getbuffer(const Janet *argv, int32_t n);
|
|
|
|
JANET_API JanetFiber *janet_getfiber(const Janet *argv, int32_t n);
|
|
|
|
JANET_API JanetFunction *janet_getfunction(const Janet *argv, int32_t n);
|
|
|
|
JANET_API JanetCFunction janet_getcfunction(const Janet *argv, int32_t n);
|
|
|
|
JANET_API int janet_getboolean(const Janet *argv, int32_t n);
|
2019-03-14 17:17:44 +00:00
|
|
|
JANET_API void *janet_getpointer(const Janet *argv, int32_t n);
|
2019-01-06 01:09:03 +00:00
|
|
|
|
|
|
|
JANET_API int32_t janet_getinteger(const Janet *argv, int32_t n);
|
|
|
|
JANET_API int64_t janet_getinteger64(const Janet *argv, int32_t n);
|
2019-03-08 05:41:26 +00:00
|
|
|
JANET_API size_t janet_getsize(const Janet *argv, int32_t n);
|
2019-01-06 01:09:03 +00:00
|
|
|
JANET_API JanetView janet_getindexed(const Janet *argv, int32_t n);
|
|
|
|
JANET_API JanetByteView janet_getbytes(const Janet *argv, int32_t n);
|
|
|
|
JANET_API JanetDictView janet_getdictionary(const Janet *argv, int32_t n);
|
|
|
|
JANET_API void *janet_getabstract(const Janet *argv, int32_t n, const JanetAbstractType *at);
|
|
|
|
JANET_API JanetRange janet_getslice(int32_t argc, const Janet *argv);
|
2019-01-09 18:25:51 +00:00
|
|
|
JANET_API int32_t janet_gethalfrange(const Janet *argv, int32_t n, int32_t length, const char *which);
|
2019-01-12 22:31:15 +00:00
|
|
|
JANET_API int32_t janet_getargindex(const Janet *argv, int32_t n, int32_t length, const char *which);
|
2018-09-06 02:18:42 +00:00
|
|
|
|
2019-04-16 23:10:01 +00:00
|
|
|
JANET_API Janet janet_dyn(const char *name);
|
|
|
|
JANET_API void janet_setdyn(const char *name, Janet value);
|
|
|
|
|
2019-04-17 01:44:19 +00:00
|
|
|
JANET_API FILE *janet_getfile(const Janet *argv, int32_t n, int *flags);
|
|
|
|
JANET_API FILE *janet_dynfile(const char *name, FILE *def);
|
|
|
|
|
2019-02-24 21:24:18 +00:00
|
|
|
/* Marshal API */
|
2019-04-27 19:45:28 +00:00
|
|
|
JANET_API void janet_marshal_size(JanetMarshalContext *ctx, size_t value);
|
2019-02-23 16:13:43 +00:00
|
|
|
JANET_API void janet_marshal_int(JanetMarshalContext *ctx, int32_t value);
|
2019-03-19 01:12:38 +00:00
|
|
|
JANET_API void janet_marshal_int64(JanetMarshalContext *ctx, int64_t value);
|
2019-02-23 16:13:43 +00:00
|
|
|
JANET_API void janet_marshal_byte(JanetMarshalContext *ctx, uint8_t value);
|
2019-03-08 03:19:34 +00:00
|
|
|
JANET_API void janet_marshal_bytes(JanetMarshalContext *ctx, const uint8_t *bytes, size_t len);
|
2019-02-23 16:13:43 +00:00
|
|
|
JANET_API void janet_marshal_janet(JanetMarshalContext *ctx, Janet x);
|
2019-02-22 14:57:48 +00:00
|
|
|
|
2019-04-27 19:45:28 +00:00
|
|
|
JANET_API size_t janet_unmarshal_size(JanetMarshalContext *ctx);
|
2019-03-19 01:12:38 +00:00
|
|
|
JANET_API int32_t janet_unmarshal_int(JanetMarshalContext *ctx);
|
|
|
|
JANET_API int64_t janet_unmarshal_int64(JanetMarshalContext *ctx);
|
|
|
|
JANET_API uint8_t janet_unmarshal_byte(JanetMarshalContext *ctx);
|
2019-03-08 03:19:34 +00:00
|
|
|
JANET_API void janet_unmarshal_bytes(JanetMarshalContext *ctx, uint8_t *dest, size_t len);
|
2019-03-19 01:12:38 +00:00
|
|
|
JANET_API Janet janet_unmarshal_janet(JanetMarshalContext *ctx);
|
2019-02-22 14:57:48 +00:00
|
|
|
|
2019-02-24 01:02:54 +00:00
|
|
|
JANET_API void janet_register_abstract_type(const JanetAbstractType *at);
|
2019-02-24 01:51:34 +00:00
|
|
|
JANET_API const JanetAbstractType *janet_get_abstract_type(Janet key);
|
2019-02-23 16:13:43 +00:00
|
|
|
|
2019-02-24 21:24:18 +00:00
|
|
|
#ifdef JANET_TYPED_ARRAY
|
|
|
|
|
|
|
|
typedef enum {
|
2019-03-19 01:12:38 +00:00
|
|
|
JANET_TARRAY_TYPE_U8,
|
|
|
|
JANET_TARRAY_TYPE_S8,
|
|
|
|
JANET_TARRAY_TYPE_U16,
|
|
|
|
JANET_TARRAY_TYPE_S16,
|
|
|
|
JANET_TARRAY_TYPE_U32,
|
|
|
|
JANET_TARRAY_TYPE_S32,
|
|
|
|
JANET_TARRAY_TYPE_U64,
|
|
|
|
JANET_TARRAY_TYPE_S64,
|
|
|
|
JANET_TARRAY_TYPE_F32,
|
|
|
|
JANET_TARRAY_TYPE_F64
|
2019-02-24 21:24:18 +00:00
|
|
|
} JanetTArrayType;
|
2019-02-22 14:57:48 +00:00
|
|
|
|
2019-02-24 21:24:18 +00:00
|
|
|
typedef struct {
|
|
|
|
uint8_t *data;
|
|
|
|
size_t size;
|
2019-03-08 03:06:49 +00:00
|
|
|
int32_t flags;
|
2019-02-24 21:24:18 +00:00
|
|
|
} JanetTArrayBuffer;
|
|
|
|
|
|
|
|
typedef struct {
|
2019-03-19 01:12:38 +00:00
|
|
|
union {
|
|
|
|
void *pointer;
|
|
|
|
uint8_t *u8;
|
|
|
|
int8_t *s8;
|
|
|
|
uint16_t *u16;
|
|
|
|
int16_t *s16;
|
|
|
|
uint32_t *u32;
|
|
|
|
int32_t *s32;
|
|
|
|
uint64_t *u64;
|
|
|
|
int64_t *s64;
|
|
|
|
float *f32;
|
|
|
|
double *f64;
|
|
|
|
} as;
|
2019-02-24 21:24:18 +00:00
|
|
|
JanetTArrayBuffer *buffer;
|
|
|
|
size_t size;
|
|
|
|
size_t stride;
|
|
|
|
JanetTArrayType type;
|
|
|
|
} JanetTArrayView;
|
2019-02-24 21:36:35 +00:00
|
|
|
|
|
|
|
JANET_API JanetTArrayBuffer *janet_tarray_buffer(size_t size);
|
|
|
|
JANET_API JanetTArrayView *janet_tarray_view(JanetTArrayType type, size_t size, size_t stride, size_t offset, JanetTArrayBuffer *buffer);
|
|
|
|
JANET_API int janet_is_tarray_view(Janet x, JanetTArrayType type);
|
|
|
|
JANET_API JanetTArrayBuffer *janet_gettarray_buffer(const Janet *argv, int32_t n);
|
|
|
|
JANET_API JanetTArrayView *janet_gettarray_view(const Janet *argv, int32_t n, JanetTArrayType type);
|
2019-03-19 01:12:38 +00:00
|
|
|
JanetTArrayView *janet_gettarray_any(const Janet *argv, int32_t n);
|
2019-02-24 21:36:35 +00:00
|
|
|
|
2019-02-24 21:24:18 +00:00
|
|
|
#endif
|
2019-02-22 09:54:22 +00:00
|
|
|
|
2019-03-19 01:12:38 +00:00
|
|
|
#ifdef JANET_INT_TYPES
|
2019-03-13 00:28:26 +00:00
|
|
|
|
|
|
|
typedef enum {
|
2019-03-19 01:12:38 +00:00
|
|
|
JANET_INT_NONE,
|
|
|
|
JANET_INT_S64,
|
|
|
|
JANET_INT_U64
|
|
|
|
} JanetIntType;
|
|
|
|
|
|
|
|
JANET_API JanetIntType janet_is_int(Janet x);
|
|
|
|
JANET_API Janet janet_wrap_s64(int64_t x);
|
|
|
|
JANET_API Janet janet_wrap_u64(uint64_t x);
|
|
|
|
JANET_API int64_t janet_unwrap_s64(Janet x);
|
|
|
|
JANET_API uint64_t janet_unwrap_u64(Janet x);
|
2019-03-16 15:46:57 +00:00
|
|
|
JANET_API int janet_scan_int64(const uint8_t *str, int32_t len, int64_t *out);
|
|
|
|
JANET_API int janet_scan_uint64(const uint8_t *str, int32_t len, uint64_t *out);
|
2019-03-13 00:28:26 +00:00
|
|
|
|
2019-03-19 01:12:38 +00:00
|
|
|
#endif
|
2019-03-13 00:28:26 +00:00
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/***** END SECTION MAIN *****/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* JANET_H_defined */
|