/* * Copyright (c) 2020, Liav A. * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include #include #include namespace Kernel { class PartitionTable; class StorageManagement { public: StorageManagement(); static bool initialized(); void initialize(StringView boot_argument, bool force_pio); static StorageManagement& the(); NonnullRefPtr root_filesystem() const; static MajorNumber storage_type_major_number(); static MinorNumber generate_storage_minor_number(); void remove_device(StorageDevice&); private: bool boot_argument_contains_partition_uuid(); void enumerate_controllers(bool force_pio); void enumerate_storage_devices(); void enumerate_disk_partitions(); void determine_boot_device(); void determine_boot_device_with_partition_uuid(); OwnPtr try_to_initialize_partition_table(const StorageDevice&) const; RefPtr boot_block_device() const; StringView m_boot_argument; WeakPtr m_boot_block_device; NonnullRefPtrVector m_controllers; IntrusiveList<&StorageDevice::m_list_node> m_storage_devices; }; }