Mercurial > hg > orthanc-stone
annotate OrthancStone/Sources/Oracle/OrthancRestApiCommand.cpp @ 1623:74be0f498b08
Updated mechanism to avoid using deleted objects in RequestAnimationFrame callbacks.
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Wed, 04 Nov 2020 11:39:15 +0100 |
parents | 8563ea5d8ae4 |
children | 59f95b9ea858 |
rev | line source |
---|---|
746 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
1270
2d8ab34c8c91
upgrade to year 2020
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
959
diff
changeset
|
5 * Copyright (C) 2017-2020 Osimis S.A., Belgium |
746 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public License |
746 | 9 * as published by the Free Software Foundation, either version 3 of |
10 * the License, or (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
15 * Lesser General Public License for more details. |
1596
4fb8fdf03314
removed annoying whitespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1512
diff
changeset
|
16 * |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
18 * License along with this program. If not, see |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
19 * <http://www.gnu.org/licenses/>. |
746 | 20 **/ |
21 | |
22 | |
23 #include "OrthancRestApiCommand.h" | |
24 | |
1455
30deba7bc8e2
simplifying include_directories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1315
diff
changeset
|
25 #include <OrthancException.h> |
746 | 26 |
1315
1a08b779be64
warning 4996 (deprecation in jsoncpp) + indentation changes
Benjamin Golinvaux <bgo@osimis.io>
parents:
1279
diff
changeset
|
27 #ifdef _MSC_VER |
1a08b779be64
warning 4996 (deprecation in jsoncpp) + indentation changes
Benjamin Golinvaux <bgo@osimis.io>
parents:
1279
diff
changeset
|
28 // 'Json::Reader': Use CharReader and CharReaderBuilder instead |
1a08b779be64
warning 4996 (deprecation in jsoncpp) + indentation changes
Benjamin Golinvaux <bgo@osimis.io>
parents:
1279
diff
changeset
|
29 #pragma warning(disable:4996) |
1a08b779be64
warning 4996 (deprecation in jsoncpp) + indentation changes
Benjamin Golinvaux <bgo@osimis.io>
parents:
1279
diff
changeset
|
30 #endif |
1a08b779be64
warning 4996 (deprecation in jsoncpp) + indentation changes
Benjamin Golinvaux <bgo@osimis.io>
parents:
1279
diff
changeset
|
31 |
746 | 32 #include <json/reader.h> |
33 #include <json/writer.h> | |
34 | |
35 namespace OrthancStone | |
36 { | |
37 void OrthancRestApiCommand::SuccessMessage::ParseJsonBody(Json::Value& target) const | |
38 { | |
39 Json::Reader reader; | |
40 if (!reader.parse(answer_, target)) | |
41 { | |
42 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadFileFormat); | |
43 } | |
44 } | |
45 | |
46 | |
47 OrthancRestApiCommand::OrthancRestApiCommand() : | |
48 method_(Orthanc::HttpMethod_Get), | |
49 uri_("/"), | |
1097
4383382db01d
deprecating LockingEmitter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
959
diff
changeset
|
50 timeout_(600), |
4383382db01d
deprecating LockingEmitter
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
959
diff
changeset
|
51 applyPlugins_(false) |
746 | 52 { |
53 } | |
54 | |
55 | |
56 void OrthancRestApiCommand::SetBody(const Json::Value& json) | |
57 { | |
58 Json::FastWriter writer; | |
59 body_ = writer.write(json); | |
60 } | |
61 | |
62 | |
63 const std::string& OrthancRestApiCommand::GetBody() const | |
64 { | |
65 if (method_ == Orthanc::HttpMethod_Post || | |
66 method_ == Orthanc::HttpMethod_Put) | |
67 { | |
68 return body_; | |
69 } | |
70 else | |
71 { | |
956
a7351ad54960
Made IsContextLost automatically set the flag by checking with the emscripten
Benjamin Golinvaux <bgo@osimis.io>
parents:
846
diff
changeset
|
72 LOG(ERROR) << "OrthancRestApiCommand::GetBody(): method_ not _Post or _Put"; |
746 | 73 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls); |
74 } | |
75 } | |
76 } |