Mercurial > hg > orthanc
annotate Plugins/Samples/Common/IOrthancConnection.cpp @ 3128:972cc98959a3 db-changes
fix build of civetweb for Visual Studio 2008 and LSB
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 16 Jan 2019 12:14:30 +0100 |
parents | 4e43e67f8ecf |
children | 94f4a18a79cc |
rev | line source |
---|---|
2180 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
3060
4e43e67f8ecf
preparing for 2019
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
5 * Copyright (C) 2017-2019 Osimis S.A., Belgium |
2180 | 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 "IOrthancConnection.h" | |
35 | |
2237 | 36 #include "OrthancPluginException.h" |
2180 | 37 |
38 #include <json/reader.h> | |
39 | |
40 namespace OrthancPlugins | |
41 { | |
42 void IOrthancConnection::ParseJson(Json::Value& result, | |
43 const std::string& content) | |
44 { | |
45 Json::Reader reader; | |
46 | |
47 if (!reader.parse(content, result)) | |
48 { | |
2237 | 49 ORTHANC_PLUGINS_THROW_EXCEPTION(BadFileFormat); |
2180 | 50 } |
51 } | |
52 | |
53 | |
2278
fd5869e3ed5e
new constructors in FullOrthancDataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
54 void IOrthancConnection::ParseJson(Json::Value& result, |
fd5869e3ed5e
new constructors in FullOrthancDataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
55 const void* content, |
fd5869e3ed5e
new constructors in FullOrthancDataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
56 size_t size) |
fd5869e3ed5e
new constructors in FullOrthancDataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
57 { |
fd5869e3ed5e
new constructors in FullOrthancDataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
58 Json::Reader reader; |
fd5869e3ed5e
new constructors in FullOrthancDataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
59 |
fd5869e3ed5e
new constructors in FullOrthancDataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
60 if (!reader.parse(reinterpret_cast<const char*>(content), |
fd5869e3ed5e
new constructors in FullOrthancDataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
61 reinterpret_cast<const char*>(content) + size, result)) |
fd5869e3ed5e
new constructors in FullOrthancDataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
62 { |
fd5869e3ed5e
new constructors in FullOrthancDataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
63 ORTHANC_PLUGINS_THROW_EXCEPTION(BadFileFormat); |
fd5869e3ed5e
new constructors in FullOrthancDataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
64 } |
fd5869e3ed5e
new constructors in FullOrthancDataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
65 } |
fd5869e3ed5e
new constructors in FullOrthancDataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
66 |
fd5869e3ed5e
new constructors in FullOrthancDataset
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2244
diff
changeset
|
67 |
2180 | 68 void IOrthancConnection::RestApiGet(Json::Value& result, |
69 IOrthancConnection& orthanc, | |
70 const std::string& uri) | |
71 { | |
72 std::string content; | |
73 orthanc.RestApiGet(content, uri); | |
74 ParseJson(result, content); | |
75 } | |
76 | |
77 | |
2181 | 78 void IOrthancConnection::RestApiPost(Json::Value& result, |
79 IOrthancConnection& orthanc, | |
80 const std::string& uri, | |
81 const std::string& body) | |
2180 | 82 { |
83 std::string content; | |
84 orthanc.RestApiPost(content, uri, body); | |
85 ParseJson(result, content); | |
86 } | |
2183
1d0838b8e9c5
RestApiDelete and RestApiPut
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2181
diff
changeset
|
87 |
1d0838b8e9c5
RestApiDelete and RestApiPut
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2181
diff
changeset
|
88 |
1d0838b8e9c5
RestApiDelete and RestApiPut
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2181
diff
changeset
|
89 void IOrthancConnection::RestApiPut(Json::Value& result, |
1d0838b8e9c5
RestApiDelete and RestApiPut
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2181
diff
changeset
|
90 IOrthancConnection& orthanc, |
1d0838b8e9c5
RestApiDelete and RestApiPut
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2181
diff
changeset
|
91 const std::string& uri, |
1d0838b8e9c5
RestApiDelete and RestApiPut
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2181
diff
changeset
|
92 const std::string& body) |
1d0838b8e9c5
RestApiDelete and RestApiPut
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2181
diff
changeset
|
93 { |
1d0838b8e9c5
RestApiDelete and RestApiPut
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2181
diff
changeset
|
94 std::string content; |
1d0838b8e9c5
RestApiDelete and RestApiPut
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2181
diff
changeset
|
95 orthanc.RestApiPut(content, uri, body); |
1d0838b8e9c5
RestApiDelete and RestApiPut
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2181
diff
changeset
|
96 ParseJson(result, content); |
1d0838b8e9c5
RestApiDelete and RestApiPut
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2181
diff
changeset
|
97 } |
2180 | 98 } |