/Users/deen/code/yugabyte-db/src/yb/util/hexdump.cc
Line | Count | Source |
1 | | // Licensed to the Apache Software Foundation (ASF) under one |
2 | | // or more contributor license agreements. See the NOTICE file |
3 | | // distributed with this work for additional information |
4 | | // regarding copyright ownership. The ASF licenses this file |
5 | | // to you under the Apache License, Version 2.0 (the |
6 | | // "License"); you may not use this file except in compliance |
7 | | // with the License. You may obtain a copy of the License at |
8 | | // |
9 | | // http://www.apache.org/licenses/LICENSE-2.0 |
10 | | // |
11 | | // Unless required by applicable law or agreed to in writing, |
12 | | // software distributed under the License is distributed on an |
13 | | // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
14 | | // KIND, either express or implied. See the License for the |
15 | | // specific language governing permissions and limitations |
16 | | // under the License. |
17 | | // |
18 | | // The following only applies to changes made to this file as part of YugaByte development. |
19 | | // |
20 | | // Portions Copyright (c) YugaByte, Inc. |
21 | | // |
22 | | // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
23 | | // in compliance with the License. You may obtain a copy of the License at |
24 | | // |
25 | | // http://www.apache.org/licenses/LICENSE-2.0 |
26 | | // |
27 | | // Unless required by applicable law or agreed to in writing, software distributed under the License |
28 | | // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
29 | | // or implied. See the License for the specific language governing permissions and limitations |
30 | | // under the License. |
31 | | // |
32 | | #include "yb/util/hexdump.h" |
33 | | |
34 | | #include <string> |
35 | | |
36 | | #include "yb/gutil/stringprintf.h" |
37 | | #include "yb/util/slice.h" |
38 | | |
39 | | namespace yb { |
40 | | |
41 | 103k | std::string HexDump(const Slice &slice) { |
42 | 103k | std::string output; |
43 | 103k | output.reserve(slice.size() * 5); |
44 | | |
45 | 103k | const uint8_t *p = slice.data(); |
46 | | |
47 | 103k | auto rem = slice.size(); |
48 | 206k | while (rem > 0) { |
49 | 103k | const uint8_t *line_p = p; |
50 | 103k | auto line_len = std::min<decltype(rem)>(rem, 16); |
51 | 103k | auto line_rem = line_len; |
52 | 103k | StringAppendF(&output, "%06lx: ", line_p - slice.data()); |
53 | | |
54 | 392k | while (line_rem >= 2) { |
55 | 289k | StringAppendF(&output, "%02x%02x ", |
56 | 289k | p[0] & 0xff, p[1] & 0xff); |
57 | 289k | p += 2; |
58 | 289k | line_rem -= 2; |
59 | 289k | } |
60 | | |
61 | 103k | if (line_rem == 1) { |
62 | 49.5k | StringAppendF(&output, "%02x ", |
63 | 49.5k | p[0] & 0xff); |
64 | 49.5k | p += 1; |
65 | 49.5k | line_rem -= 1; |
66 | 49.5k | } |
67 | | |
68 | 103k | auto padding = (16 - line_len) / 2; |
69 | | |
70 | 591k | for (size_t i = 0; i < padding; i++487k ) { |
71 | 487k | output.append(" "); |
72 | 487k | } |
73 | | |
74 | 730k | for (size_t i = 0; i < line_len; i++627k ) { |
75 | 627k | char c = line_p[i]; |
76 | 627k | if (isprint(c)) { |
77 | 32.7k | output.push_back(c); |
78 | 594k | } else { |
79 | 594k | output.push_back('.'); |
80 | 594k | } |
81 | 627k | } |
82 | | |
83 | 103k | output.push_back('\n'); |
84 | 103k | rem -= line_len; |
85 | 103k | } |
86 | 103k | return output; |
87 | 103k | } |
88 | | } // namespace yb |