annotate Platforms/Generic/WebServiceCommandBase.h @ 301:547e1cf7aa7b am-callable-and-promise

cleanup
author am@osimis.io
date Tue, 18 Sep 2018 15:34:28 +0200
parents b4abaeb783b1
children 14ef1227120f
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:
301
547e1cf7aa7b cleanup
am@osimis.io
parents: 300
diff changeset
40 std::auto_ptr<MessageHandler<IWebService::HttpRequestSuccessMessage>> successCallback_;
547e1cf7aa7b cleanup
am@osimis.io
parents: 300
diff changeset
41 std::auto_ptr<MessageHandler<IWebService::HttpRequestErrorMessage>> failureCallback_;
299
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
42 Orthanc::WebServiceParameters parameters_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
43 std::string uri_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
44 std::map<std::string, std::string> headers_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
45 std::auto_ptr<Orthanc::IDynamicObject> payload_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
46 bool success_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
47 std::string answer_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
48 NativeStoneApplicationContext& context_;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
49
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
50 public:
300
b4abaeb783b1 messaging refactoring almost complete: works fine in native
am@osimis.io
parents: 299
diff changeset
51 WebServiceCommandBase(MessageBroker& broker,
301
547e1cf7aa7b cleanup
am@osimis.io
parents: 300
diff changeset
52 MessageHandler<IWebService::HttpRequestSuccessMessage>* successCallback, // takes ownership
547e1cf7aa7b cleanup
am@osimis.io
parents: 300
diff changeset
53 MessageHandler<IWebService::HttpRequestErrorMessage>* failureCallback, // takes ownership
299
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
54 const Orthanc::WebServiceParameters& parameters,
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
55 const std::string& uri,
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
56 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
57 Orthanc::IDynamicObject* payload /* takes ownership */,
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
58 NativeStoneApplicationContext& context);
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
59
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
60 virtual void Execute() = 0;
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
61
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
62 virtual void Commit();
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
63 };
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 291
diff changeset
64
251
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents:
diff changeset
65 }