|
|
|
<h1 id="defines">Header definitions</h1>
|
|
|
|
|
|
|
|
<p>This section summarizes some commonly needed header definitions in
|
|
|
|
<code>duktape.h</code>. It is not exhaustive and the excerpts have been
|
|
|
|
reorganized for readability; when in doubt, consult the header directly.</p>
|
|
|
|
|
|
|
|
<h2>Duktape version</h2>
|
|
|
|
|
|
|
|
<p>The Duktape version is available through the <code>DUK_VERSION</code> define,
|
|
|
|
with the numeric value <code>(major * 10000) + (minor * 100) + patch</code>.
|
|
|
|
The same value is available to Ecmascript code through <code>Duktape.version</code>.
|
|
|
|
For example, version 1.2.3 would have <code>DUK_VERSION</code> and
|
|
|
|
<code>Duktape.version</code> set to 10203.</p>
|
|
|
|
|
|
|
|
<p>Unofficial development snapshots have patch level set to 99. For example,
|
|
|
|
version 0.11.99 (1199) would be a development snapshot after 0.11.0 but before
|
|
|
|
the next official release.</p>
|
|
|
|
|
|
|
|
<h2>Structs and typedefs</h2>
|
|
|
|
<pre class="c-code">
|
|
|
|
typedef void duk_context;
|
|
|
|
|
|
|
|
typedef duk_ret_t (*duk_c_function)(duk_context *ctx);
|
|
|
|
typedef void *(*duk_alloc_function) (void *udata, duk_size_t size);
|
|
|
|
typedef void *(*duk_realloc_function) (void *udata, void *ptr, duk_size_t size);
|
|
|
|
typedef void (*duk_free_function) (void *udata, void *ptr);
|
|
|
|
typedef void (*duk_fatal_function) (duk_context *ctx, duk_errcode_t code);
|
|
|
|
typedef void (*duk_decode_char_function) (void *udata, duk_codepoint_t codepoint);
|
|
|
|
typedef duk_codepoint_t (*duk_map_char_function) (void *udata, duk_codepoint_t codepoint);
|
|
|
|
typedef duk_ret_t (*duk_safe_call_function) (duk_context *ctx);
|
|
|
|
|
|
|
|
struct duk_memory_functions {
|
|
|
|
duk_alloc_function alloc;
|
|
|
|
duk_realloc_function realloc;
|
|
|
|
duk_free_function free;
|
|
|
|
void *udata;
|
|
|
|
};
|
|
|
|
typedef struct duk_memory_functions duk_memory_functions;
|
|
|
|
|
|
|
|
struct duk_function_list_entry {
|
|
|
|
const char *key;
|
|
|
|
duk_c_function value;
|
|
|
|
duk_int_t nargs;
|
|
|
|
};
|
|
|
|
typedef struct duk_function_list_entry duk_function_list_entry;
|
|
|
|
|
|
|
|
struct duk_number_list_entry {
|
|
|
|
const char *key;
|
|
|
|
duk_double_t value;
|
|
|
|
};
|
|
|
|
typedef struct duk_number_list_entry duk_number_list_entry;
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<h2>Error codes</h2>
|
|
|
|
<pre class="c-code">
|
|
|
|
/* Internal error codes */
|
|
|
|
#define DUK_ERR_UNIMPLEMENTED_ERROR 50 /* UnimplementedError */
|
|
|
|
#define DUK_ERR_UNSUPPORTED_ERROR 51 /* UnsupportedError */
|
|
|
|
#define DUK_ERR_INTERNAL_ERROR 52 /* InternalError */
|
|
|
|
#define DUK_ERR_ALLOC_ERROR 53 /* AllocError */
|
|
|
|
#define DUK_ERR_ASSERTION_ERROR 54 /* AssertionError */
|
|
|
|
#define DUK_ERR_API_ERROR 55 /* APIError */
|
|
|
|
#define DUK_ERR_UNCAUGHT_ERROR 56 /* UncaughtError */
|
|
|
|
|
|
|
|
/* Ecmascript E5 specification error codes */
|
|
|
|
#define DUK_ERR_ERROR 100 /* Error */
|
|
|
|
#define DUK_ERR_EVAL_ERROR 101 /* EvalError */
|
|
|
|
#define DUK_ERR_RANGE_ERROR 102 /* RangeError */
|
|
|
|
#define DUK_ERR_REFERENCE_ERROR 103 /* ReferenceError */
|
|
|
|
#define DUK_ERR_SYNTAX_ERROR 104 /* SyntaxError */
|
|
|
|
#define DUK_ERR_TYPE_ERROR 105 /* TypeError */
|
|
|
|
#define DUK_ERR_URI_ERROR 106 /* URIError */
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<h2>Return codes from Duktape/C functions</h2>
|
|
|
|
<pre class="c-code">
|
|
|
|
/* Return codes for C functions */
|
|
|
|
#define DUK_RET_UNIMPLEMENTED_ERROR (-DUK_ERR_UNIMPLEMENTED_ERROR)
|
|
|
|
#define DUK_RET_UNSUPPORTED_ERROR (-DUK_ERR_UNSUPPORTED_ERROR)
|
|
|
|
#define DUK_RET_INTERNAL_ERROR (-DUK_ERR_INTERNAL_ERROR)
|
|
|
|
#define DUK_RET_ALLOC_ERROR (-DUK_ERR_ALLOC_ERROR)
|
|
|
|
#define DUK_RET_ASSERTION_ERROR (-DUK_ERR_ASSERTION_ERROR)
|
|
|
|
#define DUK_RET_API_ERROR (-DUK_ERR_API_ERROR)
|
|
|
|
#define DUK_RET_UNCAUGHT_ERROR (-DUK_ERR_UNCAUGHT_ERROR)
|
|
|
|
#define DUK_RET_ERROR (-DUK_ERR_ERROR)
|
|
|
|
#define DUK_RET_EVAL_ERROR (-DUK_ERR_EVAL_ERROR)
|
|
|
|
#define DUK_RET_RANGE_ERROR (-DUK_ERR_RANGE_ERROR)
|
|
|
|
#define DUK_RET_REFERENCE_ERROR (-DUK_ERR_REFERENCE_ERROR)
|
|
|
|
#define DUK_RET_SYNTAX_ERROR (-DUK_ERR_SYNTAX_ERROR)
|
|
|
|
#define DUK_RET_TYPE_ERROR (-DUK_ERR_TYPE_ERROR)
|
|
|
|
#define DUK_RET_URI_ERROR (-DUK_ERR_URI_ERROR)
|
|
|
|
|
|
|
|
/* Return codes for protected calls (duk_safe_call(), duk_pcall()). */
|
|
|
|
#define DUK_EXEC_SUCCESS 0
|
|
|
|
#define DUK_EXEC_ERROR 1
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<h2>Compilation flags for duk_compile()</h2>
|
|
|
|
<pre class="c-code">
|
|
|
|
#define DUK_COMPILE_EVAL (1 << 0) /* compile eval code (instead of program) */
|
|
|
|
#define DUK_COMPILE_FUNCTION (1 << 1) /* compile function code (instead of program) */
|
|
|
|
#define DUK_COMPILE_STRICT (1 << 2) /* use strict (outer) context for program, eval, or function */
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<h2>Enumeration flags for duk_enum()</h2>
|
|
|
|
<pre class="c-code">
|
|
|
|
/* Enumeration flags for duk_enum() */
|
|
|
|
#define DUK_ENUM_INCLUDE_NONENUMERABLE (1 << 0) /* enumerate non-numerable properties in addition to enumerable */
|
|
|
|
#define DUK_ENUM_INCLUDE_INTERNAL (1 << 1) /* enumerate internal properties (regardless of enumerability) */
|
|
|
|
#define DUK_ENUM_OWN_PROPERTIES_ONLY (1 << 2) /* don't walk prototype chain, only check own properties */
|
|
|
|
#define DUK_ENUM_ARRAY_INDICES_ONLY (1 << 3) /* only enumerate array indices */
|
|
|
|
#define DUK_ENUM_SORT_ARRAY_INDICES (1 << 4) /* sort array indices, use with DUK_ENUM_ARRAY_INDICES_ONLY */
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<h2>Coercion hints</h2>
|
|
|
|
<pre class="c-code">
|
|
|
|
/* Coercion hints */
|
|
|
|
#define DUK_HINT_NONE 0 /* prefer number, unless coercion input is a Date, in which case prefer string (E5 Section 8.12.8) */
|
|
|
|
#define DUK_HINT_STRING 1 /* prefer string */
|
|
|
|
#define DUK_HINT_NUMBER 2 /* prefer number */
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<h2>Misc defines</h2>
|
|
|
|
<pre class="c-code">
|
|
|
|
#define DUK_INVALID_INDEX INT_MIN
|
|
|
|
|
|
|
|
#define DUK_VARARGS (-1)
|
|
|
|
|
|
|
|
#define DUK_API_ENTRY_STACK 64
|
|
|
|
</pre>
|
|
|
|
|