mirror of
https://github.com/zeromq/cppzmq.git
synced 2025-05-20 21:08:37 +02:00
Consistently indented some preprocessor directives.
Added a str() method and companion operator<<(std::ostream) similar to multipart_t. Added some comments to mark the end of preprocessor instructions / class def / namespace def.
This commit is contained in:
parent
f945a7d032
commit
0d1c20e2ea
66
zmq.hpp
66
zmq.hpp
@ -42,18 +42,22 @@
|
|||||||
|
|
||||||
#include <zmq.h>
|
#include <zmq.h>
|
||||||
|
|
||||||
#include <algorithm>
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <string>
|
|
||||||
|
#include <algorithm>
|
||||||
#include <exception>
|
#include <exception>
|
||||||
#include <vector>
|
#include <iomanip>
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
|
#include <sstream>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
|
||||||
#ifdef ZMQ_CPP11
|
#ifdef ZMQ_CPP11
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <tuple>
|
#include <tuple>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Detect whether the compiler supports C++11 rvalue references.
|
// Detect whether the compiler supports C++11 rvalue references.
|
||||||
@ -83,11 +87,11 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ZMQ_VERSION >= ZMQ_MAKE_VERSION(3, 3, 0)
|
#if ZMQ_VERSION >= ZMQ_MAKE_VERSION(3, 3, 0)
|
||||||
#define ZMQ_NEW_MONITOR_EVENT_LAYOUT
|
#define ZMQ_NEW_MONITOR_EVENT_LAYOUT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ZMQ_VERSION >= ZMQ_MAKE_VERSION(4, 1, 0)
|
#if ZMQ_VERSION >= ZMQ_MAKE_VERSION(4, 1, 0)
|
||||||
#define ZMQ_HAS_PROXY_STEERABLE
|
#define ZMQ_HAS_PROXY_STEERABLE
|
||||||
/* Socket event data */
|
/* Socket event data */
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint16_t event; // id of the event as bitfield
|
uint16_t event; // id of the event as bitfield
|
||||||
@ -378,6 +382,42 @@ namespace zmq
|
|||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
/** Dump content to string. Ascii chars are readable, the rest is printed as hex.
|
||||||
|
* Probably ridiculously slow.
|
||||||
|
*/
|
||||||
|
inline std::string str() const
|
||||||
|
{
|
||||||
|
// Partly mutuated from the same method in zmq::multipart_t
|
||||||
|
std::stringstream os;
|
||||||
|
|
||||||
|
const unsigned char* msg_data = this->data<unsigned char>();
|
||||||
|
unsigned char byte;
|
||||||
|
size_t size = this->size();
|
||||||
|
int is_ascii[2] = {0, 0};
|
||||||
|
|
||||||
|
os << "zmq::message_t [size " << std::dec << std::setw(3) << std::setfill('0') << size << "] (";
|
||||||
|
// Totally arbitrary
|
||||||
|
if (size >= 1000) {
|
||||||
|
os << "... too big to print)";
|
||||||
|
} else {
|
||||||
|
while (size--) {
|
||||||
|
byte = *msg_data++;
|
||||||
|
|
||||||
|
is_ascii[1] = (byte >= 33 && byte < 127);
|
||||||
|
if (is_ascii[1] != is_ascii[0])
|
||||||
|
os << " "; // Separate text/non text
|
||||||
|
|
||||||
|
if (is_ascii[1]) {
|
||||||
|
os << byte;
|
||||||
|
} else {
|
||||||
|
os << std::hex << std::uppercase << std::setw(2) << std::setfill('0') << static_cast<short>(byte);
|
||||||
|
}
|
||||||
|
is_ascii[0] = is_ascii[1];
|
||||||
|
}
|
||||||
|
os << ")";
|
||||||
|
}
|
||||||
|
return os.str();
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// The underlying message
|
// The underlying message
|
||||||
@ -995,9 +1035,15 @@ namespace zmq
|
|||||||
private:
|
private:
|
||||||
void *poller_ptr;
|
void *poller_ptr;
|
||||||
std::vector<zmq_poller_event_t> poller_events;
|
std::vector<zmq_poller_event_t> poller_events;
|
||||||
};
|
}; // class poller_t
|
||||||
#endif // defined(ZMQ_BUILD_DRAFT_API) && defined(ZMQ_CPP11) && defined(ZMQ_HAVE_POLLER)
|
#endif // defined(ZMQ_BUILD_DRAFT_API) && defined(ZMQ_CPP11) && defined(ZMQ_HAVE_POLLER)
|
||||||
|
|
||||||
|
|
||||||
|
inline std::ostream& operator<<(std::ostream& os, const message_t& msg)
|
||||||
|
{
|
||||||
|
return os << msg.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
} // namespace zmq
|
||||||
|
|
||||||
|
#endif // __ZMQ_HPP_INCLUDED__
|
||||||
|
Loading…
x
Reference in New Issue
Block a user