
(...and ASSERT_NOT_REACHED => VERIFY_NOT_REACHED) Since all of these checks are done in release builds as well, let's rename them to VERIFY to prevent confusion, as everyone is used to assertions being compiled out in release. We can introduce a new ASSERT macro that is specifically for debug checks, but I'm doing this wholesale conversion first since we've accumulated thousands of these already, and it's not immediately obvious which ones are suitable for ASSERT.
124 lines
3.9 KiB
C++
124 lines
3.9 KiB
C++
/*
|
|
* Copyright (c) 2020, Liav A. <liavalb@hotmail.co.il>
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
* list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include <AK/AllOf.h>
|
|
#include <Kernel/Storage/Partition/DiskPartitionMetadata.h>
|
|
|
|
namespace Kernel {
|
|
|
|
DiskPartitionMetadata::PartitionType::PartitionType(u8 partition_type)
|
|
{
|
|
m_partition_type[0] = partition_type;
|
|
}
|
|
DiskPartitionMetadata::PartitionType::PartitionType(Array<u8, 16> partition_type)
|
|
: m_partition_type_is_uuid(true)
|
|
{
|
|
m_partition_type.span().overwrite(0, partition_type.data(), partition_type.size());
|
|
}
|
|
UUID DiskPartitionMetadata::PartitionType::to_uuid() const
|
|
{
|
|
VERIFY(is_uuid());
|
|
return m_partition_type;
|
|
}
|
|
u8 DiskPartitionMetadata::PartitionType::to_byte_indicator() const
|
|
{
|
|
VERIFY(!is_uuid());
|
|
return m_partition_type[0];
|
|
}
|
|
bool DiskPartitionMetadata::PartitionType::is_uuid() const
|
|
{
|
|
return m_partition_type_is_uuid;
|
|
}
|
|
bool DiskPartitionMetadata::PartitionType::is_valid() const
|
|
{
|
|
return !all_of(m_partition_type.begin(), m_partition_type.end(), [](const auto octet) { return octet == 0; });
|
|
}
|
|
|
|
DiskPartitionMetadata::DiskPartitionMetadata(u64 start_block, u64 end_block, u8 partition_type)
|
|
: m_start_block(start_block)
|
|
, m_end_block(end_block)
|
|
, m_type(partition_type)
|
|
{
|
|
|
|
VERIFY(m_type.is_valid());
|
|
}
|
|
|
|
DiskPartitionMetadata::DiskPartitionMetadata(u64 start_block, u64 end_block, Array<u8, 16> partition_type)
|
|
: m_start_block(start_block)
|
|
, m_end_block(end_block)
|
|
, m_type(partition_type)
|
|
{
|
|
|
|
VERIFY(m_type.is_valid());
|
|
}
|
|
|
|
DiskPartitionMetadata::DiskPartitionMetadata(u64 start_block, u64 end_block, Array<u8, 16> partition_type, UUID unique_guid, u64 special_attributes, String name)
|
|
: m_start_block(start_block)
|
|
, m_end_block(end_block)
|
|
, m_type(partition_type)
|
|
, m_unique_guid(unique_guid)
|
|
, m_attributes(special_attributes)
|
|
, m_name(name)
|
|
{
|
|
VERIFY(m_type.is_valid());
|
|
VERIFY(!m_unique_guid.is_zero());
|
|
}
|
|
|
|
DiskPartitionMetadata DiskPartitionMetadata::offset(u64 blocks_count) const
|
|
{
|
|
return { blocks_count + m_start_block, blocks_count + m_end_block, m_type.m_partition_type };
|
|
}
|
|
|
|
u64 DiskPartitionMetadata::start_block() const
|
|
{
|
|
return m_start_block;
|
|
}
|
|
u64 DiskPartitionMetadata::end_block() const
|
|
{
|
|
return m_end_block;
|
|
}
|
|
Optional<u64> DiskPartitionMetadata::special_attributes() const
|
|
{
|
|
if (m_attributes == 0)
|
|
return {};
|
|
return m_attributes;
|
|
}
|
|
Optional<String> DiskPartitionMetadata::name() const
|
|
{
|
|
if (m_name.is_null() || m_name.is_empty())
|
|
return {};
|
|
return m_name;
|
|
}
|
|
const DiskPartitionMetadata::PartitionType& DiskPartitionMetadata::type() const
|
|
{
|
|
return m_type;
|
|
}
|
|
const UUID& DiskPartitionMetadata::unique_guid() const
|
|
{
|
|
return m_unique_guid;
|
|
}
|
|
|
|
}
|