@ -1,6 +1,7 @@
/* === This file is part of Calamares - <https://github.com/calamares> ===
*
* Copyright 2019 , Collabora Ltd < arnaud . ferraris @ collabora . com >
* Copyright 2019 , Adriaan de Groot < groot @ kde . org >
*
* Calamares is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
@ -42,23 +43,23 @@ unitSuffixes()
PartitionSize : : PartitionSize ( const QString & s )
: NamedSuffix ( unitSuffixes ( ) , s )
{
if ( ( unit ( ) = = unit_ t: : Percent ) & & ( value ( ) > 100 | | value ( ) < 0 ) )
if ( ( unit ( ) = = SizeUni t: : Percent ) & & ( value ( ) > 100 | | value ( ) < 0 ) )
{
cDebug ( ) < < " Percent value " < < value ( ) < < " is not valid. " ;
m_value = 0 ;
}
if ( m_unit = = unit_ t: : None )
if ( m_unit = = SizeUni t: : None )
{
m_value = s . toInt ( ) ;
if ( m_value > 0 )
m_unit = unit_ t: : Byte ;
m_unit = SizeUni t: : Byte ;
}
if ( m_value < = 0 )
{
m_value = 0 ;
m_unit = unit_ t: : None ;
m_unit = SizeUni t: : None ;
}
}
@ -72,17 +73,17 @@ PartitionSize::toSectors( qint64 totalSectors, qint64 sectorSize ) const
switch ( m_unit )
{
case unit_ t: : None :
case SizeUni t: : None :
return - 1 ;
case unit_ t: : Percent :
case SizeUni t: : Percent :
if ( value ( ) = = 100 )
return totalSectors ; // Common-case, avoid futzing around
else
return totalSectors * value ( ) / 100 ;
case unit_ t: : Byte :
case unit_ t: : KiB :
case unit_ t: : MiB :
case unit_ t: : GiB :
case SizeUni t: : Byte :
case SizeUni t: : KiB :
case SizeUni t: : MiB :
case SizeUni t: : GiB :
return CalamaresUtils : : bytesToSectors ( toBytes ( ) , sectorSize ) ;
}
@ -97,19 +98,19 @@ PartitionSize::toBytes( qint64 totalSectors, qint64 sectorSize ) const
switch ( m_unit )
{
case unit_ t: : None :
case SizeUni t: : None :
return - 1 ;
case unit_ t: : Percent :
case SizeUni t: : Percent :
if ( totalSectors < 1 | | sectorSize < 1 )
return - 1 ;
if ( value ( ) = = 100 )
return totalSectors * sectorSize ; // Common-case, avoid futzing around
else
return totalSectors * value ( ) / 100 ;
case unit_ t: : Byte :
case unit_ t: : KiB :
case unit_ t: : MiB :
case unit_ t: : GiB :
case SizeUni t: : Byte :
case SizeUni t: : KiB :
case SizeUni t: : MiB :
case SizeUni t: : GiB :
return toBytes ( ) ;
}
@ -125,19 +126,19 @@ PartitionSize::toBytes( qint64 totalBytes ) const
switch ( m_unit )
{
case unit_ t: : None :
case SizeUni t: : None :
return - 1 ;
case unit_ t: : Percent :
case SizeUni t: : Percent :
if ( totalBytes < 1 )
return - 1 ;
if ( value ( ) = = 100 )
return totalBytes ; // Common-case, avoid futzing around
else
return totalBytes * value ( ) / 100 ;
case unit_ t: : Byte :
case unit_ t: : KiB :
case unit_ t: : MiB :
case unit_ t: : GiB :
case SizeUni t: : Byte :
case SizeUni t: : KiB :
case SizeUni t: : MiB :
case SizeUni t: : GiB :
return toBytes ( ) ;
}
@ -153,16 +154,16 @@ PartitionSize::toBytes() const
switch ( m_unit )
{
case unit_ t: : None :
case unit_ t: : Percent :
case SizeUni t: : None :
case SizeUni t: : Percent :
return - 1 ;
case unit_ t: : Byte :
case SizeUni t: : Byte :
return value ( ) ;
case unit_ t: : KiB :
case SizeUni t: : KiB :
return CalamaresUtils : : KiBtoBytes ( static_cast < unsigned long long > ( value ( ) ) ) ;
case unit_ t: : MiB :
case SizeUni t: : MiB :
return CalamaresUtils : : MiBtoBytes ( static_cast < unsigned long long > ( value ( ) ) ) ;
case unit_ t: : GiB :
case SizeUni t: : GiB :
return CalamaresUtils : : GiBtoBytes ( static_cast < unsigned long long > ( value ( ) ) ) ;
}
}
@ -170,19 +171,17 @@ PartitionSize::toBytes() const
bool
PartitionSize : : operator < ( const PartitionSize & other ) const
{
if ( ( m_unit = = unit_t : : None | | other . m_unit = = unit_t : : None ) | |
( m_unit = = unit_t : : Percent & & other . m_unit ! = unit_t : : Percent ) | |
( m_unit ! = unit_t : : Percent & & other . m_unit = = unit_t : : Percent ) )
if ( ! unitsComparable ( m_unit , other . m_unit ) )
return false ;
switch ( m_unit )
{
case unit_ t: : Percent :
case SizeUni t: : Percent :
return ( m_value < other . m_value ) ;
case unit_ t: : Byte :
case unit_ t: : KiB :
case unit_ t: : MiB :
case unit_ t: : GiB :
case SizeUni t: : Byte :
case SizeUni t: : KiB :
case SizeUni t: : MiB :
case SizeUni t: : GiB :
return ( toBytes ( ) < other . toBytes ( ) ) ;
}
@ -192,19 +191,17 @@ PartitionSize::operator< ( const PartitionSize& other ) const
bool
PartitionSize : : operator > ( const PartitionSize & other ) const
{
if ( ( m_unit = = unit_t : : None | | other . m_unit = = unit_t : : None ) | |
( m_unit = = unit_t : : Percent & & other . m_unit ! = unit_t : : Percent ) | |
( m_unit ! = unit_t : : Percent & & other . m_unit = = unit_t : : Percent ) )
if ( ! unitsComparable ( m_unit , other . m_unit ) )
return false ;
switch ( m_unit )
{
case unit_ t: : Percent :
case SizeUni t: : Percent :
return ( m_value > other . m_value ) ;
case unit_ t: : Byte :
case unit_ t: : KiB :
case unit_ t: : MiB :
case unit_ t: : GiB :
case SizeUni t: : Byte :
case SizeUni t: : KiB :
case SizeUni t: : MiB :
case SizeUni t: : GiB :
return ( toBytes ( ) > other . toBytes ( ) ) ;
}
@ -214,19 +211,17 @@ PartitionSize::operator> ( const PartitionSize& other ) const
bool
PartitionSize : : operator = = ( const PartitionSize & other ) const
{
if ( ( m_unit = = unit_t : : None | | other . m_unit = = unit_t : : None ) | |
( m_unit = = unit_t : : Percent & & other . m_unit ! = unit_t : : Percent ) | |
( m_unit ! = unit_t : : Percent & & other . m_unit = = unit_t : : Percent ) )
if ( ! unitsComparable ( m_unit , other . m_unit ) )
return false ;
switch ( m_unit )
{
case unit_ t: : Percent :
case SizeUni t: : Percent :
return ( m_value = = other . m_value ) ;
case unit_ t: : Byte :
case unit_ t: : KiB :
case unit_ t: : MiB :
case unit_ t: : GiB :
case SizeUni t: : Byte :
case SizeUni t: : KiB :
case SizeUni t: : MiB :
case SizeUni t: : GiB :
return ( toBytes ( ) = = other . toBytes ( ) ) ;
}