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

#include "components/reporting/metrics/fakes/fake_reporting_settings.h"

#include "base/run_loop.h"
#include "base/task/sequenced_task_runner.h"
#include "base/values.h"

namespace reporting::test {

FakeReportingSettings::FakeReportingSettings() = default;

FakeReportingSettings::~FakeReportingSettings() = default;

base::CallbackListSubscription FakeReportingSettings::AddSettingsObserver(
    const std::string& path,
    base::RepeatingClosure callback) {
  if (!settings_callbacks_map_.contains(path)) {
    settings_callbacks_map_[path] =
        std::make_unique<base::RepeatingClosureList>();
  }
  return settings_callbacks_map_.at(path)->Add(std::move(callback));
}

bool FakeReportingSettings::PrepareTrustedValues(base::OnceClosure callback) {
  if (!is_trusted_) {
    trusted_callbacks_.push(std::move(callback));
  }
  return is_trusted_;
}

bool FakeReportingSettings::GetBoolean(const std::string& path,
                                       bool* out_value) const {
  const auto iter = bool_map_.find(path);
  if (iter == bool_map_.end()) {
    return false;
  }
  *out_value = iter->second;
  return true;
}

bool FakeReportingSettings::GetInteger(const std::string& path,
                                       int* out_value) const {
  if (!int_map_.contains(path)) {
    return false;
  }
  *out_value = int_map_.at(path);
  return true;
}

bool FakeReportingSettings::GetList(const std::string& path,
                                    const base::ListValue** out_value) const {
  if (!list_map_.contains(path)) {
    return false;
  }
  *out_value = &list_map_.at(path);
  return true;
}

bool FakeReportingSettings::GetReportingEnabled(const std::string& path,
                                                bool* out_value) const {
  if (!reporting_enabled_map_.contains(path)) {
    return false;
  }
  *out_value = reporting_enabled_map_.at(path);
  return true;
}

void FakeReportingSettings::SetBoolean(const std::string& path,
                                       bool bool_value) {
  bool_map_[path] = bool_value;
  if (settings_callbacks_map_.contains(path)) {
    settings_callbacks_map_.at(path)->Notify();
  }
}

void FakeReportingSettings::SetInteger(const std::string& path, int int_value) {
  int_map_[path] = int_value;
  if (settings_callbacks_map_.contains(path)) {
    settings_callbacks_map_.at(path)->Notify();
  }
}

void FakeReportingSettings::SetList(const std::string& path,
                                    const base::ListValue& list_value) {
  list_map_.insert_or_assign(path, list_value.Clone());
  if (settings_callbacks_map_.contains(path)) {
    settings_callbacks_map_.at(path)->Notify();
  }
}

void FakeReportingSettings::SetReportingEnabled(const std::string& path,
                                                bool enabled_value) {
  reporting_enabled_map_[path] = enabled_value;
  if (settings_callbacks_map_.contains(path)) {
    settings_callbacks_map_.at(path)->Notify();
  }
}

void FakeReportingSettings::SetIsTrusted(bool is_trusted) {
  base::RunLoop run_loop;
  is_trusted_ = is_trusted;
  while (!trusted_callbacks_.empty()) {
    std::move(trusted_callbacks_.front()).Run();
    trusted_callbacks_.pop();
  }
  base::SequencedTaskRunner::GetCurrentDefault()->PostTask(
      FROM_HERE, run_loop.QuitClosure());
  run_loop.Run();
}
}  // namespace reporting::test
