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/fat16.h"
|
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
FS fat16::get_filesystem_support( )
|
|
|
|
{
|
|
|
|
FS fs ;
|
|
|
|
|
|
|
|
fs .filesystem = "fat16" ;
|
2005-09-13 08:56:00 -06:00
|
|
|
|
2004-12-10 04:49:27 -07:00
|
|
|
//find out if we can create fat16 filesystems
|
|
|
|
if ( ! system( "which mkdosfs 1>/dev/null 2>/dev/null" ) )
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .create = GParted::FS::EXTERNAL ;
|
2004-12-04 09:56:08 -07:00
|
|
|
|
|
|
|
if ( ! system( "which dosfsck 1>/dev/null 2>/dev/null" ) )
|
2005-09-13 08:56:00 -06:00
|
|
|
{
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .check = GParted::FS::EXTERNAL ;
|
|
|
|
fs .read = GParted::FS::EXTERNAL ;
|
2005-09-13 08:56:00 -06:00
|
|
|
}
|
2004-12-04 09:56:08 -07:00
|
|
|
|
|
|
|
//resizing of start and endpoint are provided by libparted
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .grow = GParted::FS::LIBPARTED ;
|
|
|
|
fs .shrink = GParted::FS::LIBPARTED ;
|
|
|
|
fs .move = GParted::FS::LIBPARTED ;
|
2004-12-04 09:56:08 -07:00
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
if ( ! system( "which dd 1>/dev/null 2>/dev/null" ) )
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .copy = GParted::FS::EXTERNAL ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2005-09-13 08:56:00 -06:00
|
|
|
fs .MIN = 16 ;
|
2004-12-10 04:49:27 -07:00
|
|
|
fs .MAX = 4096 ;
|
2004-12-09 15:56:33 -07:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
return fs ;
|
|
|
|
}
|
2004-11-21 14:49:38 -07:00
|
|
|
|
|
|
|
void fat16::Set_Used_Sectors( Partition & partition )
|
|
|
|
{
|
2005-09-13 08:56:00 -06:00
|
|
|
char c_buf[ 512 ] ;
|
|
|
|
FILE *f ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2005-09-13 08:56:00 -06:00
|
|
|
Glib::ustring output ;
|
|
|
|
Sector free_clusters = -1, bytes_per_cluster = -1 ;
|
|
|
|
|
|
|
|
//get free blocks..
|
|
|
|
f = popen( ( "LC_ALL=C echo 2 | dosfsck -v " + partition .partition ) .c_str( ), "r" ) ;
|
|
|
|
while ( fgets( c_buf, 512, f ) )
|
2004-11-21 14:49:38 -07:00
|
|
|
{
|
2005-09-13 08:56:00 -06:00
|
|
|
output = Glib::locale_to_utf8( c_buf ) ;
|
|
|
|
|
|
|
|
//bytes per cluster
|
|
|
|
if ( output .find( "bytes per cluster" ) < output .length( ) )
|
|
|
|
bytes_per_cluster = atol( output .substr( 0, output .find( "b" ) ) .c_str( ) ) ;
|
|
|
|
|
|
|
|
//free clusters
|
|
|
|
if ( output .find( partition .partition ) < output .length( ) )
|
2004-11-21 14:49:38 -07:00
|
|
|
{
|
2005-09-13 08:56:00 -06:00
|
|
|
output = output .substr( output .find( "," ) +2, output .length( ) ) ;
|
|
|
|
free_clusters = atol( output .substr( output .find( "/" ) +1, output .find( " " ) ) .c_str( ) ) - atol( output .substr( 0, output .find( "/" ) ) .c_str( ) ) ;
|
2004-11-21 14:49:38 -07:00
|
|
|
}
|
|
|
|
}
|
2005-09-13 08:56:00 -06:00
|
|
|
pclose( f ) ;
|
|
|
|
|
|
|
|
if ( free_clusters > -1 && bytes_per_cluster > -1 )
|
|
|
|
partition .Set_Unused( free_clusters * bytes_per_cluster / 512 ) ;
|
2004-11-21 14:49:38 -07:00
|
|
|
}
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2004-12-28 06:29:01 -07:00
|
|
|
bool fat16::Create( const Partition & new_partition )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2004-12-10 04:49:27 -07:00
|
|
|
return ! Execute_Command( "mkdosfs -F16 " + new_partition .partition ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
bool fat16::Resize( const Partition & partition_new, bool fill_partition )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2004-11-21 14:49:38 -07:00
|
|
|
//handled in GParted_Core::Resize_Normal_Using_Libparted
|
|
|
|
return false ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool fat16::Copy( const Glib::ustring & src_part_path, const Glib::ustring & dest_part_path )
|
|
|
|
{
|
2005-09-13 08:56:00 -06:00
|
|
|
return ! Execute_Command( "dd bs=8192 if=" + src_part_path + " of=" + dest_part_path ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2004-11-21 14:49:38 -07:00
|
|
|
bool fat16::Check_Repair( const Partition & partition )
|
|
|
|
{
|
2004-11-30 14:21:10 -07:00
|
|
|
return ! Execute_Command( "dosfsck -aw " + partition .partition ) ;
|
2004-11-21 14:49:38 -07:00
|
|
|
}
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
int fat16::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
|
|
|
|
|
|
|
|
|