2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-11-18 13:55:52 +01:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2010-11-18 13:55:52 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-11-18 13:55:52 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2010-11-18 13:55:52 +01:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2010-12-17 17:14:20 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-11-18 13:55:52 +01:00
|
|
|
|
2012-12-21 11:11:15 +01:00
|
|
|
#ifndef _SCL_SECURE_NO_WARNINGS // silence std::string::copy
|
|
|
|
|
# define _SCL_SECURE_NO_WARNINGS
|
|
|
|
|
#endif
|
|
|
|
|
|
2010-11-18 13:55:52 +01:00
|
|
|
#include "stringutils.h"
|
|
|
|
|
|
|
|
|
|
#include <cctype>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <sstream>
|
2011-08-18 12:12:07 +02:00
|
|
|
#include <iomanip>
|
2010-11-18 13:55:52 +01:00
|
|
|
|
|
|
|
|
static const char whiteSpace[] = " \t\r\n";
|
|
|
|
|
|
|
|
|
|
void trimFront(std::string &s)
|
|
|
|
|
{
|
|
|
|
|
if (s.empty())
|
|
|
|
|
return;
|
|
|
|
|
std::string::size_type pos = s.find_first_not_of(whiteSpace);
|
|
|
|
|
if (pos == 0)
|
|
|
|
|
return;
|
|
|
|
|
if (pos == std::string::npos) { // All blanks?!
|
|
|
|
|
s.clear();
|
|
|
|
|
} else {
|
|
|
|
|
s.erase(0, pos);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void trimBack(std::string &s)
|
|
|
|
|
{
|
|
|
|
|
if (s.empty())
|
|
|
|
|
return;
|
|
|
|
|
std::string::size_type pos = s.find_last_not_of(whiteSpace);
|
|
|
|
|
if (pos == std::string::npos) { // All blanks?!
|
|
|
|
|
s.clear();
|
|
|
|
|
} else {
|
|
|
|
|
if (++pos != s.size())
|
|
|
|
|
s.erase(pos, s.size() - pos);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void replace(std::wstring &s, wchar_t before, wchar_t after)
|
|
|
|
|
{
|
|
|
|
|
const std::wstring::size_type size = s.size();
|
2011-04-19 15:42:14 +02:00
|
|
|
for (std::wstring::size_type i = 0; i < size; ++i)
|
2010-11-18 13:55:52 +01:00
|
|
|
if (s.at(i) == before)
|
|
|
|
|
s[i] = after;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-14 10:20:03 +02:00
|
|
|
void replace(std::string &s, char before, char after)
|
|
|
|
|
{
|
|
|
|
|
const std::string::size_type size = s.size();
|
|
|
|
|
for (std::string::size_type i = 0; i < size; ++i)
|
|
|
|
|
if (s.at(i) == before)
|
|
|
|
|
s[i] = after;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-25 17:17:06 +01:00
|
|
|
bool endsWith(const std::string &haystack, const char *needle)
|
|
|
|
|
{
|
|
|
|
|
const size_t needleLen = strlen(needle);
|
|
|
|
|
const size_t haystackLen = haystack.size();
|
|
|
|
|
if (needleLen > haystackLen)
|
|
|
|
|
return false;
|
|
|
|
|
return haystack.compare(haystackLen - needleLen, needleLen, needle) == 0;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-18 13:55:52 +01:00
|
|
|
static inline void formatGdbmiChar(std::ostream &str, wchar_t c)
|
|
|
|
|
{
|
|
|
|
|
switch (c) {
|
|
|
|
|
case L'\n':
|
|
|
|
|
str << "\\n";
|
|
|
|
|
break;
|
|
|
|
|
case L'\t':
|
|
|
|
|
str << "\\t";
|
|
|
|
|
break;
|
|
|
|
|
case L'\r':
|
|
|
|
|
str << "\\r";
|
|
|
|
|
break;
|
|
|
|
|
case L'\\':
|
|
|
|
|
case L'"':
|
|
|
|
|
str << '\\' << char(c);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
if (c < 128) {
|
|
|
|
|
str << char(c);
|
|
|
|
|
} else {
|
|
|
|
|
// Always pad up to 3 digits in case a digit follows
|
|
|
|
|
const char oldFill = str.fill('0');
|
|
|
|
|
str << '\\' << std::oct;
|
|
|
|
|
str.width(3);
|
|
|
|
|
str << unsigned(c) << std::dec;
|
|
|
|
|
str.fill(oldFill);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Stream a wstring onto a char stream doing octal escaping
|
|
|
|
|
// suitable for GDBMI.
|
|
|
|
|
|
|
|
|
|
void gdbmiStringFormat::format(std::ostream &str) const
|
|
|
|
|
{
|
|
|
|
|
const std::string::size_type size = m_s.size();
|
2011-04-19 15:42:14 +02:00
|
|
|
for (std::string::size_type i = 0; i < size; ++i)
|
2010-11-18 13:55:52 +01:00
|
|
|
formatGdbmiChar(str, wchar_t(m_s.at(i)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void gdbmiWStringFormat::format(std::ostream &str) const
|
|
|
|
|
{
|
|
|
|
|
const std::wstring::size_type size = m_w.size();
|
2011-04-19 15:42:14 +02:00
|
|
|
for (std::wstring::size_type i = 0; i < size; ++i)
|
2010-11-18 13:55:52 +01:00
|
|
|
formatGdbmiChar(str, m_w.at(i));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string wStringToString(const std::wstring &w)
|
|
|
|
|
{
|
|
|
|
|
if (w.empty())
|
|
|
|
|
return std::string();
|
|
|
|
|
const std::string::size_type size = w.size();
|
|
|
|
|
std::string rc;
|
|
|
|
|
rc.reserve(size);
|
2011-04-19 15:42:14 +02:00
|
|
|
for (std::string::size_type i = 0; i < size; ++i)
|
2010-11-18 13:55:52 +01:00
|
|
|
rc.push_back(char(w.at(i)));
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-09 17:04:43 +01:00
|
|
|
// Convert an ASCII hex digit to its value 'A'->10
|
|
|
|
|
inline unsigned hexDigit(char c)
|
|
|
|
|
{
|
|
|
|
|
if (c <= '9')
|
|
|
|
|
return c - '0';
|
|
|
|
|
if (c <= 'F')
|
|
|
|
|
return c - 'A' + 10;
|
|
|
|
|
return c - 'a' + 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Convert an ASCII hex digit to its value 'A'->10
|
2015-12-15 09:30:42 +01:00
|
|
|
static char toHexDigit(unsigned char v)
|
2010-12-09 17:04:43 +01:00
|
|
|
{
|
2015-12-15 09:30:42 +01:00
|
|
|
return v < 10 ? char(v) + '0' : char(v) - 10 + 'a';
|
2010-12-09 17:04:43 +01:00
|
|
|
}
|
|
|
|
|
|
2011-08-08 14:56:04 +02:00
|
|
|
// Strings from raw data.
|
2013-01-31 14:28:28 +01:00
|
|
|
std::wstring quotedWStringFromCharData(const unsigned char *data, size_t size, bool truncated)
|
2011-08-08 14:56:04 +02:00
|
|
|
{
|
|
|
|
|
std::wstring rc;
|
2013-01-31 14:28:28 +01:00
|
|
|
rc.reserve(size + (truncated ? 5 : 2));
|
2011-08-08 14:56:04 +02:00
|
|
|
rc.push_back(L'"');
|
|
|
|
|
const unsigned char *end = data + size;
|
|
|
|
|
for ( ; data < end; data++)
|
|
|
|
|
rc.push_back(wchar_t(*data));
|
2013-01-31 14:28:28 +01:00
|
|
|
if (truncated)
|
|
|
|
|
rc.append(L"...");
|
2011-08-08 14:56:04 +02:00
|
|
|
rc.push_back(L'"');
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-31 14:28:28 +01:00
|
|
|
std::wstring quotedWStringFromWCharData(const unsigned char *dataIn, size_t sizeIn, bool truncated)
|
2011-08-08 14:56:04 +02:00
|
|
|
{
|
|
|
|
|
std::wstring rc;
|
|
|
|
|
const wchar_t *data = reinterpret_cast<const wchar_t *>(dataIn);
|
|
|
|
|
const size_t size = sizeIn / sizeof(wchar_t);
|
2013-01-31 14:28:28 +01:00
|
|
|
rc.reserve(size + (truncated ? 5 : 2));
|
2011-08-08 14:56:04 +02:00
|
|
|
rc.push_back(L'"');
|
|
|
|
|
rc.append(data, data + size);
|
2013-01-31 14:28:28 +01:00
|
|
|
if (truncated)
|
|
|
|
|
rc.append(L"...");
|
2011-08-08 14:56:04 +02:00
|
|
|
rc.push_back(L'"');
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-09 17:04:43 +01:00
|
|
|
// String from hex "414A" -> "AJ".
|
|
|
|
|
std::string stringFromHex(const char *p, const char *end)
|
|
|
|
|
{
|
|
|
|
|
if (p == end)
|
|
|
|
|
return std::string();
|
|
|
|
|
|
|
|
|
|
std::string rc;
|
|
|
|
|
rc.reserve((end - p) / 2);
|
2011-08-18 12:12:07 +02:00
|
|
|
for ( ; p < end; ++p) {
|
2010-12-09 17:04:43 +01:00
|
|
|
unsigned c = 16 * hexDigit(*p);
|
|
|
|
|
c += hexDigit(*++p);
|
|
|
|
|
rc.push_back(char(c));
|
|
|
|
|
}
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-18 12:12:07 +02:00
|
|
|
// Helper for dumping memory
|
|
|
|
|
std::string dumpMemory(const unsigned char *p, size_t size,
|
|
|
|
|
bool wantQuotes)
|
|
|
|
|
{
|
|
|
|
|
std::ostringstream str;
|
|
|
|
|
str << std::oct << std::setfill('0');
|
|
|
|
|
if (wantQuotes)
|
|
|
|
|
str << '"';
|
|
|
|
|
const unsigned char *end = p + size;
|
|
|
|
|
for ( ; p < end; ++p) {
|
|
|
|
|
const unsigned char u = *p;
|
|
|
|
|
switch (u) {
|
|
|
|
|
case '\t':
|
|
|
|
|
str << "\\t";
|
|
|
|
|
case '\r':
|
|
|
|
|
str << "\\r";
|
|
|
|
|
case '\n':
|
|
|
|
|
str << "\\n";
|
|
|
|
|
default:
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
2013-01-08 03:32:53 +02:00
|
|
|
if (u >= 32 && u < 128)
|
2011-08-18 12:12:07 +02:00
|
|
|
str << (char(u));
|
Remove braces for single lines of conditions
#!/usr/bin/env ruby
Dir.glob('**/*.cpp') { |file|
# skip ast (excluding paste, astpath, and canv'ast'imer)
next if file =~ /ast[^eip]|keywords\.|qualifiers|preprocessor|names.cpp/i
s = File.read(file)
next if s.include?('qlalr')
orig = s.dup
s.gsub!(/\n *if [^\n]*{\n[^\n]*\n\s+}(\s+else if [^\n]* {\n[^\n]*\n\s+})*(\s+else {\n[^\n]*\n\s+})?\n/m) { |m|
res = $&
if res =~ /^\s*(\/\/|[A-Z_]{3,})/ # C++ comment or macro (Q_UNUSED, SDEBUG), do not touch braces
res
else
res.gsub!('} else', 'else')
res.gsub!(/\n +} *\n/m, "\n")
res.gsub(/ *{$/, '')
end
}
s.gsub!(/ *$/, '')
File.open(file, 'wb').write(s) if s != orig
}
Change-Id: I3b30ee60df0986f66c02132c65fc38a3fbb6bbdc
Reviewed-by: hjk <qthjk@ovi.com>
2013-01-08 03:32:53 +02:00
|
|
|
else
|
2011-08-18 12:12:07 +02:00
|
|
|
str << '\\' << std::setw(3) << unsigned(u);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (wantQuotes)
|
|
|
|
|
str << '"';
|
|
|
|
|
return str.str();
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-17 12:19:24 +02:00
|
|
|
void decodeHex(const char *p, const char *end, unsigned char *target)
|
|
|
|
|
{
|
2011-08-18 12:12:07 +02:00
|
|
|
for ( ; p < end; ++p) {
|
2011-05-17 12:19:24 +02:00
|
|
|
unsigned c = 16 * hexDigit(*p);
|
|
|
|
|
c += hexDigit(*++p);
|
|
|
|
|
*target++ = c;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-21 11:11:15 +01:00
|
|
|
MemoryHandle *MemoryHandle::fromStdString(const std::string &s)
|
|
|
|
|
{
|
|
|
|
|
const size_t size = s.size();
|
|
|
|
|
unsigned char *data = new unsigned char[size];
|
|
|
|
|
s.copy(reinterpret_cast<char *>(data), size);
|
|
|
|
|
return new MemoryHandle(data, size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MemoryHandle *MemoryHandle::fromStdWString(const std::wstring &ws)
|
|
|
|
|
{
|
|
|
|
|
const size_t size = ws.size();
|
|
|
|
|
wchar_t *data = new wchar_t[size];
|
|
|
|
|
ws.copy(data, size);
|
|
|
|
|
return new MemoryHandle(data, size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <class String>
|
|
|
|
|
inline String dataToHexHelper(const unsigned char *p, const unsigned char *end)
|
2010-12-09 17:04:43 +01:00
|
|
|
{
|
|
|
|
|
if (p == end)
|
2012-12-21 11:11:15 +01:00
|
|
|
return String();
|
2010-12-09 17:04:43 +01:00
|
|
|
|
2012-12-21 11:11:15 +01:00
|
|
|
String rc;
|
2010-12-09 17:04:43 +01:00
|
|
|
rc.reserve(2 * (end - p));
|
2011-08-18 12:12:07 +02:00
|
|
|
for ( ; p < end ; ++p) {
|
2015-12-15 09:30:42 +01:00
|
|
|
const unsigned char c = *p;
|
2010-12-09 17:04:43 +01:00
|
|
|
rc.push_back(toHexDigit(c / 16));
|
|
|
|
|
rc.push_back(toHexDigit(c &0xF));
|
|
|
|
|
}
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-21 11:11:15 +01:00
|
|
|
std::wstring dataToHexW(const unsigned char *p, const unsigned char *end)
|
|
|
|
|
{
|
|
|
|
|
return dataToHexHelper<std::wstring>(p, end);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string dataToHex(const unsigned char *p, const unsigned char *end)
|
|
|
|
|
{
|
|
|
|
|
return dataToHexHelper<std::string>(p, end);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-10 10:47:51 +01:00
|
|
|
// Readable hex: '0xAA 0xBB'..
|
|
|
|
|
std::wstring dataToReadableHexW(const unsigned char *begin, const unsigned char *end)
|
|
|
|
|
{
|
|
|
|
|
if (begin == end)
|
|
|
|
|
return std::wstring();
|
|
|
|
|
|
|
|
|
|
std::wstring rc;
|
|
|
|
|
rc.reserve(5 * (end - begin));
|
2011-08-18 12:12:07 +02:00
|
|
|
for (const unsigned char *p = begin; p < end ; ++p) {
|
2010-12-10 10:47:51 +01:00
|
|
|
rc.append(p == begin ? L"0x" : L" 0x");
|
|
|
|
|
const unsigned c = *p;
|
|
|
|
|
rc.push_back(toHexDigit(c / 16));
|
|
|
|
|
rc.push_back(toHexDigit(c &0xF));
|
|
|
|
|
}
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-18 13:55:52 +01:00
|
|
|
// Format a map as a GDBMI hash {key="value",..}
|
2011-01-25 18:35:31 +01:00
|
|
|
void formatGdbmiHash(std::ostream &os, const std::map<std::string, std::string> &m, bool closeHash)
|
2010-11-18 13:55:52 +01:00
|
|
|
{
|
|
|
|
|
typedef std::map<std::string, std::string>::const_iterator It;
|
|
|
|
|
const It begin = m.begin();
|
|
|
|
|
const It cend = m.end();
|
|
|
|
|
os << '{';
|
|
|
|
|
for (It it = begin; it != cend; ++it) {
|
|
|
|
|
if (it != begin)
|
|
|
|
|
os << ',';
|
|
|
|
|
os << it->first << "=\"" << gdbmiStringFormat(it->second) << '"';
|
|
|
|
|
}
|
2011-01-25 18:35:31 +01:00
|
|
|
if (closeHash)
|
|
|
|
|
os << '}';
|
2010-11-18 13:55:52 +01:00
|
|
|
}
|
2015-12-15 09:30:42 +01:00
|
|
|
|
|
|
|
|
void hexEncode(std::ostream &str, const unsigned char *source, size_t sourcelen)
|
|
|
|
|
{
|
|
|
|
|
for (size_t i = 0; i < sourcelen; ++i)
|
|
|
|
|
str << toHexDigit(source[i] >> 4) << toHexDigit(source[i] & 0xf);
|
|
|
|
|
}
|