Monero
message.h
Go to the documentation of this file.
1 // Copyright (c) 2016-2022, The Monero Project
2 //
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without modification, are
6 // permitted provided that the following conditions are met:
7 //
8 // 1. Redistributions of source code must retain the above copyright notice, this list of
9 // conditions and the following disclaimer.
10 //
11 // 2. Redistributions in binary form must reproduce the above copyright notice, this list
12 // of conditions and the following disclaimer in the documentation and/or other
13 // materials provided with the distribution.
14 //
15 // 3. Neither the name of the copyright holder nor the names of its contributors may be
16 // used to endorse or promote products derived from this software without specific
17 // prior written permission.
18 //
19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
20 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22 // THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27 // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 
29 #pragma once
30 
31 #include <rapidjson/document.h>
32 #include <rapidjson/writer.h>
33 #include <string>
34 
35 #include "byte_slice.h"
36 #include "byte_stream.h"
38 
39 namespace cryptonote
40 {
41 
42 namespace rpc
43 {
44 
45  class Message
46  {
47  virtual void doToJson(rapidjson::Writer<epee::byte_stream>& dest) const
48  {}
49 
50  public:
51  static const char* STATUS_OK;
52  static const char* STATUS_RETRY;
53  static const char* STATUS_FAILED;
54  static const char* STATUS_BAD_REQUEST;
55  static const char* STATUS_BAD_JSON;
56 
58 
59  virtual ~Message() { }
60 
61  void toJson(rapidjson::Writer<epee::byte_stream>& dest) const;
62 
63  virtual void fromJson(const rapidjson::Value& val);
64 
68  };
69 
71  {
72  public:
74 
75  FullMessage(std::string&& json_string, bool request=false);
76 
78 
79  const rapidjson::Value& getMessage() const;
80 
82 
83  const rapidjson::Value& getID() const;
84 
86 
87  static epee::byte_slice getRequest(const std::string& request, const Message& message, unsigned id);
89  private:
90 
91  FullMessage() = default;
92  FullMessage(const FullMessage&) = delete;
93  FullMessage& operator=(const FullMessage&) = delete;
94 
95  FullMessage(const std::string& request, Message* message);
97 
100  };
101 
102 
103  // convenience functions for bad input
104  epee::byte_slice BAD_REQUEST(const std::string& request);
105  epee::byte_slice BAD_REQUEST(const std::string& request, const rapidjson::Value& id);
106 
107  epee::byte_slice BAD_JSON(const std::string& error_details);
108 
109 
110 } // namespace rpc
111 
112 } // namespace cryptonote
rapidjson::Document doc
Definition: message.h:99
virtual void doToJson(rapidjson::Writer< epee::byte_stream > &dest) const
Definition: message.h:47
::std::string string
Definition: gtest-port.h:1097
CXA_THROW_INFO_T void(* dest)(void *))
Definition: stack_trace.cpp:91
static const char * STATUS_RETRY
Definition: message.h:52
FullMessage & operator=(const FullMessage &)=delete
static const char * STATUS_FAILED
Definition: message.h:53
static const char * STATUS_BAD_REQUEST
Definition: message.h:54
virtual ~Message()
Definition: message.h:59
std::string contents
Definition: message.h:98
rapidjson::Value getMessageCopy()
Definition: message.cpp:127
~FullMessage()
Definition: message.h:73
std::string error_details
Definition: message.h:66
static const char * STATUS_BAD_JSON
Definition: message.h:55
Definition: message.h:70
Holds cryptonote related classes and helpers.
Definition: blockchain_db.cpp:44
epee::byte_slice BAD_REQUEST(const std::string &request)
Definition: message.cpp:213
Message()
Definition: message.h:57
uint32_t rpc_version
Definition: message.h:67
rpc
Definition: console.py:53
GenericValue< UTF8<> > Value
GenericValue with UTF8 encoding.
Definition: document.h:2116
unsigned int uint32_t
Definition: stdint.h:126
static epee::byte_slice getRequest(const std::string &request, const Message &message, unsigned id)
Definition: message.cpp:151
void toJson(rapidjson::Writer< epee::byte_stream > &dest) const
Definition: message.cpp:65
Definition: byte_slice.h:68
GenericDocument< UTF8<> > Document
GenericDocument with UTF8 encoding.
Definition: document.h:2512
std::string getRequestType() const
Definition: message.cpp:105
epee::byte_slice BAD_JSON(const std::string &error_details)
Definition: message.cpp:227
const rapidjson::Value & getID() const
Definition: message.cpp:132
static epee::byte_slice getResponse(const Message &message, const rapidjson::Value &id)
Definition: message.cpp:178
static const char * STATUS_OK
Definition: message.h:51
Definition: message.h:45
Definition: message_data_structs.h:143
tuple message
Definition: gtest_output_test.py:331
cryptonote::rpc::error getError()
Definition: message.cpp:138
virtual void fromJson(const rapidjson::Value &val)
Definition: message.cpp:73
std::string status
Definition: message.h:65
const rapidjson::Value & getMessage() const
Definition: message.cpp:110