| 1 |
// Copyright (c) 2009, Whispersoft s.r.l. |
|---|
| 2 |
// All rights reserved. |
|---|
| 3 |
// |
|---|
| 4 |
// Redistribution and use in source and binary forms, with or without |
|---|
| 5 |
// modification, are permitted provided that the following conditions are |
|---|
| 6 |
// met: |
|---|
| 7 |
// |
|---|
| 8 |
// * Redistributions of source code must retain the above copyright |
|---|
| 9 |
// notice, this list of conditions and the following disclaimer. |
|---|
| 10 |
// * Redistributions in binary form must reproduce the above |
|---|
| 11 |
// copyright notice, this list of conditions and the following disclaimer |
|---|
| 12 |
// in the documentation and/or other materials provided with the |
|---|
| 13 |
// distribution. |
|---|
| 14 |
// * Neither the name of Whispersoft s.r.l. nor the names of its |
|---|
| 15 |
// contributors may be used to endorse or promote products derived from |
|---|
| 16 |
// this software without specific prior written permission. |
|---|
| 17 |
// |
|---|
| 18 |
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|---|
| 19 |
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|---|
| 20 |
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|---|
| 21 |
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|---|
| 22 |
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|---|
| 23 |
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|---|
| 24 |
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|---|
| 25 |
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|---|
| 26 |
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|---|
| 27 |
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|---|
| 28 |
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|---|
| 29 |
// |
|---|
| 30 |
// Author: Catalin Popescu |
|---|
| 31 |
// |
|---|
| 32 |
// Performance test for JsonEncode |
|---|
| 33 |
// |
|---|
| 34 |
// |
|---|
| 35 |
|
|---|
| 36 |
#include <sys/stat.h> |
|---|
| 37 |
#include <fcntl.h> |
|---|
| 38 |
#include <unistd.h> |
|---|
| 39 |
|
|---|
| 40 |
#include "common/base/log.h" |
|---|
| 41 |
#include "common/base/strutil.h" |
|---|
| 42 |
#include "common/base/system.h" |
|---|
| 43 |
|
|---|
| 44 |
DEFINE_string(infile, |
|---|
| 45 |
"", |
|---|
| 46 |
"Convert text from this file"); |
|---|
| 47 |
DEFINE_int32(piece_size, |
|---|
| 48 |
100, |
|---|
| 49 |
"Convert in pieces of this size"); |
|---|
| 50 |
|
|---|
| 51 |
DEFINE_bool(dump, |
|---|
| 52 |
false, |
|---|
| 53 |
"Dump what we read ?"); |
|---|
| 54 |
|
|---|
| 55 |
int main(int argc, char* argv[]) { |
|---|
| 56 |
common::Init(argc, argv); |
|---|
| 57 |
const int fd = ::open(FLAGS_infile.c_str(), O_RDONLY | O_LARGEFILE); |
|---|
| 58 |
CHECK_GE(fd, 0) << " Cannot open: " << FLAGS_infile; |
|---|
| 59 |
|
|---|
| 60 |
char* const buffer = new char[FLAGS_piece_size]; |
|---|
| 61 |
do { |
|---|
| 62 |
const int cb = ::read(fd, buffer, FLAGS_piece_size - 1); |
|---|
| 63 |
buffer[cb] = '\0'; |
|---|
| 64 |
if ( cb <= 0 ) { |
|---|
| 65 |
return 0; |
|---|
| 66 |
} |
|---|
| 67 |
string out(strutil::JsonStrEscape(buffer, cb)); |
|---|
| 68 |
if ( FLAGS_dump ) { |
|---|
| 69 |
printf("%s\n", out.c_str()); |
|---|
| 70 |
} |
|---|
| 71 |
} while ( true ); |
|---|
| 72 |
return 1; |
|---|
| 73 |
} |
|---|