Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 1 | //===-- StringPrinter.cpp ----------------------------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "lldb/DataFormatters/StringPrinter.h" |
| 11 | |
| 12 | #include "lldb/Core/DataExtractor.h" |
Enrico Granata | ebdc1ac | 2014-11-05 21:20:48 +0000 | [diff] [blame] | 13 | #include "lldb/Core/Debugger.h" |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 14 | #include "lldb/Core/Error.h" |
Enrico Granata | ebdc1ac | 2014-11-05 21:20:48 +0000 | [diff] [blame] | 15 | #include "lldb/Core/ValueObject.h" |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 16 | #include "lldb/Target/Process.h" |
| 17 | #include "lldb/Target/Target.h" |
| 18 | |
| 19 | #include "llvm/Support/ConvertUTF.h" |
| 20 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 21 | #include <ctype.h> |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 22 | #include <locale> |
| 23 | |
| 24 | using namespace lldb; |
| 25 | using namespace lldb_private; |
| 26 | using namespace lldb_private::formatters; |
| 27 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 28 | // we define this for all values of type but only implement it for those we care about |
| 29 | // that's good because we get linker errors for any unsupported type |
| 30 | template <StringElementType type> |
Enrico Granata | ad650a1 | 2015-09-09 20:59:49 +0000 | [diff] [blame] | 31 | static StringPrinter::StringPrinterBufferPointer<> |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 32 | GetPrintableImpl(uint8_t* buffer, uint8_t* buffer_end, uint8_t*& next); |
| 33 | |
| 34 | // mimic isprint() for Unicode codepoints |
| 35 | static bool |
| 36 | isprint(char32_t codepoint) |
| 37 | { |
| 38 | if (codepoint <= 0x1F || codepoint == 0x7F) // C0 |
| 39 | { |
| 40 | return false; |
| 41 | } |
| 42 | if (codepoint >= 0x80 && codepoint <= 0x9F) // C1 |
| 43 | { |
| 44 | return false; |
| 45 | } |
| 46 | if (codepoint == 0x2028 || codepoint == 0x2029) // line/paragraph separators |
| 47 | { |
| 48 | return false; |
| 49 | } |
| 50 | if (codepoint == 0x200E || codepoint == 0x200F || (codepoint >= 0x202A && codepoint <= 0x202E)) // bidirectional text control |
| 51 | { |
| 52 | return false; |
| 53 | } |
| 54 | if (codepoint >= 0xFFF9 && codepoint <= 0xFFFF) // interlinears and generally specials |
| 55 | { |
| 56 | return false; |
| 57 | } |
| 58 | return true; |
| 59 | } |
| 60 | |
| 61 | template <> |
Enrico Granata | ad650a1 | 2015-09-09 20:59:49 +0000 | [diff] [blame] | 62 | StringPrinter::StringPrinterBufferPointer<> |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 63 | GetPrintableImpl<StringElementType::ASCII> (uint8_t* buffer, uint8_t* buffer_end, uint8_t*& next) |
| 64 | { |
Enrico Granata | ad650a1 | 2015-09-09 20:59:49 +0000 | [diff] [blame] | 65 | StringPrinter::StringPrinterBufferPointer<> retval = {nullptr}; |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 66 | |
| 67 | switch (*buffer) |
| 68 | { |
Enrico Granata | da04fbb | 2014-12-18 19:43:29 +0000 | [diff] [blame] | 69 | case 0: |
| 70 | retval = {"\\0",2}; |
| 71 | break; |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 72 | case '\a': |
| 73 | retval = {"\\a",2}; |
| 74 | break; |
| 75 | case '\b': |
| 76 | retval = {"\\b",2}; |
| 77 | break; |
| 78 | case '\f': |
| 79 | retval = {"\\f",2}; |
| 80 | break; |
| 81 | case '\n': |
| 82 | retval = {"\\n",2}; |
| 83 | break; |
| 84 | case '\r': |
| 85 | retval = {"\\r",2}; |
| 86 | break; |
| 87 | case '\t': |
| 88 | retval = {"\\t",2}; |
| 89 | break; |
| 90 | case '\v': |
| 91 | retval = {"\\v",2}; |
| 92 | break; |
| 93 | case '\"': |
| 94 | retval = {"\\\"",2}; |
| 95 | break; |
| 96 | case '\\': |
| 97 | retval = {"\\\\",2}; |
| 98 | break; |
| 99 | default: |
| 100 | if (isprint(*buffer)) |
Vince Harron | d7e6a4f | 2015-05-13 00:25:54 +0000 | [diff] [blame] | 101 | retval = {buffer,1}; |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 102 | else |
| 103 | { |
Vince Harron | d7e6a4f | 2015-05-13 00:25:54 +0000 | [diff] [blame] | 104 | uint8_t* data = new uint8_t[5]; |
| 105 | sprintf((char*)data,"\\x%02x",*buffer); |
| 106 | retval = {data, 4, [] (const uint8_t* c) {delete[] c;} }; |
| 107 | break; |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 108 | } |
| 109 | } |
| 110 | |
| 111 | next = buffer + 1; |
| 112 | return retval; |
| 113 | } |
| 114 | |
| 115 | static char32_t |
| 116 | ConvertUTF8ToCodePoint (unsigned char c0, unsigned char c1) |
| 117 | { |
| 118 | return (c0-192)*64+(c1-128); |
| 119 | } |
| 120 | static char32_t |
| 121 | ConvertUTF8ToCodePoint (unsigned char c0, unsigned char c1, unsigned char c2) |
| 122 | { |
| 123 | return (c0-224)*4096+(c1-128)*64+(c2-128); |
| 124 | } |
| 125 | static char32_t |
| 126 | ConvertUTF8ToCodePoint (unsigned char c0, unsigned char c1, unsigned char c2, unsigned char c3) |
| 127 | { |
| 128 | return (c0-240)*262144+(c2-128)*4096+(c2-128)*64+(c3-128); |
| 129 | } |
| 130 | |
| 131 | template <> |
Enrico Granata | ad650a1 | 2015-09-09 20:59:49 +0000 | [diff] [blame] | 132 | StringPrinter::StringPrinterBufferPointer<> |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 133 | GetPrintableImpl<StringElementType::UTF8> (uint8_t* buffer, uint8_t* buffer_end, uint8_t*& next) |
| 134 | { |
Enrico Granata | ad650a1 | 2015-09-09 20:59:49 +0000 | [diff] [blame] | 135 | StringPrinter::StringPrinterBufferPointer<> retval {nullptr}; |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 136 | |
| 137 | unsigned utf8_encoded_len = getNumBytesForUTF8(*buffer); |
| 138 | |
| 139 | if (1+buffer_end-buffer < utf8_encoded_len) |
| 140 | { |
| 141 | // I don't have enough bytes - print whatever I have left |
| 142 | retval = {buffer,static_cast<size_t>(1+buffer_end-buffer)}; |
| 143 | next = buffer_end+1; |
| 144 | return retval; |
| 145 | } |
| 146 | |
| 147 | char32_t codepoint = 0; |
| 148 | switch (utf8_encoded_len) |
| 149 | { |
| 150 | case 1: |
| 151 | // this is just an ASCII byte - ask ASCII |
| 152 | return GetPrintableImpl<StringElementType::ASCII>(buffer, buffer_end, next); |
| 153 | case 2: |
| 154 | codepoint = ConvertUTF8ToCodePoint((unsigned char)*buffer, (unsigned char)*(buffer+1)); |
| 155 | break; |
| 156 | case 3: |
| 157 | codepoint = ConvertUTF8ToCodePoint((unsigned char)*buffer, (unsigned char)*(buffer+1), (unsigned char)*(buffer+2)); |
| 158 | break; |
| 159 | case 4: |
| 160 | codepoint = ConvertUTF8ToCodePoint((unsigned char)*buffer, (unsigned char)*(buffer+1), (unsigned char)*(buffer+2), (unsigned char)*(buffer+3)); |
| 161 | break; |
| 162 | default: |
| 163 | // this is probably some bogus non-character thing |
| 164 | // just print it as-is and hope to sync up again soon |
| 165 | retval = {buffer,1}; |
| 166 | next = buffer+1; |
| 167 | return retval; |
| 168 | } |
| 169 | |
| 170 | if (codepoint) |
| 171 | { |
| 172 | switch (codepoint) |
| 173 | { |
Enrico Granata | da04fbb | 2014-12-18 19:43:29 +0000 | [diff] [blame] | 174 | case 0: |
| 175 | retval = {"\\0",2}; |
| 176 | break; |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 177 | case '\a': |
| 178 | retval = {"\\a",2}; |
| 179 | break; |
| 180 | case '\b': |
| 181 | retval = {"\\b",2}; |
| 182 | break; |
| 183 | case '\f': |
| 184 | retval = {"\\f",2}; |
| 185 | break; |
| 186 | case '\n': |
| 187 | retval = {"\\n",2}; |
| 188 | break; |
| 189 | case '\r': |
| 190 | retval = {"\\r",2}; |
| 191 | break; |
| 192 | case '\t': |
| 193 | retval = {"\\t",2}; |
| 194 | break; |
| 195 | case '\v': |
| 196 | retval = {"\\v",2}; |
| 197 | break; |
| 198 | case '\"': |
| 199 | retval = {"\\\"",2}; |
| 200 | break; |
| 201 | case '\\': |
| 202 | retval = {"\\\\",2}; |
| 203 | break; |
| 204 | default: |
| 205 | if (isprint(codepoint)) |
| 206 | retval = {buffer,utf8_encoded_len}; |
| 207 | else |
| 208 | { |
Vince Harron | d7e6a4f | 2015-05-13 00:25:54 +0000 | [diff] [blame] | 209 | uint8_t* data = new uint8_t[11]; |
| 210 | sprintf((char*)data,"\\U%08x",codepoint); |
| 211 | retval = { data,10,[] (const uint8_t* c) {delete[] c;} }; |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 212 | break; |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | next = buffer + utf8_encoded_len; |
| 217 | return retval; |
| 218 | } |
| 219 | |
| 220 | // this should not happen - but just in case.. try to resync at some point |
| 221 | retval = {buffer,1}; |
| 222 | next = buffer+1; |
| 223 | return retval; |
| 224 | } |
| 225 | |
| 226 | // Given a sequence of bytes, this function returns: |
| 227 | // a sequence of bytes to actually print out + a length |
| 228 | // the following unscanned position of the buffer is in next |
Enrico Granata | ad650a1 | 2015-09-09 20:59:49 +0000 | [diff] [blame] | 229 | static StringPrinter::StringPrinterBufferPointer<> |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 230 | GetPrintable(StringElementType type, uint8_t* buffer, uint8_t* buffer_end, uint8_t*& next) |
| 231 | { |
| 232 | if (!buffer) |
| 233 | return {nullptr}; |
| 234 | |
| 235 | switch (type) |
| 236 | { |
| 237 | case StringElementType::ASCII: |
| 238 | return GetPrintableImpl<StringElementType::ASCII>(buffer, buffer_end, next); |
| 239 | case StringElementType::UTF8: |
| 240 | return GetPrintableImpl<StringElementType::UTF8>(buffer, buffer_end, next); |
| 241 | default: |
| 242 | return {nullptr}; |
| 243 | } |
| 244 | } |
| 245 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 246 | // use this call if you already have an LLDB-side buffer for the data |
| 247 | template<typename SourceDataType> |
| 248 | static bool |
| 249 | DumpUTFBufferToStream (ConversionResult (*ConvertFunction) (const SourceDataType**, |
| 250 | const SourceDataType*, |
| 251 | UTF8**, |
| 252 | UTF8*, |
| 253 | ConversionFlags), |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 254 | const ReadBufferAndDumpToStreamOptions& dump_options) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 255 | { |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 256 | Stream &stream(*dump_options.GetStream()); |
| 257 | if (dump_options.GetPrefixToken() != 0) |
| 258 | stream.Printf("%c",dump_options.GetPrefixToken()); |
| 259 | if (dump_options.GetQuote() != 0) |
| 260 | stream.Printf("%c",dump_options.GetQuote()); |
| 261 | auto data(dump_options.GetData()); |
| 262 | auto source_size(dump_options.GetSourceSize()); |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 263 | if (data.GetByteSize() && data.GetDataStart() && data.GetDataEnd()) |
| 264 | { |
| 265 | const int bufferSPSize = data.GetByteSize(); |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 266 | if (dump_options.GetSourceSize() == 0) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 267 | { |
| 268 | const int origin_encoding = 8*sizeof(SourceDataType); |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 269 | source_size = bufferSPSize/(origin_encoding / 4); |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 270 | } |
| 271 | |
Vince Harron | d7e6a4f | 2015-05-13 00:25:54 +0000 | [diff] [blame] | 272 | const SourceDataType *data_ptr = (const SourceDataType*)data.GetDataStart(); |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 273 | const SourceDataType *data_end_ptr = data_ptr + source_size; |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 274 | |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 275 | const bool zero_is_terminator = dump_options.GetBinaryZeroIsTerminator(); |
| 276 | |
| 277 | if (zero_is_terminator) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 278 | { |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 279 | while (data_ptr < data_end_ptr) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 280 | { |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 281 | if (!*data_ptr) |
| 282 | { |
| 283 | data_end_ptr = data_ptr; |
| 284 | break; |
| 285 | } |
| 286 | data_ptr++; |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 287 | } |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 288 | |
| 289 | data_ptr = (const SourceDataType*)data.GetDataStart(); |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 290 | } |
| 291 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 292 | lldb::DataBufferSP utf8_data_buffer_sp; |
| 293 | UTF8* utf8_data_ptr = nullptr; |
| 294 | UTF8* utf8_data_end_ptr = nullptr; |
| 295 | |
| 296 | if (ConvertFunction) |
| 297 | { |
| 298 | utf8_data_buffer_sp.reset(new DataBufferHeap(4*bufferSPSize,0)); |
| 299 | utf8_data_ptr = (UTF8*)utf8_data_buffer_sp->GetBytes(); |
| 300 | utf8_data_end_ptr = utf8_data_ptr + utf8_data_buffer_sp->GetByteSize(); |
Vince Harron | d7e6a4f | 2015-05-13 00:25:54 +0000 | [diff] [blame] | 301 | ConvertFunction ( &data_ptr, data_end_ptr, &utf8_data_ptr, utf8_data_end_ptr, lenientConversion ); |
Enrico Granata | 8101f57 | 2015-07-17 01:56:25 +0000 | [diff] [blame] | 302 | if (false == zero_is_terminator) |
| 303 | utf8_data_end_ptr = utf8_data_ptr; |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 304 | utf8_data_ptr = (UTF8*)utf8_data_buffer_sp->GetBytes(); // needed because the ConvertFunction will change the value of the data_ptr |
| 305 | } |
| 306 | else |
| 307 | { |
| 308 | // just copy the pointers - the cast is necessary to make the compiler happy |
| 309 | // but this should only happen if we are reading UTF8 data |
| 310 | utf8_data_ptr = (UTF8*)data_ptr; |
| 311 | utf8_data_end_ptr = (UTF8*)data_end_ptr; |
| 312 | } |
| 313 | |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 314 | const bool escape_non_printables = dump_options.GetEscapeNonPrintables(); |
| 315 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 316 | // since we tend to accept partial data (and even partially malformed data) |
| 317 | // we might end up with no NULL terminator before the end_ptr |
| 318 | // hence we need to take a slower route and ensure we stay within boundaries |
| 319 | for (;utf8_data_ptr < utf8_data_end_ptr;) |
| 320 | { |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 321 | if (zero_is_terminator && !*utf8_data_ptr) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 322 | break; |
| 323 | |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 324 | if (escape_non_printables) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 325 | { |
| 326 | uint8_t* next_data = nullptr; |
| 327 | auto printable = GetPrintable(StringElementType::UTF8, utf8_data_ptr, utf8_data_end_ptr, next_data); |
| 328 | auto printable_bytes = printable.GetBytes(); |
| 329 | auto printable_size = printable.GetSize(); |
| 330 | if (!printable_bytes || !next_data) |
| 331 | { |
| 332 | // GetPrintable() failed on us - print one byte in a desperate resync attempt |
| 333 | printable_bytes = utf8_data_ptr; |
| 334 | printable_size = 1; |
| 335 | next_data = utf8_data_ptr+1; |
| 336 | } |
Andy Gibbs | 3acfe1a | 2014-12-29 13:03:19 +0000 | [diff] [blame] | 337 | for (unsigned c = 0; c < printable_size; c++) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 338 | stream.Printf("%c", *(printable_bytes+c)); |
| 339 | utf8_data_ptr = (uint8_t*)next_data; |
| 340 | } |
| 341 | else |
| 342 | { |
| 343 | stream.Printf("%c",*utf8_data_ptr); |
| 344 | utf8_data_ptr++; |
| 345 | } |
| 346 | } |
| 347 | } |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 348 | if (dump_options.GetQuote() != 0) |
| 349 | stream.Printf("%c",dump_options.GetQuote()); |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 350 | return true; |
| 351 | } |
| 352 | |
Enrico Granata | ebdc1ac | 2014-11-05 21:20:48 +0000 | [diff] [blame] | 353 | lldb_private::formatters::ReadStringAndDumpToStreamOptions::ReadStringAndDumpToStreamOptions (ValueObject& valobj) : |
| 354 | ReadStringAndDumpToStreamOptions() |
| 355 | { |
| 356 | SetEscapeNonPrintables(valobj.GetTargetSP()->GetDebugger().GetEscapeNonPrintables()); |
| 357 | } |
| 358 | |
| 359 | lldb_private::formatters::ReadBufferAndDumpToStreamOptions::ReadBufferAndDumpToStreamOptions (ValueObject& valobj) : |
| 360 | ReadBufferAndDumpToStreamOptions() |
| 361 | { |
| 362 | SetEscapeNonPrintables(valobj.GetTargetSP()->GetDebugger().GetEscapeNonPrintables()); |
| 363 | } |
| 364 | |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 365 | lldb_private::formatters::ReadBufferAndDumpToStreamOptions::ReadBufferAndDumpToStreamOptions (const lldb_private::formatters::ReadStringAndDumpToStreamOptions& options) : |
| 366 | ReadBufferAndDumpToStreamOptions() |
| 367 | { |
| 368 | SetStream(options.GetStream()); |
| 369 | SetPrefixToken(options.GetPrefixToken()); |
| 370 | SetQuote(options.GetQuote()); |
| 371 | SetEscapeNonPrintables(options.GetEscapeNonPrintables()); |
| 372 | SetBinaryZeroIsTerminator(options.GetBinaryZeroIsTerminator()); |
| 373 | } |
| 374 | |
Enrico Granata | ebdc1ac | 2014-11-05 21:20:48 +0000 | [diff] [blame] | 375 | |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 376 | namespace lldb_private |
| 377 | { |
| 378 | |
| 379 | namespace formatters |
| 380 | { |
| 381 | |
| 382 | template <> |
| 383 | bool |
Enrico Granata | ad650a1 | 2015-09-09 20:59:49 +0000 | [diff] [blame] | 384 | StringPrinter::ReadStringAndDumpToStream<StringElementType::ASCII> (const ReadStringAndDumpToStreamOptions& options) |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 385 | { |
| 386 | assert(options.GetStream() && "need a Stream to print the string to"); |
| 387 | Error my_error; |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 388 | |
| 389 | ProcessSP process_sp(options.GetProcessSP()); |
| 390 | |
| 391 | if (process_sp.get() == nullptr || options.GetLocation() == 0) |
| 392 | return false; |
| 393 | |
| 394 | size_t size; |
| 395 | |
| 396 | if (options.GetSourceSize() == 0) |
| 397 | size = process_sp->GetTarget().GetMaximumSizeOfStringSummary(); |
Enrico Granata | 3404221 | 2014-11-18 22:54:45 +0000 | [diff] [blame] | 398 | else if (!options.GetIgnoreMaxLength()) |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 399 | size = std::min(options.GetSourceSize(),process_sp->GetTarget().GetMaximumSizeOfStringSummary()); |
Enrico Granata | 3404221 | 2014-11-18 22:54:45 +0000 | [diff] [blame] | 400 | else |
| 401 | size = options.GetSourceSize(); |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 402 | |
| 403 | lldb::DataBufferSP buffer_sp(new DataBufferHeap(size,0)); |
| 404 | |
Vince Harron | d7e6a4f | 2015-05-13 00:25:54 +0000 | [diff] [blame] | 405 | process_sp->ReadCStringFromMemory(options.GetLocation(), (char*)buffer_sp->GetBytes(), size, my_error); |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 406 | |
| 407 | if (my_error.Fail()) |
| 408 | return false; |
| 409 | |
| 410 | char prefix_token = options.GetPrefixToken(); |
| 411 | char quote = options.GetQuote(); |
| 412 | |
| 413 | if (prefix_token != 0) |
| 414 | options.GetStream()->Printf("%c%c",prefix_token,quote); |
| 415 | else if (quote != 0) |
| 416 | options.GetStream()->Printf("%c",quote); |
| 417 | |
| 418 | uint8_t* data_end = buffer_sp->GetBytes()+buffer_sp->GetByteSize(); |
| 419 | |
| 420 | // since we tend to accept partial data (and even partially malformed data) |
| 421 | // we might end up with no NULL terminator before the end_ptr |
| 422 | // hence we need to take a slower route and ensure we stay within boundaries |
| 423 | for (uint8_t* data = buffer_sp->GetBytes(); *data && (data < data_end);) |
| 424 | { |
| 425 | if (options.GetEscapeNonPrintables()) |
| 426 | { |
| 427 | uint8_t* next_data = nullptr; |
| 428 | auto printable = GetPrintable(StringElementType::ASCII, data, data_end, next_data); |
| 429 | auto printable_bytes = printable.GetBytes(); |
| 430 | auto printable_size = printable.GetSize(); |
| 431 | if (!printable_bytes || !next_data) |
| 432 | { |
| 433 | // GetPrintable() failed on us - print one byte in a desperate resync attempt |
| 434 | printable_bytes = data; |
| 435 | printable_size = 1; |
| 436 | next_data = data+1; |
| 437 | } |
Andy Gibbs | 3acfe1a | 2014-12-29 13:03:19 +0000 | [diff] [blame] | 438 | for (unsigned c = 0; c < printable_size; c++) |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 439 | options.GetStream()->Printf("%c", *(printable_bytes+c)); |
| 440 | data = (uint8_t*)next_data; |
| 441 | } |
| 442 | else |
| 443 | { |
| 444 | options.GetStream()->Printf("%c",*data); |
| 445 | data++; |
| 446 | } |
| 447 | } |
| 448 | |
| 449 | if (quote != 0) |
| 450 | options.GetStream()->Printf("%c",quote); |
| 451 | |
| 452 | return true; |
| 453 | } |
| 454 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 455 | template<typename SourceDataType> |
| 456 | static bool |
| 457 | ReadUTFBufferAndDumpToStream (const ReadStringAndDumpToStreamOptions& options, |
| 458 | ConversionResult (*ConvertFunction) (const SourceDataType**, |
| 459 | const SourceDataType*, |
| 460 | UTF8**, |
| 461 | UTF8*, |
| 462 | ConversionFlags)) |
| 463 | { |
| 464 | assert(options.GetStream() && "need a Stream to print the string to"); |
| 465 | |
| 466 | if (options.GetLocation() == 0 || options.GetLocation() == LLDB_INVALID_ADDRESS) |
| 467 | return false; |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 468 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 469 | lldb::ProcessSP process_sp(options.GetProcessSP()); |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 470 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 471 | if (!process_sp) |
| 472 | return false; |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 473 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 474 | const int type_width = sizeof(SourceDataType); |
| 475 | const int origin_encoding = 8 * type_width ; |
| 476 | if (origin_encoding != 8 && origin_encoding != 16 && origin_encoding != 32) |
| 477 | return false; |
| 478 | // if not UTF8, I need a conversion function to return proper UTF8 |
| 479 | if (origin_encoding != 8 && !ConvertFunction) |
| 480 | return false; |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 481 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 482 | if (!options.GetStream()) |
| 483 | return false; |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 484 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 485 | uint32_t sourceSize = options.GetSourceSize(); |
| 486 | bool needs_zero_terminator = options.GetNeedsZeroTermination(); |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 487 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 488 | if (!sourceSize) |
| 489 | { |
| 490 | sourceSize = process_sp->GetTarget().GetMaximumSizeOfStringSummary(); |
| 491 | needs_zero_terminator = true; |
| 492 | } |
Enrico Granata | b0e8a55 | 2015-05-01 22:57:38 +0000 | [diff] [blame] | 493 | else if (!options.GetIgnoreMaxLength()) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 494 | sourceSize = std::min(sourceSize,process_sp->GetTarget().GetMaximumSizeOfStringSummary()); |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 495 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 496 | const int bufferSPSize = sourceSize * type_width; |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 497 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 498 | lldb::DataBufferSP buffer_sp(new DataBufferHeap(bufferSPSize,0)); |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 499 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 500 | if (!buffer_sp->GetBytes()) |
| 501 | return false; |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 502 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 503 | Error error; |
| 504 | char *buffer = reinterpret_cast<char *>(buffer_sp->GetBytes()); |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 505 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 506 | if (needs_zero_terminator) |
Vince Harron | d7e6a4f | 2015-05-13 00:25:54 +0000 | [diff] [blame] | 507 | process_sp->ReadStringFromMemory(options.GetLocation(), buffer, bufferSPSize, error, type_width); |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 508 | else |
Vince Harron | d7e6a4f | 2015-05-13 00:25:54 +0000 | [diff] [blame] | 509 | process_sp->ReadMemoryFromInferior(options.GetLocation(), (char*)buffer_sp->GetBytes(), bufferSPSize, error); |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 510 | |
Enrico Granata | 099263b | 2014-11-17 23:14:11 +0000 | [diff] [blame] | 511 | if (error.Fail()) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 512 | { |
| 513 | options.GetStream()->Printf("unable to read data"); |
| 514 | return true; |
| 515 | } |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 516 | |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 517 | DataExtractor data(buffer_sp, process_sp->GetByteOrder(), process_sp->GetAddressByteSize()); |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 518 | |
| 519 | ReadBufferAndDumpToStreamOptions dump_options(options); |
| 520 | dump_options.SetData(data); |
| 521 | dump_options.SetSourceSize(sourceSize); |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 522 | |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 523 | return DumpUTFBufferToStream(ConvertFunction, dump_options); |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 524 | } |
| 525 | |
| 526 | template <> |
| 527 | bool |
Enrico Granata | ad650a1 | 2015-09-09 20:59:49 +0000 | [diff] [blame] | 528 | StringPrinter::ReadStringAndDumpToStream<StringElementType::UTF8> (const ReadStringAndDumpToStreamOptions& options) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 529 | { |
| 530 | return ReadUTFBufferAndDumpToStream<UTF8>(options, |
| 531 | nullptr); |
| 532 | } |
| 533 | |
| 534 | template <> |
| 535 | bool |
Enrico Granata | ad650a1 | 2015-09-09 20:59:49 +0000 | [diff] [blame] | 536 | StringPrinter::ReadStringAndDumpToStream<StringElementType::UTF16> (const ReadStringAndDumpToStreamOptions& options) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 537 | { |
| 538 | return ReadUTFBufferAndDumpToStream<UTF16>(options, |
| 539 | ConvertUTF16toUTF8); |
| 540 | } |
| 541 | |
| 542 | template <> |
| 543 | bool |
Enrico Granata | ad650a1 | 2015-09-09 20:59:49 +0000 | [diff] [blame] | 544 | StringPrinter::ReadStringAndDumpToStream<StringElementType::UTF32> (const ReadStringAndDumpToStreamOptions& options) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 545 | { |
| 546 | return ReadUTFBufferAndDumpToStream<UTF32>(options, |
| 547 | ConvertUTF32toUTF8); |
| 548 | } |
| 549 | |
| 550 | template <> |
| 551 | bool |
Enrico Granata | ad650a1 | 2015-09-09 20:59:49 +0000 | [diff] [blame] | 552 | StringPrinter::ReadBufferAndDumpToStream<StringElementType::UTF8> (const ReadBufferAndDumpToStreamOptions& options) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 553 | { |
| 554 | assert(options.GetStream() && "need a Stream to print the string to"); |
| 555 | |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 556 | return DumpUTFBufferToStream<UTF8>(nullptr, options); |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | template <> |
| 560 | bool |
Enrico Granata | ad650a1 | 2015-09-09 20:59:49 +0000 | [diff] [blame] | 561 | StringPrinter::ReadBufferAndDumpToStream<StringElementType::ASCII> (const ReadBufferAndDumpToStreamOptions& options) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 562 | { |
| 563 | // treat ASCII the same as UTF8 |
| 564 | // FIXME: can we optimize ASCII some more? |
| 565 | return ReadBufferAndDumpToStream<StringElementType::UTF8>(options); |
| 566 | } |
| 567 | |
| 568 | template <> |
| 569 | bool |
Enrico Granata | ad650a1 | 2015-09-09 20:59:49 +0000 | [diff] [blame] | 570 | StringPrinter::ReadBufferAndDumpToStream<StringElementType::UTF16> (const ReadBufferAndDumpToStreamOptions& options) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 571 | { |
| 572 | assert(options.GetStream() && "need a Stream to print the string to"); |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 573 | |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 574 | return DumpUTFBufferToStream(ConvertUTF16toUTF8, options); |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 575 | } |
| 576 | |
| 577 | template <> |
| 578 | bool |
Enrico Granata | ad650a1 | 2015-09-09 20:59:49 +0000 | [diff] [blame] | 579 | StringPrinter::ReadBufferAndDumpToStream<StringElementType::UTF32> (const ReadBufferAndDumpToStreamOptions& options) |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 580 | { |
| 581 | assert(options.GetStream() && "need a Stream to print the string to"); |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 582 | |
Enrico Granata | d07f755 | 2015-07-17 01:03:59 +0000 | [diff] [blame] | 583 | return DumpUTFBufferToStream(ConvertUTF32toUTF8, options); |
Enrico Granata | ca6c8ee | 2014-10-30 01:45:39 +0000 | [diff] [blame] | 584 | } |
Shawn Best | fd13743 | 2014-11-04 22:43:34 +0000 | [diff] [blame] | 585 | |
| 586 | } // namespace formatters |
| 587 | |
| 588 | } // namespace lldb_private |