Mercurial > hg > orthanc
annotate Core/SerializationToolbox.cpp @ 2658:ce770f095092 jobs
todo
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 06 Jun 2018 18:37:43 +0200 |
parents | 5eea2f11e8df |
children | 47d812308d63 |
rev | line source |
---|---|
2656 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
5 * Copyright (C) 2017-2018 Osimis S.A., Belgium | |
6 * | |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU General Public License as | |
9 * published by the Free Software Foundation, either version 3 of the | |
10 * License, or (at your option) any later version. | |
11 * | |
12 * In addition, as a special exception, the copyright holders of this | |
13 * program give permission to link the code of its release with the | |
14 * OpenSSL project's "OpenSSL" library (or with modified versions of it | |
15 * that use the same license as the "OpenSSL" library), and distribute | |
16 * the linked executables. You must obey the GNU General Public License | |
17 * in all respects for all of the code used other than "OpenSSL". If you | |
18 * modify file(s) with this exception, you may extend this exception to | |
19 * your version of the file(s), but you are not obligated to do so. If | |
20 * you do not wish to do so, delete this exception statement from your | |
21 * version. If you delete this exception statement from all source files | |
22 * in the program, then also delete it here. | |
23 * | |
24 * This program is distributed in the hope that it will be useful, but | |
25 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
27 * General Public License for more details. | |
28 * | |
29 * You should have received a copy of the GNU General Public License | |
30 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
31 **/ | |
32 | |
33 | |
34 #include "PrecompiledHeaders.h" | |
35 #include "SerializationToolbox.h" | |
36 | |
37 #include "OrthancException.h" | |
38 | |
39 namespace Orthanc | |
40 { | |
41 namespace SerializationToolbox | |
42 { | |
43 std::string ReadString(const Json::Value& value, | |
44 const std::string& field) | |
45 { | |
46 if (value.type() != Json::objectValue || | |
47 !value.isMember(field.c_str()) || | |
48 value[field.c_str()].type() != Json::stringValue) | |
49 { | |
50 throw OrthancException(ErrorCode_BadFileFormat); | |
51 } | |
52 else | |
53 { | |
54 return value[field.c_str()].asString(); | |
55 } | |
56 } | |
57 | |
58 | |
59 int ReadInteger(const Json::Value& value, | |
60 const std::string& field) | |
61 { | |
62 if (value.type() != Json::objectValue || | |
63 !value.isMember(field.c_str()) || | |
64 (value[field.c_str()].type() != Json::intValue && | |
65 value[field.c_str()].type() != Json::uintValue)) | |
66 { | |
67 throw OrthancException(ErrorCode_BadFileFormat); | |
68 } | |
69 else | |
70 { | |
71 return value[field.c_str()].asInt(); | |
72 } | |
73 } | |
74 | |
75 | |
76 unsigned int ReadUnsignedInteger(const Json::Value& value, | |
77 const std::string& field) | |
78 { | |
79 int tmp = ReadInteger(value, field); | |
80 | |
81 if (tmp < 0) | |
82 { | |
83 throw OrthancException(ErrorCode_BadFileFormat); | |
84 } | |
85 else | |
86 { | |
87 return static_cast<unsigned int>(tmp); | |
88 } | |
89 } | |
90 | |
91 | |
92 bool ReadBoolean(const Json::Value& value, | |
93 const std::string& field) | |
94 { | |
95 if (value.type() != Json::objectValue || | |
96 !value.isMember(field.c_str()) || | |
97 value[field.c_str()].type() != Json::booleanValue) | |
98 { | |
99 throw OrthancException(ErrorCode_BadFileFormat); | |
100 } | |
101 else | |
102 { | |
103 return value[field.c_str()].asBool(); | |
104 } | |
105 } | |
106 | |
107 | |
108 void ReadArrayOfStrings(std::vector<std::string>& target, | |
109 const Json::Value& value, | |
110 const std::string& field) | |
111 { | |
112 if (value.type() != Json::objectValue || | |
113 !value.isMember(field.c_str()) || | |
114 value[field.c_str()].type() != Json::arrayValue) | |
115 { | |
116 throw OrthancException(ErrorCode_BadFileFormat); | |
117 } | |
118 | |
2657
5eea2f11e8df
JobsSerialization.GenericJobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2656
diff
changeset
|
119 const Json::Value& arr = value[field.c_str()]; |
2656 | 120 |
2657
5eea2f11e8df
JobsSerialization.GenericJobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2656
diff
changeset
|
121 target.resize(arr.size()); |
5eea2f11e8df
JobsSerialization.GenericJobs
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2656
diff
changeset
|
122 |
2656 | 123 for (Json::Value::ArrayIndex i = 0; i < arr.size(); i++) |
124 { | |
125 if (arr[i].type() != Json::stringValue) | |
126 { | |
127 throw OrthancException(ErrorCode_BadFileFormat); | |
128 } | |
129 else | |
130 { | |
131 target[i] = arr[i].asString(); | |
132 } | |
133 } | |
134 } | |
135 | |
136 | |
137 void ReadListOfStrings(std::list<std::string>& target, | |
138 const Json::Value& value, | |
139 const std::string& field) | |
140 { | |
141 std::vector<std::string> tmp; | |
142 ReadArrayOfStrings(tmp, value, field); | |
143 | |
144 target.clear(); | |
145 for (size_t i = 0; i < tmp.size(); i++) | |
146 { | |
147 target.push_back(tmp[i]); | |
148 } | |
149 } | |
150 | |
151 | |
152 void ReadSetOfStrings(std::set<std::string>& target, | |
153 const Json::Value& value, | |
154 const std::string& field) | |
155 { | |
156 std::vector<std::string> tmp; | |
157 ReadArrayOfStrings(tmp, value, field); | |
158 | |
159 target.clear(); | |
160 for (size_t i = 0; i < tmp.size(); i++) | |
161 { | |
162 target.insert(tmp[i]); | |
163 } | |
164 } | |
165 | |
166 | |
167 void WriteArrayOfStrings(Json::Value& target, | |
168 const std::vector<std::string>& values, | |
169 const std::string& field) | |
170 { | |
171 if (target.type() != Json::objectValue || | |
172 target.isMember(field.c_str())) | |
173 { | |
174 throw OrthancException(ErrorCode_BadFileFormat); | |
175 } | |
176 | |
177 Json::Value tmp; | |
178 | |
179 tmp = Json::arrayValue; | |
180 for (size_t i = 0; i < values.size(); i++) | |
181 { | |
182 tmp.append(values[i]); | |
183 } | |
184 | |
185 target[field] = tmp; | |
186 } | |
187 | |
188 | |
189 void WriteSetOfStrings(Json::Value& target, | |
190 const std::set<std::string>& values, | |
191 const std::string& field) | |
192 { | |
193 Json::Value v = Json::arrayValue; | |
194 | |
195 for (std::set<std::string>::const_iterator it = values.begin(); | |
196 it != values.end(); ++it) | |
197 { | |
198 v.append(*it); | |
199 } | |
200 | |
201 target[field] = v; | |
202 } | |
203 } | |
204 } |