/* * Copyright (c) 2023, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Web::HTML { ListOfAvailableImages::ListOfAvailableImages() = default; ListOfAvailableImages::~ListOfAvailableImages() = default; bool ListOfAvailableImages::Key::operator==(Key const& other) const { return url == other.url && mode == other.mode && origin == other.origin; } u32 ListOfAvailableImages::Key::hash() const { if (!cached_hash.has_value()) { u32 url_hash = Traits::hash(url); u32 mode_hash = static_cast(mode); u32 origin_hash = 0; if (origin.has_value()) origin_hash = Traits::hash(origin.value()); cached_hash = pair_int_hash(url_hash, pair_int_hash(mode_hash, origin_hash)); } return cached_hash.value(); } ErrorOr> ListOfAvailableImages::Entry::create(NonnullRefPtr image_data, bool ignore_higher_layer_caching) { return adopt_nonnull_ref_or_enomem(new (nothrow) Entry(move(image_data), ignore_higher_layer_caching)); } ListOfAvailableImages::Entry::Entry(NonnullRefPtr data, bool ignore_higher_layer_caching) : ignore_higher_layer_caching(ignore_higher_layer_caching) , image_data(move(data)) { } ListOfAvailableImages::Entry::~Entry() = default; ErrorOr ListOfAvailableImages::add(Key const& key, NonnullRefPtr image_data, bool ignore_higher_layer_caching) { auto entry = TRY(Entry::create(move(image_data), ignore_higher_layer_caching)); TRY(m_images.try_set(key, move(entry))); return {}; } void ListOfAvailableImages::remove(Key const& key) { m_images.remove(key); } RefPtr ListOfAvailableImages::get(Key const& key) const { auto it = m_images.find(key); if (it == m_images.end()) return nullptr; return it->value; } }