rippled
WSClient.h
1 //------------------------------------------------------------------------------
2 /*
3  This file is part of rippled: https://github.com/ripple/rippled
4  Copyright (c) 2016 Ripple Labs Inc.
5 
6  Permission to use, copy, modify, and/or distribute this software for any
7  purpose with or without fee is hereby granted, provided that the above
8  copyright notice and this permission notice appear in all copies.
9 
10  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18 //==============================================================================
19 
20 #ifndef RIPPLE_TEST_WSCLIENT_H_INCLUDED
21 #define RIPPLE_TEST_WSCLIENT_H_INCLUDED
22 
23 #include <ripple/core/Config.h>
24 #include <test/jtx/AbstractClient.h>
25 
26 #include <chrono>
27 #include <memory>
28 #include <optional>
29 
30 namespace ripple {
31 namespace test {
32 
33 class WSClient : public AbstractClient
34 {
35 public:
38  getMsg(
40  0}) = 0;
41 
44  findMsg(
45  std::chrono::milliseconds const& timeout,
46  std::function<bool(Json::Value const&)> pred) = 0;
47 };
48 
52  Config const& cfg,
53  bool v2 = true,
54  unsigned rpc_version = 2,
56 
57 } // namespace test
58 } // namespace ripple
59 
60 #endif
ripple::test::AbstractClient
Definition: AbstractClient.h:33
std::chrono::milliseconds
std::function
ripple::Config
Definition: Config.h:89
chrono
memory
ripple::test::WSClient
Definition: WSClient.h:33
ripple::test::WSClient::getMsg
virtual std::optional< Json::Value > getMsg(std::chrono::milliseconds const &timeout=std::chrono::milliseconds{ 0})=0
Retrieve a message.
ripple
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition: RCLCensorshipDetector.h:29
ripple::test::WSClient::findMsg
virtual std::optional< Json::Value > findMsg(std::chrono::milliseconds const &timeout, std::function< bool(Json::Value const &)> pred)=0
Retrieve a message that meets the predicate criteria.
ripple::test::makeWSClient
std::unique_ptr< WSClient > makeWSClient(Config const &cfg, bool v2, unsigned rpc_version, std::unordered_map< std::string, std::string > const &headers)
Returns a client operating through WebSockets/S.
Definition: WSClient.cpp:300
optional
std::unique_ptr
STL class.
std::unordered_map
STL class.
Json::Value
Represents a JSON value.
Definition: json_value.h:145