llvm-capstone/lldb/source/Interpreter/OptionValueString.cpp
Pavel Labath df50f9440d Handle trailing spaces on "settings set" command more correctly
Summary:
Currently we have some settings which treat "\ " on settings set commands specially. E.g., it is
a valid way of specifying an argument of " " to a target. However, this fails if "\ " is the last
argument as CommandObjectSettingsSet strips trailing whitespace. This resulted in a surprising
argument of "\" to the target.

This patch disables the training whitespace removal at a global
level. Instead, for each argument type we locally determine whether whitespace stripping makes
sense. Currently, I strip whitespace for all simple object type except of regex and
format-string, with the rationale that these two object types do their own complex parsing and we
want to interfere with them as least as possible. Specifically, stripping the whitespace of a
regex "\ " will result in a (surprising?) error "trailing backslash". Furthermore, the default
value of dissasembly-format setting already contains a trailing space and there is no way for the
user to type this in manually if we strip whitespace.

Reviewers: clayborg, zturner

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D7592

llvm-svn: 229382
2015-02-16 13:13:39 +00:00

191 lines
5.3 KiB
C++

//===-- OptionValueString.cpp ------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "lldb/Interpreter/OptionValueString.h"
// C Includes
// C++ Includes
// Other libraries and framework includes
// Project includes
#include "lldb/Core/Stream.h"
#include "lldb/Interpreter/Args.h"
using namespace lldb;
using namespace lldb_private;
void
OptionValueString::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask)
{
if (dump_mask & eDumpOptionType)
strm.Printf ("(%s)", GetTypeAsCString ());
if (dump_mask & eDumpOptionValue)
{
if (dump_mask & eDumpOptionType)
strm.PutCString (" = ");
if (!m_current_value.empty() || m_value_was_set)
{
if (m_options.Test (eOptionEncodeCharacterEscapeSequences))
{
std::string expanded_escape_value;
Args::ExpandEscapedCharacters(m_current_value.c_str(), expanded_escape_value);
if (dump_mask & eDumpOptionRaw)
strm.Printf ("%s", expanded_escape_value.c_str());
else
strm.Printf ("\"%s\"", expanded_escape_value.c_str());
}
else
{
if (dump_mask & eDumpOptionRaw)
strm.Printf ("%s", m_current_value.c_str());
else
strm.Printf ("\"%s\"", m_current_value.c_str());
}
}
}
}
Error
OptionValueString::SetValueFromCString (const char *value_cstr,
VarSetOperationType op)
{
Error error;
std::string value_str_no_quotes;
llvm::StringRef trimmed = value_cstr ? llvm::StringRef(value_cstr).trim() : llvm::StringRef();
if (trimmed.size() > 0)
{
switch (trimmed.front())
{
case '"':
case '\'':
{
if (trimmed.size() <= 1 || trimmed.back() != trimmed.front())
{
error.SetErrorString("mismatched quotes");
return error;
}
trimmed = trimmed.drop_front().drop_back().str();
}
break;
}
value_str_no_quotes = trimmed.str();
value_cstr = value_str_no_quotes.c_str();
}
switch (op)
{
case eVarSetOperationInvalid:
case eVarSetOperationInsertBefore:
case eVarSetOperationInsertAfter:
case eVarSetOperationRemove:
if (m_validator)
{
error = m_validator(value_cstr,m_validator_baton);
if (error.Fail())
return error;
}
error = OptionValue::SetValueFromCString (value_cstr, op);
break;
case eVarSetOperationAppend:
{
std::string new_value(m_current_value);
if (value_cstr && value_cstr[0])
{
if (m_options.Test (eOptionEncodeCharacterEscapeSequences))
{
std::string str;
Args::EncodeEscapeSequences (value_cstr, str);
new_value.append(str);
}
else
new_value.append(value_cstr);
}
if (m_validator)
{
error = m_validator(new_value.c_str(),m_validator_baton);
if (error.Fail())
return error;
}
m_current_value.assign(new_value);
NotifyValueChanged();
}
break;
case eVarSetOperationClear:
Clear ();
NotifyValueChanged();
break;
case eVarSetOperationReplace:
case eVarSetOperationAssign:
if (m_validator)
{
error = m_validator(value_cstr,m_validator_baton);
if (error.Fail())
return error;
}
m_value_was_set = true;
if (m_options.Test (eOptionEncodeCharacterEscapeSequences))
{
Args::EncodeEscapeSequences (value_cstr, m_current_value);
}
else
{
SetCurrentValue (value_cstr);
}
NotifyValueChanged();
break;
}
return error;
}
lldb::OptionValueSP
OptionValueString::DeepCopy () const
{
return OptionValueSP(new OptionValueString(*this));
}
Error
OptionValueString::SetCurrentValue (const char *value)
{
if (m_validator)
{
Error error(m_validator(value,m_validator_baton));
if (error.Fail())
return error;
}
if (value && value[0])
m_current_value.assign (value);
else
m_current_value.clear();
return Error();
}
Error
OptionValueString::AppendToCurrentValue (const char *value)
{
if (value && value[0])
{
if (m_validator)
{
std::string new_value(m_current_value);
new_value.append(value);
Error error(m_validator(value,m_validator_baton));
if (error.Fail())
return error;
m_current_value.assign(new_value);
}
else
m_current_value.append (value);
}
return Error();
}