2017-04-18 02:40:39 +00:00
|
|
|
/*
|
2021-05-31 18:46:02 +00:00
|
|
|
* Copyright (c) 2021 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>
|
2017-11-27 19:03:34 +00:00
|
|
|
#include "symcache.h"
|
2017-12-21 04:03:34 +00:00
|
|
|
#include "gc.h"
|
2018-01-06 16:09:15 +00:00
|
|
|
#include "util.h"
|
2019-01-24 05:15:58 +00:00
|
|
|
#endif
|
2017-04-15 20:05:59 +00:00
|
|
|
|
2017-11-01 21:53:43 +00:00
|
|
|
/* Create a new empty tuple of the given size. This will return memory
|
2018-09-06 02:18:42 +00:00
|
|
|
* which should be filled with Janets. The memory will not be collected until
|
|
|
|
* janet_tuple_end is called. */
|
|
|
|
Janet *janet_tuple_begin(int32_t length) {
|
2020-01-03 04:02:57 +00:00
|
|
|
size_t size = sizeof(JanetTupleHead) + ((size_t) length * sizeof(Janet));
|
2019-02-21 16:22:29 +00:00
|
|
|
JanetTupleHead *head = janet_gcalloc(JANET_MEMORY_TUPLE, size);
|
2019-09-22 22:18:28 +00:00
|
|
|
head->sm_line = -1;
|
|
|
|
head->sm_column = -1;
|
2019-02-21 16:22:29 +00:00
|
|
|
head->length = length;
|
|
|
|
return (Janet *)(head->data);
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
2017-04-15 20:05:59 +00:00
|
|
|
|
2017-11-01 21:53:43 +00:00
|
|
|
/* Finish building a tuple */
|
2018-09-06 02:18:42 +00:00
|
|
|
const Janet *janet_tuple_end(Janet *tuple) {
|
|
|
|
janet_tuple_hash(tuple) = janet_array_calchash(tuple, janet_tuple_length(tuple));
|
|
|
|
return (const Janet *)tuple;
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
2017-04-15 20:05:59 +00:00
|
|
|
|
2017-11-06 03:05:47 +00:00
|
|
|
/* Build a tuple with n values */
|
2018-09-06 02:18:42 +00:00
|
|
|
const Janet *janet_tuple_n(const Janet *values, int32_t n) {
|
|
|
|
Janet *t = janet_tuple_begin(n);
|
2020-01-29 05:38:52 +00:00
|
|
|
safe_memcpy(t, values, sizeof(Janet) * n);
|
2018-09-06 02:18:42 +00:00
|
|
|
return janet_tuple_end(t);
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
2017-11-27 19:03:34 +00:00
|
|
|
|
2018-01-27 20:15:09 +00:00
|
|
|
/* C Functions */
|
|
|
|
|
2021-07-26 02:33:46 +00:00
|
|
|
JANET_CORE_FN(cfun_tuple_brackets,
|
|
|
|
"(tuple/brackets & xs)",
|
|
|
|
"Creates a new bracketed tuple containing the elements xs.") {
|
2019-02-11 23:37:59 +00:00
|
|
|
const Janet *tup = janet_tuple_n(argv, argc);
|
|
|
|
janet_tuple_flag(tup) |= JANET_TUPLE_FLAG_BRACKETCTOR;
|
|
|
|
return janet_wrap_tuple(tup);
|
|
|
|
}
|
|
|
|
|
2021-07-26 02:33:46 +00:00
|
|
|
JANET_CORE_FN(cfun_tuple_slice,
|
|
|
|
"(tuple/slice arrtup [,start=0 [,end=(length arrtup)]])",
|
|
|
|
"Take a sub sequence of an array or tuple from index start "
|
|
|
|
"inclusive to index end exclusive. If start or end are not provided, "
|
|
|
|
"they default to 0 and the length of arrtup respectively. "
|
|
|
|
"'start' and 'end' can also be negative to indicate indexing "
|
|
|
|
"from the end of the input. Note that index -1 is synonymous with "
|
|
|
|
"index '(length arrtup)' to allow a full negative slice range. "
|
|
|
|
"Returns the new tuple.") {
|
2019-01-06 01:09:03 +00:00
|
|
|
JanetView view = janet_getindexed(argv, 0);
|
2019-11-05 15:41:30 +00:00
|
|
|
JanetRange range = janet_getslice(argc, argv);
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_tuple(janet_tuple_n(view.items + range.start, range.end - range.start));
|
2018-01-27 20:15:09 +00:00
|
|
|
}
|
|
|
|
|
2021-07-26 02:33:46 +00:00
|
|
|
JANET_CORE_FN(cfun_tuple_type,
|
|
|
|
"(tuple/type tup)",
|
|
|
|
"Checks how the tuple was constructed. Will return the keyword "
|
|
|
|
":brackets if the tuple was parsed with brackets, and :parens "
|
|
|
|
"otherwise. The two types of tuples will behave the same most of "
|
|
|
|
"the time, but will print differently and be treated differently by "
|
|
|
|
"the compiler.") {
|
2019-02-09 17:21:11 +00:00
|
|
|
janet_fixarity(argc, 1);
|
|
|
|
const Janet *tup = janet_gettuple(argv, 0);
|
|
|
|
if (janet_tuple_flag(tup) & JANET_TUPLE_FLAG_BRACKETCTOR) {
|
|
|
|
return janet_ckeywordv("brackets");
|
|
|
|
} else {
|
|
|
|
return janet_ckeywordv("parens");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-26 02:33:46 +00:00
|
|
|
JANET_CORE_FN(cfun_tuple_sourcemap,
|
|
|
|
"(tuple/sourcemap tup)",
|
|
|
|
"Returns the sourcemap metadata attached to a tuple, "
|
|
|
|
" which is another tuple (line, column).") {
|
2019-05-20 08:02:38 +00:00
|
|
|
janet_fixarity(argc, 1);
|
|
|
|
const Janet *tup = janet_gettuple(argv, 0);
|
|
|
|
Janet contents[2];
|
2019-09-22 22:18:28 +00:00
|
|
|
contents[0] = janet_wrap_integer(janet_tuple_head(tup)->sm_line);
|
|
|
|
contents[1] = janet_wrap_integer(janet_tuple_head(tup)->sm_column);
|
2019-05-20 08:02:38 +00:00
|
|
|
return janet_wrap_tuple(janet_tuple_n(contents, 2));
|
|
|
|
}
|
|
|
|
|
2021-07-26 02:33:46 +00:00
|
|
|
JANET_CORE_FN(cfun_tuple_setmap,
|
|
|
|
"(tuple/setmap tup line column)",
|
|
|
|
"Set the sourcemap metadata on a tuple. line and column indicate "
|
|
|
|
"should be integers.") {
|
2019-05-20 08:02:38 +00:00
|
|
|
janet_fixarity(argc, 3);
|
|
|
|
const Janet *tup = janet_gettuple(argv, 0);
|
2019-09-22 22:18:28 +00:00
|
|
|
janet_tuple_head(tup)->sm_line = janet_getinteger(argv, 1);
|
|
|
|
janet_tuple_head(tup)->sm_column = janet_getinteger(argv, 2);
|
2019-05-20 08:02:38 +00:00
|
|
|
return argv[0];
|
|
|
|
}
|
|
|
|
|
2018-01-27 20:15:09 +00:00
|
|
|
/* Load the tuple module */
|
2019-01-06 01:09:03 +00:00
|
|
|
void janet_lib_tuple(JanetTable *env) {
|
2021-07-26 02:33:46 +00:00
|
|
|
JanetRegExt tuple_cfuns[] = {
|
|
|
|
JANET_CORE_REG("tuple/brackets", cfun_tuple_brackets),
|
|
|
|
JANET_CORE_REG("tuple/slice", cfun_tuple_slice),
|
|
|
|
JANET_CORE_REG("tuple/type", cfun_tuple_type),
|
|
|
|
JANET_CORE_REG("tuple/sourcemap", cfun_tuple_sourcemap),
|
|
|
|
JANET_CORE_REG("tuple/setmap", cfun_tuple_setmap),
|
|
|
|
JANET_REG_END
|
|
|
|
};
|
|
|
|
janet_core_cfuns_ext(env, NULL, tuple_cfuns);
|
2018-01-27 20:15:09 +00:00
|
|
|
}
|