Monero
message.h
Go to the documentation of this file.
1 // Copyright (c) 2016-2020, 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 
65  std::string status;
66  std::string error_details;
67  uint32_t rpc_version;
68  };
69 
71  {
72  public:
74 
75  FullMessage(std::string&& json_string, bool request=false);
76 
77  std::string getRequestType() const;
78 
79  const rapidjson::Value& getMessage() const;
80 
81  rapidjson::Value getMessageCopy();
82 
83  const rapidjson::Value& getID() const;
84 
86 
87  static epee::byte_slice getRequest(const std::string& request, const Message& message, unsigned id);
88  static epee::byte_slice getResponse(const Message& message, const rapidjson::Value& 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);
96  FullMessage(Message* message);
97 
98  std::string contents;
99  rapidjson::Document doc;
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
Definition: message.h:71
static epee::byte_slice getRequest(const std::string &request, const Message &message, unsigned id)
Definition: message.cpp:151
const rapidjson::Value & getMessage() const
Definition: message.cpp:110
FullMessage & operator=(const FullMessage &)=delete
~FullMessage()
Definition: message.h:73
FullMessage(const std::string &request, Message *message)
FullMessage(const FullMessage &)=delete
FullMessage(Message *message)
static epee::byte_slice getResponse(const Message &message, const rapidjson::Value &id)
Definition: message.cpp:178
rapidjson::Document doc
Definition: message.h:99
std::string contents
Definition: message.h:98
rapidjson::Value getMessageCopy()
Definition: message.cpp:127
std::string getRequestType() const
Definition: message.cpp:105
cryptonote::rpc::error getError()
Definition: message.cpp:138
const rapidjson::Value & getID() const
Definition: message.cpp:132
Definition: message.h:46
static const char * STATUS_FAILED
Definition: message.h:53
virtual void fromJson(const rapidjson::Value &val)
Definition: message.cpp:73
std::string status
Definition: message.h:65
static const char * STATUS_OK
Definition: message.h:51
Message()
Definition: message.h:57
static const char * STATUS_BAD_JSON
Definition: message.h:55
static const char * STATUS_RETRY
Definition: message.h:52
void toJson(rapidjson::Writer< epee::byte_stream > &dest) const
Definition: message.cpp:65
uint32_t rpc_version
Definition: message.h:67
std::string error_details
Definition: message.h:66
virtual void doToJson(rapidjson::Writer< epee::byte_stream > &dest) const
Definition: message.h:47
static const char * STATUS_BAD_REQUEST
Definition: message.h:54
virtual ~Message()
Definition: message.h:59
epee::byte_slice BAD_REQUEST(const std::string &request)
Definition: message.cpp:213
epee::byte_slice BAD_JSON(const std::string &error_details)
Definition: message.cpp:227
Holds cryptonote related classes and helpers.
Definition: blockchain_db.cpp:45
CXA_THROW_INFO_T void(* dest)(void *))
Definition: stack_trace.cpp:90
Definition: message_data_structs.h:144