small fix with sequence of mount,remount,unmount resizing now contains
2006-01-20 Bart Hakvoort <hakvoort@cvs.gnome.org> * src/jfs.cc: small fix with sequence of mount,remount,unmount * src/xfs.cc: resizing now contains detailed feedback * src/FileSystem.cc: show exceptiondescription in operationdetails
This commit is contained in:
parent
4ad5ef49a4
commit
050ddc6a9d
|
@ -1,3 +1,9 @@
|
||||||
|
2006-01-20 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
||||||
|
|
||||||
|
* src/jfs.cc: small fix with sequence of mount,remount,unmount
|
||||||
|
* src/xfs.cc: resizing now contains detailed feedback
|
||||||
|
* src/FileSystem.cc: show exceptiondescription in operationdetails
|
||||||
|
|
||||||
2006-01-19 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
2006-01-19 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
||||||
|
|
||||||
* src/jfs.cc: resizing now contains detailed feedback
|
* src/jfs.cc: resizing now contains detailed feedback
|
||||||
|
|
|
@ -72,7 +72,9 @@ int FileSystem::execute_command( std::vector<std::string> argv, std::vector<Oper
|
||||||
}
|
}
|
||||||
catch ( Glib::Exception & e )
|
catch ( Glib::Exception & e )
|
||||||
{
|
{
|
||||||
std::cout << e .what() << std::endl ;
|
if ( ! e .what() .empty() )
|
||||||
|
operation_details .back() .sub_details .push_back( OperationDetails( e .what(), OperationDetails::NONE ) ) ;
|
||||||
|
|
||||||
return -1 ;
|
return -1 ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
16
src/jfs.cc
16
src/jfs.cc
|
@ -146,13 +146,6 @@ bool jfs::Resize( const Partition & partition_new,
|
||||||
OperationDetails( String::ucompose( _("remount %1 on %2 with the 'resize' flag enabled"),
|
OperationDetails( String::ucompose( _("remount %1 on %2 with the 'resize' flag enabled"),
|
||||||
partition_new .partition, TEMP_MP ) ) ) ;
|
partition_new .partition, TEMP_MP ) ) ) ;
|
||||||
if ( Utils::mount( partition_new .partition, TEMP_MP, "jfs", error, MS_REMOUNT, "resize" ) )
|
if ( Utils::mount( partition_new .partition, TEMP_MP, "jfs", error, MS_REMOUNT, "resize" ) )
|
||||||
{
|
|
||||||
operation_details .back() .sub_details .back() .status = OperationDetails::SUCCES ;
|
|
||||||
|
|
||||||
//and unmount it...
|
|
||||||
operation_details .back() .sub_details .push_back(
|
|
||||||
OperationDetails( String::ucompose( _("umount %1"), partition_new .partition ) ) ) ;
|
|
||||||
if ( Utils::unmount( partition_new .partition, TEMP_MP, error ) )
|
|
||||||
{
|
{
|
||||||
operation_details .back() .sub_details .back() .status = OperationDetails::SUCCES ;
|
operation_details .back() .sub_details .back() .status = OperationDetails::SUCCES ;
|
||||||
return_value = true ;
|
return_value = true ;
|
||||||
|
@ -163,12 +156,21 @@ bool jfs::Resize( const Partition & partition_new,
|
||||||
operation_details .back() .sub_details .back() .sub_details .push_back(
|
operation_details .back() .sub_details .back() .sub_details .push_back(
|
||||||
OperationDetails( error, OperationDetails::NONE ) ) ;
|
OperationDetails( error, OperationDetails::NONE ) ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//and unmount it...
|
||||||
|
operation_details .back() .sub_details .push_back(
|
||||||
|
OperationDetails( String::ucompose( _("umount %1"), partition_new .partition ) ) ) ;
|
||||||
|
if ( Utils::unmount( partition_new .partition, TEMP_MP, error ) )
|
||||||
|
{
|
||||||
|
operation_details .back() .sub_details .back() .status = OperationDetails::SUCCES ;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
operation_details .back() .sub_details .back() .status = OperationDetails::ERROR ;
|
operation_details .back() .sub_details .back() .status = OperationDetails::ERROR ;
|
||||||
operation_details .back() .sub_details .back() .sub_details .push_back(
|
operation_details .back() .sub_details .back() .sub_details .push_back(
|
||||||
OperationDetails( error, OperationDetails::NONE ) ) ;
|
OperationDetails( error, OperationDetails::NONE ) ) ;
|
||||||
|
|
||||||
|
return_value = false ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
80
src/xfs.cc
80
src/xfs.cc
|
@ -18,6 +18,8 @@
|
||||||
|
|
||||||
#include "../include/xfs.h"
|
#include "../include/xfs.h"
|
||||||
|
|
||||||
|
#include <cerrno>
|
||||||
|
|
||||||
namespace GParted
|
namespace GParted
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -118,7 +120,7 @@ bool xfs::Create( const Partition & new_partition, std::vector<OperationDetails>
|
||||||
bool xfs::Resize( const Partition & partition_new,
|
bool xfs::Resize( const Partition & partition_new,
|
||||||
std::vector<OperationDetails> & operation_details,
|
std::vector<OperationDetails> & operation_details,
|
||||||
bool fill_partition )
|
bool fill_partition )
|
||||||
{//FIXME
|
{
|
||||||
if ( fill_partition )
|
if ( fill_partition )
|
||||||
operation_details .push_back( OperationDetails( _("grow filesystem to fill the partition") ) ) ;
|
operation_details .push_back( OperationDetails( _("grow filesystem to fill the partition") ) ) ;
|
||||||
else
|
else
|
||||||
|
@ -128,14 +130,80 @@ bool xfs::Resize( const Partition & partition_new,
|
||||||
Glib::ustring error ;
|
Glib::ustring error ;
|
||||||
Glib::ustring TEMP_MP = "/tmp/gparted_tmp_xfs_mountpoint" ;
|
Glib::ustring TEMP_MP = "/tmp/gparted_tmp_xfs_mountpoint" ;
|
||||||
|
|
||||||
//xfs kan only grow if the partition is mounted..
|
//create mountpoint...
|
||||||
mkdir( TEMP_MP .c_str(), 0 ) ;
|
operation_details .back() .sub_details .push_back(
|
||||||
|
OperationDetails( String::ucompose( _("create temporary mountpoint (%1)"), TEMP_MP ) ) ) ;
|
||||||
|
if ( ! mkdir( TEMP_MP .c_str(), 0 ) )
|
||||||
|
{
|
||||||
|
operation_details .back() .sub_details .back() .status = OperationDetails::SUCCES ;
|
||||||
|
|
||||||
|
//mount partition
|
||||||
|
operation_details .back() .sub_details .push_back(
|
||||||
|
OperationDetails( String::ucompose( _("mount %1 on %2"), partition_new .partition, TEMP_MP ) ) ) ;
|
||||||
if ( Utils::mount( partition_new .partition, TEMP_MP, "xfs", error ) )
|
if ( Utils::mount( partition_new .partition, TEMP_MP, "xfs", error ) )
|
||||||
{
|
{
|
||||||
return_value = ! Execute_Command( "xfs_growfs " + TEMP_MP ) ;
|
operation_details .back() .sub_details .back() .status = OperationDetails::SUCCES ;
|
||||||
Utils::unmount( partition_new .partition, TEMP_MP, error ) ;
|
|
||||||
|
//grow the mounted filesystem..
|
||||||
|
operation_details .back() .sub_details .push_back( OperationDetails( _("grow mounted filesystem") ) ) ;
|
||||||
|
argv .clear() ;
|
||||||
|
argv .push_back( "xfs_growfs" ) ;
|
||||||
|
argv .push_back( TEMP_MP ) ;
|
||||||
|
if ( ! execute_command( argv, operation_details .back() .sub_details .back() .sub_details ) )
|
||||||
|
{
|
||||||
|
operation_details .back() .sub_details .back() .status = OperationDetails::SUCCES ;
|
||||||
|
return_value = true ;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
operation_details .back() .sub_details .back() .status = OperationDetails::ERROR ;
|
||||||
|
}
|
||||||
|
|
||||||
|
//and unmount it...
|
||||||
|
operation_details .back() .sub_details .push_back(
|
||||||
|
OperationDetails( String::ucompose( _("umount %1"), partition_new .partition ) ) ) ;
|
||||||
|
if ( Utils::unmount( partition_new .partition, TEMP_MP, error ) )
|
||||||
|
{
|
||||||
|
operation_details .back() .sub_details .back() .status = OperationDetails::SUCCES ;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
operation_details .back() .sub_details .back() .status = OperationDetails::ERROR ;
|
||||||
|
operation_details .back() .sub_details .back() .sub_details .push_back(
|
||||||
|
OperationDetails( error, OperationDetails::NONE ) ) ;
|
||||||
|
|
||||||
|
return_value = false ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
operation_details .back() .sub_details .back() .status = OperationDetails::ERROR ;
|
||||||
|
operation_details .back() .sub_details .back() .sub_details .push_back(
|
||||||
|
OperationDetails( error, OperationDetails::NONE ) ) ;
|
||||||
|
}
|
||||||
|
|
||||||
|
//remove the mountpoint..
|
||||||
|
operation_details .back() .sub_details .push_back(
|
||||||
|
OperationDetails( String::ucompose( _("remove temporary mountpoint (%1)"), TEMP_MP ) ) ) ;
|
||||||
|
if ( ! rmdir( TEMP_MP .c_str() ) )
|
||||||
|
{
|
||||||
|
operation_details .back() .sub_details .back() .status = OperationDetails::SUCCES ;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
operation_details .back() .sub_details .back() .status = OperationDetails::ERROR ;
|
||||||
|
operation_details .back() .sub_details .back() .sub_details .push_back(
|
||||||
|
OperationDetails( Glib::strerror( errno ), OperationDetails::NONE ) ) ;
|
||||||
|
|
||||||
|
return_value = false ;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
operation_details .back() .sub_details .back() .status = OperationDetails::ERROR ;
|
||||||
|
operation_details .back() .sub_details .back() .sub_details .push_back(
|
||||||
|
OperationDetails( Glib::strerror( errno ), OperationDetails::NONE ) ) ;
|
||||||
}
|
}
|
||||||
rmdir( TEMP_MP .c_str() ) ;
|
|
||||||
|
|
||||||
operation_details .back() .status = return_value ? OperationDetails::SUCCES : OperationDetails::ERROR ;
|
operation_details .back() .status = return_value ? OperationDetails::SUCCES : OperationDetails::ERROR ;
|
||||||
return return_value ;
|
return return_value ;
|
||||||
|
|
Loading…
Reference in New Issue