2017-07-03 17:44:58 +00:00
|
|
|
/*
|
2019-01-06 08:23:03 +00:00
|
|
|
* Copyright (c) 2019 Calvin Rose
|
2017-07-03 17:44:58 +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.
|
|
|
|
*/
|
|
|
|
|
2019-01-09 16:47:29 +00:00
|
|
|
#include <string.h>
|
2019-01-24 05:15:58 +00:00
|
|
|
|
|
|
|
#ifndef JANET_AMALG
|
2019-02-19 01:13:35 +00:00
|
|
|
#include <janet.h>
|
2017-12-21 04:03:34 +00:00
|
|
|
#include "gc.h"
|
2018-01-06 16:09:15 +00:00
|
|
|
#include "util.h"
|
2018-06-12 18:24:45 +00:00
|
|
|
#include "state.h"
|
2019-01-24 05:15:58 +00:00
|
|
|
#endif
|
2017-11-01 21:53:43 +00:00
|
|
|
|
|
|
|
/* Begin building a string */
|
2018-09-06 02:18:42 +00:00
|
|
|
uint8_t *janet_string_begin(int32_t length) {
|
2019-02-21 16:22:29 +00:00
|
|
|
JanetStringHead *head = janet_gcalloc(JANET_MEMORY_STRING, sizeof(JanetStringHead) + length + 1);
|
|
|
|
head->length = length;
|
|
|
|
uint8_t *data = (uint8_t *)head->data;
|
|
|
|
data[length] = 0;
|
|
|
|
return data;
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Finish building a string */
|
2018-09-06 02:18:42 +00:00
|
|
|
const uint8_t *janet_string_end(uint8_t *str) {
|
|
|
|
janet_string_hash(str) = janet_string_calchash(str, janet_string_length(str));
|
2017-11-27 19:03:34 +00:00
|
|
|
return str;
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Load a buffer as a string */
|
2018-09-06 02:18:42 +00:00
|
|
|
const uint8_t *janet_string(const uint8_t *buf, int32_t len) {
|
2019-02-21 16:22:29 +00:00
|
|
|
JanetStringHead *head = janet_gcalloc(JANET_MEMORY_STRING, sizeof(JanetStringHead) + len + 1);
|
|
|
|
head->length = len;
|
|
|
|
head->hash = janet_string_calchash(buf, len);
|
|
|
|
uint8_t *data = (uint8_t *)head->data;
|
|
|
|
memcpy(data, buf, len);
|
|
|
|
data[len] = 0;
|
|
|
|
return data;
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
2017-11-27 19:03:34 +00:00
|
|
|
/* Compare two strings */
|
2018-09-06 02:18:42 +00:00
|
|
|
int janet_string_compare(const uint8_t *lhs, const uint8_t *rhs) {
|
|
|
|
int32_t xlen = janet_string_length(lhs);
|
|
|
|
int32_t ylen = janet_string_length(rhs);
|
2017-11-28 23:27:55 +00:00
|
|
|
int32_t len = xlen > ylen ? ylen : xlen;
|
2019-01-09 16:47:29 +00:00
|
|
|
int res = memcmp(lhs, rhs, len);
|
|
|
|
if (res) return res;
|
|
|
|
if (xlen == ylen) return 0;
|
|
|
|
return xlen < ylen ? -1 : 1;
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
2018-09-06 02:18:42 +00:00
|
|
|
/* Compare a janet string with a piece of memory */
|
|
|
|
int janet_string_equalconst(const uint8_t *lhs, const uint8_t *rhs, int32_t rlen, int32_t rhash) {
|
|
|
|
int32_t lhash = janet_string_hash(lhs);
|
|
|
|
int32_t llen = janet_string_length(lhs);
|
2017-11-27 19:03:34 +00:00
|
|
|
if (lhs == rhs)
|
|
|
|
return 1;
|
|
|
|
if (lhash != rhash || llen != rlen)
|
|
|
|
return 0;
|
2019-01-09 16:47:29 +00:00
|
|
|
return !memcmp(lhs, rhs, rlen);
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
2017-11-27 19:03:34 +00:00
|
|
|
/* Check if two strings are equal */
|
2018-09-06 02:18:42 +00:00
|
|
|
int janet_string_equal(const uint8_t *lhs, const uint8_t *rhs) {
|
|
|
|
return janet_string_equalconst(lhs, rhs,
|
2019-02-20 01:51:34 +00:00
|
|
|
janet_string_length(rhs), janet_string_hash(rhs));
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Load a c string */
|
2018-09-06 02:18:42 +00:00
|
|
|
const uint8_t *janet_cstring(const char *str) {
|
2019-01-14 05:09:27 +00:00
|
|
|
return janet_string((const uint8_t *)str, (int32_t)strlen(str));
|
2017-11-01 21:53:43 +00:00
|
|
|
}
|
2018-05-18 03:41:20 +00:00
|
|
|
|
2018-05-18 18:19:57 +00:00
|
|
|
/* Knuth Morris Pratt Algorithm */
|
|
|
|
|
|
|
|
struct kmp_state {
|
|
|
|
int32_t i;
|
|
|
|
int32_t j;
|
|
|
|
int32_t textlen;
|
|
|
|
int32_t patlen;
|
|
|
|
int32_t *lookup;
|
|
|
|
const uint8_t *text;
|
|
|
|
const uint8_t *pat;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void kmp_init(
|
2019-02-20 01:51:34 +00:00
|
|
|
struct kmp_state *s,
|
|
|
|
const uint8_t *text, int32_t textlen,
|
|
|
|
const uint8_t *pat, int32_t patlen) {
|
2018-05-18 18:19:57 +00:00
|
|
|
int32_t *lookup = calloc(patlen, sizeof(int32_t));
|
|
|
|
if (!lookup) {
|
2018-09-06 02:18:42 +00:00
|
|
|
JANET_OUT_OF_MEMORY;
|
2018-05-18 18:19:57 +00:00
|
|
|
}
|
|
|
|
s->lookup = lookup;
|
|
|
|
s->i = 0;
|
|
|
|
s->j = 0;
|
|
|
|
s->text = text;
|
|
|
|
s->pat = pat;
|
|
|
|
s->textlen = textlen;
|
|
|
|
s->patlen = patlen;
|
|
|
|
/* Init state machine */
|
|
|
|
{
|
|
|
|
int32_t i, j;
|
|
|
|
for (i = 1, j = 0; i < patlen; i++) {
|
|
|
|
while (j && pat[j] != pat[i]) j = lookup[j - 1];
|
|
|
|
if (pat[j] == pat[i]) j++;
|
|
|
|
lookup[i] = j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void kmp_deinit(struct kmp_state *state) {
|
|
|
|
free(state->lookup);
|
|
|
|
}
|
|
|
|
|
2018-09-30 00:01:57 +00:00
|
|
|
static void kmp_seti(struct kmp_state *state, int32_t i) {
|
|
|
|
state->i = i;
|
|
|
|
state->j = 0;
|
|
|
|
}
|
|
|
|
|
2018-05-18 18:19:57 +00:00
|
|
|
static int32_t kmp_next(struct kmp_state *state) {
|
|
|
|
int32_t i = state->i;
|
|
|
|
int32_t j = state->j;
|
|
|
|
int32_t textlen = state->textlen;
|
|
|
|
int32_t patlen = state->patlen;
|
|
|
|
const uint8_t *text = state->text;
|
|
|
|
const uint8_t *pat = state->pat;
|
|
|
|
int32_t *lookup = state->lookup;
|
|
|
|
while (i < textlen) {
|
|
|
|
if (text[i] == pat[j]) {
|
|
|
|
if (j == patlen - 1) {
|
|
|
|
state->i = i + 1;
|
|
|
|
state->j = lookup[j];
|
|
|
|
return i - j;
|
|
|
|
} else {
|
|
|
|
i++;
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (j > 0) {
|
|
|
|
j = lookup[j - 1];
|
|
|
|
} else {
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-05-18 03:41:20 +00:00
|
|
|
/* CFuns */
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static Janet cfun_string_slice(int32_t argc, Janet *argv) {
|
2019-01-06 01:09:03 +00:00
|
|
|
JanetRange range = janet_getslice(argc, argv);
|
|
|
|
JanetByteView view = janet_getbytes(argv, 0);
|
|
|
|
return janet_stringv(view.bytes + range.start, range.end - range.start);
|
2018-05-18 03:41:20 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static Janet cfun_string_repeat(int32_t argc, Janet *argv) {
|
2019-01-06 01:45:24 +00:00
|
|
|
janet_fixarity(argc, 2);
|
2019-01-06 01:09:03 +00:00
|
|
|
JanetByteView view = janet_getbytes(argv, 0);
|
|
|
|
int32_t rep = janet_getinteger(argv, 1);
|
|
|
|
if (rep < 0) janet_panic("expected non-negative number of repetitions");
|
|
|
|
if (rep == 0) return janet_cstringv("");
|
|
|
|
int64_t mulres = (int64_t) rep * view.len;
|
|
|
|
if (mulres > INT32_MAX) janet_panic("result string is too long");
|
|
|
|
uint8_t *newbuf = janet_string_begin((int32_t) mulres);
|
|
|
|
uint8_t *end = newbuf + mulres;
|
2019-02-22 17:10:27 +00:00
|
|
|
for (uint8_t *p = newbuf; p < end; p += view.len) {
|
2019-01-06 01:09:03 +00:00
|
|
|
memcpy(p, view.bytes, view.len);
|
2018-05-18 03:41:20 +00:00
|
|
|
}
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_string(janet_string_end(newbuf));
|
2018-05-18 03:41:20 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static Janet cfun_string_bytes(int32_t argc, Janet *argv) {
|
2019-01-06 01:45:24 +00:00
|
|
|
janet_fixarity(argc, 1);
|
2019-01-06 01:09:03 +00:00
|
|
|
JanetByteView view = janet_getbytes(argv, 0);
|
|
|
|
Janet *tup = janet_tuple_begin(view.len);
|
|
|
|
int32_t i;
|
|
|
|
for (i = 0; i < view.len; i++) {
|
|
|
|
tup[i] = janet_wrap_integer((int32_t) view.bytes[i]);
|
2018-05-18 03:41:20 +00:00
|
|
|
}
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_tuple(janet_tuple_end(tup));
|
2018-05-18 03:41:20 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static Janet cfun_string_frombytes(int32_t argc, Janet *argv) {
|
2018-05-18 03:41:20 +00:00
|
|
|
int32_t i;
|
2019-01-06 01:09:03 +00:00
|
|
|
uint8_t *buf = janet_string_begin(argc);
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
int32_t c = janet_getinteger(argv, i);
|
2018-05-18 03:41:20 +00:00
|
|
|
buf[i] = c & 0xFF;
|
|
|
|
}
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_string(janet_string_end(buf));
|
2018-05-18 03:41:20 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static Janet cfun_string_asciilower(int32_t argc, Janet *argv) {
|
2019-01-06 01:45:24 +00:00
|
|
|
janet_fixarity(argc, 1);
|
2019-01-06 01:09:03 +00:00
|
|
|
JanetByteView view = janet_getbytes(argv, 0);
|
|
|
|
uint8_t *buf = janet_string_begin(view.len);
|
|
|
|
for (int32_t i = 0; i < view.len; i++) {
|
|
|
|
uint8_t c = view.bytes[i];
|
2018-05-18 03:41:20 +00:00
|
|
|
if (c >= 65 && c <= 90) {
|
|
|
|
buf[i] = c + 32;
|
|
|
|
} else {
|
|
|
|
buf[i] = c;
|
|
|
|
}
|
|
|
|
}
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_string(janet_string_end(buf));
|
2018-05-18 03:41:20 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static Janet cfun_string_asciiupper(int32_t argc, Janet *argv) {
|
2019-01-06 01:45:24 +00:00
|
|
|
janet_fixarity(argc, 1);
|
2019-01-06 01:09:03 +00:00
|
|
|
JanetByteView view = janet_getbytes(argv, 0);
|
|
|
|
uint8_t *buf = janet_string_begin(view.len);
|
|
|
|
for (int32_t i = 0; i < view.len; i++) {
|
|
|
|
uint8_t c = view.bytes[i];
|
2018-05-18 03:41:20 +00:00
|
|
|
if (c >= 97 && c <= 122) {
|
|
|
|
buf[i] = c - 32;
|
|
|
|
} else {
|
|
|
|
buf[i] = c;
|
|
|
|
}
|
|
|
|
}
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_string(janet_string_end(buf));
|
2018-05-18 03:41:20 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static Janet cfun_string_reverse(int32_t argc, Janet *argv) {
|
2019-01-06 01:45:24 +00:00
|
|
|
janet_fixarity(argc, 1);
|
2019-01-06 01:09:03 +00:00
|
|
|
JanetByteView view = janet_getbytes(argv, 0);
|
|
|
|
uint8_t *buf = janet_string_begin(view.len);
|
|
|
|
int32_t i, j;
|
|
|
|
for (i = 0, j = view.len - 1; i < view.len; i++, j--) {
|
|
|
|
buf[i] = view.bytes[j];
|
2018-05-18 03:41:20 +00:00
|
|
|
}
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_string(janet_string_end(buf));
|
2018-05-18 03:41:20 +00:00
|
|
|
}
|
|
|
|
|
2019-01-06 01:09:03 +00:00
|
|
|
static void findsetup(int32_t argc, Janet *argv, struct kmp_state *s, int32_t extra) {
|
|
|
|
janet_arity(argc, 2, 3 + extra);
|
|
|
|
JanetByteView pat = janet_getbytes(argv, 0);
|
|
|
|
JanetByteView text = janet_getbytes(argv, 1);
|
|
|
|
int32_t start = 0;
|
|
|
|
if (argc >= 3) {
|
|
|
|
start = janet_getinteger(argv, 2);
|
|
|
|
if (start < 0) janet_panic("expected non-negative start index");
|
2018-05-18 18:19:57 +00:00
|
|
|
}
|
2019-01-06 01:09:03 +00:00
|
|
|
kmp_init(s, text.bytes, text.len, pat.bytes, pat.len);
|
2018-05-18 18:19:57 +00:00
|
|
|
s->i = start;
|
|
|
|
}
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static Janet cfun_string_find(int32_t argc, Janet *argv) {
|
2018-05-18 18:19:57 +00:00
|
|
|
int32_t result;
|
|
|
|
struct kmp_state state;
|
2019-01-06 01:09:03 +00:00
|
|
|
findsetup(argc, argv, &state, 0);
|
2018-05-18 18:19:57 +00:00
|
|
|
result = kmp_next(&state);
|
|
|
|
kmp_deinit(&state);
|
2019-01-06 01:09:03 +00:00
|
|
|
return result < 0
|
2019-02-20 01:51:34 +00:00
|
|
|
? janet_wrap_nil()
|
|
|
|
: janet_wrap_integer(result);
|
2018-05-18 18:19:57 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 07:51:56 +00:00
|
|
|
static Janet cfun_string_hasprefix(int32_t argc, Janet *argv) {
|
|
|
|
janet_fixarity(argc, 2);
|
2019-05-09 17:42:14 +00:00
|
|
|
JanetByteView prefix = janet_getbytes(argv, 0);
|
|
|
|
JanetByteView str = janet_getbytes(argv, 1);
|
|
|
|
return str.len < prefix.len
|
2019-05-04 14:11:36 +00:00
|
|
|
? janet_wrap_false()
|
2019-05-09 17:42:14 +00:00
|
|
|
: janet_wrap_boolean(memcmp(prefix.bytes, str.bytes, prefix.len) == 0);
|
2019-05-03 07:51:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static Janet cfun_string_hassuffix(int32_t argc, Janet *argv) {
|
|
|
|
janet_fixarity(argc, 2);
|
2019-05-09 17:42:14 +00:00
|
|
|
JanetByteView suffix = janet_getbytes(argv, 0);
|
|
|
|
JanetByteView str = janet_getbytes(argv, 1);
|
|
|
|
return str.len < suffix.len
|
2019-05-04 14:11:36 +00:00
|
|
|
? janet_wrap_false()
|
2019-05-09 17:42:14 +00:00
|
|
|
: janet_wrap_boolean(memcmp(suffix.bytes,
|
|
|
|
str.bytes + str.len - suffix.len,
|
|
|
|
suffix.len) == 0);
|
2019-05-03 07:51:56 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static Janet cfun_string_findall(int32_t argc, Janet *argv) {
|
2018-05-18 18:19:57 +00:00
|
|
|
int32_t result;
|
|
|
|
struct kmp_state state;
|
2019-01-06 01:09:03 +00:00
|
|
|
findsetup(argc, argv, &state, 0);
|
|
|
|
JanetArray *array = janet_array(0);
|
2018-05-18 18:19:57 +00:00
|
|
|
while ((result = kmp_next(&state)) >= 0) {
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_array_push(array, janet_wrap_integer(result));
|
2018-05-18 18:19:57 +00:00
|
|
|
}
|
|
|
|
kmp_deinit(&state);
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_array(array);
|
2018-05-18 18:19:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct replace_state {
|
|
|
|
struct kmp_state kmp;
|
|
|
|
const uint8_t *subst;
|
|
|
|
int32_t substlen;
|
|
|
|
};
|
|
|
|
|
2019-01-06 01:09:03 +00:00
|
|
|
static void replacesetup(int32_t argc, Janet *argv, struct replace_state *s) {
|
|
|
|
janet_arity(argc, 3, 4);
|
|
|
|
JanetByteView pat = janet_getbytes(argv, 0);
|
|
|
|
JanetByteView subst = janet_getbytes(argv, 1);
|
|
|
|
JanetByteView text = janet_getbytes(argv, 2);
|
|
|
|
int32_t start = 0;
|
|
|
|
if (argc == 4) {
|
|
|
|
start = janet_getinteger(argv, 3);
|
|
|
|
if (start < 0) janet_panic("expected non-negative start index");
|
2018-05-18 18:19:57 +00:00
|
|
|
}
|
2019-01-06 01:09:03 +00:00
|
|
|
kmp_init(&s->kmp, text.bytes, text.len, pat.bytes, pat.len);
|
2018-05-18 18:19:57 +00:00
|
|
|
s->kmp.i = start;
|
2019-01-06 01:09:03 +00:00
|
|
|
s->subst = subst.bytes;
|
|
|
|
s->substlen = subst.len;
|
2018-05-18 18:19:57 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static Janet cfun_string_replace(int32_t argc, Janet *argv) {
|
2018-05-18 18:19:57 +00:00
|
|
|
int32_t result;
|
|
|
|
struct replace_state s;
|
|
|
|
uint8_t *buf;
|
2019-01-06 01:09:03 +00:00
|
|
|
replacesetup(argc, argv, &s);
|
2018-05-18 18:19:57 +00:00
|
|
|
result = kmp_next(&s.kmp);
|
|
|
|
if (result < 0) {
|
|
|
|
kmp_deinit(&s.kmp);
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_stringv(s.kmp.text, s.kmp.textlen);
|
2018-05-18 18:19:57 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
buf = janet_string_begin(s.kmp.textlen - s.kmp.patlen + s.substlen);
|
2018-05-18 20:24:09 +00:00
|
|
|
memcpy(buf, s.kmp.text, result);
|
2018-05-18 18:19:57 +00:00
|
|
|
memcpy(buf + result, s.subst, s.substlen);
|
|
|
|
memcpy(buf + result + s.substlen,
|
2019-02-20 01:51:34 +00:00
|
|
|
s.kmp.text + result + s.kmp.patlen,
|
|
|
|
s.kmp.textlen - result - s.kmp.patlen);
|
2018-05-18 18:19:57 +00:00
|
|
|
kmp_deinit(&s.kmp);
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_string(janet_string_end(buf));
|
2018-05-18 18:19:57 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static Janet cfun_string_replaceall(int32_t argc, Janet *argv) {
|
2018-05-18 18:19:57 +00:00
|
|
|
int32_t result;
|
|
|
|
struct replace_state s;
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetBuffer b;
|
2018-05-18 18:19:57 +00:00
|
|
|
int32_t lastindex = 0;
|
2019-01-06 01:09:03 +00:00
|
|
|
replacesetup(argc, argv, &s);
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_buffer_init(&b, s.kmp.textlen);
|
2018-05-18 18:19:57 +00:00
|
|
|
while ((result = kmp_next(&s.kmp)) >= 0) {
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_buffer_push_bytes(&b, s.kmp.text + lastindex, result - lastindex);
|
|
|
|
janet_buffer_push_bytes(&b, s.subst, s.substlen);
|
2018-05-18 20:24:09 +00:00
|
|
|
lastindex = result + s.kmp.patlen;
|
2018-09-30 00:01:57 +00:00
|
|
|
kmp_seti(&s.kmp, lastindex);
|
2018-05-18 18:19:57 +00:00
|
|
|
}
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_buffer_push_bytes(&b, s.kmp.text + lastindex, s.kmp.textlen - lastindex);
|
2019-01-06 01:09:03 +00:00
|
|
|
const uint8_t *ret = janet_string(b.data, b.count);
|
2018-09-06 02:18:42 +00:00
|
|
|
janet_buffer_deinit(&b);
|
2018-05-18 18:19:57 +00:00
|
|
|
kmp_deinit(&s.kmp);
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_string(ret);
|
2018-05-18 18:19:57 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static Janet cfun_string_split(int32_t argc, Janet *argv) {
|
2018-05-18 20:24:09 +00:00
|
|
|
int32_t result;
|
2018-09-06 02:18:42 +00:00
|
|
|
JanetArray *array;
|
2018-05-18 20:24:09 +00:00
|
|
|
struct kmp_state state;
|
|
|
|
int32_t limit = -1, lastindex = 0;
|
2019-01-06 01:09:03 +00:00
|
|
|
if (argc == 4) {
|
|
|
|
limit = janet_getinteger(argv, 3);
|
2018-05-18 20:24:09 +00:00
|
|
|
}
|
2019-01-06 01:09:03 +00:00
|
|
|
findsetup(argc, argv, &state, 1);
|
2018-09-06 02:18:42 +00:00
|
|
|
array = janet_array(0);
|
2018-05-18 20:24:09 +00:00
|
|
|
while ((result = kmp_next(&state)) >= 0 && limit--) {
|
2018-09-06 02:18:42 +00:00
|
|
|
const uint8_t *slice = janet_string(state.text + lastindex, result - lastindex);
|
|
|
|
janet_array_push(array, janet_wrap_string(slice));
|
2018-05-18 20:24:09 +00:00
|
|
|
lastindex = result + state.patlen;
|
|
|
|
}
|
|
|
|
{
|
2018-09-06 02:18:42 +00:00
|
|
|
const uint8_t *slice = janet_string(state.text + lastindex, state.textlen - lastindex);
|
|
|
|
janet_array_push(array, janet_wrap_string(slice));
|
2018-05-18 20:24:09 +00:00
|
|
|
}
|
|
|
|
kmp_deinit(&state);
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_array(array);
|
2018-05-18 20:24:09 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static Janet cfun_string_checkset(int32_t argc, Janet *argv) {
|
2018-05-20 01:16:00 +00:00
|
|
|
uint32_t bitset[8] = {0, 0, 0, 0, 0, 0, 0, 0};
|
2019-01-06 01:09:03 +00:00
|
|
|
janet_arity(argc, 2, 3);
|
|
|
|
JanetByteView set = janet_getbytes(argv, 0);
|
|
|
|
JanetByteView str = janet_getbytes(argv, 1);
|
2018-05-20 01:16:00 +00:00
|
|
|
/* Populate set */
|
2019-01-06 01:09:03 +00:00
|
|
|
for (int32_t i = 0; i < set.len; i++) {
|
|
|
|
int index = set.bytes[i] >> 5;
|
|
|
|
uint32_t mask = 1 << (set.bytes[i] & 7);
|
2018-05-20 01:16:00 +00:00
|
|
|
bitset[index] |= mask;
|
|
|
|
}
|
2019-01-06 01:09:03 +00:00
|
|
|
if (argc == 3) {
|
|
|
|
if (janet_getboolean(argv, 2)) {
|
|
|
|
for (int i = 0; i < 8; i++)
|
2018-05-20 01:16:00 +00:00
|
|
|
bitset[i] = ~bitset[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* Check set */
|
2019-01-06 01:09:03 +00:00
|
|
|
for (int32_t i = 0; i < str.len; i++) {
|
|
|
|
int index = str.bytes[i] >> 5;
|
|
|
|
uint32_t mask = 1 << (str.bytes[i] & 7);
|
2018-05-20 01:16:00 +00:00
|
|
|
if (!(bitset[index] & mask)) {
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_false();
|
2018-05-20 01:16:00 +00:00
|
|
|
}
|
|
|
|
}
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_true();
|
2018-05-20 01:16:00 +00:00
|
|
|
}
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static Janet cfun_string_join(int32_t argc, Janet *argv) {
|
2019-01-06 01:09:03 +00:00
|
|
|
janet_arity(argc, 1, 2);
|
|
|
|
JanetView parts = janet_getindexed(argv, 0);
|
|
|
|
JanetByteView joiner;
|
|
|
|
if (argc == 2) {
|
|
|
|
joiner = janet_getbytes(argv, 1);
|
2018-05-24 02:08:36 +00:00
|
|
|
} else {
|
2019-01-06 01:09:03 +00:00
|
|
|
joiner.bytes = NULL;
|
|
|
|
joiner.len = 0;
|
2018-05-24 02:08:36 +00:00
|
|
|
}
|
|
|
|
/* Check args */
|
2019-01-06 01:09:03 +00:00
|
|
|
int32_t i;
|
|
|
|
int64_t finallen = 0;
|
|
|
|
for (i = 0; i < parts.len; i++) {
|
2018-05-24 02:08:36 +00:00
|
|
|
const uint8_t *chunk;
|
|
|
|
int32_t chunklen = 0;
|
2019-01-06 01:09:03 +00:00
|
|
|
if (!janet_bytes_view(parts.items[i], &chunk, &chunklen)) {
|
|
|
|
janet_panicf("item %d of parts is not a byte sequence, got %v", i, parts.items[i]);
|
2018-05-24 02:08:36 +00:00
|
|
|
}
|
2019-01-06 01:09:03 +00:00
|
|
|
if (i) finallen += joiner.len;
|
2018-05-24 02:08:36 +00:00
|
|
|
finallen += chunklen;
|
2019-01-06 01:09:03 +00:00
|
|
|
if (finallen > INT32_MAX)
|
|
|
|
janet_panic("result string too long");
|
2018-05-24 02:08:36 +00:00
|
|
|
}
|
2019-01-06 01:09:03 +00:00
|
|
|
uint8_t *buf, *out;
|
2019-01-06 02:58:39 +00:00
|
|
|
out = buf = janet_string_begin((int32_t) finallen);
|
2019-01-06 01:09:03 +00:00
|
|
|
for (i = 0; i < parts.len; i++) {
|
2018-05-24 02:08:36 +00:00
|
|
|
const uint8_t *chunk = NULL;
|
|
|
|
int32_t chunklen = 0;
|
|
|
|
if (i) {
|
2019-01-06 01:09:03 +00:00
|
|
|
memcpy(out, joiner.bytes, joiner.len);
|
|
|
|
out += joiner.len;
|
2018-05-24 02:08:36 +00:00
|
|
|
}
|
2019-01-06 01:09:03 +00:00
|
|
|
janet_bytes_view(parts.items[i], &chunk, &chunklen);
|
2018-05-24 02:08:36 +00:00
|
|
|
memcpy(out, chunk, chunklen);
|
|
|
|
out += chunklen;
|
|
|
|
}
|
2019-01-06 01:09:03 +00:00
|
|
|
return janet_wrap_string(janet_string_end(buf));
|
2018-09-12 15:44:34 +00:00
|
|
|
}
|
|
|
|
|
2019-02-16 18:40:51 +00:00
|
|
|
static Janet cfun_string_format(int32_t argc, Janet *argv) {
|
2019-02-16 18:59:38 +00:00
|
|
|
janet_arity(argc, 1, -1);
|
|
|
|
JanetBuffer *buffer = janet_buffer(0);
|
|
|
|
const char *strfrmt = (const char *) janet_getstring(argv, 0);
|
|
|
|
janet_buffer_format(buffer, strfrmt, 0, argc, argv);
|
|
|
|
return janet_stringv(buffer->data, buffer->count);
|
2019-02-16 02:29:04 +00:00
|
|
|
}
|
|
|
|
|
2019-05-10 20:09:49 +00:00
|
|
|
static int trim_help_checkset(JanetByteView set, uint8_t x) {
|
|
|
|
for (int32_t j = 0; j < set.len; j++)
|
|
|
|
if (set.bytes[j] == x)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int32_t trim_help_leftedge(JanetByteView str, JanetByteView set) {
|
|
|
|
for (int32_t i = 0; i < str.len; i++)
|
|
|
|
if (!trim_help_checkset(set, str.bytes[i]))
|
|
|
|
return i;
|
|
|
|
return str.len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int32_t trim_help_rightedge(JanetByteView str, JanetByteView set) {
|
|
|
|
for (int32_t i = str.len - 1; i >= 0; i--)
|
|
|
|
if (!trim_help_checkset(set, str.bytes[i]))
|
|
|
|
return i + 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void trim_help_args(int32_t argc, Janet *argv, JanetByteView *str, JanetByteView *set) {
|
|
|
|
janet_arity(argc, 1, 2);
|
|
|
|
*str = janet_getbytes(argv, 0);
|
|
|
|
if (argc >= 2) {
|
|
|
|
*set = janet_getbytes(argv, 1);
|
|
|
|
} else {
|
|
|
|
set->bytes = (const uint8_t *)(" \t\r\n\v\f");
|
|
|
|
set->len = 6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static Janet cfun_string_trim(int32_t argc, Janet *argv) {
|
|
|
|
JanetByteView str, set;
|
|
|
|
trim_help_args(argc, argv, &str, &set);
|
|
|
|
int32_t left_edge = trim_help_leftedge(str, set);
|
|
|
|
int32_t right_edge = trim_help_rightedge(str, set);
|
|
|
|
return janet_stringv(str.bytes + left_edge, right_edge - left_edge);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Janet cfun_string_triml(int32_t argc, Janet *argv) {
|
|
|
|
JanetByteView str, set;
|
|
|
|
trim_help_args(argc, argv, &str, &set);
|
|
|
|
int32_t left_edge = trim_help_leftedge(str, set);
|
|
|
|
return janet_stringv(str.bytes + left_edge, str.len - left_edge);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Janet cfun_string_trimr(int32_t argc, Janet *argv) {
|
|
|
|
JanetByteView str, set;
|
|
|
|
trim_help_args(argc, argv, &str, &set);
|
|
|
|
int32_t right_edge = trim_help_rightedge(str, set);
|
|
|
|
return janet_stringv(str.bytes, right_edge);
|
|
|
|
}
|
|
|
|
|
2019-01-24 05:15:58 +00:00
|
|
|
static const JanetReg string_cfuns[] = {
|
2019-01-06 06:49:56 +00:00
|
|
|
{
|
2019-01-24 05:15:58 +00:00
|
|
|
"string/slice", cfun_string_slice,
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("(string/slice bytes [,start=0 [,end=(length str)]])\n\n"
|
2019-02-20 01:51:34 +00:00
|
|
|
"Returns a substring from a byte sequence. The substring is from "
|
|
|
|
"index start inclusive to index end exclusive. All indexing "
|
|
|
|
"is from 0. 'start' and 'end' can also be negative to indicate indexing "
|
|
|
|
"from the end of the string.")
|
2018-11-16 21:24:10 +00:00
|
|
|
},
|
2019-01-06 06:49:56 +00:00
|
|
|
{
|
2019-01-24 05:15:58 +00:00
|
|
|
"string/repeat", cfun_string_repeat,
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("(string/repeat bytes n)\n\n"
|
2019-02-20 01:51:34 +00:00
|
|
|
"Returns a string that is n copies of bytes concatenated.")
|
2018-11-16 21:24:10 +00:00
|
|
|
},
|
2019-01-06 06:49:56 +00:00
|
|
|
{
|
2019-01-24 05:15:58 +00:00
|
|
|
"string/bytes", cfun_string_bytes,
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("(string/bytes str)\n\n"
|
2019-02-20 01:51:34 +00:00
|
|
|
"Returns an array of integers that are the byte values of the string.")
|
2018-11-16 21:24:10 +00:00
|
|
|
},
|
2019-01-06 06:49:56 +00:00
|
|
|
{
|
2019-01-24 05:15:58 +00:00
|
|
|
"string/from-bytes", cfun_string_frombytes,
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("(string/from-bytes byte-array)\n\n"
|
2019-02-20 01:51:34 +00:00
|
|
|
"Creates a string from an array of integers with byte values. All integers "
|
|
|
|
"will be coerced to the range of 1 byte 0-255.")
|
2018-11-16 21:24:10 +00:00
|
|
|
},
|
2019-01-06 06:49:56 +00:00
|
|
|
{
|
2019-01-24 05:15:58 +00:00
|
|
|
"string/ascii-lower", cfun_string_asciilower,
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("(string/ascii-lower str)\n\n"
|
2019-02-20 01:51:34 +00:00
|
|
|
"Returns a new string where all bytes are replaced with the "
|
|
|
|
"lowercase version of themselves in ASCII. Does only a very simple "
|
|
|
|
"case check, meaning no unicode support.")
|
2018-11-16 21:24:10 +00:00
|
|
|
},
|
2019-01-06 06:49:56 +00:00
|
|
|
{
|
2019-01-24 05:15:58 +00:00
|
|
|
"string/ascii-upper", cfun_string_asciiupper,
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("(string/ascii-upper str)\n\n"
|
2019-02-20 01:51:34 +00:00
|
|
|
"Returns a new string where all bytes are replaced with the "
|
|
|
|
"uppercase version of themselves in ASCII. Does only a very simple "
|
|
|
|
"case check, meaning no unicode support.")
|
2018-11-16 21:24:10 +00:00
|
|
|
},
|
2019-01-06 06:49:56 +00:00
|
|
|
{
|
2019-01-24 05:15:58 +00:00
|
|
|
"string/reverse", cfun_string_reverse,
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("(string/reverse str)\n\n"
|
2019-02-20 01:51:34 +00:00
|
|
|
"Returns a string that is the reversed version of str.")
|
2018-11-16 21:24:10 +00:00
|
|
|
},
|
2019-01-06 06:49:56 +00:00
|
|
|
{
|
2019-01-24 05:15:58 +00:00
|
|
|
"string/find", cfun_string_find,
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("(string/find patt str)\n\n"
|
2019-02-20 01:51:34 +00:00
|
|
|
"Searches for the first instance of pattern patt in string "
|
|
|
|
"str. Returns the index of the first character in patt if found, "
|
|
|
|
"otherwise returns nil.")
|
2018-11-16 21:24:10 +00:00
|
|
|
},
|
2019-01-06 06:49:56 +00:00
|
|
|
{
|
2019-01-24 05:15:58 +00:00
|
|
|
"string/find-all", cfun_string_findall,
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("(string/find patt str)\n\n"
|
2019-02-20 01:51:34 +00:00
|
|
|
"Searches for all instances of pattern patt in string "
|
|
|
|
"str. Returns an array of all indices of found patterns. Overlapping "
|
|
|
|
"instances of the pattern are not counted, meaning a byte in string "
|
|
|
|
"will only contribute to finding at most on occurrence of pattern. If no "
|
|
|
|
"occurrences are found, will return an empty array.")
|
2018-11-16 21:24:10 +00:00
|
|
|
},
|
2019-05-03 07:51:56 +00:00
|
|
|
{
|
|
|
|
"string/has-prefix?", cfun_string_hasprefix,
|
|
|
|
JDOC("(string/has-prefix? pfx str)\n\n"
|
|
|
|
"Tests whether str starts with pfx.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"string/has-suffix?", cfun_string_hassuffix,
|
|
|
|
JDOC("(string/has-suffix? sfx str)\n\n"
|
|
|
|
"Tests whether str ends with sfx.")
|
|
|
|
},
|
2019-01-06 06:49:56 +00:00
|
|
|
{
|
2019-01-24 05:15:58 +00:00
|
|
|
"string/replace", cfun_string_replace,
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("(string/replace patt subst str)\n\n"
|
2019-02-20 01:51:34 +00:00
|
|
|
"Replace the first occurrence of patt with subst in the string str. "
|
|
|
|
"Will return the new string if patt is found, otherwise returns str.")
|
2018-11-16 21:24:10 +00:00
|
|
|
},
|
2019-01-06 06:49:56 +00:00
|
|
|
{
|
2019-01-24 05:15:58 +00:00
|
|
|
"string/replace-all", cfun_string_replaceall,
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("(string/replace-all patt subst str)\n\n"
|
2019-02-20 01:51:34 +00:00
|
|
|
"Replace all instances of patt with subst in the string str. "
|
|
|
|
"Will return the new string if patt is found, otherwise returns str.")
|
2018-11-16 21:24:10 +00:00
|
|
|
},
|
2019-01-06 06:49:56 +00:00
|
|
|
{
|
2019-01-24 05:15:58 +00:00
|
|
|
"string/split", cfun_string_split,
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("(string/split delim str)\n\n"
|
2019-02-20 01:51:34 +00:00
|
|
|
"Splits a string str with delimiter delim and returns an array of "
|
|
|
|
"substrings. The substrings will not contain the delimiter delim. If delim "
|
|
|
|
"is not found, the returned array will have one element.")
|
2018-11-16 21:24:10 +00:00
|
|
|
},
|
2019-01-06 06:49:56 +00:00
|
|
|
{
|
2019-01-24 05:15:58 +00:00
|
|
|
"string/check-set", cfun_string_checkset,
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("(string/check-set set str)\n\n"
|
2019-02-20 01:51:34 +00:00
|
|
|
"Checks if any of the bytes in the string set appear in the string str. "
|
|
|
|
"Returns true if some bytes in set do appear in str, false if no bytes do.")
|
2018-11-16 21:24:10 +00:00
|
|
|
},
|
2019-01-06 06:49:56 +00:00
|
|
|
{
|
2019-01-24 05:15:58 +00:00
|
|
|
"string/join", cfun_string_join,
|
2019-01-06 06:49:56 +00:00
|
|
|
JDOC("(string/join parts [,sep])\n\n"
|
2019-02-20 01:51:34 +00:00
|
|
|
"Joins an array of strings into one string, optionally separated by "
|
|
|
|
"a separator string sep.")
|
2018-11-16 21:24:10 +00:00
|
|
|
},
|
2019-02-20 01:51:34 +00:00
|
|
|
{
|
|
|
|
"string/format", cfun_string_format,
|
2019-02-16 20:12:34 +00:00
|
|
|
JDOC("(string/format format & values)\n\n"
|
2019-02-20 01:51:34 +00:00
|
|
|
"Similar to snprintf, but specialized for operating with janet. Returns "
|
|
|
|
"a new string.")
|
2019-02-16 02:29:04 +00:00
|
|
|
},
|
2019-05-10 20:09:49 +00:00
|
|
|
{
|
|
|
|
"string/trim", cfun_string_trim,
|
|
|
|
JDOC("(string/trim str [,set])\n\n"
|
|
|
|
"Trim leading and trailing whitespace from a byte sequence. If the argument "
|
|
|
|
"set is provided, consider only characters in set to be whitespace.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"string/triml", cfun_string_triml,
|
|
|
|
JDOC("(string/triml str [,set])\n\n"
|
|
|
|
"Trim leading whitespace from a byte sequence. If the argument "
|
|
|
|
"set is provided, consider only characters in set to be whitespace.")
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"string/trimr", cfun_string_trimr,
|
|
|
|
JDOC("(string/trimr str [,set])\n\n"
|
|
|
|
"Trim trailing whitespace from a byte sequence. If the argument "
|
|
|
|
"set is provided, consider only characters in set to be whitespace.")
|
|
|
|
},
|
2018-11-15 20:45:41 +00:00
|
|
|
{NULL, NULL, NULL}
|
2018-05-18 03:41:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Module entry point */
|
2019-01-06 01:09:03 +00:00
|
|
|
void janet_lib_string(JanetTable *env) {
|
2019-02-08 05:44:30 +00:00
|
|
|
janet_core_cfuns(env, NULL, string_cfuns);
|
2018-05-18 03:41:20 +00:00
|
|
|
}
|