Packets: catch senf::exceptions in Packet.dump()
tho [Wed, 4 Nov 2009 16:19:21 +0000 (16:19 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@1515 270642c3-0616-0410-b53a-bc976706d245

senf/Packets/Packet.test.cc
senf/Packets/PacketInterpreter.cc

index 84ba3f1..4dbe329 100644 (file)
@@ -240,6 +240,8 @@ BOOST_AUTO_UNIT_TEST(packet)
     senf::DataPacket::createAfter(packet);
     BOOST_CHECK_THROW( packet.next().next().next().parseNextAs<BarPacket>(),
             senf::InvalidPacketChainException );
+
+    SENF_CHECK_NO_THROW( BarPacket::create(senf::noinit).dump(s));
 }
 
 BOOST_AUTO_UNIT_TEST(concretePacket)
index fcd6783..9c7e3b2 100644 (file)
@@ -74,13 +74,18 @@ prefix_ senf::PacketInterpreterBase::ptr senf::PacketInterpreterBase::append(ptr
 
 prefix_ void senf::PacketInterpreterBase::dump(std::ostream & os)
 {
-    if (detail::AnnotationIndexerBase::maxAnnotations > 0) {
-        os << "Annotations:\n";
-        impl().dumpAnnotations(os);
+    try {
+        if (detail::AnnotationIndexerBase::maxAnnotations > 0) {
+            os << "Annotations:\n";
+            impl().dumpAnnotations(os);
+        }
+        v_dump(os);
+        for (ptr i (next()); i; i = i->next())
+            i->v_dump(os);
+    }
+    catch (senf::Exception & e) {
+        os << "[Exception: " << e.message() << "]\n";
     }
-    v_dump(os);
-    for (ptr i (next()); i; i = i->next())
-        i->v_dump(os);
 }
 
 prefix_ void senf::PacketInterpreterBase::finalizeThis()