mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 10:55:46 -05:00
[fsresizer] Calculate resize parameters
- apply() a relativesize to a device to find out how much it means in sectors - find the space into which the configured FS can grow.
This commit is contained in:
parent
9e1c95ad05
commit
9124281bcb
2 changed files with 93 additions and 1 deletions
|
@ -26,12 +26,14 @@
|
|||
#include <kpmcore/backend/corebackendmanager.h>
|
||||
#include <kpmcore/core/device.h>
|
||||
#include <kpmcore/core/partition.h>
|
||||
#include <kpmcore/ops/resizeoperation.h>
|
||||
|
||||
#include "CalamaresVersion.h"
|
||||
#include "JobQueue.h"
|
||||
#include "GlobalStorage.h"
|
||||
|
||||
#include "utils/Logger.h"
|
||||
#include "utils/Units.h"
|
||||
|
||||
#include "modules/partition/core/PartitionIterator.h"
|
||||
|
||||
|
@ -70,6 +72,26 @@ ResizeFSJob::RelativeSize::RelativeSize( const QString& s)
|
|||
m_unit = None;
|
||||
}
|
||||
|
||||
qint64
|
||||
ResizeFSJob::RelativeSize::apply( Device* d )
|
||||
{
|
||||
if ( !isValid() )
|
||||
return -1;
|
||||
|
||||
switch( m_unit )
|
||||
{
|
||||
case None:
|
||||
return -1;
|
||||
case Absolute:
|
||||
return CalamaresUtils::MiBtoBytes( value() ) / d->logicalSize();
|
||||
case Percent:
|
||||
return d->logicalSize() * value() / 100;
|
||||
}
|
||||
|
||||
// notreached
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
ResizeFSJob::ResizeFSJob( QObject* parent )
|
||||
: Calamares::CppJob( parent )
|
||||
|
@ -99,7 +121,7 @@ ResizeFSJob::findPartition( CoreBackend* backend )
|
|||
if ( ! (*dev_it) )
|
||||
continue;
|
||||
cDebug() << "ResizeFSJob found" << ( *dev_it )->deviceNode();
|
||||
for ( auto part_it = PartitionIterator::begin( *dev_it); part_it != PartitionIterator::end( *dev_it ); ++part_it )
|
||||
for ( auto part_it = PartitionIterator::begin( *dev_it ); part_it != PartitionIterator::end( *dev_it ); ++part_it )
|
||||
{
|
||||
cDebug() << ".." << ( *part_it )->mountPoint() << "on" << ( *part_it )->deviceNode();
|
||||
if ( ( !m_fsname.isEmpty() && ( *part_it )->mountPoint() == m_fsname ) ||
|
||||
|
@ -115,6 +137,51 @@ ResizeFSJob::findPartition( CoreBackend* backend )
|
|||
return PartitionMatch( nullptr, nullptr );
|
||||
}
|
||||
|
||||
qint64
|
||||
ResizeFSJob::findGrownEnd(ResizeFSJob::PartitionMatch m)
|
||||
{
|
||||
if ( !m.first || !m.second )
|
||||
return -1;
|
||||
if ( !ResizeOperation::canGrow( m.second ) )
|
||||
return -1;
|
||||
|
||||
qint64 last_available = m.first->totalLogical();
|
||||
cDebug() << "Containing device size" << last_available;
|
||||
qint64 last_currently = m.second->lastSector();
|
||||
cDebug() << "Growing partition" << m.second->firstSector() << '-' << last_currently;
|
||||
|
||||
for ( auto part_it = PartitionIterator::begin( m.first ); part_it != PartitionIterator::end( m.first ); ++part_it )
|
||||
{
|
||||
qint64 next_start = ( *part_it )->firstSector();
|
||||
cDebug() << ".. comparing" << next_start << '-' << ( *part_it )->lastSector();
|
||||
if ( (next_start > last_currently) && (next_start < last_available) )
|
||||
{
|
||||
cDebug() << " .. shrunk last available to" << next_start;
|
||||
last_available = next_start - 1; // Before that one starts
|
||||
}
|
||||
}
|
||||
|
||||
if ( !( last_available > last_currently ) )
|
||||
{
|
||||
cDebug() << "Partition can not grow larger.";
|
||||
return -1;
|
||||
}
|
||||
|
||||
qint64 expand = last_available - last_currently; // number of sectors
|
||||
if ( m_atleast.isValid() )
|
||||
{
|
||||
qint64 required = m_atleast.apply( m.first );
|
||||
if ( expand < required )
|
||||
{
|
||||
cDebug() << ".. need to expand by" << required << "but only" << expand << "is available.";
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
return last_available;
|
||||
}
|
||||
|
||||
|
||||
Calamares::JobResult
|
||||
ResizeFSJob::exec()
|
||||
{
|
||||
|
@ -157,6 +224,19 @@ ResizeFSJob::exec()
|
|||
m_fsname.isEmpty() ? tr( "The filesystem %1 could not be found in this system, and can not be resized." ).arg(m_fsname)
|
||||
: tr( "The device %1 could not be found in this system, and can not be resized." ).arg(m_devicename) );
|
||||
|
||||
if ( !ResizeOperation::canGrow( m.second ) )
|
||||
{
|
||||
cDebug() << "canGrow() returned false.";
|
||||
return Calamares::JobResult::error(
|
||||
tr( "Resize Failed" ),
|
||||
m_fsname.isEmpty() ? tr( "The filesystem %1 can not be resized." ).arg(m_fsname)
|
||||
: tr( "The device %1 can not be resized." ).arg(m_devicename) );
|
||||
}
|
||||
|
||||
cDebug() << "Resize from" << m.second->firstSector()
|
||||
<< '+' << m.second->length() << '=' << m.second->lastSector()
|
||||
<< "to" << findGrownEnd( m );
|
||||
|
||||
return Calamares::JobResult::ok();
|
||||
}
|
||||
|
||||
|
|
|
@ -64,6 +64,15 @@ public:
|
|||
return ( unit() != None ) && ( value() > 0 );
|
||||
}
|
||||
|
||||
/** @brief Apply this size to the given device @p d
|
||||
*
|
||||
* For invalid sizes, returns -1.
|
||||
* For absolute sizes, returns the number of sectors needed.
|
||||
* For percent sizes, returns the number of sectors matching
|
||||
* that percentage of the device size.
|
||||
*/
|
||||
qint64 apply( Device* d );
|
||||
|
||||
private:
|
||||
int m_value;
|
||||
Unit m_unit;
|
||||
|
@ -94,6 +103,9 @@ private:
|
|||
using PartitionMatch = QPair<Device*, Partition*>;
|
||||
/** @brief Find the configured FS using KPMCore @p backend */
|
||||
PartitionMatch findPartition( CoreBackend* backend );
|
||||
|
||||
/** @brief Return a new end-sector for the given dev-part pair. */
|
||||
qint64 findGrownEnd( PartitionMatch );
|
||||
};
|
||||
|
||||
CALAMARES_PLUGIN_FACTORY_DECLARATION( ResizeFSJobFactory )
|
||||
|
|
Loading…
Add table
Reference in a new issue