Skip to content

Commit cbec8f5

Browse files
committed
Remove regex FFI
1 parent 05e515b commit cbec8f5

File tree

2 files changed

+9
-101
lines changed

2 files changed

+9
-101
lines changed

src/gleam_stdlib.erl

+9-52
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,16 @@
55
decode_float/1, decode_list/1, decode_option/2, decode_field/2, parse_int/1,
66
parse_float/1, less_than/2, string_pop_grapheme/1, string_pop_codeunit/1,
77
string_starts_with/2, wrap_list/1, string_ends_with/2, string_pad/4,
8-
decode_map/1, uri_parse/1,
9-
decode_result/1, bit_array_slice/3, decode_bit_array/1, compile_regex/2,
10-
regex_scan/2, percent_encode/1, percent_decode/1, regex_check/2,
11-
regex_split/2, base_decode64/1, parse_query/1, bit_array_concat/1,
12-
bit_array_base64_encode/2, size_of_tuple/1, decode_tuple/1, decode_tuple2/1,
13-
decode_tuple3/1, decode_tuple4/1, decode_tuple5/1, decode_tuple6/1,
14-
tuple_get/2, classify_dynamic/1, print/1, println/1, print_error/1,
15-
println_error/1, inspect/1, float_to_string/1, int_from_base_string/2,
8+
decode_map/1, uri_parse/1, decode_result/1, bit_array_slice/3,
9+
decode_bit_array/1, percent_encode/1, percent_decode/1, base_decode64/1,
10+
parse_query/1, bit_array_concat/1, bit_array_base64_encode/2,
11+
size_of_tuple/1, decode_tuple/1, decode_tuple2/1, decode_tuple3/1,
12+
decode_tuple4/1, decode_tuple5/1, decode_tuple6/1, tuple_get/2,
13+
classify_dynamic/1, print/1, println/1, print_error/1, println_error/1,
14+
inspect/1, float_to_string/1, int_from_base_string/2,
1615
utf_codepoint_list_to_string/1, contains_string/2, crop_string/2,
17-
base16_encode/1, base16_decode/1, string_replace/3, regex_replace/3,
18-
slice/3, bit_array_to_int_and_size/1, bit_array_pad_to_bytes/1
16+
base16_encode/1, base16_decode/1, string_replace/3, slice/3,
17+
bit_array_to_int_and_size/1, bit_array_pad_to_bytes/1
1918
]).
2019

2120
%% Taken from OTP's uri_string module
@@ -232,48 +231,6 @@ bit_array_slice(Bin, Pos, Len) ->
232231
catch error:badarg -> {error, nil}
233232
end.
234233

235-
compile_regex(String, Options) ->
236-
{options, Caseless, Multiline} = Options,
237-
OptionsList = [
238-
unicode,
239-
ucp,
240-
Caseless andalso caseless,
241-
Multiline andalso multiline
242-
],
243-
FilteredOptions = [Option || Option <- OptionsList, Option /= false],
244-
case re:compile(String, FilteredOptions) of
245-
{ok, MP} -> {ok, MP};
246-
{error, {Str, Pos}} ->
247-
{error, {compile_error, unicode:characters_to_binary(Str), Pos}}
248-
end.
249-
250-
regex_check(Regex, String) ->
251-
re:run(String, Regex) /= nomatch.
252-
253-
regex_split(Regex, String) ->
254-
re:split(String, Regex).
255-
256-
regex_submatches(_, {-1, 0}) -> none;
257-
regex_submatches(String, {Start, Length}) ->
258-
BinarySlice = binary:part(String, {Start, Length}),
259-
case string:is_empty(binary_to_list(BinarySlice)) of
260-
true -> none;
261-
false -> {some, BinarySlice}
262-
end.
263-
264-
regex_matches(String, [{Start, Length} | Submatches]) ->
265-
Submatches1 = lists:map(fun(X) -> regex_submatches(String, X) end, Submatches),
266-
{match, binary:part(String, Start, Length), Submatches1}.
267-
268-
regex_scan(Regex, String) ->
269-
case re:run(String, Regex, [global]) of
270-
{match, Captured} -> lists:map(fun(X) -> regex_matches(String, X) end, Captured);
271-
nomatch -> []
272-
end.
273-
274-
regex_replace(Regex, Subject, Replacement) ->
275-
re:replace(Subject, Regex, Replacement, [global, {return, binary}]).
276-
277234
base_decode64(S) ->
278235
try {ok, base64:decode(S)}
279236
catch error:_ -> {error, nil}

src/gleam_stdlib.mjs

-49
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ import {
1010
NonEmpty,
1111
CustomType,
1212
} from "./gleam.mjs";
13-
import {
14-
CompileError as RegexCompileError,
15-
Match as RegexMatch,
16-
} from "./gleam/regex.mjs";
1713
import { DecodeError } from "./gleam/dynamic.mjs";
1814
import { Some, None } from "./gleam/option.mjs";
1915
import { Eq, Gt, Lt } from "./gleam/order.mjs";
@@ -448,51 +444,6 @@ export function utf_codepoint_to_int(utf_codepoint) {
448444
return utf_codepoint.value;
449445
}
450446

451-
export function regex_check(regex, string) {
452-
regex.lastIndex = 0;
453-
return regex.test(string);
454-
}
455-
456-
export function compile_regex(pattern, options) {
457-
try {
458-
let flags = "gu";
459-
if (options.case_insensitive) flags += "i";
460-
if (options.multi_line) flags += "m";
461-
return new Ok(new RegExp(pattern, flags));
462-
} catch (error) {
463-
const number = (error.columnNumber || 0) | 0;
464-
return new Error(new RegexCompileError(error.message, number));
465-
}
466-
}
467-
468-
export function regex_split(regex, string) {
469-
return List.fromArray(
470-
string.split(regex).map((item) => (item === undefined ? "" : item)),
471-
);
472-
}
473-
474-
export function regex_scan(regex, string) {
475-
const matches = Array.from(string.matchAll(regex)).map((match) => {
476-
const content = match[0];
477-
const submatches = [];
478-
for (let n = match.length - 1; n > 0; n--) {
479-
if (match[n]) {
480-
submatches[n - 1] = new Some(match[n]);
481-
continue;
482-
}
483-
if (submatches.length > 0) {
484-
submatches[n - 1] = new None();
485-
}
486-
}
487-
return new RegexMatch(content, List.fromArray(submatches));
488-
});
489-
return List.fromArray(matches);
490-
}
491-
492-
export function regex_replace(regex, original_string, replacement) {
493-
return original_string.replaceAll(regex, replacement);
494-
}
495-
496447
export function new_map() {
497448
return Dict.new();
498449
}

0 commit comments

Comments
 (0)