summaryrefslogtreecommitdiff
path: root/cpp/test.cpp
diff options
context:
space:
mode:
authorfrsyuki <frsyuki@5a5092ae-2292-43ba-b2d5-dcab9c1a2731>2009-02-15 09:09:56 +0000
committerfrsyuki <frsyuki@5a5092ae-2292-43ba-b2d5-dcab9c1a2731>2009-02-15 09:09:56 +0000
commit7e6b55a71805dabb2ad82bf6802ea81f36bc911a (patch)
tree6a9173e7225d6f30c55bbfa3a0212cff1932b965 /cpp/test.cpp
parent990ac38ccdb51acc520fa43c99115cb216ec95e6 (diff)
downloadmsgpack-python-7e6b55a71805dabb2ad82bf6802ea81f36bc911a.tar.gz
lang/c/msgpack: C++ binding: support non-MessagePack message that follows after MessagePack message
git-svn-id: file:///Users/frsyuki/project/msgpack-git/svn/x@56 5a5092ae-2292-43ba-b2d5-dcab9c1a2731
Diffstat (limited to 'cpp/test.cpp')
-rw-r--r--cpp/test.cpp17
1 files changed, 15 insertions, 2 deletions
diff --git a/cpp/test.cpp b/cpp/test.cpp
index 3756a05..e236d0f 100644
--- a/cpp/test.cpp
+++ b/cpp/test.cpp
@@ -169,7 +169,10 @@ int main(void)
msgpack::unpacker upk;
while(stream.good() && total_bytes > 0) {
+ // 1. reserve buffer
upk.reserve_buffer(RESERVE_SIZE);
+
+ // 2. read data to buffer() up to buffer_capacity() bytes
size_t sz = stream.readsome(
(char*)upk.buffer(),
upk.buffer_capacity());
@@ -179,14 +182,24 @@ int main(void)
<< upk.buffer_capacity() << " bytes"
<< std::endl;
+ // 3. specify the number of bytes actually copied
upk.buffer_consumed(sz);
+
+ // 4. repeat execute() until it returns false
while( upk.execute() ) {
std::cout << "message parsed" << std::endl;
- boost::scoped_ptr<msgpack::zone> pz(upk.release_zone());
+
+ // 5.1. take out the parsed object
msgpack::object o = upk.data();
- upk.reset();
+
+ // 5.2. the parsed object is valid until the zone is deleted
+ boost::scoped_ptr<msgpack::zone> pz(upk.release_zone());
+
std::cout << o << std::endl;
++num_msg;
+
+ // 5.3 re-initialize unpacker
+ upk.reset();
}
}