summaryrefslogtreecommitdiff
path: root/examples/cxx/tree/performance/serialization.cxx
blob: 12c43aedc9cb6396416265ee81098f9a5956b800 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// file      : examples/cxx/tree/performance/serialization.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : not copyrighted - public domain

#include <memory>  // std::auto_ptr
#include <cstddef> // std::size_t
#include <sstream>
#include <iostream>

#include <xercesc/dom/DOM.hpp>
#if _XERCES_VERSION >= 30000
#  include <xercesc/dom/DOMLSOutput.hpp>
#  include <xercesc/dom/DOMLSSerializer.hpp>
#else
#  include <xercesc/dom/DOMWriter.hpp>
#endif
#include <xercesc/dom/DOMImplementation.hpp>
#include <xercesc/dom/DOMImplementationRegistry.hpp>

#include <xercesc/framework/MemBufFormatTarget.hpp>

#include <xercesc/util/XMLUniDefs.hpp>

#include <xsd/cxx/xml/dom/bits/error-handler-proxy.hxx>
#include <xsd/cxx/tree/error-handler.hxx>

#include "time.hxx"
#include "test.hxx"

using namespace std;

bool
serialization (const char* file, unsigned long iter)
{
  try
  {
    using namespace xercesc;

    cerr << "serialization:" << endl;

    // Get the object model using the standard parsing function.
    //
    auto_ptr<test::root> r (
      test::root_ (file,
                   xml_schema::flags::dont_initialize |
                   xml_schema::flags::dont_validate));

    // Serialize it to the in-memory buffer. This makes sure the buffer
    // pre-allocates enough memory.
    //
    xml_schema::namespace_infomap map;
    map["t"].name = "test";
    map["t"].schema = "test.xsd";

    MemBufFormatTarget ft (10240);
    test::root_ (ft, *r, map, "UTF-8",
                 xml_schema::flags::dont_initialize |
                 xml_schema::flags::dont_pretty_print |
                 xml_schema::flags::no_xml_declaration);

    size_t size (ft.getLen ());
    cerr << "  document size:  " << size << " bytes" << endl
         << "  iterations:     " << iter << endl;

    // Create XML serializer that we are going to use in all iterations.
    //
    const XMLCh ls_id[] =
      {xercesc::chLatin_L, xercesc::chLatin_S, xercesc::chNull};

    DOMImplementation* impl (
      DOMImplementationRegistry::getDOMImplementation (ls_id));

    // Use the error handler implementation provided by the XSD runtime.
    //
    xsd::cxx::tree::error_handler<char> eh;
    xsd::cxx::xml::dom::bits::error_handler_proxy<char> ehp (eh);

#if _XERCES_VERSION >= 30000
    xml_schema::dom::auto_ptr<DOMLSSerializer> writer (
      impl->createLSSerializer ());

    DOMConfiguration* conf (writer->getDomConfig ());

    conf->setParameter (XMLUni::fgDOMErrorHandler, &ehp);
    conf->setParameter (XMLUni::fgDOMXMLDeclaration, false);

    xml_schema::dom::auto_ptr<DOMLSOutput> out (impl->createLSOutput ());

    out->setByteStream (&ft);
#else
    // Same as above but for Xerces-C++ 2 series.
    //
    xml_schema::dom::auto_ptr<DOMWriter> writer (impl->createDOMWriter ());

    writer->setErrorHandler (&ehp);
    writer->setFeature (XMLUni::fgDOMXMLDeclaration, false);
#endif

    // Serialization loop.
    //
    os::time start;

    for (unsigned long i (0); i < iter; ++i)
    {
      // First serialize the object model to DOM.
      //
      xml_schema::dom::auto_ptr<DOMDocument> doc (test::root_ (*r, map));

      ft.reset ();

      // Then serialize DOM to XML reusing the serializer we created above.
      //
#if _XERCES_VERSION >= 30000
      writer->write (doc.get (), out.get ());
#else
      writer->writeNode (&ft, *doc);
#endif

      eh.throw_if_failed<xml_schema::serialization> ();
    }

    os::time end;
    os::time time (end - start);

    cerr << "  time:           " << time << " sec" << endl;

    double ms (time.sec () * 1000000ULL + time.nsec () / 1000ULL);

    // Calculate throughput in documents/sec.
    //
    double tpd ((iter / ms) * 1000000);
    cerr << "  throughput:     " << tpd << " documents/sec" << endl;

    // Calculate throughput in MBytes/sec.
    //
    double tpb (((size * iter) / ms) * 1000000/(1024*1024));
    cerr << "  throughput:     " << tpb << " MBytes/sec" << endl;
  }
  catch (const xml_schema::exception& e)
  {
    cerr << e << endl;
    return false;
  }
  catch (std::ios_base::failure const&)
  {
    cerr << "io failure" << endl;
    return false;
  }

  return true;
}