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

#include "content/browser/service_worker/service_worker_info.h"

#include "base/byte_size.h"
#include "content/browser/service_worker/service_worker_consts.h"
#include "content/common/service_worker/service_worker_router_evaluator.h"
#include "content/public/browser/child_process_host.h"
#include "ipc/constants.mojom.h"
#include "third_party/blink/public/common/service_worker/embedded_worker_status.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_object.mojom.h"
#include "third_party/blink/public/mojom/service_worker/service_worker_registration.mojom.h"

namespace content {

ServiceWorkerVersionInfo::ServiceWorkerVersionInfo()
    : running_status(blink::EmbeddedWorkerStatus::kStopped),
      status(ServiceWorkerVersion::NEW),
      thread_id(ServiceWorkerConsts::kInvalidEmbeddedWorkerThreadId),
      devtools_agent_route_id(IPC::mojom::kRoutingIdNone),
      ukm_source_id(ukm::kInvalidSourceId) {}

ServiceWorkerVersionInfo::ServiceWorkerVersionInfo(
    blink::EmbeddedWorkerStatus running_status,
    ServiceWorkerVersion::Status status,
    std::optional<ServiceWorkerVersion::FetchHandlerType> fetch_handler_type,
    blink::mojom::NavigationPreloadState navigation_preload_state,
    const GURL& script_url,
    const GURL& scope,
    const blink::StorageKey& storage_key,
    int64_t registration_id,
    int64_t version_id,
    ChildProcessId process_id,
    int thread_id,
    int devtools_agent_route_id,
    ukm::SourceId ukm_source_id,
    blink::mojom::AncestorFrameType ancestor_frame_type,
    std::optional<std::string> router_rules,
    std::vector<ServiceWorkerRouterRule> typed_router_rules)
    : ServiceWorkerVersionBaseInfo(script_url,
                                   scope,
                                   storage_key,
                                   registration_id,
                                   version_id,
                                   process_id,
                                   ancestor_frame_type),
      running_status(running_status),
      status(status),
      fetch_handler_type(fetch_handler_type),
      navigation_preload_state(std::move(navigation_preload_state)),
      thread_id(thread_id),
      devtools_agent_route_id(devtools_agent_route_id),
      ukm_source_id(ukm_source_id),
      router_rules(std::move(router_rules)),
      typed_router_rules(std::move(typed_router_rules)) {}

ServiceWorkerVersionInfo::ServiceWorkerVersionInfo(
    const ServiceWorkerVersionInfo& other) = default;

ServiceWorkerVersionInfo::~ServiceWorkerVersionInfo() {}

ServiceWorkerRegistrationInfo::ServiceWorkerRegistrationInfo() = default;

ServiceWorkerRegistrationInfo::ServiceWorkerRegistrationInfo(
    const GURL& scope,
    const blink::StorageKey& key,
    int64_t registration_id,
    DeleteFlag delete_flag)
    : scope(scope),
      key(key),
      registration_id(registration_id),
      delete_flag(delete_flag) {}

ServiceWorkerRegistrationInfo::ServiceWorkerRegistrationInfo(
    const GURL& scope,
    const blink::StorageKey& key,
    blink::mojom::ServiceWorkerUpdateViaCache update_via_cache,
    int64_t registration_id,
    DeleteFlag delete_flag,
    const ServiceWorkerVersionInfo& active_version,
    const ServiceWorkerVersionInfo& waiting_version,
    const ServiceWorkerVersionInfo& installing_version,
    base::ByteSize stored_version_size,
    bool navigation_preload_enabled,
    size_t navigation_preload_header_length)
    : scope(scope),
      key(key),
      update_via_cache(update_via_cache),
      registration_id(registration_id),
      delete_flag(delete_flag),
      active_version(active_version),
      waiting_version(waiting_version),
      installing_version(installing_version),
      stored_version_size(stored_version_size),
      navigation_preload_enabled(navigation_preload_enabled),
      navigation_preload_header_length(navigation_preload_header_length) {}

ServiceWorkerRegistrationInfo::ServiceWorkerRegistrationInfo(
    const ServiceWorkerRegistrationInfo& other) = default;

ServiceWorkerRegistrationInfo::~ServiceWorkerRegistrationInfo() {}

}  // namespace content
