Skip to content

Commit 659bd69

Browse files
Do not overwrite stringKeyMaps when converting a JSON null object.
Do clear map when deserialising a JSON null object to a stringKeyMap, rather than throwing an exception. For ravel #400.
1 parent bcecbbc commit 659bd69

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

stringKeyMap.h

+14-7
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace classdesc
3434
{
3535
template <class T>
3636
void convert(StringKeyMap<T>& map, const json_pack_t& j)
37-
{j>>map;}
37+
{if (j.type()!=RESTProcessType::null) j>>map;}
3838

3939
template <class T>
4040
void json_pack_stringKeyMap(json_pack_t& j,const string& d, const StringKeyMap<T>& a)
@@ -63,14 +63,21 @@ namespace classdesc
6363
try
6464
{
6565
const json5_parser::mValue& val=json_find(j,d);
66-
if (val.type()!=json5_parser::obj_type)
67-
throw json_pack_error("%s is not an array",d.c_str());
68-
else
66+
switch (val.type())
6967
{
70-
const json5_parser::mObject& arr=val.get_obj();
68+
case json5_parser::obj_type:
69+
{
70+
const json5_parser::mObject& arr=val.get_obj();
71+
a.clear();
72+
for (json5_parser::mObject::const_iterator i=arr.begin(); i!=arr.end(); ++i)
73+
json_unpack(j,d+"."+i->first,a[i->first]);
74+
}
75+
break;
76+
case json5_parser::null_type:
7177
a.clear();
72-
for (json5_parser::mObject::const_iterator i=arr.begin(); i!=arr.end(); ++i)
73-
json_unpack(j,d+"."+i->first,a[i->first]);
78+
break;
79+
default:
80+
throw json_pack_error("%s is not an array",d.c_str());
7481
}
7582
}
7683
catch (json_pack_error&)

0 commit comments

Comments
 (0)