|
|
@ -30,12 +30,9 @@ static const NamedEnumTable<SizeUnit>&
|
|
|
|
unitSuffixes()
|
|
|
|
unitSuffixes()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
static const NamedEnumTable< SizeUnit > names {
|
|
|
|
static const NamedEnumTable< SizeUnit > names {
|
|
|
|
{ QStringLiteral( "%" ), SizeUnit::Percent },
|
|
|
|
{ QStringLiteral( "%" ), SizeUnit::Percent }, { QStringLiteral( "K" ), SizeUnit::KiB },
|
|
|
|
{ QStringLiteral( "K" ), SizeUnit::KiB },
|
|
|
|
{ QStringLiteral( "KiB" ), SizeUnit::KiB }, { QStringLiteral( "M" ), SizeUnit::MiB },
|
|
|
|
{ QStringLiteral( "KiB" ), SizeUnit::KiB },
|
|
|
|
{ QStringLiteral( "MiB" ), SizeUnit::MiB }, { QStringLiteral( "G" ), SizeUnit::GiB },
|
|
|
|
{ QStringLiteral( "M" ), SizeUnit::MiB },
|
|
|
|
|
|
|
|
{ QStringLiteral( "MiB" ), SizeUnit::MiB },
|
|
|
|
|
|
|
|
{ QStringLiteral( "G" ), SizeUnit::GiB },
|
|
|
|
|
|
|
|
{ QStringLiteral( "GiB" ), SizeUnit::GiB }
|
|
|
|
{ QStringLiteral( "GiB" ), SizeUnit::GiB }
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
@ -55,8 +52,10 @@ PartitionSize::PartitionSize( const QString& s )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
m_value = s.toInt();
|
|
|
|
m_value = s.toInt();
|
|
|
|
if ( m_value > 0 )
|
|
|
|
if ( m_value > 0 )
|
|
|
|
|
|
|
|
{
|
|
|
|
m_unit = SizeUnit::Byte;
|
|
|
|
m_unit = SizeUnit::Byte;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( m_value <= 0 )
|
|
|
|
if ( m_value <= 0 )
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -69,9 +68,13 @@ qint64
|
|
|
|
PartitionSize::toSectors( qint64 totalSectors, qint64 sectorSize ) const
|
|
|
|
PartitionSize::toSectors( qint64 totalSectors, qint64 sectorSize ) const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if ( !isValid() )
|
|
|
|
if ( !isValid() )
|
|
|
|
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
}
|
|
|
|
if ( totalSectors < 1 || sectorSize < 1 )
|
|
|
|
if ( totalSectors < 1 || sectorSize < 1 )
|
|
|
|
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch ( m_unit )
|
|
|
|
switch ( m_unit )
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -79,9 +82,13 @@ PartitionSize::toSectors( qint64 totalSectors, qint64 sectorSize ) const
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|
case SizeUnit::Percent:
|
|
|
|
case SizeUnit::Percent:
|
|
|
|
if ( value() == 100 )
|
|
|
|
if ( value() == 100 )
|
|
|
|
|
|
|
|
{
|
|
|
|
return totalSectors; // Common-case, avoid futzing around
|
|
|
|
return totalSectors; // Common-case, avoid futzing around
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
return totalSectors * value() / 100;
|
|
|
|
return totalSectors * value() / 100;
|
|
|
|
|
|
|
|
}
|
|
|
|
case SizeUnit::Byte:
|
|
|
|
case SizeUnit::Byte:
|
|
|
|
case SizeUnit::KiB:
|
|
|
|
case SizeUnit::KiB:
|
|
|
|
case SizeUnit::MiB:
|
|
|
|
case SizeUnit::MiB:
|
|
|
@ -96,7 +103,9 @@ qint64
|
|
|
|
PartitionSize::toBytes( qint64 totalSectors, qint64 sectorSize ) const
|
|
|
|
PartitionSize::toBytes( qint64 totalSectors, qint64 sectorSize ) const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if ( !isValid() )
|
|
|
|
if ( !isValid() )
|
|
|
|
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch ( m_unit )
|
|
|
|
switch ( m_unit )
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -104,11 +113,17 @@ PartitionSize::toBytes( qint64 totalSectors, qint64 sectorSize ) const
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|
case SizeUnit::Percent:
|
|
|
|
case SizeUnit::Percent:
|
|
|
|
if ( totalSectors < 1 || sectorSize < 1 )
|
|
|
|
if ( totalSectors < 1 || sectorSize < 1 )
|
|
|
|
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
}
|
|
|
|
if ( value() == 100 )
|
|
|
|
if ( value() == 100 )
|
|
|
|
|
|
|
|
{
|
|
|
|
return totalSectors * sectorSize; // Common-case, avoid futzing around
|
|
|
|
return totalSectors * sectorSize; // Common-case, avoid futzing around
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
return totalSectors * value() / 100;
|
|
|
|
return totalSectors * value() / 100;
|
|
|
|
|
|
|
|
}
|
|
|
|
case SizeUnit::Byte:
|
|
|
|
case SizeUnit::Byte:
|
|
|
|
case SizeUnit::KiB:
|
|
|
|
case SizeUnit::KiB:
|
|
|
|
case SizeUnit::MiB:
|
|
|
|
case SizeUnit::MiB:
|
|
|
@ -124,7 +139,9 @@ qint64
|
|
|
|
PartitionSize::toBytes( qint64 totalBytes ) const
|
|
|
|
PartitionSize::toBytes( qint64 totalBytes ) const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if ( !isValid() )
|
|
|
|
if ( !isValid() )
|
|
|
|
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch ( m_unit )
|
|
|
|
switch ( m_unit )
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -132,11 +149,17 @@ PartitionSize::toBytes( qint64 totalBytes ) const
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|
case SizeUnit::Percent:
|
|
|
|
case SizeUnit::Percent:
|
|
|
|
if ( totalBytes < 1 )
|
|
|
|
if ( totalBytes < 1 )
|
|
|
|
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
}
|
|
|
|
if ( value() == 100 )
|
|
|
|
if ( value() == 100 )
|
|
|
|
|
|
|
|
{
|
|
|
|
return totalBytes; // Common-case, avoid futzing around
|
|
|
|
return totalBytes; // Common-case, avoid futzing around
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
return totalBytes * value() / 100;
|
|
|
|
return totalBytes * value() / 100;
|
|
|
|
|
|
|
|
}
|
|
|
|
case SizeUnit::Byte:
|
|
|
|
case SizeUnit::Byte:
|
|
|
|
case SizeUnit::KiB:
|
|
|
|
case SizeUnit::KiB:
|
|
|
|
case SizeUnit::MiB:
|
|
|
|
case SizeUnit::MiB:
|
|
|
@ -152,7 +175,9 @@ qint64
|
|
|
|
PartitionSize::toBytes() const
|
|
|
|
PartitionSize::toBytes() const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if ( !isValid() )
|
|
|
|
if ( !isValid() )
|
|
|
|
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch ( m_unit )
|
|
|
|
switch ( m_unit )
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -175,7 +200,9 @@ bool
|
|
|
|
PartitionSize::operator<( const PartitionSize& other ) const
|
|
|
|
PartitionSize::operator<( const PartitionSize& other ) const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if ( !unitsComparable( m_unit, other.m_unit ) )
|
|
|
|
if ( !unitsComparable( m_unit, other.m_unit ) )
|
|
|
|
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch ( m_unit )
|
|
|
|
switch ( m_unit )
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -196,7 +223,9 @@ bool
|
|
|
|
PartitionSize::operator>( const PartitionSize& other ) const
|
|
|
|
PartitionSize::operator>( const PartitionSize& other ) const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if ( !unitsComparable( m_unit, other.m_unit ) )
|
|
|
|
if ( !unitsComparable( m_unit, other.m_unit ) )
|
|
|
|
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch ( m_unit )
|
|
|
|
switch ( m_unit )
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -217,7 +246,9 @@ bool
|
|
|
|
PartitionSize::operator==( const PartitionSize& other ) const
|
|
|
|
PartitionSize::operator==( const PartitionSize& other ) const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if ( !unitsComparable( m_unit, other.m_unit ) )
|
|
|
|
if ( !unitsComparable( m_unit, other.m_unit ) )
|
|
|
|
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch ( m_unit )
|
|
|
|
switch ( m_unit )
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -234,5 +265,5 @@ PartitionSize::operator== ( const PartitionSize& other ) const
|
|
|
|
NOTREACHED return false;
|
|
|
|
NOTREACHED return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
} // namespace Partition
|
|
|
|
} // namespace
|
|
|
|
} // namespace CalamaresUtils
|
|
|
|