猿问

带有致命信号 11 (SIGSEGV) 错误的正则表达式查询

我正在使用 couchbase lite 版本android-ee:2.1.2。我将一些数据存储在本地 couchbase lite 数据库中。现在,我正在尝试借助正则表达式查询从本地 couchbase lite 数据库中查询数据,例如,


Query query = QueryBuilder

                .select(SelectResult.property("info"))

                .from(DataSource.database(localDatabase))

                .where(Expression.property("info").regex(Expression.string("^v" + "_" + "(4.6.2|1.7.7)" + "_" + "[123]" + "_" + "[12345678]")));

我的数据库看起来像,


v_1.7.7_1_3

v_1.7.5_1_3

v_4.7.1_2_8

v_4.7.1_1_8

v_4.7.2_2_8

v_4.7.2_2_8

v_4.7.1_1_8

v_4.7.1_2_8

v_4.7.5_1_8

v_4.9.3_1_1

...

...

...

and so on many entries

为了理解数据库结构,让我们举个例子,v_1.7.7_1_3这里v可以定义为一个 just 值,1.7.7是标签然后1是父类(这可以是 1,2 和 3 类型)然后3是子类(这可以是 1,2 类型,3,4,5,6,7 和 8)。


现在用户可以选择多个标签、父类和子类作为选择。然后我必须根据分别选择的参数从本地 couchbase lite 查询数据。目前,正如我上面所说,我正在尝试在正则表达式的帮助下查询数据,


例如,让用户选择标签4.6.2和1.7.7,那么父类是 1,2 和 3,然后是子类 1-8。所以我的查询会像,


"^v" + "_" + "(4.6.2|1.7.7)" + "_" + "[123]" + "_" + "[12345678]"

我已经在https://regex101.com上尝试过这个查询,它运行良好,但不适用于 couchbase lite。


尽管应用程序只是因致命错误而崩溃,


A/libc: Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 25543 (.mains.activity)

这里有一些日志,


V/Query: Query encoded as {"WHAT":[[".info"]],"WHERE":["regexp_like()",[".info"],"^v_(4.6.2|1.7.7)_[123]_[12345678]"]}

I/LiteCore [Query]: {Query#3}==> N8litecore11SQLiteQueryE 0x7f5a2d9098

I/LiteCore [Query]: {Query#3} Compiling JSON query: {"WHAT":[[".info"]],"WHERE":["regexp_like()",[".info"],"^v_(4.6.2|1.7.7)_[123]_[12345678]"]}

I/LiteCore [Query]: {Query#3} Compiled as SELECT fl_result(fl_value(body, 'info')) FROM kv_default WHERE (regexp_like(fl_value(body, 'info'), '^v_(4.6.2|1.7.7)_[123]_[12345678]')) AND (flags & 1) = 0

A/libc: Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 28308 (.mains.activity)


莫回无
浏览 154回答 2
2回答

胡子哥哥

在 couchbase lite 上工作和研究了几个小时后,我得到了这个。首先,正则表达式查询没有任何问题,它工作正常。第二个是在检查我的数据库时,我意识到我正在查询数据的信息字段在某些数据库条目中是 EMPTY 或 NULL。所以我在查询中添加了一个条件,例如,Expression.property("info").notNullOrMissing()因此,当信息可用时,我正在执行我的正则表达式查询,.where(Expression.property("info").notNullOrMissing().and(Expression.property("info").regex(Expression.string("^v" + "_" + "(4.6.2|1.7.7)" + "_" + "[123]" + "_" + "[12345678]"))))它运行良好,没有任何致命的信号错误或任何东西。注意: -另一件事是我的数据库中的信息字段被定义为索引,所以也许我正在查询索引字段上的数据并且它变得空或为空,这就是我收到致命信号错误的原因(我仍在搜索,是这个逻辑正确与否。)

跃然一笑

我认为,您的正则表达式查询似乎很好。您可以使用以下单元测试用例进行验证。@Testpublic void testRegex() throws Exception {&nbsp; &nbsp; MutableDocument doc1 = new MutableDocument("doc1");&nbsp; &nbsp; doc1.setValue("version", "v_1.7.7_1_3");&nbsp; &nbsp; db.save(doc1);&nbsp; &nbsp; MutableDocument doc2 = new MutableDocument("doc2");&nbsp; &nbsp; doc2.setValue("version", "v_1.7.5_1_3");&nbsp; &nbsp; db.save(doc2);&nbsp; &nbsp; MutableDocument doc3 = new MutableDocument("doc3");&nbsp; &nbsp; doc3.setValue("version", "v_4.7.1_2_8");&nbsp; &nbsp; db.save(doc3);&nbsp; &nbsp; MutableDocument doc4 = new MutableDocument("doc4");&nbsp; &nbsp; doc4.setValue("version", "v_4.7.1_1_8");&nbsp; &nbsp; db.save(doc4);&nbsp; &nbsp; MutableDocument doc5 = new MutableDocument("doc5");&nbsp; &nbsp; doc5.setValue("version", "v_4.7.2_2_8");&nbsp; &nbsp; db.save(doc5);&nbsp; &nbsp; MutableDocument doc6 = new MutableDocument("doc6");&nbsp; &nbsp; doc6.setValue("version", "v_4.6.2_2_8");&nbsp; &nbsp; db.save(doc6);&nbsp; &nbsp; Query q = QueryBuilder&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .select(SelectResult.property("version"))&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .from(DataSource.database(db))&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .where(Expression.property("version").regex(Expression.string("^v" + "_" + "(4.6.2|1.7.7)" + "_" + "[123]" + "_" + "[12345678]")));&nbsp; &nbsp; List<Result> results = q.execute().allResults();&nbsp; &nbsp; // since the doc1 and doc6 passes the regex.&nbsp;&nbsp; &nbsp; assertEquals(results.size(), 2);}
随时随地看视频慕课网APP

相关分类

Java
我要回答