David Reiss | ea2cba8 | 2009-03-30 21:35:00 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Licensed to the Apache Software Foundation (ASF) under one |
| 3 | * or more contributor license agreements. See the NOTICE file |
| 4 | * distributed with this work for additional information |
| 5 | * regarding copyright ownership. The ASF licenses this file |
| 6 | * to you under the Apache License, Version 2.0 (the |
| 7 | * "License"); you may not use this file except in compliance |
| 8 | * with the License. You may obtain a copy of the License at |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, |
| 13 | * software distributed under the License is distributed on an |
| 14 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | * KIND, either express or implied. See the License for the |
| 16 | * specific language governing permissions and limitations |
| 17 | * under the License. |
| 18 | */ |
| 19 | |
Roger Meier | 2fa9c31 | 2011-09-05 19:15:53 +0000 | [diff] [blame] | 20 | #ifdef HAVE_CONFIG_H |
| 21 | #include <config.h> |
| 22 | #endif |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 23 | #include <iostream> |
Jim King | 9de9b1f | 2015-04-30 16:03:34 -0400 | [diff] [blame] | 24 | #define _USE_MATH_DEFINES |
| 25 | #include <math.h> |
Roger Meier | 49ff8b1 | 2012-04-13 09:12:31 +0000 | [diff] [blame] | 26 | #include "thrift/transport/TBufferTransports.h" |
| 27 | #include "thrift/protocol/TBinaryProtocol.h" |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 28 | #include "gen-cpp/DebugProtoTest_types.h" |
Roger Meier | 6f28c04 | 2014-11-01 20:31:44 +0100 | [diff] [blame] | 29 | |
Roger Meier | 2fa9c31 | 2011-09-05 19:15:53 +0000 | [diff] [blame] | 30 | #ifdef HAVE_SYS_TIME_H |
David Reiss | 81c7fc0 | 2008-04-28 02:51:44 +0000 | [diff] [blame] | 31 | #include <sys/time.h> |
Roger Meier | 2fa9c31 | 2011-09-05 19:15:53 +0000 | [diff] [blame] | 32 | #endif |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 33 | |
| 34 | class Timer { |
| 35 | public: |
| 36 | timeval vStart; |
| 37 | |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 38 | Timer() { THRIFT_GETTIMEOFDAY(&vStart, 0); } |
| 39 | void start() { THRIFT_GETTIMEOFDAY(&vStart, 0); } |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 40 | |
| 41 | double frame() { |
| 42 | timeval vEnd; |
Roger Meier | 22888ce | 2014-02-09 11:31:02 +0100 | [diff] [blame] | 43 | THRIFT_GETTIMEOFDAY(&vEnd, 0); |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 44 | double dstart = vStart.tv_sec + ((double)vStart.tv_usec / 1000000.0); |
| 45 | double dend = vEnd.tv_sec + ((double)vEnd.tv_usec / 1000000.0); |
| 46 | return dend - dstart; |
| 47 | } |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 48 | }; |
| 49 | |
| 50 | int main() { |
| 51 | using namespace std; |
| 52 | using namespace thrift::test::debug; |
T Jake Luciani | b5e6221 | 2009-01-31 22:36:20 +0000 | [diff] [blame] | 53 | using namespace apache::thrift::transport; |
| 54 | using namespace apache::thrift::protocol; |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 55 | using namespace boost; |
| 56 | |
| 57 | OneOfEach ooe; |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 58 | ooe.im_true = true; |
| 59 | ooe.im_false = false; |
| 60 | ooe.a_bite = 0x7f; |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 61 | ooe.integer16 = 27000; |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 62 | ooe.integer32 = 1 << 24; |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 63 | ooe.integer64 = (uint64_t)6000 * 1000 * 1000; |
| 64 | ooe.double_precision = M_PI; |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 65 | ooe.some_characters = "JSON THIS! \"\1"; |
| 66 | ooe.zomg_unicode = "\xd7\n\a\t"; |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 67 | ooe.base64 = "\1\2\3\255"; |
| 68 | |
Roger Meier | 611f90c | 2011-12-11 22:08:51 +0000 | [diff] [blame] | 69 | boost::shared_ptr<TMemoryBuffer> buf(new TMemoryBuffer()); |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 70 | |
| 71 | int num = 1000000; |
| 72 | |
| 73 | { |
| 74 | Timer timer; |
| 75 | |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 76 | for (int i = 0; i < num; i++) { |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 77 | buf->resetBuffer(); |
David Reiss | e71115b | 2010-10-06 17:09:56 +0000 | [diff] [blame] | 78 | TBinaryProtocolT<TBufferBase> prot(buf); |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 79 | ooe.write(&prot); |
| 80 | } |
| 81 | cout << "Write: " << num / (1000 * timer.frame()) << " kHz" << endl; |
| 82 | } |
| 83 | |
| 84 | uint8_t* data; |
| 85 | uint32_t datasize; |
| 86 | |
| 87 | buf->getBuffer(&data, &datasize); |
| 88 | |
| 89 | { |
| 90 | |
| 91 | Timer timer; |
| 92 | |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 93 | for (int i = 0; i < num; i++) { |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 94 | OneOfEach ooe2; |
Roger Meier | 611f90c | 2011-12-11 22:08:51 +0000 | [diff] [blame] | 95 | boost::shared_ptr<TMemoryBuffer> buf2(new TMemoryBuffer(data, datasize)); |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 96 | // buf2->resetBuffer(data, datasize); |
David Reiss | e71115b | 2010-10-06 17:09:56 +0000 | [diff] [blame] | 97 | TBinaryProtocolT<TBufferBase> prot(buf2); |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 98 | ooe2.read(&prot); |
| 99 | |
Konrad Grochowski | 16a23a6 | 2014-11-13 15:33:38 +0100 | [diff] [blame] | 100 | // cout << apache::thrift::ThriftDebugString(ooe2) << endl << endl; |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 101 | } |
| 102 | cout << " Read: " << num / (1000 * timer.frame()) << " kHz" << endl; |
| 103 | } |
| 104 | |
David Reiss | 2a4bfd6 | 2008-04-07 23:45:00 +0000 | [diff] [blame] | 105 | return 0; |
| 106 | } |