X-Git-Url: http://xvm.mit.edu/gitweb/invirt/third/libt4.git/blobdiff_plain/4e881433f37417ccbda89c09ffdf936855d462d4..c06ef44e7af1571710fd31dd0ab068dd77b1eb2d:/rpc/marshall.h diff --git a/rpc/marshall.h b/rpc/marshall.h index 6e0c94a..08b6aaa 100644 --- a/rpc/marshall.h +++ b/rpc/marshall.h @@ -4,28 +4,25 @@ #include "types.h" #include "rpc_protocol.h" -class marshall; -class unmarshall; - // // Marshall and unmarshall objects // class marshall { private: - string buf_ = string(rpc_protocol::DEFAULT_RPC_SZ, 0); // Raw bytes buffer - size_t index_ = rpc_protocol::RPC_HEADER_SZ; // Read/write head position + string buf_ = string(rpc_protocol::DEFAULT_RPC_SZ, 0); + size_t index_ = rpc_protocol::RPC_HEADER_SZ; public: template - marshall(const Args&... args) { + marshall(const Args & ... args) { (void)pass{(*this << args)...}; } - void rawbytes(const void *p, size_t n) { + void write(const void *p, size_t n) { if (index_+n > buf_.size()) buf_.resize(index_+n); - copy((char *)p, (char *)p+n, &buf_[index_]); + std::copy((char *)p, (char *)p+n, &buf_[index_]); index_ += n; } @@ -35,10 +32,10 @@ class marshall { inline string content() const { return buf_.substr(rpc_protocol::RPC_HEADER_SZ,index_-rpc_protocol::RPC_HEADER_SZ); } // letting S be a defaulted template parameter forces the compiler to - // delay looking up operator<<(marshall&, rpc_sz_t) until we define it + // delay looking up operator<<(marshall &, rpc_sz_t) until we define it // (i.e. we define an operator for marshalling uint32_t) template inline void - pack_header(const T & h) { + write_header(const T & h) { VERIFY(sizeof(T)+sizeof(S) <= rpc_protocol::RPC_HEADER_SZ); size_t saved_sz = index_; index_ = 0; @@ -50,30 +47,33 @@ class marshall { class unmarshall { private: string buf_; - size_t index_ = 0; + size_t index_ = rpc_protocol::RPC_HEADER_SZ; bool ok_ = false; public: - unmarshall(const string &s, bool has_header) - : buf_(s),index_(rpc_protocol::RPC_HEADER_SZ) { + template + unmarshall(const string & s, bool has_header, Args && ... args) + : buf_(s) { if (!has_header) buf_.insert(0, rpc_protocol::RPC_HEADER_SZ, 0); ok_ = (buf_.size() >= rpc_protocol::RPC_HEADER_SZ); + (void)pass{(*this >> args)...}; } - bool ok() const { return ok_; } - bool okdone() const { return ok_ && index_ == buf_.size(); } + inline bool ok() const { return ok_; } + inline bool okdone() const { return ok_ && index_ == buf_.size(); } - void rawbytes(void * t, size_t n) { + void read(void * t, size_t n) { if (index_+n > buf_.size()) ok_ = false; - VERIFY(ok_); - copy(&buf_[index_], &buf_[index_+n], (char *)t); - index_ += n; + if (ok_) { + std::copy(&buf_[index_], &buf_[index_+n], (char *)t); + index_ += n; + } } template inline void - unpack_header(T & h) { + read_header(T & h) { VERIFY(sizeof(T)+sizeof(rpc_protocol::rpc_sz_t) <= rpc_protocol::RPC_HEADER_SZ); // first 4 bytes hold length field index_ = sizeof(rpc_protocol::rpc_sz_t); @@ -89,8 +89,8 @@ class unmarshall { // #define MARSHALL_RAW_NETWORK_ORDER_AS(_c_, _d_) \ -inline marshall & operator<<(marshall &m, _c_ x) { _d_ y = hton((_d_)x); m.rawbytes(&y, sizeof(_d_)); return m; } \ -inline unmarshall & operator>>(unmarshall &u, _c_ &x) { _d_ y; u.rawbytes(&y, sizeof(_d_)); x = (_c_)ntoh(y); return u; } +inline marshall & operator<<(marshall & m, _c_ x) { _d_ y = hton((_d_)x); m.write(&y, sizeof(_d_)); return m; } \ +inline unmarshall & operator>>(unmarshall & u, _c_ & x) { _d_ y; u.read(&y, sizeof(_d_)); x = (_c_)ntoh(y); return u; } #define MARSHALL_RAW_NETWORK_ORDER(_c_) MARSHALL_RAW_NETWORK_ORDER_AS(_c_, _c_) @@ -122,26 +122,24 @@ tuple_marshall_imp(marshall & m, tuple & t, tuple_indices) // to be evaluated in order. Order matters because the elements must be // serialized consistently! The empty struct resulting from construction // is discarded. - (void)pass{(m << get(t))...}; + (void)pass{(m << std::get(t))...}; return m; } -template marshall & +template inline marshall & operator<<(marshall & m, tuple && t) { - using Indices = typename make_tuple_indices::type; - return tuple_marshall_imp(m, t, Indices()); + return tuple_marshall_imp(m, t, TUPLE_INDICES(Args)); } template inline unmarshall & -tuple_unmarshall_imp(unmarshall & u, tuple t, tuple_indices) { - (void)pass{(u >> get(t))...}; +tuple_unmarshall_imp(unmarshall & u, tuple t, tuple_indices) { + (void)pass{(u >> std::get(t))...}; return u; } -template unmarshall & -operator>>(unmarshall & u, tuple && t) { - using Indices = typename make_tuple_indices::type; - return tuple_unmarshall_imp(u, t, Indices()); +template inline unmarshall & +operator>>(unmarshall & u, tuple && t) { + return tuple_unmarshall_imp(u, t, TUPLE_INDICES(Args)); } // @@ -149,13 +147,13 @@ operator>>(unmarshall & u, tuple && t) { // // Implements struct marshalling via tuple marshalling of members. -#define MARSHALLABLE_STRUCT(_c_) \ -inline unmarshall & operator>>(unmarshall &u, _c_ &a) { return u >> a._tuple_(); } \ -inline marshall & operator<<(marshall &m, const _c_ a) { return m << a._tuple_(); } +template inline typename +enable_if::value, unmarshall>::type & +operator>>(unmarshall & u, T & a) { return u >> a._tuple_(); } -// our first two marshallable structs... -MARSHALLABLE_STRUCT(rpc_protocol::request_header) -MARSHALLABLE_STRUCT(rpc_protocol::reply_header) +template inline typename +enable_if::value, marshall>::type & +operator<<(marshall & m, const T a) { return m << a._tuple_(); } // // Marshalling for STL containers @@ -164,9 +162,9 @@ MARSHALLABLE_STRUCT(rpc_protocol::reply_header) // this overload is visible for type A only if A::cbegin and A::cend exist template inline typename enable_if::value, marshall>::type & -operator<<(marshall &m, const A &x) { - m << (unsigned int)x.size(); - for (const auto &a : x) +operator<<(marshall & m, const A & x) { + m << (uint32_t)x.size(); + for (const auto & a : x) m << a; return m; } @@ -174,8 +172,8 @@ operator<<(marshall &m, const A &x) { // visible for type A if A::emplace_back(a) makes sense template inline typename enable_if::value, unmarshall>::type & -operator>>(unmarshall &u, A &x) { - unsigned n = u._grab(); +operator>>(unmarshall & u, A & x) { + uint32_t n = u._grab(); x.clear(); while (n--) x.emplace_back(u._grab()); @@ -184,37 +182,37 @@ operator>>(unmarshall &u, A &x) { // std::pair template inline marshall & -operator<<(marshall &m, const pair &d) { +operator<<(marshall & m, const std::pair & d) { return m << d.first << d.second; } template inline unmarshall & -operator>>(unmarshall &u, pair &d) { +operator>>(unmarshall & u, std::pair & d) { return u >> d.first >> d.second; } // std::map template inline unmarshall & -operator>>(unmarshall &u, map &x) { - unsigned n = u._grab(); +operator>>(unmarshall & u, std::map & x) { + uint32_t n = u._grab(); x.clear(); while (n--) - x.emplace(u._grab>()); + x.emplace(u._grab>()); return u; } // std::string -inline marshall & operator<<(marshall &m, const string &s) { +inline marshall & operator<<(marshall & m, const string & s) { m << (uint32_t)s.size(); - m.rawbytes(s.data(), s.size()); + m.write(s.data(), s.size()); return m; } -inline unmarshall & operator>>(unmarshall &u, string &s) { +inline unmarshall & operator>>(unmarshall & u, string & s) { uint32_t sz = u._grab(); if (u.ok()) { s.resize(sz); - u.rawbytes(&s[0], sz); + u.read(&s[0], sz); } return u; } @@ -223,13 +221,13 @@ inline unmarshall & operator>>(unmarshall &u, string &s) { // Marshalling for strongly-typed enums // -template typename enable_if::value, marshall>::type & -operator<<(marshall &m, E e) { +template typename enable_if::value, marshall>::type & +operator<<(marshall & m, E e) { return m << from_enum(e); } -template typename enable_if::value, unmarshall>::type & -operator>>(unmarshall &u, E &e) { +template typename enable_if::value, unmarshall>::type & +operator>>(unmarshall & u, E & e) { e = to_enum(u._grab>()); return u; } @@ -238,11 +236,11 @@ operator>>(unmarshall &u, E &e) { // Recursive marshalling // -inline marshall & operator<<(marshall &m, marshall &n) { +inline marshall & operator<<(marshall & m, marshall & n) { return m << n.content(); } -inline unmarshall & operator>>(unmarshall &u, unmarshall &v) { +inline unmarshall & operator>>(unmarshall & u, unmarshall & v) { v = unmarshall(u._grab(), false); return u; }