2004-11-17 06:00:25 -07:00
|
|
|
#include "../include/GParted_Core.h"
|
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
GParted_Core::GParted_Core( )
|
|
|
|
{
|
|
|
|
device = NULL ;
|
|
|
|
disk = NULL ;
|
|
|
|
c_partition = NULL ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
p_filesystem = NULL ;
|
|
|
|
textbuffer = Gtk::TextBuffer::create( ) ;
|
|
|
|
|
|
|
|
//get valid flags ...
|
|
|
|
for ( PedPartitionFlag flag = ped_partition_flag_next ( (PedPartitionFlag) 0 ) ; flag ; flag = ped_partition_flag_next ( flag ) )
|
|
|
|
flags .push_back( flag ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
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( ) ) ;
|
|
|
|
|
|
|
|
linux_swap fs_linux_swap;
|
|
|
|
FILESYSTEMS .push_back( fs_linux_swap .get_filesystem_support( ) ) ;
|
|
|
|
|
|
|
|
reiserfs fs_reiserfs;
|
|
|
|
FILESYSTEMS .push_back( fs_reiserfs .get_filesystem_support( ) ) ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2004-11-23 09:20:59 -07:00
|
|
|
ntfs fs_ntfs;
|
|
|
|
FILESYSTEMS .push_back( fs_ntfs .get_filesystem_support( ) ) ;
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
//unknown filesystem (default when no match is found)
|
|
|
|
FS fs ; fs .filesystem = "unknown" ;
|
|
|
|
FILESYSTEMS .push_back( fs ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void GParted_Core::get_devices( std::vector<Device> & devices, bool deep_scan )
|
|
|
|
{
|
|
|
|
devices .clear( ) ;
|
2004-11-27 16:31:19 -07:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
//try to find all available devices and put these in a list
|
|
|
|
ped_device_probe_all( );
|
|
|
|
|
|
|
|
Device temp_device ;
|
|
|
|
std::vector <Glib::ustring> device_paths ;
|
|
|
|
|
|
|
|
device = ped_device_get_next ( NULL );
|
|
|
|
|
|
|
|
//in certain cases (e.g. when there's a cd in the cdrom-drive) ped_device_probe_all will find a 'ghost' device that has no name or contains
|
|
|
|
//random garbage. Those 2 checks try to prevent such a ghostdevice from being initialized.. (tested over a 1000 times with and without cd)
|
|
|
|
while ( device && strlen( device ->path ) > 6 && ( (Glib::ustring) device ->path ). is_ascii( ) )
|
|
|
|
{
|
|
|
|
if ( open_device( device ->path, device ) )
|
|
|
|
device_paths .push_back( get_sym_path( device ->path ) ) ;
|
2004-11-27 16:31:19 -07:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
device = ped_device_get_next ( device ) ;
|
|
|
|
}
|
|
|
|
close_device_and_disk( device, disk ) ;
|
|
|
|
|
|
|
|
//and sort the devices on name.. (this prevents some very weird errors ;) )
|
|
|
|
sort( device_paths .begin( ), device_paths .end( ) ) ;
|
|
|
|
|
|
|
|
|
|
|
|
for ( unsigned int t = 0 ; t < device_paths .size( ) ; t++ )
|
|
|
|
{
|
2004-11-27 16:31:19 -07:00
|
|
|
if ( open_device_and_disk( device_paths[ t ], device, disk, false ) )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2004-11-19 04:55:38 -07:00
|
|
|
temp_device .Reset( ) ;
|
|
|
|
|
2004-11-27 16:31:19 -07:00
|
|
|
//device info..
|
2004-11-17 06:00:25 -07:00
|
|
|
temp_device .path = device_paths[ t ] ;
|
|
|
|
temp_device .realpath = device ->path ;
|
|
|
|
temp_device .model = device ->model ;
|
|
|
|
temp_device .heads = device ->bios_geom .heads ;
|
|
|
|
temp_device .sectors = device ->bios_geom .sectors ;
|
|
|
|
temp_device .cylinders = device ->bios_geom .cylinders ;
|
|
|
|
temp_device .length = temp_device .heads * temp_device .sectors * temp_device .cylinders ;
|
2004-11-27 16:31:19 -07:00
|
|
|
|
|
|
|
//normal harddisk
|
|
|
|
if ( disk )
|
|
|
|
{
|
|
|
|
temp_device .disktype = disk ->type ->name ;
|
|
|
|
temp_device .max_prims = ped_disk_get_max_primary_partition_count( disk ) ;
|
|
|
|
|
|
|
|
set_device_partitions( temp_device, deep_scan ) ;
|
|
|
|
|
|
|
|
}
|
|
|
|
//harddisk without disklabel
|
|
|
|
else
|
|
|
|
{
|
|
|
|
temp_device .disktype = _("unrecognised") ;
|
|
|
|
temp_device .max_prims = -1 ;
|
|
|
|
|
|
|
|
Partition partition_temp ;
|
|
|
|
partition_temp .Set_Unallocated( 0, temp_device .length, false );
|
|
|
|
temp_device .device_partitions .push_back( partition_temp );
|
|
|
|
}
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
devices .push_back( temp_device ) ;
|
|
|
|
|
|
|
|
close_device_and_disk( device, disk ) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-19 04:55:38 -07:00
|
|
|
void GParted_Core::set_device_partitions( Device & device, bool deep_scan )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
Partition partition_temp ;
|
2004-11-21 14:49:38 -07:00
|
|
|
Glib::ustring part_path ;
|
2004-11-17 06:00:25 -07:00
|
|
|
int EXT_INDEX = -1 ;
|
|
|
|
|
|
|
|
//clear partitions
|
2004-11-19 04:55:38 -07:00
|
|
|
device .device_partitions .clear( ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
|
|
|
c_partition = ped_disk_next_partition( disk, NULL ) ;
|
|
|
|
while ( c_partition )
|
|
|
|
{
|
|
|
|
partition_temp .Reset( ) ;
|
2004-11-19 04:55:38 -07:00
|
|
|
part_path = device .path + num_to_str( c_partition ->num ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
|
|
|
switch ( c_partition ->type )
|
|
|
|
{
|
|
|
|
case PED_PARTITION_NORMAL:
|
|
|
|
case PED_PARTITION_LOGICAL:
|
|
|
|
if ( c_partition ->fs_type )
|
|
|
|
temp = c_partition ->fs_type ->name ;
|
|
|
|
else
|
|
|
|
{
|
2004-11-24 08:05:36 -07:00
|
|
|
temp = _("unknown") ;
|
2004-11-21 14:49:38 -07:00
|
|
|
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)" ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
|
|
|
}
|
2004-11-19 04:55:38 -07:00
|
|
|
partition_temp .Set( part_path,
|
2004-11-17 06:00:25 -07:00
|
|
|
c_partition ->num,
|
|
|
|
c_partition ->type == 0 ? GParted::PRIMARY : GParted::LOGICAL ,
|
|
|
|
temp, c_partition ->geom .start,
|
|
|
|
c_partition ->geom .end,
|
|
|
|
c_partition ->type,
|
|
|
|
ped_partition_is_busy( c_partition ) );
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
if ( deep_scan && partition_temp .filesystem != "linux-swap" )
|
|
|
|
{
|
|
|
|
Set_Used_Sectors( partition_temp ) ;
|
|
|
|
|
|
|
|
//the 'Unknow' filesystem warning overrules this one
|
|
|
|
if ( partition_temp .sectors_used == -1 && partition_temp .error .empty( ) )
|
|
|
|
{
|
|
|
|
partition_temp .error = _("Unable to read the contents of this filesystem!") ;
|
|
|
|
partition_temp .error += "\n" ;
|
|
|
|
partition_temp .error += ("As a result you won't be able to resize this partition.") ;
|
|
|
|
}
|
|
|
|
}
|
2004-11-17 06:00:25 -07:00
|
|
|
|
|
|
|
partition_temp .flags = Get_Flags( c_partition ) ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2004-11-19 04:55:38 -07:00
|
|
|
|
|
|
|
if ( partition_temp .busy )
|
|
|
|
device .busy = true ;
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
break ;
|
|
|
|
|
|
|
|
case PED_PARTITION_EXTENDED:
|
|
|
|
partition_temp.Set( part_path ,
|
|
|
|
c_partition ->num ,
|
|
|
|
GParted::EXTENDED ,
|
|
|
|
"extended" ,
|
|
|
|
c_partition ->geom .start ,
|
|
|
|
c_partition ->geom .end ,
|
|
|
|
false ,
|
|
|
|
ped_partition_is_busy( c_partition ) );
|
|
|
|
|
|
|
|
partition_temp .flags = Get_Flags( c_partition ) ;
|
2004-11-19 04:55:38 -07:00
|
|
|
EXT_INDEX = device .device_partitions .size ( ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
break ;
|
|
|
|
|
|
|
|
case PED_PARTITION_FREESPACE:
|
|
|
|
case 5: //freespace inside extended (there's no enumvalue for that..)
|
2004-11-19 04:55:38 -07:00
|
|
|
partition_temp .Set_Unallocated( c_partition ->geom .start, c_partition ->geom .end, c_partition ->type == 4 ? false : true );
|
2004-11-17 06:00:25 -07:00
|
|
|
break ;
|
|
|
|
|
|
|
|
case PED_PARTITION_METADATA:
|
2004-11-19 04:55:38 -07:00
|
|
|
if ( device .device_partitions .size( ) && device .device_partitions .back( ) .type == GParted::UNALLOCATED )
|
|
|
|
device .device_partitions .back( ) .sector_end = c_partition ->geom .end ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
|
|
|
break ;
|
|
|
|
|
|
|
|
case 9: //metadata inside extended (there's no enumvalue for that..)
|
2004-11-19 04:55:38 -07:00
|
|
|
if ( device .device_partitions[ EXT_INDEX ] .logicals .size( ) &&
|
|
|
|
device .device_partitions[ EXT_INDEX ] .logicals .back( ) .type == GParted::UNALLOCATED
|
|
|
|
)
|
|
|
|
device .device_partitions[ EXT_INDEX ] .logicals .back( ) .sector_end = c_partition ->geom .end ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
|
|
|
break ;
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( partition_temp .Get_Length_MB( ) >= 1 ) // check for unallocated < 1MB, and metadatasituations (see PED_PARTITION_METADATA and 9 )
|
|
|
|
{
|
|
|
|
if ( ! partition_temp .inside_extended )
|
2004-11-19 04:55:38 -07:00
|
|
|
device .device_partitions .push_back( partition_temp );
|
2004-11-17 06:00:25 -07:00
|
|
|
else
|
2004-11-19 04:55:38 -07:00
|
|
|
device .device_partitions[ EXT_INDEX ] .logicals .push_back( partition_temp ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//next partition (if any)
|
|
|
|
c_partition = ped_disk_next_partition ( disk, c_partition ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
int GParted_Core::get_estimated_time( const Operation & operation )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
switch ( operation .operationtype )
|
|
|
|
{
|
|
|
|
case GParted::DELETE:
|
|
|
|
return 2 ; //i guess it'll never take more then 2 secs to delete a partition ;)
|
|
|
|
|
|
|
|
case GParted::CREATE:
|
|
|
|
case GParted::CONVERT:
|
|
|
|
set_proper_filesystem( operation .partition_new .filesystem ) ;
|
|
|
|
if ( p_filesystem )
|
|
|
|
return p_filesystem ->get_estimated_time( operation .partition_new .Get_Length_MB( ) ) ;
|
|
|
|
|
|
|
|
break ;
|
|
|
|
|
|
|
|
case GParted::RESIZE_MOVE:
|
|
|
|
set_proper_filesystem( operation .partition_new .filesystem ) ;
|
|
|
|
if ( p_filesystem )
|
|
|
|
return p_filesystem ->get_estimated_time( Abs( operation .partition_original .Get_Length_MB( ) - operation .partition_new .Get_Length_MB( ) ) ) ;
|
|
|
|
|
|
|
|
break ;
|
|
|
|
|
|
|
|
case GParted::COPY:
|
|
|
|
//lets take 10MB/s for the moment..
|
|
|
|
return operation .partition_new .Get_Length_MB( ) / 10 ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1 ; //pulsing
|
|
|
|
}
|
|
|
|
|
|
|
|
void GParted_Core::Apply_Operation_To_Disk( Operation & operation )
|
|
|
|
{
|
|
|
|
switch ( operation .operationtype )
|
|
|
|
{
|
|
|
|
case DELETE:
|
|
|
|
if ( ! Delete( operation .device_path, operation .partition_original ) )
|
|
|
|
Show_Error( String::ucompose( _("Error while deleting %1"), operation .partition_original .partition ) ) ;
|
|
|
|
|
|
|
|
break;
|
|
|
|
case CREATE:
|
|
|
|
if ( ! Create( operation .device_path, operation .partition_new ) )
|
|
|
|
Show_Error( String::ucompose( _("Error while creating %1"), operation .partition_new .partition ) );
|
|
|
|
|
|
|
|
break;
|
|
|
|
case RESIZE_MOVE:
|
|
|
|
if ( ! Resize( operation .device_path, operation .partition_original, operation .partition_new ) )
|
|
|
|
Show_Error( String::ucompose( _("Error while resizing/moving %1"), operation .partition_new .partition ) ) ;
|
|
|
|
|
|
|
|
break;
|
|
|
|
case CONVERT:
|
|
|
|
if ( ! Convert_FS( operation .device_path, operation .partition_new ) )
|
|
|
|
Show_Error( String::ucompose( _("Error while converting filesystem of %1"), operation .partition_new .partition ) ) ;
|
|
|
|
|
|
|
|
break;
|
|
|
|
case COPY:
|
|
|
|
if ( ! Copy( operation .device_path, operation .copied_partition_path, operation .partition_new ) )
|
|
|
|
Show_Error( String::ucompose( _("Error while copying %1"), operation .partition_new .partition ) ) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GParted_Core::Create( const Glib::ustring & device_path, Partition & new_partition )
|
|
|
|
{
|
|
|
|
if ( new_partition .type == GParted::EXTENDED )
|
|
|
|
return Create_Empty_Partition( device_path, new_partition ) ;
|
|
|
|
|
|
|
|
else if ( Create_Empty_Partition( device_path, new_partition ) > 0 )
|
|
|
|
{
|
|
|
|
set_proper_filesystem( new_partition .filesystem ) ;
|
|
|
|
|
|
|
|
return p_filesystem ->Create( device_path, new_partition ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false ;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GParted_Core::Convert_FS( const Glib::ustring & device_path, const Partition & partition )
|
2004-11-25 12:21:42 -07:00
|
|
|
{
|
|
|
|
//remove all filesystem signatures...
|
|
|
|
if ( open_device_and_disk( device_path, device, disk ) )
|
|
|
|
{
|
|
|
|
c_partition = ped_disk_get_partition_by_sector( disk, (partition .sector_end + partition .sector_start) / 2 ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2004-11-25 12:21:42 -07:00
|
|
|
if ( c_partition )
|
|
|
|
ped_file_system_clobber ( & c_partition ->geom ) ;
|
|
|
|
|
|
|
|
close_device_and_disk( device, disk ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
set_proper_filesystem( partition .filesystem ) ;
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
return p_filesystem ->Create( device_path, partition ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GParted_Core::Delete( const Glib::ustring & device_path, const Partition & partition )
|
|
|
|
{
|
|
|
|
bool return_value = false ;
|
|
|
|
|
|
|
|
if ( open_device_and_disk( device_path, device, disk ) )
|
|
|
|
{
|
|
|
|
if ( partition .type == GParted::EXTENDED )
|
|
|
|
c_partition = ped_disk_extended_partition( disk ) ;
|
|
|
|
else
|
|
|
|
c_partition = ped_disk_get_partition_by_sector( disk, (partition .sector_end + partition .sector_start) / 2 ) ;
|
|
|
|
|
|
|
|
return_value = ( ped_disk_delete_partition( disk, c_partition ) && Commit( disk ) ) ;
|
|
|
|
close_device_and_disk( device, disk ) ;
|
2004-11-24 03:32:56 -07:00
|
|
|
|
|
|
|
sleep( 1 ) ;//paranoia give the OS some time to update nodes in /dev
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return return_value ;
|
|
|
|
}
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
bool GParted_Core::Resize( const Glib::ustring & device_path, const Partition & partition_old, const Partition & partition_new )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
if ( partition_old .type == GParted::EXTENDED )
|
2004-11-24 03:32:56 -07:00
|
|
|
return Resize_Container_Partition( device_path, partition_old, partition_new, false ) ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
|
|
|
//these 3 still use libparted's resizer.
|
|
|
|
else if ( partition_old .filesystem == "linux-swap" ||
|
|
|
|
partition_old .filesystem == "fat16" ||
|
|
|
|
partition_old .filesystem == "fat32"
|
|
|
|
)
|
|
|
|
return Resize_Normal_Using_Libparted( device_path, partition_old, partition_new ) ;
|
|
|
|
|
|
|
|
//use custom resize tools..(afaik only resize, no moves)
|
2004-11-17 06:00:25 -07:00
|
|
|
else
|
|
|
|
{
|
|
|
|
set_proper_filesystem( partition_new .filesystem ) ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
|
|
|
if ( p_filesystem ->Check_Repair( partition_new ) )
|
|
|
|
{
|
|
|
|
//shrinking
|
|
|
|
if ( partition_new .sector_end < partition_old .sector_end )
|
|
|
|
{
|
|
|
|
p_filesystem ->cylinder_size = Get_Cylinder_Size( device_path ) ;
|
|
|
|
|
|
|
|
if ( p_filesystem ->Resize( partition_new ) )
|
|
|
|
Resize_Container_Partition( device_path, partition_old, partition_new ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
//growing
|
|
|
|
if ( partition_new .sector_end > partition_old .sector_end )
|
|
|
|
Resize_Container_Partition( device_path, partition_old, partition_new ) ;
|
|
|
|
|
|
|
|
|
|
|
|
p_filesystem ->Check_Repair( partition_new ) ;
|
|
|
|
|
|
|
|
p_filesystem ->Resize( partition_new, true ) ; //expand filesystem to fit exactly in partition
|
|
|
|
|
|
|
|
return p_filesystem ->Check_Repair( partition_new ) ;
|
|
|
|
}
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return false ;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GParted_Core::Copy( const Glib::ustring & dest_device_path, const Glib::ustring & src_part_path, Partition & partition_dest )
|
|
|
|
{
|
2004-11-19 04:55:38 -07:00
|
|
|
if ( Create_Empty_Partition( dest_device_path, partition_dest, true ) > 0 )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
set_proper_filesystem( partition_dest .filesystem ) ;
|
|
|
|
|
|
|
|
return p_filesystem ->Copy( src_part_path, partition_dest .partition ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false ;
|
|
|
|
}
|
|
|
|
|
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 ;
|
|
|
|
|
|
|
|
if ( open_device_and_disk( device_path, device, disk, false ) )
|
|
|
|
{
|
|
|
|
PedDiskType *type = NULL ;
|
|
|
|
type = ped_disk_type_get( disklabel .c_str( ) ) ;
|
|
|
|
|
|
|
|
if ( type )
|
|
|
|
{
|
|
|
|
disk = ped_disk_new_fresh ( device, type);
|
|
|
|
|
|
|
|
return_value = Commit( disk ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
close_device_and_disk( device, disk ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return return_value ;
|
|
|
|
}
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
std::vector<FS> GParted_Core::get_fs( )
|
|
|
|
{
|
|
|
|
return FILESYSTEMS ;
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::RefPtr<Gtk::TextBuffer> GParted_Core::get_textbuffer( )
|
|
|
|
{
|
|
|
|
return textbuffer ;
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::ustring GParted_Core::get_sym_path( const Glib::ustring & real_path )
|
|
|
|
{
|
|
|
|
int major, minor, size;
|
|
|
|
char temp[4096], device_name[4096], short_path[4096] ;
|
|
|
|
|
|
|
|
FILE* proc_part_file = fopen ( "/proc/partitions", "r" );
|
|
|
|
if ( ! proc_part_file )
|
|
|
|
return real_path;
|
|
|
|
|
|
|
|
//skip first 2 useless rules of /proc/partitions
|
|
|
|
fgets( temp, 256, proc_part_file ); fgets( temp, 256, proc_part_file );
|
|
|
|
|
|
|
|
while ( fgets( temp, 4096, proc_part_file ) && sscanf(temp, "%d %d %d %255s", &major, &minor, &size, device_name ) == 4 )
|
|
|
|
{
|
|
|
|
strcpy( short_path, "/dev/" ); strcat( short_path, device_name );
|
|
|
|
realpath( short_path, device_name );
|
|
|
|
|
|
|
|
if ( real_path == device_name ) {
|
|
|
|
fclose ( proc_part_file );
|
|
|
|
return ( Glib::ustring( short_path ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//paranoia modus :)
|
|
|
|
fclose ( proc_part_file );
|
|
|
|
return real_path;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
void GParted_Core::Set_Used_Sectors( Partition & partition )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2004-11-24 08:05:36 -07:00
|
|
|
//if ( partition .filesystem == "unknown" )
|
|
|
|
if ( Get_FS( partition .filesystem, FILESYSTEMS ) .filesystem == "unknown" )
|
2004-11-21 14:49:38 -07:00
|
|
|
partition .Set_Unused( -1 ) ;
|
|
|
|
|
|
|
|
else if ( partition .busy )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2004-11-21 14:49:38 -07:00
|
|
|
system( ("df -k --sync " + partition .partition + " | grep " + partition .partition + " > /tmp/.tmp_gparted") .c_str( ) );
|
2004-11-17 06:00:25 -07:00
|
|
|
std::ifstream file_input( "/tmp/.tmp_gparted" );
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
//we need the 4th value
|
|
|
|
file_input >> temp; file_input >> temp; file_input >> temp;file_input >> temp;
|
|
|
|
if ( ! temp .empty( ) )
|
|
|
|
partition .Set_Unused( atoi( temp .c_str( ) ) * 1024/512 ) ;
|
|
|
|
|
|
|
|
file_input .close( );
|
|
|
|
system( "rm -f /tmp/.tmp_gparted" );
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
else if ( Get_FS( partition .filesystem, FILESYSTEMS ) .read )
|
|
|
|
{
|
|
|
|
set_proper_filesystem( partition .filesystem ) ;
|
|
|
|
|
|
|
|
p_filesystem ->disk = disk ;
|
|
|
|
p_filesystem ->Set_Used_Sectors( partition ) ;
|
|
|
|
}
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2004-11-19 04:55:38 -07:00
|
|
|
int GParted_Core::Create_Empty_Partition( const Glib::ustring & device_path, Partition & new_partition, bool copy )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
new_partition .partition_number = 0 ;
|
2004-11-19 04:55:38 -07:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
if ( open_device_and_disk( device_path, device, disk ) )
|
|
|
|
{
|
|
|
|
PedPartitionType type;
|
|
|
|
PedPartition *c_part = NULL ;
|
|
|
|
PedConstraint *constraint = NULL ;
|
|
|
|
|
|
|
|
//create new partition
|
|
|
|
switch ( new_partition .type )
|
|
|
|
{
|
|
|
|
case 0 : type = PED_PARTITION_NORMAL; break ;
|
|
|
|
case 1 : type = PED_PARTITION_LOGICAL; break ;
|
|
|
|
case 2 : type = PED_PARTITION_EXTENDED; break ;
|
|
|
|
default : type = PED_PARTITION_FREESPACE; break ; //will never happen ;)
|
|
|
|
}
|
|
|
|
|
|
|
|
c_part = ped_partition_new ( disk, type, NULL, new_partition .sector_start, new_partition .sector_end ) ;
|
|
|
|
if ( c_part )
|
|
|
|
{
|
|
|
|
constraint = ped_constraint_any ( 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 )
|
|
|
|
constraint ->min_size = new_partition .sector_end - new_partition .sector_start ;
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
if ( ped_disk_add_partition ( disk, c_part, constraint ) && Commit( disk ) )
|
|
|
|
{
|
2004-11-25 12:21:42 -07:00
|
|
|
//remove all filesystem signatures...
|
|
|
|
ped_file_system_clobber ( & c_part ->geom ) ;
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
sleep( 1 ) ;//the OS needs some time to create the devicenode in /dev
|
2004-11-19 04:55:38 -07:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
new_partition .partition = ped_partition_get_path( c_part ) ;
|
|
|
|
new_partition .partition_number = c_part ->num ;
|
|
|
|
}
|
|
|
|
|
|
|
|
ped_constraint_destroy ( constraint );
|
|
|
|
}
|
2004-11-19 04:55:38 -07:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
2004-11-19 04:55:38 -07:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
close_device_and_disk( device, disk ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new_partition .partition_number ;
|
|
|
|
}
|
|
|
|
|
2004-11-24 03:32:56 -07:00
|
|
|
bool GParted_Core::Resize_Container_Partition( const Glib::ustring & device_path, const Partition & partition_old, const Partition & partition_new, bool fixed_start )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
bool return_value = false ;
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
PedConstraint *constraint = NULL ;
|
|
|
|
c_partition = NULL ;
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
if ( open_device_and_disk( device_path, device, disk ) )
|
|
|
|
{
|
2004-11-21 14:49:38 -07:00
|
|
|
if ( partition_old .type == GParted::EXTENDED )
|
|
|
|
c_partition = ped_disk_extended_partition( disk ) ;
|
|
|
|
else
|
|
|
|
c_partition = ped_disk_get_partition_by_sector( disk, (partition_old .sector_end + partition_old .sector_start) / 2 ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
if ( c_partition )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2004-11-21 14:49:38 -07:00
|
|
|
constraint = ped_constraint_any( device );
|
2004-11-24 03:32:56 -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 ( disk, c_partition, constraint, partition_new .sector_start, partition_new .sector_end ) ;
|
|
|
|
ped_constraint_destroy ( constraint );
|
|
|
|
constraint = NULL ;
|
|
|
|
|
|
|
|
ped_geometry_set_start ( & c_partition ->geom, partition_new .sector_start ) ;
|
|
|
|
constraint = ped_constraint_exact ( & c_partition ->geom ) ;
|
|
|
|
}
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
if ( constraint )
|
|
|
|
{
|
2004-11-22 08:59:40 -07:00
|
|
|
if ( ped_disk_set_partition_geom ( disk, c_partition, constraint, partition_new .sector_start, partition_new .sector_end ) )
|
2004-11-17 06:00:25 -07:00
|
|
|
return_value = Commit( disk ) ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
|
|
|
ped_constraint_destroy ( constraint );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
close_device_and_disk( device, disk ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
sleep( 1 ) ; //the OS needs time to re-add the devicenode..
|
|
|
|
|
|
|
|
return return_value ;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GParted_Core::Resize_Normal_Using_Libparted( const Glib::ustring & device_path, const Partition & partition_old, const Partition & partition_new )
|
|
|
|
{
|
|
|
|
bool return_value = false ;
|
|
|
|
|
|
|
|
PedFileSystem *fs = NULL ;
|
|
|
|
PedConstraint *constraint = NULL ;
|
|
|
|
c_partition = NULL ;
|
|
|
|
|
|
|
|
if ( open_device_and_disk( device_path, device, disk ) )
|
|
|
|
{
|
|
|
|
c_partition = ped_disk_get_partition_by_sector( disk, (partition_old .sector_end + partition_old .sector_start) / 2 ) ;
|
|
|
|
if ( c_partition )
|
|
|
|
{
|
|
|
|
fs = ped_file_system_open ( & c_partition ->geom );
|
|
|
|
if ( fs )
|
|
|
|
{
|
|
|
|
constraint = ped_file_system_get_resize_constraint ( fs );
|
|
|
|
if ( constraint )
|
|
|
|
{
|
|
|
|
if ( ped_disk_set_partition_geom ( disk, c_partition, constraint, partition_new .sector_start, partition_new .sector_end ) &&
|
|
|
|
ped_file_system_resize ( fs, & c_partition ->geom, NULL )
|
|
|
|
)
|
|
|
|
return_value = Commit( disk ) ;
|
|
|
|
|
|
|
|
ped_constraint_destroy ( constraint );
|
|
|
|
}
|
|
|
|
|
|
|
|
ped_file_system_close ( fs );
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
close_device_and_disk( device, disk ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return return_value ;
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::ustring GParted_Core::Get_Flags( PedPartition *c_partition )
|
|
|
|
{
|
|
|
|
temp = "";
|
|
|
|
|
|
|
|
for ( unsigned short t = 0; t < flags .size( ) ; t++ )
|
|
|
|
if ( ped_partition_get_flag ( c_partition, flags[ t ] ) )
|
|
|
|
temp += (Glib::ustring) ped_partition_flag_get_name ( flags[ t ] ) + " ";
|
|
|
|
|
|
|
|
return temp ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GParted_Core::Show_Error( Glib::ustring message )
|
|
|
|
{
|
|
|
|
message = "<span weight=\"bold\" size=\"larger\">" + message + "</span>\n\n" ;
|
|
|
|
message += _( "Be aware that the failure to apply this operation could affect other operations on the list." ) ;
|
|
|
|
Gtk::MessageDialog dialog( message ,true, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true );
|
|
|
|
|
|
|
|
gdk_threads_enter( );
|
|
|
|
dialog .run( );
|
|
|
|
gdk_threads_leave( );
|
|
|
|
}
|
|
|
|
|
|
|
|
void GParted_Core::set_proper_filesystem( const Glib::ustring & filesystem )
|
|
|
|
{
|
|
|
|
//ugly, stupid, *aaargh* :-)
|
|
|
|
|
|
|
|
if ( ! p_filesystem )
|
|
|
|
delete p_filesystem ;
|
|
|
|
|
|
|
|
if ( filesystem == "ext2" )
|
|
|
|
p_filesystem = new ext2( ) ;
|
|
|
|
else if ( filesystem == "ext3" )
|
|
|
|
p_filesystem = new ext3( ) ;
|
|
|
|
else if ( filesystem == "fat16" )
|
|
|
|
p_filesystem = new fat16( ) ;
|
|
|
|
else if ( filesystem == "fat32" )
|
|
|
|
p_filesystem = new fat32( ) ;
|
|
|
|
else if ( filesystem == "linux-swap" )
|
|
|
|
p_filesystem = new linux_swap( ) ;
|
|
|
|
else if ( filesystem == "reiserfs" )
|
|
|
|
p_filesystem = new reiserfs( ) ;
|
2004-11-23 09:20:59 -07:00
|
|
|
else if ( filesystem == "ntfs" )
|
|
|
|
p_filesystem = new ntfs( ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
else
|
|
|
|
p_filesystem = NULL ;
|
|
|
|
|
|
|
|
if ( p_filesystem )
|
|
|
|
p_filesystem ->textbuffer = textbuffer ;
|
|
|
|
}
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
long GParted_Core::Get_Cylinder_Size( const Glib::ustring & device_path )
|
|
|
|
{
|
|
|
|
long cylinder_size = 0 ;
|
|
|
|
|
|
|
|
if ( open_device( device_path, device ) )
|
|
|
|
{
|
|
|
|
cylinder_size = Sector_To_MB( device ->bios_geom .heads * device ->bios_geom .sectors ) ;
|
|
|
|
|
|
|
|
close_device_and_disk( device, disk ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cylinder_size ;
|
|
|
|
}
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
} //GParted
|