// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef TOOLS_CLANG_RAW_PTR_PLUGIN_OPTIONS_H_
#define TOOLS_CLANG_RAW_PTR_PLUGIN_OPTIONS_H_

#include <string>
#include <vector>

namespace raw_ptr_plugin {

struct Options {
  bool check_bad_raw_ptr_cast = false;
  bool check_raw_ptr_fields = false;
  bool check_raw_ref_fields = false;
  // `check_raw_ptr_to_stack_allocated` enables following features:
  // - Disallow `raw_ptr<StackAllocated>`
  // - Allow `StackAllocated*` (bypasses `check_raw_ptr_fields`)
  // `disable_check_raw_ptr_to_stack_allocated_error` overwrites first feature
  // to allow both of `raw_ptr<StackAllocated>` and `StackAllocated*`.
  bool check_raw_ptr_to_stack_allocated = false;
  bool disable_check_raw_ptr_to_stack_allocated_error = false;
  bool check_ptrs_to_non_string_literals = false;
  bool check_span_fields = false;
  bool enable_match_profiling = false;
  // TODO(crbug.com/330759291): this gate should someday be removed.
  // This is set true to mirror the status quo - we _do_ explicitly
  // ignore paths for which most code was converted to use Oilpan types.
  // It shouldn't be necessary, though, so we would like to set it false
  // (and eventually remove it).
  bool explicitly_ignore_oilpanized_paths = true;
  std::string exclude_fields_file;
  std::vector<std::string> raw_ptr_paths_to_exclude_lines;
  std::vector<std::string> check_bad_raw_ptr_cast_exclude_funcs;
  std::vector<std::string> check_bad_raw_ptr_cast_exclude_paths;
};

}  // namespace raw_ptr_plugin

#endif  // TOOLS_CLANG_RAW_PTR_PLUGIN_OPTIONS_H_
