Skip to content

Commit 4c78b78

Browse files
committed
[lldb][NFC] Allow for-ranges on StringList
llvm-svn: 369113
1 parent 213edc3 commit 4c78b78

11 files changed

+48
-32
lines changed

lldb/include/lldb/Utility/CompletionRequest.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ class CompletionRequest {
116116
///
117117
/// \see AddCompletion
118118
void AddCompletions(const StringList &completions) {
119-
for (std::size_t i = 0; i < completions.GetSize(); ++i)
120-
AddCompletion(completions.GetStringAtIndex(i));
119+
for (const std::string &completion : completions)
120+
AddCompletion(completion);
121121
}
122122

123123
/// Adds multiple possible completion strings alongside their descriptions.

lldb/include/lldb/Utility/StringList.h

+11-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ class Stream;
2323
namespace lldb_private {
2424

2525
class StringList {
26+
typedef std::vector<std::string> StorageType;
27+
2628
public:
2729
StringList();
2830

@@ -52,6 +54,14 @@ class StringList {
5254

5355
size_t GetMaxStringLength() const;
5456

57+
typedef StorageType::iterator iterator;
58+
typedef StorageType::const_iterator const_iterator;
59+
60+
iterator begin() { return m_strings.begin(); }
61+
iterator end() { return m_strings.end(); }
62+
const_iterator begin() const { return m_strings.begin(); }
63+
const_iterator end() const { return m_strings.end(); }
64+
5565
std::string &operator[](size_t idx) {
5666
// No bounds checking, verify "idx" is good prior to calling this function
5767
return m_strings[idx];
@@ -125,7 +135,7 @@ class StringList {
125135
}
126136

127137
private:
128-
std::vector<std::string> m_strings;
138+
StorageType m_strings;
129139
};
130140

131141
} // namespace lldb_private

lldb/source/Breakpoint/WatchpointOptions.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,8 @@ void WatchpointOptions::CommandBaton::GetDescription(
170170

171171
s->IndentMore();
172172
if (data && data->user_source.GetSize() > 0) {
173-
const size_t num_strings = data->user_source.GetSize();
174-
for (size_t i = 0; i < num_strings; ++i) {
175-
s->Indent(data->user_source.GetStringAtIndex(i));
173+
for (const std::string &line : data->user_source) {
174+
s->Indent(line);
176175
s->EOL();
177176
}
178177
} else {

lldb/source/Commands/CommandObjectApropos.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,8 @@ bool CommandObjectApropos::DoExecute(Args &args, CommandReturnObject &result) {
6565
"The following commands may relate to '%s':\n", args[0].c_str());
6666
size_t max_len = 0;
6767

68-
for (size_t i = 0; i < commands_found.GetSize(); ++i) {
69-
size_t len = strlen(commands_found.GetStringAtIndex(i));
70-
if (len > max_len)
71-
max_len = len;
68+
for (const std::string &command : commands_found) {
69+
max_len = std::max(max_len, command.size());
7270
}
7371

7472
for (size_t i = 0; i < commands_found.GetSize(); ++i)

lldb/source/Commands/CommandObjectCommands.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -966,11 +966,9 @@ a number follows 'f':"
966966
if (m_regex_cmd_up) {
967967
StringList lines;
968968
if (lines.SplitIntoLines(data)) {
969-
const size_t num_lines = lines.GetSize();
970969
bool check_only = false;
971-
for (size_t i = 0; i < num_lines; ++i) {
972-
llvm::StringRef bytes_strref(lines[i]);
973-
Status error = AppendRegexSubstitution(bytes_strref, check_only);
970+
for (const std::string &line : lines) {
971+
Status error = AppendRegexSubstitution(line, check_only);
974972
if (error.Fail()) {
975973
if (!GetDebugger().GetCommandInterpreter().GetBatchCommandMode()) {
976974
StreamSP out_stream = GetDebugger().GetAsyncOutputStream();

lldb/source/Commands/CommandObjectMultiword.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ bool CommandObjectMultiword::Execute(const char *args_string,
136136

137137
if (num_subcmd_matches > 0) {
138138
error_msg.append(" Possible completions:");
139-
for (size_t i = 0; i < matches.GetSize(); i++) {
139+
for (const std::string &match : matches) {
140140
error_msg.append("\n\t");
141-
error_msg.append(matches.GetStringAtIndex(i));
141+
error_msg.append(match);
142142
}
143143
}
144144
error_msg.append("\n");

lldb/source/Commands/CommandObjectType.cpp

+2-6
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,7 @@ class CommandObjectTypeSummaryAdd : public CommandObjectParsed,
195195

196196
Status error;
197197

198-
for (size_t i = 0; i < options->m_target_types.GetSize(); i++) {
199-
const char *type_name =
200-
options->m_target_types.GetStringAtIndex(i);
198+
for (const std::string &type_name : options->m_target_types) {
201199
CommandObjectTypeSummaryAdd::AddSummary(
202200
ConstString(type_name), script_format,
203201
(options->m_regex
@@ -437,9 +435,7 @@ class CommandObjectTypeSynthAdd : public CommandObjectParsed,
437435

438436
Status error;
439437

440-
for (size_t i = 0; i < options->m_target_types.GetSize(); i++) {
441-
const char *type_name =
442-
options->m_target_types.GetStringAtIndex(i);
438+
for (const std::string &type_name : options->m_target_types) {
443439
ConstString const_type_name(type_name);
444440
if (const_type_name) {
445441
if (!CommandObjectTypeSynthAdd::AddSynth(

lldb/source/Utility/Args.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ Args::Args(llvm::StringRef command) { SetCommandString(command); }
172172
Args::Args(const Args &rhs) { *this = rhs; }
173173

174174
Args::Args(const StringList &list) : Args() {
175-
for (size_t i = 0; i < list.GetSize(); ++i)
176-
AppendArgument(list[i]);
175+
for (const std::string &arg : list)
176+
AppendArgument(arg);
177177
}
178178

179179
Args &Args::operator=(const Args &rhs) {

lldb/source/Utility/StringList.cpp

+1-4
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,7 @@ void StringList::AppendList(const char **strv, int strc) {
6161
}
6262

6363
void StringList::AppendList(StringList strings) {
64-
size_t len = strings.GetSize();
65-
66-
for (size_t i = 0; i < len; ++i)
67-
m_strings.push_back(strings.GetStringAtIndex(i));
64+
m_strings.insert(m_strings.end(), strings.begin(), strings.end());
6865
}
6966

7067
size_t StringList::GetSize() const { return m_strings.size(); }

lldb/unittests/Editline/EditlineTest.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ bool EditlineAdapter::IsInputComplete(lldb_private::Editline *editline,
196196
int start_block_count = 0;
197197
int brace_balance = 0;
198198

199-
for (size_t i = 0; i < lines.GetSize(); ++i) {
200-
for (auto ch : lines[i]) {
199+
for (const std::string &line : lines) {
200+
for (auto ch : line) {
201201
if (ch == '{') {
202202
++start_block_count;
203203
++brace_balance;
@@ -312,8 +312,8 @@ TEST_F(EditlineTestFixture, EditlineReceivesMultiLineText) {
312312
// Without any auto indentation support, our output should directly match our
313313
// input.
314314
std::vector<std::string> reported_lines;
315-
for (size_t i = 0; i < el_reported_lines.GetSize(); ++i)
316-
reported_lines.push_back(el_reported_lines[i]);
315+
for (const std::string &line : el_reported_lines)
316+
reported_lines.push_back(line);
317317

318318
EXPECT_THAT(reported_lines, testing::ContainerEq(input_lines));
319319
}

lldb/unittests/Utility/StringListTest.cpp

+18
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
#include "lldb/Utility/StringList.h"
1010
#include "lldb/Utility/StreamString.h"
11+
#include "gmock/gmock.h"
1112
#include "gtest/gtest.h"
1213

1314
using namespace lldb_private;
@@ -504,3 +505,20 @@ TEST(StringListTest, GetMaxStringLengthEmpty) {
504505
StringList s;
505506
EXPECT_EQ(0U, s.GetMaxStringLength());
506507
}
508+
509+
TEST(StringListTest, ForRangeEmpty) {
510+
StringList s;
511+
for (const std::string &e : s)
512+
FAIL() << "Shouldn't have hit an element in for range" << e;
513+
}
514+
515+
TEST(StringListTest, ForRangeSingle) {
516+
StringList s;
517+
s.AppendString("a");
518+
s.AppendString("b");
519+
s.AppendString("c");
520+
std::vector<std::string> recorded;
521+
for (const std::string &e : s)
522+
recorded.push_back(e);
523+
EXPECT_THAT(recorded, testing::ElementsAre("a", "b", "c"));
524+
}

0 commit comments

Comments
 (0)