aboutsummaryrefslogtreecommitdiff
path: root/examples/performance/expat.cxx
blob: 411685fd66e5da87815c7c744d1270e24eae2b11 (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
// file      : examples/performance/expat.cxx
// license   : not copyrighted - public domain

#include <iostream>
#include <fstream>

#include <expat.h>

#include "time.hxx"

using namespace std;

const unsigned long iterations = 1000;

unsigned long start_count;
unsigned long end_count;

void XMLCALL
start_element (void* data, const XML_Char* ns_name, const XML_Char** atts)
{
  start_count++;
}

void XMLCALL
end_element (void* data, const XML_Char* ns_name)
{
  end_count++;
}

void XMLCALL
characters (void* data, const XML_Char* s, int n)
{
}

int
main (int argc, char* argv[])
{
  if (argc != 2)
  {
    cerr << "usage: " << argv[0] << " <xml-file>" << endl;
    return 1;
  }

  try
  {
    ifstream ifs;
    ifs.exceptions (ios_base::failbit);
    ifs.open (argv[1], ios::in | ios::ate);

    size_t size (ifs.tellg ());
    ifs.seekg (0, ios::beg);

    char* buf = new char[size];
    ifs.read (buf, size);

    cerr << "  document size:  " << size << " bytes" << endl;

    // Warmup.
    //
    bool failed (false);
    for (unsigned long i (0); !failed && i < 10; ++i)
    {
      start_count = 0;
      end_count = 0;

      XML_Parser p (XML_ParserCreateNS (0, ' '));
      XML_SetStartElementHandler (p, start_element);
      XML_SetEndElementHandler (p, end_element);
      XML_SetCharacterDataHandler (p, characters);
      XML_Parse (p, buf, size, 1);
      XML_ParserFree (p);

      if (start_count != end_count)
        failed = true;
    }

    if (failed)
    {
      cerr << "failed" << endl;
      return 1;
    }

    cerr << "  elements:       " << start_count << endl;

    os::time start;

    for (unsigned long i (0); !failed && i < 1000; ++i)
    {
      start_count = 0;
      end_count = 0;

      XML_Parser p (XML_ParserCreateNS (0, ' '));
      XML_SetStartElementHandler (p, start_element);
      XML_SetEndElementHandler (p, end_element);
      XML_SetCharacterDataHandler (p, characters);
      XML_Parse (p, buf, size, 1);
      XML_ParserFree (p);

      if (start_count != end_count)
        failed = true;
    }

    os::time end;
    delete[] buf;

    if (failed)
    {
      cerr << "failed" << endl;
      return 1;
    }

    os::time time (end - start);
    double ms (time.sec () * 1000000ULL + time.nsec () / 1000ULL);

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

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

    // Calculate throughput in MBytes/sec.
    //
    double tpb (((size * iterations) / ms) * 1000000/(1024*1024));
    cerr << "  throughput:     " << tpb << " MBytes/sec" << endl;
  }
  catch (ios_base::failure const&)
  {
    cerr << "io failure" << endl;
    return 1;
  }
}