2004-11-17 06:00:25 -07:00
|
|
|
#include "../include/GParted_Core.h"
|
|
|
|
|
2005-12-10 17:05:28 -07:00
|
|
|
#include <sys/statvfs.h>
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
GParted_Core::GParted_Core( )
|
|
|
|
{
|
2005-11-26 17:57:11 -07:00
|
|
|
lp_device = NULL ;
|
|
|
|
lp_disk = NULL ;
|
|
|
|
lp_partition = NULL ;
|
2004-11-17 06:00:25 -07:00
|
|
|
p_filesystem = NULL ;
|
|
|
|
|
|
|
|
//get valid flags ...
|
2004-12-27 05:08:01 -07:00
|
|
|
for ( PedPartitionFlag flag = ped_partition_flag_next( (PedPartitionFlag) NULL ) ; flag ; flag = ped_partition_flag_next( flag ) )
|
2004-11-17 06:00:25 -07:00
|
|
|
flags .push_back( flag ) ;
|
2005-01-08 16:45:45 -07:00
|
|
|
|
2005-01-23 07:05:21 -07:00
|
|
|
//throw libpartedversion to the stdout to see which version is actually used.
|
|
|
|
std::cout << "======================" << std::endl ;
|
|
|
|
std::cout << "libparted : " << ped_get_version( ) << std::endl ;
|
|
|
|
std::cout << "======================" << std::endl ;
|
|
|
|
|
|
|
|
//initialize filesystemlist
|
2005-01-08 16:45:45 -07:00
|
|
|
find_supported_filesystems( ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void GParted_Core::find_supported_filesystems( )
|
|
|
|
{
|
|
|
|
FILESYSTEMS .clear( ) ;
|
|
|
|
|
|
|
|
ext2 fs_ext2;
|
|
|
|
FILESYSTEMS .push_back( fs_ext2 .get_filesystem_support( ) ) ;
|
|
|
|
|
|
|
|
ext3 fs_ext3;
|
|
|
|
FILESYSTEMS .push_back( fs_ext3 .get_filesystem_support( ) ) ;
|
|
|
|
|
|
|
|
fat16 fs_fat16;
|
|
|
|
FILESYSTEMS .push_back( fs_fat16 .get_filesystem_support( ) ) ;
|
|
|
|
|
|
|
|
fat32 fs_fat32;
|
|
|
|
FILESYSTEMS .push_back( fs_fat32 .get_filesystem_support( ) ) ;
|
|
|
|
|
2004-12-14 15:49:44 -07:00
|
|
|
hfs fs_hfs;
|
|
|
|
FILESYSTEMS .push_back( fs_hfs .get_filesystem_support( ) ) ;
|
|
|
|
|
2005-09-13 08:56:00 -06:00
|
|
|
hfsplus fs_hfsplus;
|
|
|
|
FILESYSTEMS .push_back( fs_hfsplus .get_filesystem_support( ) ) ;
|
|
|
|
|
2004-12-14 15:49:44 -07:00
|
|
|
jfs fs_jfs;
|
|
|
|
FILESYSTEMS .push_back( fs_jfs .get_filesystem_support( ) ) ;
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
linux_swap fs_linux_swap;
|
|
|
|
FILESYSTEMS .push_back( fs_linux_swap .get_filesystem_support( ) ) ;
|
|
|
|
|
2006-02-17 14:18:07 -07:00
|
|
|
ntfs fs_ntfs;
|
|
|
|
FILESYSTEMS .push_back( fs_ntfs .get_filesystem_support( ) ) ;
|
|
|
|
|
2004-12-28 17:09:58 -07:00
|
|
|
reiser4 fs_reiser4;
|
|
|
|
FILESYSTEMS .push_back( fs_reiser4 .get_filesystem_support( ) ) ;
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
reiserfs fs_reiserfs;
|
|
|
|
FILESYSTEMS .push_back( fs_reiserfs .get_filesystem_support( ) ) ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2004-12-13 14:24:12 -07:00
|
|
|
xfs fs_xfs;
|
|
|
|
FILESYSTEMS .push_back( fs_xfs .get_filesystem_support( ) ) ;
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
//unknown filesystem (default when no match is found)
|
2005-12-07 04:21:27 -07:00
|
|
|
FS fs ; fs .filesystem = GParted::FS_UNKNOWN ;
|
2004-11-21 14:49:38 -07:00
|
|
|
FILESYSTEMS .push_back( fs ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
2006-02-02 06:50:37 -07:00
|
|
|
|
|
|
|
void GParted_Core::set_user_devices( const std::vector<Glib::ustring> & user_devices )
|
|
|
|
{
|
|
|
|
this ->device_paths = user_devices ;
|
|
|
|
this ->probe_devices = ! user_devices .size() ;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GParted_Core::check_device_path( const Glib::ustring & device_path )
|
|
|
|
{
|
|
|
|
if ( device_path .length() > 6 && device_path .is_ascii() && open_device( device_path ) )
|
|
|
|
{
|
|
|
|
close_device_and_disk() ;
|
|
|
|
return true ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false ;
|
|
|
|
}
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2004-12-17 12:45:04 -07:00
|
|
|
void GParted_Core::get_devices( std::vector<Device> & devices )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2005-12-29 07:21:45 -07:00
|
|
|
devices .clear() ;
|
2004-11-17 06:00:25 -07:00
|
|
|
Device temp_device ;
|
|
|
|
|
2006-01-05 13:01:34 -07:00
|
|
|
init_maps() ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2006-02-02 06:50:37 -07:00
|
|
|
//only probe if no devices were specified as arguments..
|
|
|
|
if ( probe_devices )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2006-02-02 06:50:37 -07:00
|
|
|
device_paths .clear() ;
|
|
|
|
|
|
|
|
//try to find all available devices
|
|
|
|
ped_device_probe_all();
|
|
|
|
|
|
|
|
lp_device = ped_device_get_next( NULL );
|
|
|
|
while ( lp_device )
|
|
|
|
{
|
|
|
|
device_paths .push_back( lp_device ->path ) ;
|
|
|
|
|
|
|
|
lp_device = ped_device_get_next( lp_device ) ;
|
|
|
|
}
|
|
|
|
close_device_and_disk() ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
2005-12-30 11:11:03 -07:00
|
|
|
|
2006-01-05 13:01:34 -07:00
|
|
|
|
2005-12-29 07:21:45 -07:00
|
|
|
for ( unsigned int t = 0 ; t < device_paths .size() ; t++ )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2006-02-02 06:50:37 -07:00
|
|
|
if ( check_device_path( device_paths[ t ] ) && open_device_and_disk( device_paths[ t ], false ) )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2005-12-29 07:21:45 -07:00
|
|
|
temp_device .Reset() ;
|
2004-11-19 04:55:38 -07:00
|
|
|
|
2004-11-27 16:31:19 -07:00
|
|
|
//device info..
|
2006-02-02 06:50:37 -07:00
|
|
|
temp_device .path = get_short_path( device_paths[ t ] ) ;
|
2005-11-26 17:57:11 -07:00
|
|
|
temp_device .realpath = lp_device ->path ;
|
|
|
|
temp_device .model = lp_device ->model ;
|
|
|
|
temp_device .heads = lp_device ->bios_geom .heads ;
|
|
|
|
temp_device .sectors = lp_device ->bios_geom .sectors ;
|
|
|
|
temp_device .cylinders = lp_device ->bios_geom .cylinders ;
|
2004-11-17 06:00:25 -07:00
|
|
|
temp_device .length = temp_device .heads * temp_device .sectors * temp_device .cylinders ;
|
2006-01-21 17:07:27 -07:00
|
|
|
temp_device .cylsize = Utils::Round( Utils::sector_to_unit(
|
2006-02-02 06:50:37 -07:00
|
|
|
temp_device .heads * temp_device .sectors,
|
|
|
|
GParted::UNIT_MIB ) ) ;
|
2004-12-27 05:08:01 -07:00
|
|
|
|
2006-01-20 16:35:06 -07:00
|
|
|
//make sure cylsize is at least 1 MiB
|
2004-12-27 05:08:01 -07:00
|
|
|
if ( temp_device .cylsize < 1 )
|
|
|
|
temp_device .cylsize = 1 ;
|
2005-08-30 20:30:25 -06:00
|
|
|
|
2004-12-27 05:08:01 -07:00
|
|
|
//normal harddisk
|
2005-11-26 17:57:11 -07:00
|
|
|
if ( lp_disk )
|
2004-11-27 16:31:19 -07:00
|
|
|
{
|
2005-11-26 17:57:11 -07:00
|
|
|
temp_device .disktype = lp_disk ->type ->name ;
|
|
|
|
temp_device .max_prims = ped_disk_get_max_primary_partition_count( lp_disk ) ;
|
2004-11-29 08:27:33 -07:00
|
|
|
|
2004-12-17 12:45:04 -07:00
|
|
|
set_device_partitions( temp_device ) ;
|
2006-01-05 13:01:34 -07:00
|
|
|
set_short_paths( temp_device .partitions ) ;
|
2005-12-08 10:03:29 -07:00
|
|
|
|
2004-12-27 11:56:57 -07:00
|
|
|
if ( temp_device .highest_busy )
|
2006-01-05 13:01:34 -07:00
|
|
|
set_mountpoints( temp_device .partitions ) ;
|
2005-12-10 17:05:28 -07:00
|
|
|
|
2006-01-05 13:01:34 -07:00
|
|
|
set_used_sectors( temp_device .partitions ) ;
|
2005-12-10 17:05:28 -07:00
|
|
|
|
|
|
|
if ( temp_device .highest_busy )
|
2005-11-26 17:57:11 -07:00
|
|
|
temp_device .readonly = ! ped_disk_commit_to_os( lp_disk ) ;
|
2004-11-27 16:31:19 -07:00
|
|
|
}
|
|
|
|
//harddisk without disklabel
|
|
|
|
else
|
|
|
|
{
|
2004-11-28 05:09:04 -07:00
|
|
|
temp_device .disktype = _("unrecognized") ;
|
2004-11-27 16:31:19 -07:00
|
|
|
temp_device .max_prims = -1 ;
|
|
|
|
|
|
|
|
Partition partition_temp ;
|
2005-12-07 15:44:40 -07:00
|
|
|
partition_temp .Set_Unallocated( temp_device .path, 0, temp_device .length, false );
|
2006-01-05 13:01:34 -07:00
|
|
|
temp_device .partitions .push_back( partition_temp );
|
2004-11-27 16:31:19 -07:00
|
|
|
}
|
2005-08-30 20:30:25 -06:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
devices .push_back( temp_device ) ;
|
|
|
|
|
2006-01-05 13:01:34 -07:00
|
|
|
close_device_and_disk() ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
}
|
2006-01-05 13:01:34 -07:00
|
|
|
|
|
|
|
//clear leftover information...
|
|
|
|
mount_info .clear() ;
|
|
|
|
short_paths .clear() ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-01-05 13:01:34 -07:00
|
|
|
void GParted_Core::init_maps()
|
|
|
|
{
|
2006-01-24 16:37:59 -07:00
|
|
|
std::string line ;
|
|
|
|
|
2006-01-05 13:01:34 -07:00
|
|
|
//initialize mountpoints..
|
2006-01-24 16:37:59 -07:00
|
|
|
char node[255], mountpoint[255] ;
|
2006-01-30 12:45:50 -07:00
|
|
|
unsigned int index ;
|
2006-01-24 16:37:59 -07:00
|
|
|
std::ifstream proc_mounts( "/proc/mounts" ) ;
|
|
|
|
if ( proc_mounts )
|
2006-01-05 13:01:34 -07:00
|
|
|
{
|
2006-01-24 16:37:59 -07:00
|
|
|
while ( getline( proc_mounts, line ) )
|
|
|
|
if ( line .length() > 0 &&
|
|
|
|
line[ 0 ] == '/' &&
|
2006-01-30 12:45:50 -07:00
|
|
|
sscanf( line .c_str(), "%255s %255s", node, mountpoint ) == 2 )
|
|
|
|
{
|
|
|
|
//see if mountpoint contains spaces and deal with it
|
|
|
|
line = mountpoint ;
|
|
|
|
index = line .find( "\\040" ) ;
|
|
|
|
if ( index < line .length() )
|
|
|
|
line .replace( index, 4, " " ) ;
|
|
|
|
|
2006-02-15 15:32:54 -07:00
|
|
|
mount_info[ node ] .push_back( line ) ;
|
2006-01-30 12:45:50 -07:00
|
|
|
}
|
2006-01-05 13:01:34 -07:00
|
|
|
|
2006-01-24 16:37:59 -07:00
|
|
|
proc_mounts .close() ;
|
|
|
|
}
|
|
|
|
|
|
|
|
//above list lacks the root mountpoint, try to get it from /etc/mtab
|
|
|
|
std::ifstream etc_mtab( "/etc/mtab" ) ;
|
|
|
|
if ( etc_mtab )
|
|
|
|
{
|
|
|
|
while ( getline( etc_mtab, line ) )
|
|
|
|
if ( line .length() > 0 &&
|
|
|
|
line[ 0 ] == '/' &&
|
2006-01-30 12:45:50 -07:00
|
|
|
sscanf( line .c_str(), "%255s %255s", node, mountpoint ) == 2 &&
|
2006-01-24 16:37:59 -07:00
|
|
|
static_cast<Glib::ustring>( mountpoint ) == "/" )
|
|
|
|
{
|
2006-02-15 15:32:54 -07:00
|
|
|
mount_info[ node ] .push_back( "/" ) ;
|
2006-01-24 16:37:59 -07:00
|
|
|
break ;
|
|
|
|
}
|
|
|
|
|
|
|
|
etc_mtab .close() ;
|
2006-01-05 13:01:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//initialize shortpaths...
|
|
|
|
std::ifstream proc_partitions( "/proc/partitions" ) ;
|
|
|
|
if ( proc_partitions )
|
|
|
|
{
|
|
|
|
char c_str[255] ;
|
|
|
|
|
|
|
|
while ( getline( proc_partitions, line ) )
|
|
|
|
if ( sscanf( line .c_str(), "%*d %*d %*d %255s", c_str ) == 1 )
|
|
|
|
{
|
|
|
|
line = "/dev/" ;
|
|
|
|
line += c_str ;
|
|
|
|
|
|
|
|
if ( realpath( line .c_str(), c_str ) )
|
2006-01-24 08:35:14 -07:00
|
|
|
short_paths[ c_str ] = line ;
|
2006-01-05 13:01:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
proc_partitions .close() ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GParted::FILESYSTEM GParted_Core::get_filesystem()
|
2004-12-29 09:38:45 -07:00
|
|
|
{
|
|
|
|
//standard libparted filesystems..
|
2005-12-07 04:21:27 -07:00
|
|
|
if ( lp_partition && lp_partition ->fs_type )
|
|
|
|
{
|
|
|
|
if ( static_cast<Glib::ustring>( lp_partition ->fs_type ->name ) == "extended" )
|
|
|
|
return GParted::FS_EXTENDED ;
|
|
|
|
else if ( static_cast<Glib::ustring>( lp_partition ->fs_type ->name ) == "ext2" )
|
|
|
|
return GParted::FS_EXT2 ;
|
|
|
|
else if ( static_cast<Glib::ustring>( lp_partition ->fs_type ->name ) == "ext3" )
|
|
|
|
return GParted::FS_EXT3 ;
|
|
|
|
else if ( static_cast<Glib::ustring>( lp_partition ->fs_type ->name ) == "linux-swap" )
|
|
|
|
return GParted::FS_LINUX_SWAP ;
|
|
|
|
else if ( static_cast<Glib::ustring>( lp_partition ->fs_type ->name ) == "fat16" )
|
|
|
|
return GParted::FS_FAT16 ;
|
|
|
|
else if ( static_cast<Glib::ustring>( lp_partition ->fs_type ->name ) == "fat32" )
|
|
|
|
return GParted::FS_FAT32 ;
|
|
|
|
else if ( static_cast<Glib::ustring>( lp_partition ->fs_type ->name ) == "ntfs" )
|
|
|
|
return GParted::FS_NTFS ;
|
|
|
|
else if ( static_cast<Glib::ustring>( lp_partition ->fs_type ->name ) == "reiserfs" )
|
|
|
|
return GParted::FS_REISERFS ;
|
|
|
|
else if ( static_cast<Glib::ustring>( lp_partition ->fs_type ->name ) == "xfs" )
|
|
|
|
return GParted::FS_XFS ;
|
|
|
|
else if ( static_cast<Glib::ustring>( lp_partition ->fs_type ->name ) == "jfs" )
|
|
|
|
return GParted::FS_JFS ;
|
|
|
|
else if ( static_cast<Glib::ustring>( lp_partition ->fs_type ->name ) == "hfs" )
|
|
|
|
return GParted::FS_HFS ;
|
|
|
|
else if ( static_cast<Glib::ustring>( lp_partition ->fs_type ->name ) == "hfs+" )
|
|
|
|
return GParted::FS_HFSPLUS ;
|
|
|
|
else if ( static_cast<Glib::ustring>( lp_partition ->fs_type ->name ) == "ufs" )
|
|
|
|
return GParted::FS_UFS ;
|
|
|
|
}
|
|
|
|
|
2004-12-29 09:38:45 -07:00
|
|
|
|
|
|
|
//other filesystems libparted couldn't detect (i've send patches for these filesystems to the parted guys)
|
|
|
|
char buf[512] ;
|
2005-11-26 17:57:11 -07:00
|
|
|
ped_device_open( lp_device );
|
2004-12-29 09:38:45 -07:00
|
|
|
|
|
|
|
//reiser4
|
2005-12-07 04:21:27 -07:00
|
|
|
ped_geometry_read( & lp_partition ->geom, buf, 128, 1 ) ;
|
2005-11-26 17:57:11 -07:00
|
|
|
ped_device_close( lp_device );
|
2005-12-07 04:21:27 -07:00
|
|
|
|
|
|
|
if ( static_cast<Glib::ustring>( buf ) == "ReIsEr4" )
|
|
|
|
return GParted::FS_REISER4 ;
|
2004-12-29 09:38:45 -07:00
|
|
|
|
|
|
|
//no filesystem found....
|
|
|
|
partition_temp .error = _( "Unable to detect filesystem! Possible reasons are:" ) ;
|
|
|
|
partition_temp .error += "\n-";
|
|
|
|
partition_temp .error += _( "The filesystem is damaged" ) ;
|
|
|
|
partition_temp .error += "\n-" ;
|
|
|
|
partition_temp .error += _( "The filesystem is unknown to libparted" ) ;
|
|
|
|
partition_temp .error += "\n-";
|
|
|
|
partition_temp .error += _( "There is no filesystem available (unformatted)" ) ;
|
2005-12-07 04:21:27 -07:00
|
|
|
|
|
|
|
return GParted::FS_UNKNOWN ;
|
2004-12-29 09:38:45 -07:00
|
|
|
}
|
|
|
|
|
2004-12-17 12:45:04 -07:00
|
|
|
void GParted_Core::set_device_partitions( Device & device )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
int EXT_INDEX = -1 ;
|
|
|
|
|
|
|
|
//clear partitions
|
2006-01-05 13:01:34 -07:00
|
|
|
device .partitions .clear() ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2005-11-26 17:57:11 -07:00
|
|
|
lp_partition = ped_disk_next_partition( lp_disk, NULL ) ;
|
|
|
|
while ( lp_partition )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2006-01-05 13:01:34 -07:00
|
|
|
partition_temp .Reset() ;
|
|
|
|
|
2005-11-26 17:57:11 -07:00
|
|
|
switch ( lp_partition ->type )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
case PED_PARTITION_NORMAL:
|
2005-08-30 20:30:25 -06:00
|
|
|
case PED_PARTITION_LOGICAL:
|
2006-01-05 13:01:34 -07:00
|
|
|
partition_temp .Set( device .path,
|
|
|
|
ped_partition_get_path( lp_partition ),
|
|
|
|
lp_partition ->num,
|
|
|
|
lp_partition ->type == 0 ? GParted::TYPE_PRIMARY : GParted::TYPE_LOGICAL,
|
|
|
|
get_filesystem(),
|
|
|
|
lp_partition ->geom .start,
|
|
|
|
lp_partition ->geom .end,
|
|
|
|
lp_partition ->type,
|
|
|
|
ped_partition_is_busy( lp_partition ) );
|
2005-08-30 20:30:25 -06:00
|
|
|
|
2006-01-05 13:01:34 -07:00
|
|
|
partition_temp .flags = Get_Flags() ;
|
2004-12-27 11:56:57 -07:00
|
|
|
if ( partition_temp .busy && partition_temp .partition_number > device .highest_busy )
|
|
|
|
device .highest_busy = partition_temp .partition_number ;
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
break ;
|
|
|
|
|
|
|
|
case PED_PARTITION_EXTENDED:
|
2006-01-05 13:01:34 -07:00
|
|
|
partition_temp.Set( device .path,
|
|
|
|
device .path + Utils::num_to_str( lp_partition ->num ),
|
|
|
|
lp_partition ->num,
|
|
|
|
GParted::TYPE_EXTENDED,
|
|
|
|
GParted::FS_EXTENDED,
|
|
|
|
lp_partition ->geom .start,
|
|
|
|
lp_partition ->geom .end,
|
|
|
|
false,
|
|
|
|
ped_partition_is_busy( lp_partition ) );
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2006-01-05 13:01:34 -07:00
|
|
|
partition_temp .flags = Get_Flags() ;
|
|
|
|
EXT_INDEX = device .partitions .size() ;
|
2004-11-17 06:00:25 -07:00
|
|
|
break ;
|
|
|
|
|
2005-12-07 04:21:27 -07:00
|
|
|
default:
|
|
|
|
break;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2004-12-12 13:36:00 -07:00
|
|
|
//if there's an end, there's a partition ;)
|
|
|
|
if ( partition_temp .sector_end > -1 )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
if ( ! partition_temp .inside_extended )
|
2006-01-05 13:01:34 -07:00
|
|
|
device .partitions .push_back( partition_temp );
|
2004-11-17 06:00:25 -07:00
|
|
|
else
|
2006-01-05 13:01:34 -07:00
|
|
|
device .partitions[ EXT_INDEX ] .logicals .push_back( partition_temp ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//next partition (if any)
|
2005-12-07 04:21:27 -07:00
|
|
|
lp_partition = ped_disk_next_partition( lp_disk, lp_partition ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
2004-12-12 13:36:00 -07:00
|
|
|
|
|
|
|
if ( EXT_INDEX > -1 )
|
2005-12-13 18:58:15 -07:00
|
|
|
insert_unallocated( device .path,
|
2006-01-05 13:01:34 -07:00
|
|
|
device .partitions[ EXT_INDEX ] .logicals,
|
|
|
|
device .partitions[ EXT_INDEX ] .sector_start,
|
|
|
|
device .partitions[ EXT_INDEX ] .sector_end,
|
2005-12-13 18:58:15 -07:00
|
|
|
true ) ;
|
2004-12-12 13:36:00 -07:00
|
|
|
|
2006-01-05 13:01:34 -07:00
|
|
|
insert_unallocated( device .path, device .partitions, 0, device .length -1, false ) ;
|
2004-12-12 13:36:00 -07:00
|
|
|
}
|
|
|
|
|
2006-01-05 13:01:34 -07:00
|
|
|
void GParted_Core::set_mountpoints( std::vector<Partition> & partitions )
|
2005-12-08 10:03:29 -07:00
|
|
|
{
|
|
|
|
for ( unsigned int t = 0 ; t < partitions .size() ; t++ )
|
|
|
|
{
|
|
|
|
if ( partitions[ t ] .busy && partitions[ t ] .filesystem != GParted::FS_LINUX_SWAP )
|
|
|
|
{
|
|
|
|
if ( partitions[ t ] .type == GParted::TYPE_PRIMARY || partitions[ t ] .type == GParted::TYPE_LOGICAL )
|
|
|
|
{
|
2006-02-15 15:32:54 -07:00
|
|
|
iter_mp = mount_info .find( partitions[ t ] .partition );
|
|
|
|
if ( iter_mp != mount_info .end() )
|
2005-12-08 10:03:29 -07:00
|
|
|
{
|
2006-02-15 15:32:54 -07:00
|
|
|
partitions[ t ] .mountpoints = iter_mp ->second ;
|
|
|
|
mount_info .erase( iter_mp ) ;
|
2005-12-08 10:03:29 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( partitions[ t ] .type == GParted::TYPE_EXTENDED )
|
2006-01-05 13:01:34 -07:00
|
|
|
set_mountpoints( partitions[ t ] .logicals ) ;
|
2005-12-08 10:03:29 -07:00
|
|
|
}
|
|
|
|
}
|
2006-01-05 13:01:34 -07:00
|
|
|
}
|
2005-12-08 10:03:29 -07:00
|
|
|
|
2006-01-05 13:01:34 -07:00
|
|
|
void GParted_Core::set_short_paths( std::vector<Partition> & partitions )
|
|
|
|
{
|
|
|
|
for ( unsigned int t =0 ; t < partitions .size() ; t++ )
|
|
|
|
{
|
|
|
|
partitions[ t ] .partition = get_short_path( partitions[ t ] .partition ) ;
|
|
|
|
|
|
|
|
if ( partitions[ t ] .type == GParted::TYPE_EXTENDED )
|
|
|
|
set_short_paths( partitions[ t ] .logicals ) ;
|
|
|
|
}
|
2005-12-08 10:03:29 -07:00
|
|
|
}
|
2005-12-10 17:05:28 -07:00
|
|
|
|
2006-01-05 13:01:34 -07:00
|
|
|
Glib::ustring GParted_Core::get_short_path( const Glib::ustring & real_path )
|
|
|
|
{
|
|
|
|
temp = real_path ;
|
|
|
|
|
|
|
|
iter = short_paths .find( real_path );
|
|
|
|
if ( iter != short_paths .end() )
|
|
|
|
{
|
|
|
|
temp = iter ->second ;
|
|
|
|
short_paths .erase( iter ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return temp ;
|
|
|
|
}
|
|
|
|
|
2005-12-10 17:05:28 -07:00
|
|
|
void GParted_Core::set_used_sectors( std::vector<Partition> & partitions )
|
|
|
|
{
|
|
|
|
struct statvfs sfs ;
|
|
|
|
|
|
|
|
temp = _("Unable to read the contents of this filesystem!") ;
|
|
|
|
temp += "\n" ;
|
|
|
|
temp += _("Because of this some operations may be unavailable.") ;
|
|
|
|
temp += "\n\n" ;
|
|
|
|
temp += _("Did you install the correct plugin for this filesystem?") ;
|
|
|
|
|
|
|
|
for ( unsigned int t = 0 ; t < partitions .size() ; t++ )
|
|
|
|
{
|
|
|
|
if ( partitions[ t ] .filesystem != GParted::FS_LINUX_SWAP && partitions[ t ] .filesystem != GParted::FS_UNKNOWN )
|
|
|
|
{
|
|
|
|
if ( partitions[ t ] .type == GParted::TYPE_PRIMARY || partitions[ t ] .type == GParted::TYPE_LOGICAL )
|
|
|
|
{
|
|
|
|
if ( partitions[ t ] .busy )
|
|
|
|
{
|
2006-02-15 15:32:54 -07:00
|
|
|
if ( statvfs( partitions[ t ] .mountpoints .back() .c_str(), &sfs ) == 0 )
|
2005-12-10 17:05:28 -07:00
|
|
|
partitions[ t ] .Set_Unused( sfs .f_bfree * (sfs .f_bsize / 512) ) ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
switch( get_fs( partitions[ t ] .filesystem ) .read )
|
|
|
|
{
|
|
|
|
case GParted::FS::EXTERNAL :
|
|
|
|
set_proper_filesystem( partitions[ t ] .filesystem ) ;
|
|
|
|
p_filesystem ->Set_Used_Sectors( partitions[ t ] ) ;
|
|
|
|
break ;
|
|
|
|
case GParted::FS::LIBPARTED :
|
|
|
|
LP_Set_Used_Sectors( partitions[ t ] ) ;
|
|
|
|
break ;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( partitions[ t ] .sectors_used == -1 )
|
|
|
|
partitions[ t ] .error = temp ;
|
|
|
|
|
|
|
|
}
|
|
|
|
else if ( partitions[ t ] .type == GParted::TYPE_EXTENDED )
|
|
|
|
set_used_sectors( partitions[ t ] .logicals ) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-12-08 10:03:29 -07:00
|
|
|
|
2005-12-13 18:58:15 -07:00
|
|
|
void GParted_Core::insert_unallocated( const Glib::ustring & device_path, std::vector<Partition> & partitions, Sector start, Sector end, bool inside_extended )
|
2004-12-12 13:36:00 -07:00
|
|
|
{
|
2004-12-13 04:17:40 -07:00
|
|
|
partition_temp .Reset( ) ;
|
2005-12-07 15:44:40 -07:00
|
|
|
partition_temp .Set_Unallocated( device_path, 0, 0, inside_extended ) ;
|
2004-12-12 13:36:00 -07:00
|
|
|
|
|
|
|
//if there are no partitions at all..
|
|
|
|
if ( partitions .empty( ) )
|
|
|
|
{
|
2004-12-13 04:17:40 -07:00
|
|
|
partition_temp .sector_start = start ;
|
|
|
|
partition_temp .sector_end = end ;
|
2004-12-12 13:36:00 -07:00
|
|
|
|
2004-12-13 04:17:40 -07:00
|
|
|
partitions .push_back( partition_temp );
|
2004-12-12 13:36:00 -07:00
|
|
|
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|
|
|
|
//start <---> first partition start
|
2006-01-21 17:07:27 -07:00
|
|
|
if ( (partitions .front( ) .sector_start - start) >= MEBIBYTE )
|
2004-12-12 13:36:00 -07:00
|
|
|
{
|
2004-12-13 04:17:40 -07:00
|
|
|
partition_temp .sector_start = start ;
|
|
|
|
partition_temp .sector_end = partitions .front( ) .sector_start -1 ;
|
2004-12-12 13:36:00 -07:00
|
|
|
|
2004-12-13 04:17:40 -07:00
|
|
|
partitions .insert( partitions .begin( ), partition_temp );
|
2004-12-12 13:36:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//look for gaps in between
|
|
|
|
for ( unsigned int t =0 ; t < partitions .size( ) -1 ; t++ )
|
2006-01-21 17:07:27 -07:00
|
|
|
if ( ( partitions[ t +1 ] .sector_start - partitions[ t ] .sector_end ) >= MEBIBYTE )
|
2004-12-12 13:36:00 -07:00
|
|
|
{
|
2004-12-13 04:17:40 -07:00
|
|
|
partition_temp .sector_start = partitions[ t ] .sector_end +1 ;
|
|
|
|
partition_temp .sector_end = partitions[ t +1 ] .sector_start -1 ;
|
2004-12-12 13:36:00 -07:00
|
|
|
|
2004-12-13 04:17:40 -07:00
|
|
|
partitions .insert( partitions .begin( ) + ++t, partition_temp );
|
2004-12-12 13:36:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//last partition end <---> end
|
2006-01-21 17:07:27 -07:00
|
|
|
if ( (end - partitions .back( ) .sector_end ) >= MEBIBYTE )
|
2004-12-12 13:36:00 -07:00
|
|
|
{
|
2004-12-13 04:17:40 -07:00
|
|
|
partition_temp .sector_start = partitions .back( ) .sector_end +1 ;
|
|
|
|
partition_temp .sector_end = end ;
|
2004-12-12 13:36:00 -07:00
|
|
|
|
2004-12-13 04:17:40 -07:00
|
|
|
partitions .push_back( partition_temp );
|
2004-12-12 13:36:00 -07:00
|
|
|
}
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool GParted_Core::apply_operation_to_disk( Operation & operation )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
switch ( operation .operationtype )
|
|
|
|
{
|
|
|
|
case DELETE:
|
2006-01-19 12:15:15 -07:00
|
|
|
return Delete( operation .partition_original, operation .operation_details .sub_details ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
case CREATE:
|
2006-01-19 12:15:15 -07:00
|
|
|
return create( operation .device,
|
|
|
|
operation .partition_new,
|
|
|
|
operation .operation_details .sub_details ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
case RESIZE_MOVE:
|
2006-01-19 12:15:15 -07:00
|
|
|
return resize( operation .device,
|
|
|
|
operation .partition_original,
|
|
|
|
operation .partition_new,
|
|
|
|
operation .operation_details .sub_details ) ;
|
2006-01-02 08:18:29 -07:00
|
|
|
case FORMAT:
|
2006-01-19 12:15:15 -07:00
|
|
|
return format( operation .partition_new, operation .operation_details .sub_details ) ;
|
|
|
|
case COPY:
|
|
|
|
return copy( operation .copied_partition_path,
|
|
|
|
operation .partition_new,
|
|
|
|
operation .operation_details .sub_details ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
2006-01-19 12:15:15 -07:00
|
|
|
|
|
|
|
return false ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool GParted_Core::create( const Device & device,
|
|
|
|
Partition & new_partition,
|
|
|
|
std::vector<OperationDetails> & operation_details )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
if ( new_partition .type == GParted::TYPE_EXTENDED )
|
|
|
|
{
|
|
|
|
return create_empty_partition( new_partition, operation_details ) ;
|
|
|
|
}
|
|
|
|
else if ( create_empty_partition(
|
|
|
|
new_partition,
|
|
|
|
operation_details,
|
|
|
|
( new_partition .Get_Length_MB() - device .cylsize ) < get_fs( new_partition .filesystem ) .MIN ) > 0 )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
set_proper_filesystem( new_partition .filesystem ) ;
|
|
|
|
|
2005-11-24 08:59:31 -07:00
|
|
|
//most likely this means the user created an unformatted partition,
|
|
|
|
//however in theory, it could also screw some errorhandling.
|
2004-11-28 07:30:15 -07:00
|
|
|
if ( ! p_filesystem )
|
|
|
|
return true ;
|
2006-01-19 12:15:15 -07:00
|
|
|
|
|
|
|
return set_partition_type( new_partition, operation_details ) &&
|
|
|
|
p_filesystem ->Create( new_partition, operation_details ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return false ;
|
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool GParted_Core::format( const Partition & partition, std::vector<OperationDetails> & operation_details )
|
2004-11-25 12:21:42 -07:00
|
|
|
{
|
|
|
|
//remove all filesystem signatures...
|
2005-12-07 15:44:40 -07:00
|
|
|
erase_filesystem_signatures( partition ) ;
|
|
|
|
|
2004-11-25 12:21:42 -07:00
|
|
|
set_proper_filesystem( partition .filesystem ) ;
|
2005-11-29 07:50:20 -07:00
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
return set_partition_type( partition, operation_details ) &&
|
|
|
|
p_filesystem ->Create( partition, operation_details ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool GParted_Core::Delete( const Partition & partition, std::vector<OperationDetails> & operation_details )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
bool return_value = false ;
|
|
|
|
|
2005-12-07 15:44:40 -07:00
|
|
|
if ( open_device_and_disk( partition .device_path ) )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2005-12-07 04:21:27 -07:00
|
|
|
if ( partition .type == GParted::TYPE_EXTENDED )
|
2005-11-26 17:57:11 -07:00
|
|
|
lp_partition = ped_disk_extended_partition( lp_disk ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
else
|
2005-11-26 17:57:11 -07:00
|
|
|
lp_partition = ped_disk_get_partition_by_sector( lp_disk, (partition .sector_end + partition .sector_start) / 2 ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2006-01-07 14:23:09 -07:00
|
|
|
return_value = ( ped_disk_delete_partition( lp_disk, lp_partition ) && commit() ) ;
|
|
|
|
sleep( 1 ) ; //give the kernel some time to reread the partitiontable
|
2005-12-07 15:44:40 -07:00
|
|
|
|
2006-01-07 14:23:09 -07:00
|
|
|
close_device_and_disk() ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return return_value ;
|
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool GParted_Core::resize( const Device & device,
|
|
|
|
const Partition & partition_old,
|
|
|
|
const Partition & partition_new,
|
|
|
|
std::vector<OperationDetails> & operation_details )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2006-01-22 14:16:36 -07:00
|
|
|
//extended partition
|
2005-12-07 04:21:27 -07:00
|
|
|
if ( partition_old .type == GParted::TYPE_EXTENDED )
|
2006-01-19 12:15:15 -07:00
|
|
|
return resize_container_partition( partition_old, partition_new, false, operation_details ) ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2006-01-22 14:16:36 -07:00
|
|
|
//resize using libparted..
|
2006-02-15 09:05:26 -07:00
|
|
|
//FIXME: let's add some checks before and after calling resize_normal_using_libparted()
|
2005-11-26 17:57:11 -07:00
|
|
|
if ( get_fs( partition_old .filesystem ) .grow == GParted::FS::LIBPARTED )
|
2006-01-19 12:15:15 -07:00
|
|
|
return resize_normal_using_libparted( partition_old, partition_new, operation_details ) ;
|
2006-01-22 14:16:36 -07:00
|
|
|
|
|
|
|
//use custom resize tools..
|
|
|
|
bool succes = false ;
|
|
|
|
set_proper_filesystem( partition_new .filesystem ) ;
|
|
|
|
|
|
|
|
if ( p_filesystem && p_filesystem ->Check_Repair( partition_new, operation_details ) )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2006-01-22 14:16:36 -07:00
|
|
|
succes = true ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2006-01-22 14:16:36 -07:00
|
|
|
if ( partition_new .get_length() < partition_old .get_length() )
|
|
|
|
{
|
|
|
|
p_filesystem ->cylinder_size = MEBIBYTE * device .cylsize ;
|
|
|
|
succes = p_filesystem ->Resize( partition_new, operation_details ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( succes )
|
|
|
|
succes = resize_container_partition(
|
|
|
|
partition_old,
|
|
|
|
partition_new,
|
|
|
|
! get_fs( partition_new .filesystem ) .move,
|
|
|
|
operation_details ) ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2006-01-22 14:16:36 -07:00
|
|
|
//these 3 are always executed, however, if 1 of them fails the whole operation fails
|
|
|
|
if ( ! p_filesystem ->Check_Repair( partition_new, operation_details ) )
|
|
|
|
succes = false ;
|
|
|
|
|
|
|
|
//expand filesystem to fit exactly in partition
|
|
|
|
if ( ! p_filesystem ->Resize( partition_new, operation_details, true ) )
|
|
|
|
succes = false ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2006-01-22 14:16:36 -07:00
|
|
|
if ( ! p_filesystem ->Check_Repair( partition_new, operation_details ) )
|
|
|
|
succes = false ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
2006-01-22 14:16:36 -07:00
|
|
|
|
|
|
|
return succes ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool GParted_Core::copy( const Glib::ustring & src_part_path,
|
|
|
|
Partition & partition_dest,
|
|
|
|
std::vector<OperationDetails> & operation_details )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2004-12-20 12:09:48 -07:00
|
|
|
set_proper_filesystem( partition_dest .filesystem ) ;
|
|
|
|
|
|
|
|
Partition src_partition ;
|
|
|
|
src_partition .partition = src_part_path ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2006-01-22 14:16:36 -07:00
|
|
|
return ( p_filesystem &&
|
|
|
|
p_filesystem ->Check_Repair( src_partition, operation_details ) &&
|
|
|
|
create_empty_partition( partition_dest, operation_details, true ) > 0 &&
|
|
|
|
set_partition_type( partition_dest, operation_details ) &&
|
|
|
|
p_filesystem ->Copy( src_part_path, partition_dest .partition, operation_details ) &&
|
|
|
|
p_filesystem ->Check_Repair( partition_dest, operation_details ) ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2004-11-27 16:31:19 -07:00
|
|
|
bool GParted_Core::Set_Disklabel( const Glib::ustring & device_path, const Glib::ustring & disklabel )
|
|
|
|
{
|
|
|
|
bool return_value = false ;
|
|
|
|
|
2005-11-26 17:57:11 -07:00
|
|
|
if ( open_device_and_disk( device_path, false ) )
|
2004-11-27 16:31:19 -07:00
|
|
|
{
|
|
|
|
PedDiskType *type = NULL ;
|
|
|
|
type = ped_disk_type_get( disklabel .c_str( ) ) ;
|
|
|
|
|
|
|
|
if ( type )
|
|
|
|
{
|
2005-11-26 17:57:11 -07:00
|
|
|
lp_disk = ped_disk_new_fresh ( lp_device, type);
|
2004-11-27 16:31:19 -07:00
|
|
|
|
2005-11-26 17:57:11 -07:00
|
|
|
return_value = commit( ) ;
|
2004-11-27 16:31:19 -07:00
|
|
|
}
|
|
|
|
|
2005-11-26 17:57:11 -07:00
|
|
|
close_device_and_disk( ) ;
|
2004-11-27 16:31:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return return_value ;
|
|
|
|
}
|
|
|
|
|
2004-12-25 14:40:18 -07:00
|
|
|
const std::vector<FS> & GParted_Core::get_filesystems( ) const
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
return FILESYSTEMS ;
|
|
|
|
}
|
|
|
|
|
2005-12-07 04:21:27 -07:00
|
|
|
const FS & GParted_Core::get_fs( GParted::FILESYSTEM filesystem ) const
|
2004-12-25 14:40:18 -07:00
|
|
|
{
|
|
|
|
for ( unsigned int t = 0 ; t < FILESYSTEMS .size( ) ; t++ )
|
|
|
|
if ( FILESYSTEMS[ t ] .filesystem == filesystem )
|
|
|
|
return FILESYSTEMS[ t ] ;
|
|
|
|
|
|
|
|
return FILESYSTEMS .back( ) ;
|
|
|
|
}
|
|
|
|
|
2005-11-26 17:57:11 -07:00
|
|
|
std::vector<Glib::ustring> GParted_Core::get_disklabeltypes( )
|
2005-09-13 11:09:20 -06:00
|
|
|
{
|
|
|
|
std::vector<Glib::ustring> disklabeltypes ;
|
|
|
|
|
|
|
|
//msdos should be first in the list
|
|
|
|
disklabeltypes .push_back( "msdos" ) ;
|
|
|
|
|
|
|
|
PedDiskType *disk_type ;
|
|
|
|
for ( disk_type = ped_disk_type_get_next( NULL ) ; disk_type ; disk_type = ped_disk_type_get_next( disk_type ) )
|
|
|
|
if ( static_cast<Glib::ustring>( disk_type->name ) != "msdos" )
|
|
|
|
disklabeltypes .push_back( disk_type->name ) ;
|
|
|
|
|
|
|
|
return disklabeltypes ;
|
|
|
|
}
|
|
|
|
|
2005-11-26 17:57:11 -07:00
|
|
|
void GParted_Core::LP_Set_Used_Sectors( Partition & partition )
|
|
|
|
{
|
|
|
|
PedFileSystem *fs = NULL;
|
|
|
|
PedConstraint *constraint = NULL;
|
2005-12-28 17:10:05 -07:00
|
|
|
|
2005-11-26 17:57:11 -07:00
|
|
|
if ( lp_disk )
|
2004-11-21 14:49:38 -07:00
|
|
|
{
|
2005-12-28 17:10:05 -07:00
|
|
|
lp_partition = ped_disk_get_partition_by_sector( lp_disk, (partition .sector_end + partition .sector_start) / 2 ) ;
|
|
|
|
|
2005-11-26 17:57:11 -07:00
|
|
|
if ( lp_partition )
|
|
|
|
{
|
|
|
|
fs = ped_file_system_open( & lp_partition ->geom );
|
|
|
|
|
|
|
|
if ( fs )
|
|
|
|
{
|
2005-12-07 04:21:27 -07:00
|
|
|
constraint = ped_file_system_get_resize_constraint( fs ) ;
|
2005-11-26 17:57:11 -07:00
|
|
|
if ( constraint )
|
|
|
|
{
|
|
|
|
partition .Set_Unused( (partition .sector_end - partition .sector_start) - constraint ->min_size ) ;
|
|
|
|
|
2005-12-07 04:21:27 -07:00
|
|
|
ped_constraint_destroy( constraint );
|
2005-11-26 17:57:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
ped_file_system_close( fs ) ;
|
|
|
|
}
|
|
|
|
}
|
2004-11-21 14:49:38 -07:00
|
|
|
}
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
int GParted_Core::create_empty_partition( Partition & new_partition,
|
|
|
|
std::vector<OperationDetails> & operation_details,
|
|
|
|
bool copy )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2006-01-19 12:15:15 -07:00
|
|
|
operation_details .push_back( OperationDetails( _("create empty partition") ) ) ;
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
new_partition .partition_number = 0 ;
|
2004-11-19 04:55:38 -07:00
|
|
|
|
2005-12-07 15:44:40 -07:00
|
|
|
if ( open_device_and_disk( new_partition .device_path ) )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
PedPartitionType type;
|
2006-02-17 14:18:07 -07:00
|
|
|
lp_partition = NULL ;
|
2004-11-17 06:00:25 -07:00
|
|
|
PedConstraint *constraint = NULL ;
|
|
|
|
|
|
|
|
//create new partition
|
|
|
|
switch ( new_partition .type )
|
|
|
|
{
|
2005-12-07 04:21:27 -07:00
|
|
|
case GParted::TYPE_PRIMARY:
|
|
|
|
type = PED_PARTITION_NORMAL ;
|
|
|
|
break ;
|
|
|
|
case GParted::TYPE_LOGICAL:
|
|
|
|
type = PED_PARTITION_LOGICAL ;
|
|
|
|
break ;
|
|
|
|
case GParted::TYPE_EXTENDED:
|
|
|
|
type = PED_PARTITION_EXTENDED ;
|
|
|
|
break ;
|
|
|
|
|
|
|
|
default :
|
|
|
|
type = PED_PARTITION_FREESPACE;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-02-17 14:18:07 -07:00
|
|
|
lp_partition = ped_partition_new( lp_disk, type, NULL, new_partition .sector_start, new_partition .sector_end ) ;
|
|
|
|
if ( lp_partition )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2006-01-07 08:04:42 -07:00
|
|
|
if ( new_partition .strict )
|
|
|
|
{
|
|
|
|
PedGeometry *geom = ped_geometry_new( lp_device, new_partition .sector_start, new_partition .get_length() ) ;
|
|
|
|
|
|
|
|
if ( geom )
|
|
|
|
constraint = ped_constraint_exact( geom ) ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
constraint = ped_constraint_any( lp_device );
|
2004-11-19 04:55:38 -07:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
if ( constraint )
|
|
|
|
{
|
2004-11-19 04:55:38 -07:00
|
|
|
if ( copy )
|
2006-01-21 17:07:27 -07:00
|
|
|
constraint ->min_size = new_partition .get_length() ;
|
2004-11-19 04:55:38 -07:00
|
|
|
|
2006-02-17 14:18:07 -07:00
|
|
|
if ( ped_disk_add_partition( lp_disk, lp_partition, constraint ) && commit() )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2006-02-17 14:18:07 -07:00
|
|
|
new_partition .partition = ped_partition_get_path( lp_partition ) ;
|
|
|
|
new_partition .partition_number = lp_partition ->num ;
|
|
|
|
|
|
|
|
Sector start = lp_partition ->geom .start ;
|
|
|
|
Sector end = lp_partition ->geom .end ;
|
|
|
|
|
|
|
|
operation_details .back() .sub_details .push_back(
|
|
|
|
OperationDetails(
|
|
|
|
"<i>" +
|
|
|
|
String::ucompose( _("path: %1"), new_partition .partition ) + "\n" +
|
|
|
|
String::ucompose( _("start: %1"), start ) + "\n" +
|
|
|
|
String::ucompose( _("end: %1"), end ) + "\n" +
|
|
|
|
String::ucompose( _("size: %1"), Utils::format_size( end - start + 1 ) ) +
|
|
|
|
"</i>",
|
|
|
|
OperationDetails::NONE ) ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2005-11-25 05:59:47 -07:00
|
|
|
ped_constraint_destroy( constraint );
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
2004-11-19 04:55:38 -07:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
2004-11-19 04:55:38 -07:00
|
|
|
|
2006-01-21 17:07:27 -07:00
|
|
|
close_device_and_disk() ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
2005-12-07 15:44:40 -07:00
|
|
|
|
2005-12-15 08:42:09 -07:00
|
|
|
if ( new_partition .type == GParted::TYPE_EXTENDED ||
|
|
|
|
(
|
|
|
|
new_partition .partition_number > 0 &&
|
|
|
|
wait_for_node( new_partition .partition ) &&
|
|
|
|
erase_filesystem_signatures( new_partition )
|
|
|
|
)
|
|
|
|
)
|
2006-01-19 12:15:15 -07:00
|
|
|
{
|
|
|
|
operation_details .back() .status = new_partition .partition_number > 0 ?
|
|
|
|
OperationDetails::SUCCES : OperationDetails::ERROR ;
|
|
|
|
|
2005-12-15 08:42:09 -07:00
|
|
|
return new_partition .partition_number ;
|
2006-01-19 12:15:15 -07:00
|
|
|
}
|
2005-12-15 08:42:09 -07:00
|
|
|
else
|
2006-01-19 12:15:15 -07:00
|
|
|
{
|
|
|
|
operation_details .back() .status = OperationDetails::ERROR ;
|
|
|
|
return 0 ;
|
|
|
|
}
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool GParted_Core::resize_container_partition( const Partition & partition_old,
|
|
|
|
const Partition & partition_new,
|
|
|
|
bool fixed_start,
|
|
|
|
std::vector<OperationDetails> & operation_details )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2006-01-19 12:15:15 -07:00
|
|
|
operation_details .push_back( OperationDetails( _("resize partition") ) ) ;
|
2006-02-17 14:18:07 -07:00
|
|
|
|
|
|
|
operation_details .back() .sub_details .push_back(
|
|
|
|
OperationDetails(
|
|
|
|
"<i>" +
|
|
|
|
String::ucompose( _("old start: %1"), partition_old .sector_start ) + "\n" +
|
|
|
|
String::ucompose( _("old end: %1"), partition_old .sector_end ) + "\n" +
|
|
|
|
String::ucompose( _("old size: %1"), Utils::format_size( partition_old .get_length() ) ) +
|
|
|
|
"</i>",
|
|
|
|
OperationDetails::NONE ) ) ;
|
2006-01-19 12:15:15 -07:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
bool return_value = false ;
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
PedConstraint *constraint = NULL ;
|
2005-11-26 17:57:11 -07:00
|
|
|
lp_partition = NULL ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2005-12-07 15:44:40 -07:00
|
|
|
if ( open_device_and_disk( partition_old .device_path ) )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2005-12-07 04:21:27 -07:00
|
|
|
if ( partition_old .type == GParted::TYPE_EXTENDED )
|
2005-11-26 17:57:11 -07:00
|
|
|
lp_partition = ped_disk_extended_partition( lp_disk ) ;
|
2004-11-21 14:49:38 -07:00
|
|
|
else
|
2006-02-17 14:18:07 -07:00
|
|
|
lp_partition = ped_disk_get_partition_by_sector( lp_disk,
|
|
|
|
(partition_old .sector_end + partition_old .sector_start) / 2 ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2005-11-26 17:57:11 -07:00
|
|
|
if ( lp_partition )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2005-11-26 17:57:11 -07:00
|
|
|
constraint = ped_constraint_any( lp_device );
|
2004-11-24 03:32:56 -07:00
|
|
|
|
2006-02-17 14:18:07 -07:00
|
|
|
if ( fixed_start && constraint )
|
|
|
|
{
|
|
|
|
//create a constraint which keeps de startpoint intact and rounds the end to a cylinderboundary
|
|
|
|
ped_disk_set_partition_geom( lp_disk,
|
|
|
|
lp_partition,
|
|
|
|
constraint,
|
|
|
|
partition_new .sector_start,
|
|
|
|
partition_new .sector_end ) ;
|
2005-11-29 07:50:20 -07:00
|
|
|
ped_constraint_destroy( constraint );
|
2004-11-24 03:32:56 -07:00
|
|
|
constraint = NULL ;
|
|
|
|
|
2005-11-29 07:50:20 -07:00
|
|
|
ped_geometry_set_start( & lp_partition ->geom, partition_new .sector_start ) ;
|
|
|
|
constraint = ped_constraint_exact( & lp_partition ->geom ) ;
|
2004-11-24 03:32:56 -07:00
|
|
|
}
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
if ( constraint )
|
|
|
|
{
|
2006-02-17 14:18:07 -07:00
|
|
|
if ( ped_disk_set_partition_geom( lp_disk,
|
|
|
|
lp_partition,
|
|
|
|
constraint,
|
|
|
|
partition_new .sector_start,
|
|
|
|
partition_new .sector_end ) )
|
2006-01-21 17:07:27 -07:00
|
|
|
return_value = commit() ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2005-11-29 07:50:20 -07:00
|
|
|
ped_constraint_destroy( constraint );
|
2004-11-21 14:49:38 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-17 14:18:07 -07:00
|
|
|
close_device_and_disk() ;
|
2004-11-21 14:49:38 -07:00
|
|
|
}
|
2006-02-17 14:18:07 -07:00
|
|
|
|
|
|
|
if ( return_value )
|
|
|
|
{
|
|
|
|
//use start/end vars since lp_partition ->geom loses his values after a functioncall :/
|
|
|
|
//this is actually quite weird, but i don't have time to investigate it more thorough.
|
|
|
|
Sector start = lp_partition ->geom .start ;
|
|
|
|
Sector end = lp_partition ->geom .end ;
|
|
|
|
|
|
|
|
operation_details .back() .sub_details .push_back(
|
|
|
|
OperationDetails(
|
|
|
|
"<i>" +
|
|
|
|
String::ucompose( _("new start: %1"), start ) + "\n" +
|
|
|
|
String::ucompose( _("new end: %1"), end ) + "\n" +
|
|
|
|
String::ucompose( _("new size: %1"), Utils::format_size( end - start + 1 ) ) +
|
|
|
|
"</i>",
|
|
|
|
OperationDetails::NONE ) ) ;
|
|
|
|
}
|
|
|
|
|
2005-12-12 02:36:42 -07:00
|
|
|
if ( partition_old .type == GParted::TYPE_EXTENDED )
|
2006-01-19 12:15:15 -07:00
|
|
|
{
|
|
|
|
operation_details .back() .status = return_value ? OperationDetails::SUCCES : OperationDetails::ERROR ;
|
2005-12-12 02:36:42 -07:00
|
|
|
return return_value ;
|
2006-01-19 12:15:15 -07:00
|
|
|
}
|
2005-12-12 02:36:42 -07:00
|
|
|
else
|
2006-01-19 12:15:15 -07:00
|
|
|
{
|
|
|
|
return_value &= wait_for_node( partition_new .partition ) ;
|
|
|
|
operation_details .back() .status = return_value ? OperationDetails::SUCCES : OperationDetails::ERROR ;
|
|
|
|
|
|
|
|
return return_value ;
|
|
|
|
}
|
2004-11-21 14:49:38 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool GParted_Core::resize_normal_using_libparted( const Partition & partition_old,
|
|
|
|
const Partition & partition_new,
|
|
|
|
std::vector<OperationDetails> & operation_details )
|
2004-11-21 14:49:38 -07:00
|
|
|
{
|
2006-01-19 12:15:15 -07:00
|
|
|
operation_details .push_back( OperationDetails( _("resize partition and filesystem using libparted") ) ) ;
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
bool return_value = false ;
|
|
|
|
|
|
|
|
PedFileSystem *fs = NULL ;
|
|
|
|
PedConstraint *constraint = NULL ;
|
2005-11-26 17:57:11 -07:00
|
|
|
lp_partition = NULL ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2005-12-07 15:44:40 -07:00
|
|
|
if ( open_device_and_disk( partition_old .device_path ) )
|
2004-11-21 14:49:38 -07:00
|
|
|
{
|
2005-11-26 17:57:11 -07:00
|
|
|
lp_partition = ped_disk_get_partition_by_sector( lp_disk, (partition_old .sector_end + partition_old .sector_start) / 2 ) ;
|
|
|
|
if ( lp_partition )
|
2004-11-21 14:49:38 -07:00
|
|
|
{
|
2006-02-17 14:18:07 -07:00
|
|
|
fs = ped_file_system_open( & lp_partition ->geom );
|
2004-11-21 14:49:38 -07:00
|
|
|
if ( fs )
|
|
|
|
{
|
2006-02-17 14:18:07 -07:00
|
|
|
constraint = ped_file_system_get_resize_constraint( fs );
|
2004-11-21 14:49:38 -07:00
|
|
|
if ( constraint )
|
|
|
|
{
|
2006-02-17 14:18:07 -07:00
|
|
|
if ( ped_disk_set_partition_geom( lp_disk,
|
|
|
|
lp_partition,
|
|
|
|
constraint,
|
|
|
|
partition_new .sector_start,
|
|
|
|
partition_new .sector_end )
|
|
|
|
&&
|
|
|
|
ped_file_system_resize( fs, & lp_partition ->geom, NULL )
|
2004-11-21 14:49:38 -07:00
|
|
|
)
|
2006-02-17 14:18:07 -07:00
|
|
|
return_value = commit() ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2006-02-17 14:18:07 -07:00
|
|
|
ped_constraint_destroy( constraint );
|
2004-11-21 14:49:38 -07:00
|
|
|
}
|
|
|
|
|
2006-02-17 14:18:07 -07:00
|
|
|
ped_file_system_close( fs );
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-17 14:18:07 -07:00
|
|
|
close_device_and_disk() ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
operation_details .back() .status = return_value ? OperationDetails::SUCCES : OperationDetails::ERROR ;
|
2004-11-17 06:00:25 -07:00
|
|
|
return return_value ;
|
|
|
|
}
|
|
|
|
|
2006-02-17 14:18:07 -07:00
|
|
|
Glib::ustring GParted_Core::Get_Flags()
|
|
|
|
{//FIXME: this is ugly, i guess we'd better use a vector in partition to store the flags..
|
2004-11-17 06:00:25 -07:00
|
|
|
temp = "";
|
|
|
|
|
|
|
|
for ( unsigned short t = 0; t < flags .size( ) ; t++ )
|
2005-11-26 17:57:11 -07:00
|
|
|
if ( ped_partition_get_flag ( lp_partition, flags[ t ] ) )
|
|
|
|
temp += static_cast<Glib::ustring>( ped_partition_flag_get_name( flags[ t ] ) ) + " ";
|
2004-11-17 06:00:25 -07:00
|
|
|
|
|
|
|
return temp ;
|
|
|
|
}
|
|
|
|
|
2005-12-07 04:21:27 -07:00
|
|
|
void GParted_Core::set_proper_filesystem( const FILESYSTEM & filesystem )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2005-12-24 16:55:54 -07:00
|
|
|
if ( p_filesystem )
|
2004-11-17 06:00:25 -07:00
|
|
|
delete p_filesystem ;
|
|
|
|
|
2005-12-07 04:21:27 -07:00
|
|
|
switch( filesystem )
|
|
|
|
{
|
|
|
|
case FS_EXT2 : p_filesystem = new ext2() ; break ;
|
|
|
|
case FS_EXT3 : p_filesystem = new ext3() ; break ;
|
|
|
|
case FS_LINUX_SWAP : p_filesystem = new linux_swap() ; break ;
|
|
|
|
case FS_FAT16 : p_filesystem = new fat16() ; break ;
|
|
|
|
case FS_FAT32 : p_filesystem = new fat32() ; break ;
|
|
|
|
case FS_NTFS : p_filesystem = new ntfs() ; break ;
|
|
|
|
case FS_REISERFS : p_filesystem = new reiserfs() ; break ;
|
|
|
|
case FS_REISER4 : p_filesystem = new reiser4() ; break ;
|
|
|
|
case FS_XFS : p_filesystem = new xfs() ; break ;
|
|
|
|
case FS_JFS : p_filesystem = new jfs() ; break ;
|
|
|
|
case FS_HFS : p_filesystem = new hfs() ; break ;
|
|
|
|
case FS_HFSPLUS : p_filesystem = new hfsplus() ; break ;
|
|
|
|
|
|
|
|
default : p_filesystem = NULL ;
|
|
|
|
}
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool GParted_Core::set_partition_type( const Partition & partition,
|
|
|
|
std::vector<OperationDetails> & operation_details )
|
2005-11-24 08:59:31 -07:00
|
|
|
{
|
2006-01-19 12:15:15 -07:00
|
|
|
operation_details .push_back( OperationDetails( _("set partitiontype") ) ) ;
|
|
|
|
|
2005-11-29 07:50:20 -07:00
|
|
|
bool return_value = false ;
|
|
|
|
|
2005-12-07 15:44:40 -07:00
|
|
|
if ( open_device_and_disk( partition .device_path ) )
|
2005-11-24 08:59:31 -07:00
|
|
|
{
|
2005-12-13 14:30:13 -07:00
|
|
|
PedFileSystemType * fs_type = ped_file_system_type_get( Utils::Get_Filesystem_String( partition .filesystem ) .c_str() ) ;
|
2005-11-24 08:59:31 -07:00
|
|
|
|
|
|
|
//default is Linux (83)
|
|
|
|
if ( ! fs_type )
|
|
|
|
fs_type = ped_file_system_type_get( "ext2" ) ;
|
|
|
|
|
|
|
|
if ( fs_type )
|
|
|
|
{
|
2005-11-26 17:57:11 -07:00
|
|
|
lp_partition = ped_disk_get_partition_by_sector( lp_disk, (partition .sector_end + partition .sector_start) / 2 ) ;
|
2005-11-24 08:59:31 -07:00
|
|
|
|
2006-02-17 14:18:07 -07:00
|
|
|
if ( lp_partition && ped_partition_set_system( lp_partition, fs_type ) && commit() )
|
2005-11-29 07:50:20 -07:00
|
|
|
return_value = wait_for_node( partition .partition ) ;
|
2005-11-24 08:59:31 -07:00
|
|
|
}
|
|
|
|
|
2006-02-17 14:18:07 -07:00
|
|
|
close_device_and_disk() ;
|
2005-11-24 08:59:31 -07:00
|
|
|
}
|
2005-11-29 07:50:20 -07:00
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
operation_details .back() .status = return_value ? OperationDetails::SUCCES : OperationDetails::ERROR ;
|
2005-11-29 07:50:20 -07:00
|
|
|
return return_value ;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GParted_Core::wait_for_node( const Glib::ustring & node )
|
|
|
|
{
|
|
|
|
//we'll loop for 10 seconds or till 'node' appeares...
|
|
|
|
for( short t = 0 ; t < 50 ; t++ )
|
|
|
|
{
|
2005-12-29 07:34:20 -07:00
|
|
|
if ( Glib::file_test( node, Glib::FILE_TEST_EXISTS ) )
|
2005-11-29 07:50:20 -07:00
|
|
|
{
|
2005-12-29 07:34:20 -07:00
|
|
|
sleep( 1 ) ; //apperantly the node isn't available immediatly after file_test returns succesfully :/
|
2005-11-29 07:50:20 -07:00
|
|
|
return true ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
usleep( 200000 ) ; //200 milliseconds
|
|
|
|
}
|
|
|
|
|
|
|
|
return false ;
|
2005-11-24 08:59:31 -07:00
|
|
|
}
|
|
|
|
|
2005-12-07 15:44:40 -07:00
|
|
|
bool GParted_Core::erase_filesystem_signatures( const Partition & partition )
|
|
|
|
{
|
|
|
|
bool return_value = false ;
|
|
|
|
|
|
|
|
if ( open_device_and_disk( partition .device_path ) )
|
|
|
|
{
|
|
|
|
lp_partition = ped_disk_get_partition_by_sector( lp_disk, (partition .sector_end + partition .sector_start) / 2 ) ;
|
|
|
|
|
|
|
|
if ( lp_partition && ped_file_system_clobber( & lp_partition ->geom ) )
|
|
|
|
{
|
|
|
|
//filesystems not yet supported by libparted
|
|
|
|
if ( ped_device_open( lp_device ) )
|
|
|
|
{
|
|
|
|
//reiser4 stores "ReIsEr4" at sector 128
|
|
|
|
return_value = ped_geometry_write( & lp_partition ->geom, "0000000", 128, 1 ) ;
|
|
|
|
|
|
|
|
ped_device_close( lp_device ) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-17 14:18:07 -07:00
|
|
|
close_device_and_disk() ;
|
2005-12-07 15:44:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return return_value ;
|
|
|
|
}
|
|
|
|
|
2005-11-26 17:57:11 -07:00
|
|
|
bool GParted_Core::open_device( const Glib::ustring & device_path )
|
|
|
|
{
|
2006-02-17 14:18:07 -07:00
|
|
|
lp_device = ped_device_get( device_path .c_str() );
|
2005-11-26 17:57:11 -07:00
|
|
|
|
|
|
|
return lp_device ;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GParted_Core::open_device_and_disk( const Glib::ustring & device_path, bool strict )
|
|
|
|
{
|
|
|
|
if ( open_device( device_path ) )
|
|
|
|
lp_disk = ped_disk_new( lp_device );
|
|
|
|
|
|
|
|
//if ! disk and writeable it's probably a HD without disklabel.
|
|
|
|
//We return true here and deal with them in GParted_Core::get_devices
|
|
|
|
if ( ! lp_disk && ( strict || lp_device ->read_only ) )
|
|
|
|
{
|
|
|
|
ped_device_destroy( lp_device ) ;
|
|
|
|
lp_device = NULL ;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true ;
|
|
|
|
}
|
|
|
|
|
2006-02-17 14:18:07 -07:00
|
|
|
void GParted_Core::close_device_and_disk()
|
2005-11-26 17:57:11 -07:00
|
|
|
{
|
|
|
|
if ( lp_device )
|
|
|
|
ped_device_destroy( lp_device ) ;
|
|
|
|
|
|
|
|
if ( lp_disk )
|
|
|
|
ped_disk_destroy( lp_disk ) ;
|
|
|
|
|
|
|
|
lp_device = NULL ;
|
|
|
|
lp_disk = NULL ;
|
|
|
|
}
|
|
|
|
|
2006-02-17 14:18:07 -07:00
|
|
|
bool GParted_Core::commit()
|
2005-11-26 17:57:11 -07:00
|
|
|
{
|
|
|
|
bool return_value = ped_disk_commit_to_dev( lp_disk ) ;
|
|
|
|
|
|
|
|
ped_disk_commit_to_os( lp_disk ) ;
|
|
|
|
|
|
|
|
return return_value ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
} //GParted
|