comparison Resources/Graveyard/Deprecated/Platforms/Generic/WebServiceCommandBase.cpp @ 1503:553084468225

moving /Deprecated/ to /Resources/Graveyard/Deprecated/
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 30 Jun 2020 11:38:13 +0200
parents Deprecated/Platforms/Generic/WebServiceCommandBase.cpp@419d0320c344
children
comparison
equal deleted inserted replaced
1502:e5729dab3f67 1503:553084468225
1 /**
2 * Stone of Orthanc
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
4 * Department, University Hospital of Liege, Belgium
5 * Copyright (C) 2017-2020 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 Affero General Public License
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
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Affero General Public License for more details.
16 *
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 **/
20
21
22 #include "WebServiceCommandBase.h"
23
24 #include <Core/HttpClient.h>
25
26 namespace Deprecated
27 {
28 WebServiceCommandBase::WebServiceCommandBase(MessageHandler<IWebService::HttpRequestSuccessMessage>* successCallback,
29 MessageHandler<IWebService::HttpRequestErrorMessage>* failureCallback,
30 const Orthanc::WebServiceParameters& parameters,
31 const std::string& url,
32 const IWebService::HttpHeaders& headers,
33 unsigned int timeoutInSeconds,
34 Orthanc::IDynamicObject* payload /* takes ownership */,
35 OrthancStone::NativeStoneApplicationContext& context) :
36 successCallback_(successCallback),
37 failureCallback_(failureCallback),
38 parameters_(parameters),
39 url_(url),
40 headers_(headers),
41 payload_(payload),
42 success_(false),
43 httpStatus_(Orthanc::HttpStatus_None),
44 context_(context),
45 timeoutInSeconds_(timeoutInSeconds)
46 {
47 }
48
49
50 void WebServiceCommandBase::Commit()
51 {
52 // We want to make sure that, i.e, the UpdateThread is not
53 // triggered while we are updating the "model" with the result of
54 // a WebServiceCommand
55 OrthancStone::NativeStoneApplicationContext::GlobalMutexLocker lock(context_);
56
57 if (success_ && successCallback_.get() != NULL)
58 {
59 IWebService::HttpRequestSuccessMessage message
60 (url_, answer_.c_str(), answer_.size(), answerHeaders_, payload_.get());
61 successCallback_->Apply(message);
62 }
63 else if (!success_ && failureCallback_.get() != NULL)
64 {
65 IWebService::HttpRequestErrorMessage message(url_, httpStatus_, payload_.get());
66 failureCallback_->Apply(message);
67 }
68 }
69 }