2004-11-17 06:00:25 -07:00
|
|
|
/* Copyright (C) 2004 Bart
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "../include/ext2.h"
|
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
FS ext2::get_filesystem_support( )
|
|
|
|
{
|
|
|
|
FS fs ;
|
|
|
|
|
|
|
|
fs .filesystem = "ext2" ;
|
2004-11-21 14:49:38 -07:00
|
|
|
if ( ! system( "which dumpe2fs 1>/dev/null 2>/dev/null" ) )
|
|
|
|
fs .read = true ;
|
|
|
|
|
|
|
|
if ( ! system( "which mkfs.ext2 1>/dev/null 2>/dev/null" ) )
|
|
|
|
fs .create = true ;
|
|
|
|
|
|
|
|
if ( ! system( "which e2fsck 1>/dev/null 2>/dev/null" ) )
|
|
|
|
fs .check = true ;
|
|
|
|
|
2004-12-15 03:33:12 -07:00
|
|
|
//resizing is a delicate process ...
|
|
|
|
if ( ! system( "which resize2fs 1>/dev/null 2>/dev/null" ) && fs .check )
|
|
|
|
{
|
|
|
|
fs .grow = true ;
|
|
|
|
|
|
|
|
if ( fs .read ) //needed to determine a min filesystemsize..
|
|
|
|
fs .shrink = true ;
|
|
|
|
}
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2004-12-17 09:26:49 -07:00
|
|
|
if ( ! system( "which dd 1>/dev/null 2>/dev/null" ) && fs .grow )
|
2004-11-21 14:49:38 -07:00
|
|
|
fs .copy = true ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
|
|
|
return fs ;
|
|
|
|
}
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
void ext2::Set_Used_Sectors( Partition & partition )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2004-11-21 14:49:38 -07:00
|
|
|
char c_buf[ 512 ] ;
|
|
|
|
FILE *f ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
Glib::ustring output ;
|
|
|
|
Sector free_blocks = -1, blocksize = -1 ;
|
|
|
|
|
|
|
|
//get free blocks..
|
2004-12-15 12:39:18 -07:00
|
|
|
f = popen( ( "LC_ALL=C dumpe2fs -h " + partition .partition ) .c_str( ), "r" ) ;
|
2004-11-21 14:49:38 -07:00
|
|
|
while ( fgets( c_buf, 512, f ) )
|
|
|
|
{
|
|
|
|
output = Glib::locale_to_utf8( c_buf ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
//free blocks
|
|
|
|
if ( output .find( "Free blocks" ) < output .length( ) )
|
2004-12-29 13:39:29 -07:00
|
|
|
free_blocks = atol( (output .substr( output .find( ":" ) +1, output .length( ) ) ) .c_str( ) ) ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
|
|
|
//blocksize
|
2004-11-22 04:53:22 -07:00
|
|
|
if ( output .find( "Block size" ) < output .length( ) )
|
2004-12-29 13:39:29 -07:00
|
|
|
blocksize = atol( (output .substr( output .find( ":" ) +1, output .length( ) ) ) .c_str( ) ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
2004-11-21 14:49:38 -07:00
|
|
|
pclose( f ) ;
|
|
|
|
|
|
|
|
if ( free_blocks > -1 && blocksize > -1 )
|
|
|
|
partition .Set_Unused( free_blocks * blocksize / 512 ) ;
|
|
|
|
}
|
|
|
|
|
2004-12-28 06:29:01 -07:00
|
|
|
bool ext2::Create( const Partition & new_partition )
|
2004-11-21 14:49:38 -07:00
|
|
|
{
|
2004-11-30 14:05:48 -07:00
|
|
|
return ! Execute_Command( "mkfs.ext2 " + new_partition .partition ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
bool ext2::Resize( const Partition & partition_new, bool fill_partition )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2005-09-13 08:56:00 -06:00
|
|
|
Glib::ustring str_temp = "resize2fs " + partition_new .partition ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
if ( ! fill_partition )
|
2005-09-13 08:56:00 -06:00
|
|
|
str_temp += " " + num_to_str( partition_new .Get_Length_MB( ) - cylinder_size, true ) + "M" ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2004-11-30 14:05:48 -07:00
|
|
|
return ! Execute_Command( str_temp ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ext2::Copy( const Glib::ustring & src_part_path, const Glib::ustring & dest_part_path )
|
|
|
|
{
|
2005-09-13 08:56:00 -06:00
|
|
|
if ( ! Execute_Command( "dd bs=8192 if=" + src_part_path + " of=" + dest_part_path ) )
|
2004-12-15 12:39:18 -07:00
|
|
|
{
|
|
|
|
Partition partition ;
|
|
|
|
partition .partition = dest_part_path ;
|
|
|
|
return Resize( partition, true ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
bool ext2::Check_Repair( const Partition & partition )
|
|
|
|
{
|
2004-11-30 14:05:48 -07:00
|
|
|
return Execute_Command( "e2fsck -fy " + partition .partition ) <= 1 ;
|
2004-11-21 14:49:38 -07:00
|
|
|
}
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
int ext2::get_estimated_time( long MB_to_Consider )
|
|
|
|
{
|
2004-11-21 14:49:38 -07:00
|
|
|
return -1 ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} //GParted
|
|
|
|
|
|
|
|
|