X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=common%2Fpickle.hpp;h=41667e653783be3bf934ceba9a11afaaba373615;hb=e088e5c37db9c47728619481ae845aa48def3e06;hp=f333960a7adefb31a57d48165c2da5ac753bdb6e;hpb=2ae3c962d308ceb866f7478866cdcc85f50a987d;p=apitrace diff --git a/common/pickle.hpp b/common/pickle.hpp index f333960..41667e6 100644 --- a/common/pickle.hpp +++ b/common/pickle.hpp @@ -106,13 +106,15 @@ private: public: PickleWriter(std::ostream &_os) : - os(_os) - { + os(_os) { + } + + inline void begin() { os.put(PROTO); os.put(2); } - ~PickleWriter() { + inline void end() { os.put(STOP); } @@ -266,6 +268,16 @@ public: os.put(u.c[0]); } + inline void writeByteArray(const void *buf, size_t length) { + os.put(GLOBAL); + os << "__builtin__\nbytearray\n"; + os.put(BINPUT); + os.put(1); + writeString(static_cast(buf), length); + os.put(TUPLE1); + os.put(REDUCE); + } + protected: inline void putInt16(uint16_t i) { os.put( i & 0xff); @@ -288,12 +300,15 @@ protected: return; } - unsigned c = 1; // Same as l >> (8 * sizeof l), but without the warnings T sign = l < 0 ? ~0 : 0; - while ((l >> (8 * c)) != sign) { + + T sl = l; + unsigned c = 0; + do { ++c; - } + } while (sl >>= 8 != sign); + // Add an extra byte if sign bit doesn't match if (((l >> (8 * c - 1)) & 1) != ((l >> (8 * sizeof l - 1)) & 1)) { ++c;