OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
autogen_util.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 Juniper Networks, Inc. All rights reserved.
3  */
4 #ifndef AUTOGEN_UTIL_H_
5 #define AUTOGEN_UTIL_H_
6 
7 #include <stdint.h>
8 #include <time.h>
9 
10 #include <sstream>
11 #include <string>
12 
13 #include <boost/algorithm/string/trim.hpp>
14 #include <pugixml/pugixml.hpp>
15 #include "rapidjson/rapidjson.h"
16 #include "rapidjson/document.h"
17 
18 using namespace contrail_rapidjson;
19 using namespace pugi;
20 using namespace std;
21 
22 #include "base/compiler.h"
23 #if defined(__GNUC__) && (__GCC_HAS_PRAGMA > 0)
24 #pragma GCC diagnostic ignored "-Wunused-function"
25 #endif
26 
27 namespace autogen {
28 
29 // Json Parse routines
30 
31 static bool ParseString(const contrail_rapidjson::Value &node, std::string *s) {
32  if (node.IsString()) {
33  *s = node.GetString();
34  return true;
35  }
36 
37  std::stringstream ss;
38  switch (node.GetType()) {
39  case contrail_rapidjson::kNullType:
40  *s = "null";
41  break;
42  case contrail_rapidjson::kTrueType:
43  *s = "true";
44  break;
45  case contrail_rapidjson::kFalseType:
46  *s = "false";
47  break;
48  case contrail_rapidjson::kStringType:
49  *s = node.GetString();
50  break;
51  case contrail_rapidjson::kNumberType:
52  if (node.IsUint())
53  ss << node.GetUint();
54  else if (node.IsInt())
55  ss << node.GetInt();
56  else if (node.IsUint64())
57  ss << node.GetUint64();
58  else if (node.IsInt64())
59  ss << node.GetInt64();
60  else if (node.IsDouble())
61  ss << node.GetDouble();
62  *s = ss.str();
63  break;
64  case contrail_rapidjson::kObjectType:
65  return false;
66  case contrail_rapidjson::kArrayType:
67  return false;
68  }
69  return true;
70 }
71 
72 static bool ParseInteger(const char *nptr, int *valuep) {
73  char *endp;
74  *valuep = strtoul(nptr, &endp, 10);
75  while (isspace(*endp))
76  endp++;
77  return (endp[0] == '\0');
78 }
79 
80 static bool ParseUnsignedLong(const char *nptr, uint64_t *valuep) {
81  char *endp;
82  *valuep = strtoull(nptr, &endp, 10);
83  while (isspace(*endp))
84  endp++;
85  return (endp[0] == '\0');
86 }
87 
88 static bool ParseBoolean(const char *bptr, bool *valuep) {
89  if (strcmp(bptr, "true") ==0)
90  *valuep = true;
91  else
92  *valuep = false;
93  return true;
94 }
95 
96 static bool ParseInteger(const pugi::xml_attribute &attr, int *valuep) {
97  return ParseInteger(attr.value(), valuep);
98 }
99 
100 static bool ParseUnsignedLong(const pugi::xml_attribute &attr,
101  uint64_t *valuep) {
102  return ParseUnsignedLong(attr.value(), valuep);
103 }
104 
105 static bool ParseBoolean(const pugi::xml_attribute &attr, bool *valuep) {
106  return ParseBoolean(attr.value(), valuep);
107 }
108 
109 static bool ParseInteger(const pugi::xml_node &node, int *valuep) {
110  return ParseInteger(node.child_value(), valuep);
111 }
112 
113 static bool ParseUnsignedLong(const pugi::xml_node &node, uint64_t *valuep) {
114  return ParseUnsignedLong(node.child_value(), valuep);
115 }
116 
117 static bool ParseBoolean(const pugi::xml_node &node, bool *valuep) {
118  return ParseBoolean(node.child_value(), valuep);
119 }
120 
121 static bool ParseDateTime(const pugi::xml_node &node, time_t *valuep) {
122  string value(node.child_value());
123  boost::trim(value);
124  struct tm tm;
125  char *endp;
126  memset(&tm, 0, sizeof(tm));
127  if (value.size() == 0) return true;
128  endp = strptime(value.c_str(), "%FT%T", &tm);
129  if (!endp) return false;
130  *valuep = timegm(&tm);
131  return true;
132 }
133 static bool ParseTime(const pugi::xml_node &node, time_t *valuep) {
134  string value(node.child_value());
135  boost::trim(value);
136  struct tm tm;
137  char *endp;
138  endp = strptime(value.c_str(), "%T", &tm);
139  if (!endp) return false;
140  *valuep = timegm(&tm);
141  return true;
142 }
143 static std::string FormatDateTime(const time_t *valuep) {
144  struct tm tm;
145  char result[100];
146  gmtime_r(valuep, &tm);
147  strftime(result, sizeof(result), "%FT%T", &tm);
148  return std::string(result);
149 }
150 static std::string FormatTime(const time_t *valuep) {
151  struct tm tm;
152  char result[100];
153  gmtime_r(valuep, &tm);
154  strftime(result, sizeof(result), "%T", &tm);
155  return std::string(result);
156 }
157 
158 // Json Parse routines
159 static bool ParseInteger(const contrail_rapidjson::Value &node, int *valuep) {
160  if (node.IsString())
161  return ParseInteger(node.GetString(), valuep);
162  if (node.IsInt()) {
163  *valuep = node.GetInt();
164  return true;
165  }
166  // We need to check for Uint also because Int value becomes Uint in json
167  // if MSB is set
168  if (node.IsUint()) {
169  *valuep = node.GetUint();
170  return true;
171  }
172  return false;
173 }
174 
175 static bool ParseUnsignedLong(const contrail_rapidjson::Value &node, uint64_t *valuep) {
176  if (node.IsString())
177  return ParseUnsignedLong(node.GetString(), valuep);
178  if (!node.IsUint64())
179  return false;
180  *valuep = node.GetUint64();
181  return true;
182 }
183 
184 static bool ParseBoolean(const contrail_rapidjson::Value &node, bool *valuep) {
185  if (node.IsString())
186  return ParseBoolean(node.GetString(), valuep);
187  if (!node.IsBool())
188  return false;
189  *valuep = node.GetBool();
190  return true;
191 }
192 
193 static bool ParseDateTime(const contrail_rapidjson::Value &node, time_t *valuep) {
194  if (!node.IsString())
195  return false;
196  string value(node.GetString());
197  boost::trim(value);
198  struct tm tm;
199  char *endp;
200  memset(&tm, 0, sizeof(tm));
201  if (value.size() == 0) return true;
202  endp = strptime(value.c_str(), "%FT%T", &tm);
203  if (!endp) return false;
204  *valuep = timegm(&tm);
205  return true;
206 }
207 
208 static bool ParseTime(const contrail_rapidjson::Value &node, time_t *valuep) {
209  if (!node.IsString())
210  return false;
211  string value(node.GetString());
212  boost::trim(value);
213  struct tm tm;
214  char *endp;
215  endp = strptime(value.c_str(), "%T", &tm);
216  if (!endp) return false;
217  *valuep = timegm(&tm);
218  return true;
219 }
220 
221 } // namespace autogen
222 
223 #endif // AUTOGEN_UTIL_H_
static bool ParseDateTime(const pugi::xml_node &node, time_t *valuep)
Definition: autogen_util.h:121
static bool ParseInteger(const pugi::xml_node &node, int *valuep)
static std::string FormatTime(const time_t *valuep)
Definition: autogen_util.h:150
static std::string FormatDateTime(const time_t *valuep)
Definition: autogen_util.h:143
static bool ParseBoolean(const char *bptr, bool *valuep)
Definition: autogen_util.h:88
static bool ParseUnsignedLong(const pugi::xml_node &node, uint64_t *valuep)
static bool ParseTime(const pugi::xml_node &node, time_t *valuep)
Definition: autogen_util.h:133
static bool ParseString(const contrail_rapidjson::Value &node, std::string *s)
Definition: autogen_util.h:31