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

#include "chrome/browser/autofill/ml_log_router_factory.h"

#include "chrome/browser/optimization_guide/optimization_guide_keyed_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_keyed_service_factory.h"
#include "components/autofill/core/browser/ml_model/logging/ml_log_router.h"
#include "components/keyed_service/core/keyed_service.h"
#include "content/public/browser/browser_context.h"

namespace autofill {

// static
MlLogRouterFactory* MlLogRouterFactory::GetInstance() {
  static base::NoDestructor<MlLogRouterFactory> instance;
  return instance.get();
}

// static
MlLogRouter* MlLogRouterFactory::GetForProfile(Profile* profile) {
  return static_cast<MlLogRouter*>(
      GetInstance()->GetServiceForBrowserContext(profile, /*create=*/true));
}

MlLogRouterFactory::MlLogRouterFactory()
    : ProfileKeyedServiceFactory(
          "MlLogRouter",
          ProfileSelections::Builder()
              // Also provide a log router for guest profiles.
              .WithGuest(ProfileSelection::kOffTheRecordOnly)
              .Build()) {}

MlLogRouterFactory::~MlLogRouterFactory() = default;

std::unique_ptr<KeyedService>
MlLogRouterFactory::BuildServiceInstanceForBrowserContext(
    content::BrowserContext* context) const {
  return std::make_unique<MlLogRouter>();
}

}  // namespace autofill
