1 //===-- ValueObjectList.h ---------------------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #ifndef LLDB_CORE_VALUEOBJECTLIST_H 10 #define LLDB_CORE_VALUEOBJECTLIST_H 11 12 #include "lldb/lldb-forward.h" 13 #include "lldb/lldb-types.h" 14 15 #include <vector> 16 17 #include <stddef.h> 18 19 namespace lldb_private { 20 class ValueObject; 21 22 // A collection of ValueObject values that 23 class ValueObjectList { 24 public: 25 const ValueObjectList &operator=(const ValueObjectList &rhs); 26 27 void Append(const lldb::ValueObjectSP &val_obj_sp); 28 29 void Append(const ValueObjectList &valobj_list); 30 31 lldb::ValueObjectSP FindValueObjectByPointer(ValueObject *valobj); 32 33 size_t GetSize() const; 34 35 void Resize(size_t size); 36 37 lldb::ValueObjectSP GetValueObjectAtIndex(size_t idx); 38 39 lldb::ValueObjectSP RemoveValueObjectAtIndex(size_t idx); 40 41 void SetValueObjectAtIndex(size_t idx, const lldb::ValueObjectSP &valobj_sp); 42 43 lldb::ValueObjectSP FindValueObjectByValueName(const char *name); 44 45 lldb::ValueObjectSP FindValueObjectByUID(lldb::user_id_t uid); 46 47 void Swap(ValueObjectList &value_object_list); 48 Clear()49 void Clear() { m_value_objects.clear(); } 50 GetObjects()51 const std::vector<lldb::ValueObjectSP> &GetObjects() const { 52 return m_value_objects; 53 } 54 protected: 55 typedef std::vector<lldb::ValueObjectSP> collection; 56 // Classes that inherit from ValueObjectList can see and modify these 57 collection m_value_objects; 58 }; 59 60 } // namespace lldb_private 61 62 #endif // LLDB_CORE_VALUEOBJECTLIST_H 63