OSDN Git Service

2006-03-21 Paolo Carlini <pcarlini@suse.de>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / performance / 25_algorithms / copy_streambuf_iterators.cc
1 // Copyright (C) 2006 Free Software Foundation, Inc.
2 //
3 // This file is part of the GNU ISO C++ Library.  This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 2, or (at your option)
7 // any later version.
8
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING.  If not, write to the Free
16 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17 // USA.
18
19 // As a special exception, you may use this file as part of a free software
20 // library without restriction.  Specifically, if other files instantiate
21 // templates or use macros or inline functions from this file, or you compile
22 // this file and link it with other files to produce an executable, this
23 // file does not by itself cause the resulting executable to be covered by
24 // the GNU General Public License.  This exception does not however
25 // invalidate any other reasons why the executable file might be covered by
26 // the GNU General Public License.
27
28 #include <iterator>
29 #include <sstream>
30 #include <algorithm>
31 #include <testsuite_performance.h>
32
33 // libstdc++/25482
34 int main()
35 {
36   using namespace std;
37   using namespace __gnu_test;
38
39   typedef istreambuf_iterator<char> in_iterator_type;
40   typedef ostreambuf_iterator<char> out_iterator_type;
41
42   time_counter time;
43   resource_counter resource;
44
45   const char data[] = "Contrappunto dialettico alla mente";
46
47   // istreambuf iterators -> ostreambuf iterator
48   {
49     istringstream iss(data);
50     in_iterator_type beg(iss);
51     in_iterator_type end;
52     
53     ostringstream oss;
54     out_iterator_type out(oss);
55
56     start_counters(time, resource);
57     for (unsigned i = 0; i < 10000000; ++i)
58       {
59         copy(beg, end, out);
60         iss.seekg(0);
61         oss.seekp(0);
62       }
63     stop_counters(time, resource);
64     report_performance(__FILE__, "isb iters -> osb iter", time, resource);
65     clear_counters(time, resource);
66   }
67
68   // char array -> ostreambuf iterator
69   {
70     const char* beg = data;
71     const char* end = data + sizeof(data) - 1;
72
73     ostringstream oss;
74     out_iterator_type out(oss);
75
76     start_counters(time, resource);
77     for (unsigned i = 0; i < 10000000; ++i)
78       {
79         copy(beg, end, out);
80         oss.seekp(0);
81       }
82     stop_counters(time, resource);
83     report_performance(__FILE__, "pointers  -> osb iter", time, resource);
84     clear_counters(time, resource);
85   }
86
87   // istreambuf iterators -> char array
88   {
89     istringstream iss(data);
90     in_iterator_type beg(iss);
91     in_iterator_type end;
92
93     char out[sizeof(data)];
94
95     start_counters(time, resource);
96     for (unsigned i = 0; i < 10000000; ++i)
97       {
98         copy(beg, end, out);
99         iss.seekg(0);
100       }
101     stop_counters(time, resource);
102     report_performance(__FILE__, "isb iters -> pointer", time, resource);
103     clear_counters(time, resource);
104   }
105
106   return 0;
107 }