annotate Platforms/Generic/WebServiceCommandBase.h @ 299:3897f9f28cfa am-callable-and-promise

backup work in progress: updated messaging framework with ICallable
author am@osimis.io
date Fri, 14 Sep 2018 16:44:01 +0200
parents 87376a645ee1
children b4abaeb783b1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
251
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
1 /**
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
2 * Stone of Orthanc
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
4 * Department, University Hospital of Liege, Belgium
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
5 * Copyright (C) 2017-2018 Osimis S.A., Belgium
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
6 *
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
7 * This program is free software: you can redistribute it and/or
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
8 * modify it under the terms of the GNU Affero General Public License
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
9 * as published by the Free Software Foundation, either version 3 of
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
10 * the License, or (at your option) any later version.
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
11 *
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
12 * This program is distributed in the hope that it will be useful, but
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
15 * Affero General Public License for more details.
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
16 *
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
17 * You should have received a copy of the GNU Affero General Public License
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
19 **/
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
20
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
21
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
22 #pragma once
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
23
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
24 #include "IOracleCommand.h"
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
25
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
26 #include "../../Framework/Toolbox/IWebService.h"
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
27 #include "../../Framework/Messages/IObservable.h"
299
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
28 #include "../../Framework/Messages/ICallable.h"
291
87376a645ee1 renaming
am@osimis.io
parents: 274
diff changeset
29 #include "../../Applications/Generic/NativeStoneApplicationContext.h"
251
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
30
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
31 #include <Core/WebServiceParameters.h>
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
32
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
33 #include <memory>
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
34
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
35 namespace OrthancStone
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
36 {
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
37 class WebServiceCommandBase : public IOracleCommand, IObservable
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
38 {
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
39 protected:
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
40 IWebService::ICallback& callback_;
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
41 Orthanc::WebServiceParameters parameters_;
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
42 std::string uri_;
257
9afafb192180 using PAM
am@osimis.io
parents: 251
diff changeset
43 std::map<std::string, std::string> headers_;
251
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
44 std::auto_ptr<Orthanc::IDynamicObject> payload_;
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
45 bool success_;
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
46 std::string answer_;
291
87376a645ee1 renaming
am@osimis.io
parents: 274
diff changeset
47 NativeStoneApplicationContext& context_;
251
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
48
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
49 public:
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
50 WebServiceCommandBase(MessageBroker& broker,
271
46c5296d867e OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents: 257
diff changeset
51 IWebService::ICallback& callback,
46c5296d867e OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents: 257
diff changeset
52 const Orthanc::WebServiceParameters& parameters,
46c5296d867e OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents: 257
diff changeset
53 const std::string& uri,
46c5296d867e OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents: 257
diff changeset
54 const std::map<std::string, std::string>& headers,
46c5296d867e OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents: 257
diff changeset
55 Orthanc::IDynamicObject* payload /* takes ownership */,
291
87376a645ee1 renaming
am@osimis.io
parents: 274
diff changeset
56 NativeStoneApplicationContext& context);
251
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
57
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
58 virtual void Execute() = 0;
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
59
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
60 virtual void Commit();
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
61 };
299
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
62
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
63 class NewWebServiceCommandBase : public IOracleCommand, IObservable
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
64 {
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
65 protected:
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
66 std::auto_ptr<MessageHandler<IWebService::NewHttpRequestSuccessMessage>> successCallback_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
67 std::auto_ptr<MessageHandler<IWebService::NewHttpRequestErrorMessage>> failureCallback_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
68 Orthanc::WebServiceParameters parameters_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
69 std::string uri_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
70 std::map<std::string, std::string> headers_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
71 std::auto_ptr<Orthanc::IDynamicObject> payload_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
72 bool success_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
73 std::string answer_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
74 NativeStoneApplicationContext& context_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
75
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
76 public:
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
77 NewWebServiceCommandBase(MessageBroker& broker,
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
78 MessageHandler<IWebService::NewHttpRequestSuccessMessage>* successCallback, // takes ownership
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
79 MessageHandler<IWebService::NewHttpRequestErrorMessage>* failureCallback, // takes ownership
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
80 const Orthanc::WebServiceParameters& parameters,
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
81 const std::string& uri,
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
82 const std::map<std::string, std::string>& headers,
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
83 Orthanc::IDynamicObject* payload /* takes ownership */,
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
84 NativeStoneApplicationContext& context);
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
85
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
86 virtual void Execute() = 0;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
87
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
88 virtual void Commit();
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
89 };
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
90
251
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
91 }