zorba-coders team mailing list archive
-
zorba-coders team
-
Mailing list archive
-
Message #10927
[Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
David Graf has proposed merging lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba.
Requested reviews:
Chris Hillery (ceejatec)
For more details, see:
https://code.launchpad.net/~davidagraf/zorba/trace_without_debug_info/+merge/110377
--
https://code.launchpad.net/~davidagraf/zorba/trace_without_debug_info/+merge/110377
Your team Zorba Coders is subscribed to branch lp:zorba.
=== modified file 'src/runtime/errors_and_diagnostics/errors_and_diagnostics_impl.cpp'
--- src/runtime/errors_and_diagnostics/errors_and_diagnostics_impl.cpp 2012-05-03 12:31:51 +0000
+++ src/runtime/errors_and_diagnostics/errors_and_diagnostics_impl.cpp 2012-06-14 17:55:23 +0000
@@ -16,6 +16,7 @@
#include "stdafx.h"
#include <iostream>
+#include <zorba/singleton_item_sequence.h>
#include "diagnostics/xquery_diagnostics.h"
#include "diagnostics/user_exception.h"
@@ -31,6 +32,10 @@
#include "system/globalenv.h"
#include "zorbatypes/zstring.h"
+#include "api/serialization/serializer.h"
+#include "api/serializerimpl.h"
+#include "api/unmarshaller.h"
+
namespace zorba
{
@@ -102,9 +107,42 @@
while (consumeNext(result, theChildren[0], planState))
{
(*state->theOS) << state->theTagItem->getStringValue()
- << " [" << state->theIndex << "]: "
- << result->show()
- << std::endl;
+ << " [" << state->theIndex << "]: ";
+
+ if (result->getNodeKind() == store::StoreConsts::attributeNode)
+ {
+ store::Item* qnameItem = result->getNodeName();
+ const zstring& prefix = qnameItem->getPrefix();
+ const zstring& local = qnameItem->getLocalName();
+
+ if (prefix.empty())
+ (*state->theOS) << " " << local << "=\"";
+ else
+ (*state->theOS) << " " << prefix << ":" << local << "=\"";
+
+ zstring value;
+ result->getStringValue2(value);
+ (*state->theOS) << value;
+
+ (*state->theOS) << "\"";
+ }
+ else
+ {
+ serializer ser(NULL);
+ Zorba_SerializerOptions options;
+ options.omit_xml_declaration = ZORBA_OMIT_XML_DECLARATION_YES;
+ SerializerImpl::setSerializationParameters(ser, options);
+ const Item lItem(result);
+ SingletonItemSequence lSequence(lItem);
+ Iterator_t seq_iter = lSequence.getIterator();
+ seq_iter->open();
+ ser.serialize(
+ Unmarshaller::getInternalIterator(seq_iter.get()),
+ (*state->theOS));
+ seq_iter->close();
+ }
+
+ (*state->theOS) << std::endl;
++state->theIndex;
STACK_PUSH(true, state);
Follow ups
-
[Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: noreply, 2012-07-13
-
[Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: Zorba Build Bot, 2012-07-13
-
[Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: Zorba Build Bot, 2012-07-13
-
[Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: David Graf, 2012-07-13
-
[Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: Zorba Build Bot, 2012-07-13
-
Re: [Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: Zorba Build Bot, 2012-07-13
-
[Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: Zorba Build Bot, 2012-07-13
-
[Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: David Graf, 2012-07-13
-
[Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: Chris Hillery, 2012-07-13
-
Re: [Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: Chris Hillery, 2012-07-13
-
Re: [Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: David Graf, 2012-07-02
-
Re: [Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: David Graf, 2012-06-27
-
Re: [Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: Chris Hillery, 2012-06-27
-
Re: [Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: David Graf, 2012-06-26
-
Re: [Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: David Graf, 2012-06-18
-
Re: [Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: Chris Hillery, 2012-06-15
-
Re: [Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: Chris Hillery, 2012-06-14
-
Re: [Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: Chris Hillery, 2012-06-14
-
Re: [Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: Matthias Brantner, 2012-06-14
-
Re: [Merge] lp:~davidagraf/zorba/trace_without_debug_info into lp:zorba
From: David Graf, 2012-06-14