c+++yamlファイルを解析する手順
作者:李鵬
出典:http://www.cnblogs.com/li-peng/
ずっとc++を使ってiniを配置のファイルをして、yamlに変えたくて、全世界の最大の同性の友達と付き合うウェブサイトgithubの上で捜索して、開源の倉庫があるかどうかを見て、技量は心に背かないで、yaml-cppを探し当てて、彼で1つのyamlの例を解析しました。
まず
新規プロジェクトの構造は大体次の通りです。
私たちはカスタマイズしたstructを具体化して使えばいいです。
このように変換できます。
出典:http://www.cnblogs.com/li-peng/
ずっとc++を使ってiniを配置のファイルをして、yamlに変えたくて、全世界の最大の同性の友達と付き合うウェブサイトgithubの上で捜索して、開源の倉庫があるかどうかを見て、技量は心に背かないで、yaml-cppを探し当てて、彼で1つのyamlの例を解析しました。
まず
git clone [email protected]:jbeder/yaml-cpp.git
を降りてスタティックライブラリにコンパイルします。
mkdir build
cd build
cmake ..
make
運転が終わったら、libyaml-cpp.aをもらいます。新規プロジェクトの構造は大体次の通りです。
yaml_demo
|__ include
|__yaml-cpp
|__ lib
|__yaml-cpp
|__ main.cpp
CMakeLists.txtヘッダファイルと静的ライブラリをプロジェクトに追加するように設定します。
project(yaml_demo)
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin) #
link_directories(${PROJECT_SOURCE_DIR}/lib/yaml-cpp)
add_executable(${PROJECT_NAME} main.cpp)
target_include_directories(${PROJECT_NAME} PUBLIC ${PROJECT_SOURCE_DIR}/include)
target_link_libraries(${PROJECT_NAME} yaml-cpp.a)
yaml-cppの配置が完了しました。私のconfigファイルを見てください。
api: aaaaa
v: 1
label:
app: hello
image: abc
containers:
- name: abc
age: 18
- name: 222
age: 12
その中のapiとvは比較的簡単なキーです。直接に彼らの値を読み取ることができます。
std::cout << "api: " << config["api"].as<std::string>() << std::endl;
std::cout << "v: " << config["v"].as<int>() << std::endl;
labelはmapで、containersはリストです。これは特殊処理します。yaml-cppは自分の転換テンプレートがあります。
template <typename T>
struct convert;
変換する時彼はdecodeを実現する方法があるかどうかを判断します。
struct as_if<T, void> {
explicit as_if(const Node& node_) : node(node_) {}
const Node& node;
T operator()() const {
if (!node.m_pNode)
throw TypedBadConversion<T>(node.Mark());
T t;
if (convert<T>::decode(node, t))
return t;
throw TypedBadConversion<T>(node.Mark());
}
};
Nodeはyaml-cppのコアです。私たちの構成のすべての操作はこのクラスから行います。私たちはカスタマイズしたstructを具体化して使えばいいです。
struct label {
std::string app;
std::string image;
};
namespace YAML {
template<>
struct convert<label> {
static Node encode(const label &rhs) {
Node node;
node.push_back(rhs.app);
node.push_back(rhs.image);
return node;
}
static bool decode(const Node &node, label &rhs) {
std::cout << node.Type() << std::endl;
rhs.app = node["app"].as<std::string>();
rhs.image = node["image"].as<std::string>();
return true;
}
};
}
encodeの方法は私達がカスタマイズしたstructをyaml-cppのNodeに変換します。このように変換できます。
if (config["label"]) {
label l = config["label"].as<label>();
std::cout << "app: " << l.app << " image: " << l.image << std::endl;
}
containerも同様に具体化されています。
struct container {
std::string name;
int age;
};
namespace YAML {
template<>
struct convert<container> {
static Node encode(const container &rhs) {
Node node;
node.push_back(rhs.name);
node.push_back(rhs.age);
return node;
}
static bool decode(const Node &node, container &rhs) {
rhs.name = node["name"].as<std::string>();
rhs.age = node["age"].as<int>();
return true;
}
};
}
完全コードは以下の通りです。
#include <string>
#include <iostream>
#include <yaml-cpp/yaml.h>
#include <yaml-cpp/node/parse.h>
struct container {
std::string name;
int age;
};
namespace YAML {
template<>
struct convert<container> {
static Node encode(const container &rhs) {
Node node;
node.push_back(rhs.name);
node.push_back(rhs.age);
return node;
}
static bool decode(const Node &node, container &rhs) {
rhs.name = node["name"].as<std::string>();
rhs.age = node["age"].as<int>();
return true;
}
};
}
struct label {
std::string app;
std::string image;
};
namespace YAML {
template<>
struct convert<label> {
static Node encode(const label &rhs) {
Node node;
node.push_back(rhs.app);
node.push_back(rhs.image);
return node;
}
static bool decode(const Node &node, label &rhs) {
std::cout << node.Type() << std::endl;
rhs.app = node["app"].as<std::string>();
rhs.image = node["image"].as<std::string>();
return true;
}
};
}
int main(int argc, char **argv) {
std::string config_path = "./config.yaml";
std::cout << config_path << std::endl;
YAML::Node config = YAML::LoadFile(config_path);
std::cout << "api: " << config["api"].as<std::string>() << std::endl;
std::cout << "v: " << config["v"].as<int>() << std::endl;
if (config["label"]) {
label l = config["label"].as<label>();
std::cout << "app: " << l.app << " image: " << l.image << std::endl;
}
if (config["containers"]) {
std::vector<container> vi = config["containers"].as<std::vector<container>>();
for (std::vector<container>::iterator it = vi.begin(); it != vi.end(); ++it) {
std::cout << "vector: name: " << it->name << " age: " << it->age << std::endl;
}
}
return 0;
}
以上はc+++解析yamlファイルの手順の詳細です。詳細はc+++解析yamlファイルの資料についてです。他の関連記事に注目してください。