CPPMyth
Library to interoperate with MythTV server
mythjsonbinder.cpp
1 /*
2  * Copyright (C) 2014 Jean-Luc Barriere
3  *
4  * This Program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2, or (at your option)
7  * any later version.
8  *
9  * This Program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; see the file COPYING. If not, write to
16  * the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
17  * MA 02110-1301 USA
18  * http://www.gnu.org/copyleft/gpl.html
19  *
20  */
21 
22 #include "mythjsonbinder.h"
23 #include "builtin.h"
24 #include "debug.h"
25 
26 #include <cstdlib> // for atof
27 #include <cstring> // for strcmp
28 #include <cstdio>
29 #include <errno.h>
30 
31 using namespace Myth;
32 
33 void JSON::BindObject(const Node& node, void *obj, const bindings_t *bl)
34 {
35  int i, err;
36 
37  if (bl == NULL)
38  return;
39 
40  for (i = 0; i < bl->attr_count; ++i)
41  {
42  const Node& field = node.GetObjectValue(bl->attr_bind[i].field);
43  if (field.IsNull())
44  continue;
45  if (field.IsString())
46  {
47  std::string value(field.GetStringValue());
48  err = 0;
49  switch (bl->attr_bind[i].type)
50  {
51  case IS_STRING:
52  bl->attr_bind[i].set(obj, value.c_str());
53  break;
54  case IS_INT8:
55  {
56  int8_t num = 0;
57  err = string_to_int8(value.c_str(), &num);
58  bl->attr_bind[i].set(obj, &num);
59  break;
60  }
61  case IS_INT16:
62  {
63  int16_t num = 0;
64  err = string_to_int16(value.c_str(), &num);
65  bl->attr_bind[i].set(obj, &num);
66  break;
67  }
68  case IS_INT32:
69  {
70  int32_t num = 0;
71  err = string_to_int32(value.c_str(), &num);
72  bl->attr_bind[i].set(obj, &num);
73  break;
74  }
75  case IS_INT64:
76  {
77  int64_t num = 0;
78  err = string_to_int64(value.c_str(), &num);
79  bl->attr_bind[i].set(obj, &num);
80  break;
81  }
82  case IS_UINT8:
83  {
84  uint8_t num = 0;
85  err = string_to_uint8(value.c_str(), &num);
86  bl->attr_bind[i].set(obj, &num);
87  break;
88  }
89  case IS_UINT16:
90  {
91  uint16_t num = 0;
92  err = string_to_uint16(value.c_str(), &num);
93  bl->attr_bind[i].set(obj, &num);
94  break;
95  }
96  case IS_UINT32:
97  {
98  uint32_t num = 0;
99  err = string_to_uint32(value.c_str(), &num);
100  bl->attr_bind[i].set(obj, &num);
101  break;
102  }
103  case IS_DOUBLE:
104  {
105  double num = atof(value.c_str());
106  bl->attr_bind[i].set(obj, &num);
107  break;
108  }
109  case IS_BOOLEAN:
110  {
111  bool b = (strcmp(value.c_str(), "true") == 0 ? true : false);
112  bl->attr_bind[i].set(obj, &b);
113  break;
114  }
115  case IS_TIME:
116  {
117  time_t time = 0;
118  err = string_to_time(value.c_str(), &time);
119  bl->attr_bind[i].set(obj, &time);
120  break;
121  }
122  default:
123  break;
124  }
125  if (err)
126  Myth::DBG(DBG_ERROR, "%s: failed (%d) field \"%s\" type %d: %s\n", __FUNCTION__, err, bl->attr_bind[i].field, bl->attr_bind[i].type, value.c_str());
127  }
128  else
129  Myth::DBG(DBG_WARN, "%s: invalid value for field \"%s\" type %d\n", __FUNCTION__, bl->attr_bind[i].field, bl->attr_bind[i].type);
130  }
131 }
Brings together all attribute bindings of an object.
Definition: mythdto.h:66
attr_bind_t * attr_bind
Definition: mythdto.h:69
void(* set)(void *, const void *)
Definition: mythdto.h:59
int attr_count
Definition: mythdto.h:68
This is the main namespace that encloses all public classes.
Definition: mythcontrol.h:29
const char * field
Definition: mythdto.h:57
FT_t type
Definition: mythdto.h:58