Skip to content

Commit

Permalink
Allow non-string types to be used in "in" expressions (#211)
Browse files Browse the repository at this point in the history
* Allow non-string types to be used in "in" expressions

* No unidecode smashing in "in" expressions, though!

* Update version and changelog
  • Loading branch information
e-n-f authored Mar 4, 2024
1 parent 6a8f1b8 commit 021bb96
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 2.49.0

* FSL-style "in" expressions now allow numeric comparisons, but they no longer use unidecode to remove diacritics.

# 2.48.0

* Fix some undefined behavior bugs, one of which results in slight changes to line simplification choices
Expand Down
15 changes: 7 additions & 8 deletions evaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -387,22 +387,21 @@ static int eval(std::function<mvt_value(std::string const &)> feature, json_obje
if (f->value.array.array[2]->type == JSON_ARRAY &&
(strcmp(f->value.array.array[1]->value.string.string, "in") == 0 ||
strcmp(f->value.array.array[1]->value.string.string, "ni") == 0)) {
std::string s = mvt_value_to_string(lhs, fail, unidecode_data);
static std::vector<std::string> no_unidecode_data;
std::string s = mvt_value_to_string(lhs, fail, no_unidecode_data);
if (fail) {
return -1; // null in anything => false
}

bool contains = false;
for (size_t i = 0; i < f->value.array.array[2]->value.array.length; i++) {
if (f->value.array.array[2]->value.array.array[i]->type != JSON_STRING) {
return -1; // anything in [not-a-string] => null
}

if (unidecode_data.size() > 0) {
smash(unidecode_data, f->value.array.array[2]->value.array.array[i]);
fail = false;
int cmp = compare_fsl(ff, f->value.array.array[2]->value.array.array[i], fail, no_unidecode_data);
if (fail) {
continue; // null
}

if (strcmp(s.c_str(), f->value.array.array[2]->value.array.array[i]->value.string.string) == 0) {
if (cmp == 0) {
contains = true;
break;
}
Expand Down
2 changes: 1 addition & 1 deletion version.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#ifndef VERSION_HPP
#define VERSION_HPP

#define VERSION "v2.48.0"
#define VERSION "v2.49.0"

#endif

0 comments on commit 021bb96

Please sign in to comment.