summaryrefslogtreecommitdiffstats
path: root/include/lldb/Core/StringList.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Core/StringList.h')
-rw-r--r--include/lldb/Core/StringList.h107
1 files changed, 107 insertions, 0 deletions
diff --git a/include/lldb/Core/StringList.h b/include/lldb/Core/StringList.h
new file mode 100644
index 0000000..5503274
--- /dev/null
+++ b/include/lldb/Core/StringList.h
@@ -0,0 +1,107 @@
+//===-- StringList.h --------------------------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef liblldb_StringList_h_
+#define liblldb_StringList_h_
+
+#include <stdint.h>
+
+#include "lldb/Core/STLUtils.h"
+#include "lldb/lldb-forward.h"
+
+namespace lldb_private {
+
+class StringList
+{
+public:
+
+ StringList ();
+
+ StringList (const char *str);
+
+ StringList (const char **strv, int strc);
+
+ virtual
+ ~StringList ();
+
+ void
+ AppendString (const std::string &s);
+
+ void
+ AppendString (const char *str);
+
+ void
+ AppendString (const char *str, size_t str_len);
+
+ void
+ AppendList (const char ** strv, int strc);
+
+ void
+ AppendList (StringList strings);
+
+ bool
+ ReadFileLines (FileSpec &input_file);
+
+ size_t
+ GetSize () const;
+
+ const char *
+ GetStringAtIndex (size_t idx) const;
+
+ void
+ Join (const char *separator, Stream &strm);
+
+ void
+ Clear ();
+
+ void
+ LongestCommonPrefix (std::string &common_prefix);
+
+ void
+ InsertStringAtIndex (size_t id, const char *str);
+
+ void
+ DeleteStringAtIndex (size_t id);
+
+ void
+ RemoveBlankLines ();
+
+ size_t
+ SplitIntoLines (const char *lines, size_t len);
+
+ std::string
+ CopyList(const char* item_preamble = NULL,
+ const char* items_sep = "\n");
+
+ StringList&
+ operator << (const char* str);
+
+ StringList&
+ operator << (StringList strings);
+
+ // This string list contains a list of valid auto completion
+ // strings, and the "s" is passed in. "matches" is filled in
+ // with zero or more string values that start with "s", and
+ // the first string to exactly match one of the string
+ // values in this collection, will have "exact_matches_idx"
+ // filled in to match the index, or "exact_matches_idx" will
+ // have SIZE_MAX
+ size_t
+ AutoComplete (const char *s,
+ StringList &matches,
+ size_t &exact_matches_idx) const;
+
+private:
+
+ STLStringArray m_strings;
+};
+
+} // namespace lldb_private
+
+#endif // liblldb_StringList_h_
OpenPOWER on IntegriCloud