したがって、c ++で動的にjsonオブジェクトを作成しようとしています。タイムスタンプを追加してから、データを含む配列を追加したいと思います。
つまり、私のjson文字列は次のようになります。
{
"timestep": "2160.00",
"vehicles": [
{
"id": "35092_35092_353",
"x": "6.988270",
"y": "50.872139",
"angle": "-20.812787",
"type": "passenger_P_14_1",
"speed": "0.000000",
"pos": "4.600000",
"lane": "4.600000",
"slope": "4.600000"
},
{
"id": "35092_35092_353",
"x": "6.988270",
"y": "50.872139",
"angle": "-20.812787",
"type": "passenger_P_14_1",
"speed": "0.000000",
"pos": "4.600000",
"lane": "4.600000",
"slope": "4.600000"
},
{
"id": "35092_35092_353",
"x": "6.988270",
"y": "50.872139",
"angle": "-20.812787",
"type": "passenger_P_14_1",
"speed": "0.000000",
"pos": "4.600000",
"lane": "4.600000",
"slope": "4.600000"
}
]
}
私はC++にまったく新しく、カサブランカ(C++ REST SDK)パッケージを使用しています。そのため、コードの作成に非常に苦労しています。そして、解決策を見つけることができません。これは、 wiki
JSONオブジェクトを作成します。
json::value obj;
obj[L"key1"] = json::value::boolean(false);
obj[L"key2"] = json::value::number(44);
obj[L"key3"] = json::value::number(43.6);
obj[L"key4"] = json::value::string(U("str"));
そしてそれは私のために働く。しかし、どうすれば配列を作成できますか?
私はいくつかのことを試しましたが、何もうまくいきませんでした。多分もっと良いパッケージがありますか?しかし、私が理解している限り、jsonとhttpの公式のmicorosftパッケージです。
ヘルプは本当にいいでしょう!
メカニズムは2つあります。 std c ++ライブラリに慣れている場合、これはおなじみのはずです。要素ベクトルはstd :: vectorから派生します。
json::value::element_vector e;
// the first item in the pair is the array index, the second the value
e.Push_back(std::make_pair(json::value(0), json::value(false)));
e.Push_back(std::make_pair(json::value(1), json::value::string(U("hello"))));
json::value arr(e);
そして、よりきれいな外観を好み、効率の悪いコンパイル結果を受け入れることができる場合:
json::value arr;
arr[0] = json::value(false);
arr[1] = json::value(U("hello"));
あなたのメッセージから、あなたはたくさんのものを試しました。このようなメカニズムを試したが機能しない場合は、失敗を実証するサンプルプログラムを提供してください。
上記のファイルの基本構造を取得するには:
json::value vehicles;
vehicles[0] = // 1st vehicle object
vehicles[1] = // 2nd vehicle object
// etc
json::value root;
root[L"timestep"] = json::number(2160.0);
root[L"vehicles"] = vehicles;
vector
を使用して動的に配列を作成する方法は次のとおりです。追加する車両が10台あるとします。
std::vector<web::json::value> arrayVehicles;
for(int i = 0; i < 10; i++)
{
web::json::value vehicle;
std::string vehicleID = "id_prefix_" + std::to_string(i);
vehicle["id"] = web::json::value::string(vehicleID);
vehicle["x"] = web::json::value::number(6.988270);
vehicle["y"] = web::json::value::number(50.872139);
arrayVehicles.Push_back(vehicle);
}
web::json::value myJSON;
myJSON["vehicles"] = web::json::value::array(arrayVehicles);
あなたはそれをこのように置くことができます:
json::value vehicle1;
vehicle1[L"id"] = json::value::string(L"35092_35092_353");
vehicle1[L"x"] = json::value::number(6.988270);
vehicle1[L"y"] = json::value::number(50.872139);
json::value vehicle2;
vehicle2[L"id"] = json::value::string(L"35092_35092_353");
vehicle2[L"x"] = json::value::number(1.23456);
vehicle2[L"y"] = json::value::number(6.78901);
json::value vehicles;
vehicles[L"timestamp"] = json::value::number(2160);
vehicles[L"vehicles"] = json::value::array({vehicle1, vehicle2});
カサブランカでjson配列を作成する別の方法を次に示します。
int size = 3;
web::json::value yourJson;
yourJson[U("vehicles")] = web::json::value::array(size);
yourJson[U("vehicles")].as_array()[0] = web::json::value(U("some entry"));
yourJson[U("vehicles")].as_array()[1] = web::json::value(U("another entry"));
//...
受信したhttp_requestの回答として配列を使用したい場合(以下の場合はhttp_request request
)、例として次のコードスニペットを自由に使用できます。
json::value answer;
auto array = answer.array();
for (size_t i = 0; i < GenFile.GetNumberOfCurves(); i++)
{
web::json::value vehicle;
vehicle[L"smth"] = web::json::value::number(WhatEverArray[i].whatever());
array[i] = vehicle;
}
request.reply(status_codes::OK, array);