From 1b1eb0d115f5f3c047dc78862c17d39fb29beba5 Mon Sep 17 00:00:00 2001 From: Andrej Kozemcak Date: Thu, 21 Feb 2019 16:23:03 +0100 Subject: Init gNMI server. Change-Id: Ie898b5385096e735bf947775e0278c3c8f4797a8 Signed-off-by: Andrej Kozemcak --- src/gnmi/xml2json.h | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 src/gnmi/xml2json.h (limited to 'src/gnmi/xml2json.h') diff --git a/src/gnmi/xml2json.h b/src/gnmi/xml2json.h new file mode 100644 index 0000000..fd99a2d --- /dev/null +++ b/src/gnmi/xml2json.h @@ -0,0 +1,91 @@ +/* + * Copyright (c) 2019 PANTHEON.tech. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef XML2JSON_H +#define XML2JSON_H + +#include +#include + +#include +#include + +#include "gnmidata.h" + +/** + * @todo write docs + */ +class XML2JSON +{ +public: + enum class string_type_t { + XMLSTRING, + JSONSTRING + }; + +public: + /** + * Default constructor + */ + XML2JSON() = default; + + /** + * Copy Constructor + * + * @param other TODO + */ + XML2JSON(const XML2JSON& other); + + /** + * Destructor + */ + ~XML2JSON(); + + /** + * @todo write docs + * + * @param other TODO + * @return TODO + */ +// XML2JSON& operator=(const XML2JSON& other); + + void setData(const std::string &data, string_type_t type = string_type_t::JSONSTRING); + void setPrefix(const std::string &prefix); + std::string getJson(); + std::string getXML(); + const std::list &getgNMIData(); + +private: + void parseJSON(); + void parseJSONValueType(const Json::Value &value, pugi::xml_node &node); + void parseJSONValueType(const Json::Value &value, const std::string &prefix); + void parseJSONArray(const Json::Value &value, pugi::xml_node &node); + void parseJSONArray(const Json::Value &value, const std::string &prefix); + void parseJSONObject(const Json::Value &value, pugi::xml_node &node); + void parseJSONObject(const Json::Value &value, const std::string &prefix); + + void createXML(); + void createGNMIData(); + +private: + std::string prefix = "/"; + string_type_t type = string_type_t::JSONSTRING; + Json::Value jsonRoot; + pugi::xml_document xmlDoc; + std::list gnmiData; +}; + +#endif // XML2JSON_H -- cgit 1.2.3-korg