CppWAMP
C++11 client library for the WAMP protocol
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
clientinterface.hpp
1 /*------------------------------------------------------------------------------
2  Copyright Butterfly Energy Systems 2014-2015, 2022.
3  Distributed under the Boost Software License, Version 1.0.
4  http://www.boost.org/LICENSE_1_0.txt
5 ------------------------------------------------------------------------------*/
6 
7 #ifndef CPPWAMP_INTERNAL_CLIENTINTERFACE_HPP
8 #define CPPWAMP_INTERNAL_CLIENTINTERFACE_HPP
9 
10 #include <memory>
11 #include <string>
12 #include "../anyhandler.hpp"
13 #include "../asiodefs.hpp"
14 #include "../chits.hpp"
15 #include "../error.hpp"
16 #include "../peerdata.hpp"
17 #include "../registration.hpp"
18 #include "../subscription.hpp"
19 #include "../variant.hpp"
20 #include "../wampdefs.hpp"
21 #include "callee.hpp"
22 #include "caller.hpp"
23 #include "challengee.hpp"
24 #include "subscriber.hpp"
25 
26 namespace wamp
27 {
28 
29 namespace internal
30 {
31 
32 class RegistrationImpl;
33 class SubscriptionImpl;
34 
35 //------------------------------------------------------------------------------
36 // Specifies the interface required for classes that implement wamp::Session.
37 //------------------------------------------------------------------------------
38 class ClientInterface :
39  public Callee, public Caller, public Subscriber, public Challengee
40 {
41 public:
42  using Ptr = std::shared_ptr<ClientInterface>;
43  using WeakPtr = std::weak_ptr<ClientInterface>;
44  using EventSlot = AnyReusableHandler<void (Event)>;
45  using CallSlot = AnyReusableHandler<Outcome (Invocation)>;
46  using InterruptSlot = AnyReusableHandler<Outcome (Interruption)>;
47  using LogHandler = AnyReusableHandler<void(std::string)>;
48  using StateChangeHandler = AnyReusableHandler<void(SessionState)>;
49  using ChallengeHandler = AnyReusableHandler<void(Challenge)>;
50  using OngoingCallHandler = AnyReusableHandler<void(ErrorOr<Result>)>;
51 
52  template <typename TValue>
53  using CompletionHandler = AnyCompletionHandler<void(ErrorOr<TValue>)>;
54 
55  static const Object& roles();
56 
57  virtual ~ClientInterface() {}
58 
59  virtual SessionState state() const = 0;
60 
61  virtual IoStrand strand() const = 0;
62 
63  virtual void join(Realm&&, CompletionHandler<SessionInfo>&&) = 0;
64 
65  virtual void authenticate(Authentication&& auth) = 0;
66 
67  virtual void leave(Reason&&, CompletionHandler<Reason>&&) = 0;
68 
69  virtual void disconnect() = 0;
70 
71  virtual void terminate() = 0;
72 
73  virtual void subscribe(Topic&&, EventSlot&&,
74  CompletionHandler<Subscription>&&) = 0;
75 
76  virtual void unsubscribe(const Subscription&) = 0;
77 
78  virtual void unsubscribe(const Subscription&,
79  CompletionHandler<bool>&&) = 0;
80 
81  virtual void publish(Pub&&) = 0;
82 
83  virtual void publish(Pub&&, CompletionHandler<PublicationId>&&) = 0;
84 
85  virtual void enroll(Procedure&&, CallSlot&&, InterruptSlot&&,
86  CompletionHandler<Registration>&&) = 0;
87 
88  virtual void unregister(const Registration&) = 0;
89 
90  virtual void unregister(const Registration&, CompletionHandler<bool>&&) = 0;
91 
92  virtual CallChit oneShotCall(Rpc&&, CompletionHandler<Result>&&) = 0;
93 
94  virtual CallChit ongoingCall(Rpc&&, OngoingCallHandler&&) = 0;
95 
96  virtual void yield(RequestId, wamp::Result&&) = 0;
97 
98  virtual void yield(RequestId, wamp::Error&&) = 0;
99 
100  virtual void initialize(AnyIoExecutor userExecutor,
101  LogHandler warningHandler,
102  LogHandler traceHandler,
103  StateChangeHandler stateChangeHandler,
104  ChallengeHandler challengeHandler) = 0;
105 
106  virtual void setWarningHandler(LogHandler) = 0;
107 
108  virtual void setTraceHandler(LogHandler) = 0;
109 
110  virtual void setStateChangeHandler(StateChangeHandler) = 0;
111 
112  virtual void setChallengeHandler(ChallengeHandler) = 0;
113 };
114 
115 inline const Object& ClientInterface::roles()
116 {
117  static const Object roles =
118  {
119  {"callee", Object{{"features", Object{{
120  {"call_canceling", true},
121  {"call_timeout", true},
122  {"call_trustlevels", true},
123  {"caller_identification", true},
124  {"pattern_based_registration", true},
125  {"progressive_call_results", true}
126  }}}}},
127  {"caller", Object{{"features", Object{{
128  {"call_canceling", true},
129  {"call_timeout", true},
130  {"caller_exclusion", true},
131  {"caller_identification", true},
132  {"progressive_call_results", true}
133  }}}}},
134  {"publisher", Object{{"features", Object{{
135  {"publisher_exclusion", true},
136  {"publisher_identification", true},
137  {"subscriber_blackwhite_listing", true}
138  }}}}},
139  {"subscriber", Object{{"features", Object{{
140  {"pattern_based_subscription", true},
141  {"publication_trustlevels", true},
142  {"publisher_identification", true},
143  }}}}}
144  };
145 
146  return roles;
147 }
148 
149 } // namespace internal
150 
151 } // namespace wamp
152 
153 #endif // CPPWAMP_INTERNAL_CLIENTINTERFACE_HPP
wamp::RequestId
int64_t RequestId
Ephemeral ID associated with a WAMP request.
Definition: wampdefs.hpp:23
wamp::AnyIoExecutor
boost::asio::any_io_executor AnyIoExecutor
Polymorphic executor for all I/O objects.
Definition: asiodefs.hpp:27
wamp::IoStrand
boost::asio::strand< AnyIoExecutor > IoStrand
Serializes I/O operations.
Definition: asiodefs.hpp:41
wamp::Object
std::map< String, Variant > Object
Variant bound type for maps of variants.
Definition: variantdefs.hpp:52
wamp::Error
Provides the reason URI, options, and payload arguments contained within WAMP ERROR messages.
Definition: peerdata.hpp:292
wamp
Definition: anyhandler.hpp:36
wamp::Result
Contains the remote procedure result options/payload within WAMP RESULT and YIELD messages.
Definition: peerdata.hpp:646
wamp::SessionState
SessionState
Enumerates the possible states that a client or router session can be in.
Definition: wampdefs.hpp:34
wamp::AnyCompletionHandler
boost::asio::any_completion_handler< TSignature > AnyCompletionHandler
Type-erases a one-shot (and possibly move-only) asynchronous completion handler.
Definition: anyhandler.hpp:55