我正在使用jsmn JSON 解析器(源代码)从 JSON 中获取一些文本。jsmn 将数据存储在令牌中,但令牌不包含任何数据,它们只是指向 JSON 字符串中的令牌边界。例如,jsmn 将创建如下标记:
- 对象 [0..31]
- 字符串 [3..7]、字符串 [12..16]、字符串 [20..23]
- 编号 [27..29]
此方法用于检索这些值之间的实际字符(对于字符串对象):
char* getTextFromJSON(const char *json)
{
if (!json) return NULL;
json_parser p;
#define N_TOKENS 15 // this normally would be at the start of the file
jsontok_t tokens[N_TOKENS];
initJsonParser(&p);
int err parseJson(&p, json, tokens, N_TOKENS);
if (err) {
fprintf(stdout, "Error parsing JSON: %d\n", err);
return NULL;
}
for (int i = 0; i < N_TOKENS; ++i) {
jsontok_t *key = &tokens[i];
if (!memcmp("utterance", &json[key->start], (size_t) (key->end - key->start))) {
++key;
return strndup(&json[key->start], (size_t)(key->end - key->start));
}
}
return NULL;
}
以下是一些将被扔进解析器的 JSON 示例:
{"status":0,"id":"432eac38858968c108899cc6c3a4bade-1","hypotheses":[{"utterance":"test","confidence":0.84134156}]}
{"status":5,"id":"695118aaa3d01dc2ac4aa8054d1e5bb0-1","hypotheses":[]}
将第一个示例 JSON 传递给该方法后,我得到了从该方法返回的“test”的预期值。但是,在将空 JSON 传递给该方法后,我for
在条件if
语句的循环的第 8 次迭代中遇到了分段错误。
有什么建议么?
以下是十六进制值:
key->start: 0x00000000
key->end - key->start: 0x00000046
key->start: 0x00000002
key->end - key->start: 0x00000006
key->start: 0x0000000A
key->end - key->start: 0x00000001
key->start: 0x0000000D
key->end - key->start: 0x00000002
key->start: 0x00000012
key->end - key->start: 0x00000022
key->start: 0x00000037
key->end - key->start: 0x0000000A
key->start: 0x00000043
key->end - key->start: 0x00000002
key->start: 0x3A7B3188
key->end - key->start: 0x7A0F0766