切换RapidJSON :: Type的大小写

时间:2019-01-26 21:23:23

标签: c++ json data-structures rapidjson

我尝试解析的

JSON看起来像这样:

{
   "testBool": true,
   "testString": "eu"
}

我当前的解析器看起来非常丑陋,而且确实感觉有一种解决该问题的更优雅的方法。我尝试使用rapidjson::Type来研究document.GetObject().GetType()的开关情况,但是它不能提供使用Get%TypeName%()函数可以实现的相同类型精度。 hashmap只是std::unordered_map<std::string, std::any>的包装。

rapidjson::Document document;
document.Parse(tmp_string.c_str());

for (auto& member : document.GetObject())
{

if (member.value.IsBool())
{
   hashmap->addEntry<bool>(member.name.GetString(), member.value.GetBool());
}
else if (member.value.IsString())
{
   hashmap->addEntry<std::string>(member.name.GetString(), member.value.GetString());
}
else if (member.value.IsInt())
{
   hashmap->addEntry<int>(member.name.GetString(), member.value.GetInt());
}

.....
//And so on
.....

}

1 个答案:

答案 0 :(得分:1)

  

我当前的解析器看起来真的很丑

美女在保鲜者的眼中...这是我的代码:

static void
printField(const Value& e, const string& fld, bool print_newline = true) {
    const Value &v = fld.empty() ? e : e[fld];
    if (print_newline)
        cout << endl << "\t";
    if (not fld.empty())
        cout << fld << ":  ";
    if ( /* custom stuff required? */ ) {
        // Do custom stuff
    else {
       switch (v.GetType()) {
        case kNullType:
            cout << "Null";
            break;
        case kFalseType:
        case kTrueType:
            cout << v.GetBool();
            break;
        case kObjectType: {
            bool first = true;
            cout << "{ ";
            for (const auto &subfield: v.GetObject()) {
                if (first)
                    first = false;
                else
                    cout << ", ";
                printField(v, subfield.name.GetString(), false);
            }
            cout << " }";
            break;
        }
        case kArrayType: {
            bool first = true;
            cout << "[ ";
            for (const auto &arrEntry: v.GetArray()) {
                if (first)
                    first = false;
                else
                    cout << ", ";
                printField(arrEntry, "", false);
            }
            cout << " ]";
            break;
        }
        case kStringType:
            cout << v.GetString();
            break;
        case kNumberType:
            if (v.IsInt64())
                cout << v.GetInt64();
            else if (v.IsUint64())
                cout << v.GetUint64();
            else
                cout << v.GetDouble();
            break;
        default:
            stringstream msg;
            msg << "Unexpected RapidJSON Value type: " << v.GetType();
            throw logic_error(msg.str());
        }
    }
}

这使用字符串化的东西来解决一些问题,但是,如果您不喜欢这样做,则可以手动获得相同的效果。它使用级联IsNumber细分if情况;如果需要更高的分辨率,可以在其中添加其他案例。