Coverage Report

Created: 2023-09-21 18:56

/Users/buildslave/jenkins/workspace/coverage/llvm-project/lldb/include/lldb/Interpreter/OptionValuePathMappings.h
Line
Count
Source (jump to first uncovered line)
1
//===-- OptionValuePathMappings.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_INTERPRETER_OPTIONVALUEPATHMAPPINGS_H
10
#define LLDB_INTERPRETER_OPTIONVALUEPATHMAPPINGS_H
11
12
#include "lldb/Interpreter/OptionValue.h"
13
#include "lldb/Target/PathMappingList.h"
14
15
namespace lldb_private {
16
17
class OptionValuePathMappings
18
    : public Cloneable<OptionValuePathMappings, OptionValue> {
19
public:
20
  OptionValuePathMappings(bool notify_changes)
21
3.92k
      : m_notify_changes(notify_changes) {}
22
23
8.79k
  ~OptionValuePathMappings() override = default;
24
25
  // Virtual subclass pure virtual overrides
26
27
22.6k
  OptionValue::Type GetType() const override { return eTypePathMap; }
28
29
  void DumpValue(const ExecutionContext *exe_ctx, Stream &strm,
30
                 uint32_t dump_mask) override;
31
32
  llvm::json::Value ToJSON(const ExecutionContext *exe_ctx) override;
33
34
  Status
35
  SetValueFromString(llvm::StringRef value,
36
                     VarSetOperationType op = eVarSetOperationAssign) override;
37
38
3.16k
  void Clear() override {
39
3.16k
    m_path_mappings.Clear(m_notify_changes);
40
3.16k
    m_value_was_set = false;
41
3.16k
  }
42
43
0
  bool IsAggregateValue() const override { return true; }
44
45
  // Subclass specific functions
46
47
22.6k
  PathMappingList &GetCurrentValue() { return m_path_mappings; }
48
49
0
  const PathMappingList &GetCurrentValue() const { return m_path_mappings; }
50
51
protected:
52
  PathMappingList m_path_mappings;
53
  bool m_notify_changes;
54
};
55
56
} // namespace lldb_private
57
58
#endif // LLDB_INTERPRETER_OPTIONVALUEPATHMAPPINGS_H