2004-12-28 17:09:58 -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/reiser4.h"
|
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
2006-01-24 05:31:58 -07:00
|
|
|
FS reiser4::get_filesystem_support()
|
2004-12-28 17:09:58 -07:00
|
|
|
{
|
|
|
|
FS fs ;
|
2005-12-07 04:21:27 -07:00
|
|
|
fs .filesystem = GParted::FS_REISER4 ;
|
2004-12-28 17:09:58 -07:00
|
|
|
|
2006-01-24 05:31:58 -07:00
|
|
|
if ( ! Glib::find_program_in_path( "debugfs.reiser4" ) .empty() )
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .read = GParted::FS::EXTERNAL ;
|
2004-12-28 17:09:58 -07:00
|
|
|
|
2006-01-24 05:31:58 -07:00
|
|
|
if ( ! Glib::find_program_in_path( "mkfs.reiser4" ) .empty() )
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .create = GParted::FS::EXTERNAL ;
|
2004-12-28 17:09:58 -07:00
|
|
|
|
2006-01-24 05:31:58 -07:00
|
|
|
if ( ! Glib::find_program_in_path( "fsck.reiser4" ) .empty() )
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .check = GParted::FS::EXTERNAL ;
|
2004-12-28 17:09:58 -07:00
|
|
|
|
2006-05-23 15:17:34 -06:00
|
|
|
fs .copy = GParted::FS::GPARTED ;
|
2006-04-05 09:34:06 -06:00
|
|
|
|
2005-11-26 17:57:11 -07:00
|
|
|
/*
|
|
|
|
* IT SEEMS RESIZE AND COPY AREN'T IMPLEMENTED YET IN THE TOOLS...
|
2006-01-24 05:31:58 -07:00
|
|
|
* SEE http://marc.theaimsgroup.com/?t=109883161600003&r=1&w=2 for more information..
|
|
|
|
*/
|
2005-11-26 17:57:11 -07:00
|
|
|
|
2004-12-28 17:09:58 -07:00
|
|
|
return fs ;
|
|
|
|
}
|
|
|
|
|
|
|
|
void reiser4::Set_Used_Sectors( Partition & partition )
|
|
|
|
{
|
2006-03-14 14:37:47 -07:00
|
|
|
if ( ! Utils::execute_command( "debugfs.reiser4 " + partition .get_path(), output, error, true ) )
|
2004-12-28 17:09:58 -07:00
|
|
|
{
|
2006-01-22 06:23:58 -07:00
|
|
|
index = output .find( "free blocks" ) ;
|
|
|
|
if ( index >= output .length() ||
|
|
|
|
sscanf( output.substr( index ) .c_str(), "free blocks: %Ld", &N ) != 1 )
|
|
|
|
N = -1 ;
|
2004-12-28 17:09:58 -07:00
|
|
|
|
2006-01-22 06:23:58 -07:00
|
|
|
index = output .find( "blksize" ) ;
|
|
|
|
if ( index >= output.length() ||
|
|
|
|
sscanf( output.substr( index ) .c_str(), "blksize: %Ld", &S ) != 1 )
|
|
|
|
S = -1 ;
|
2005-12-28 09:43:06 -07:00
|
|
|
|
2006-01-22 06:23:58 -07:00
|
|
|
if ( N > -1 && S > -1 )
|
2006-03-28 05:40:29 -07:00
|
|
|
partition .Set_Unused( Utils::round( N * ( S / 512.0 ) ) ) ;
|
2006-01-22 06:23:58 -07:00
|
|
|
}
|
2006-02-25 05:25:18 -07:00
|
|
|
else
|
|
|
|
partition .error = error ;
|
2004-12-28 17:09:58 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool reiser4::Create( const Partition & new_partition, std::vector<OperationDetails> & operation_details )
|
2004-12-28 17:09:58 -07:00
|
|
|
{
|
2006-06-17 10:38:15 -06:00
|
|
|
return ! execute_command( "mkfs.reiser4 --yes " + new_partition .get_path(), operation_details ) ;
|
2004-12-28 17:09:58 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool reiser4::Resize( const Partition & partition_new,
|
|
|
|
std::vector<OperationDetails> & operation_details,
|
|
|
|
bool fill_partition )
|
2005-11-26 17:57:11 -07:00
|
|
|
{
|
2004-12-28 17:09:58 -07:00
|
|
|
return true ;
|
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool reiser4::Copy( const Glib::ustring & src_part_path,
|
|
|
|
const Glib::ustring & dest_part_path,
|
|
|
|
std::vector<OperationDetails> & operation_details )
|
2004-12-28 17:09:58 -07:00
|
|
|
{
|
2006-05-23 15:17:34 -06:00
|
|
|
return true ;
|
2004-12-28 17:09:58 -07:00
|
|
|
}
|
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
bool reiser4::Check_Repair( const Partition & partition, std::vector<OperationDetails> & operation_details )
|
2004-12-28 17:09:58 -07:00
|
|
|
{
|
2006-06-17 10:38:15 -06:00
|
|
|
return ! execute_command( "fsck.reiser4 --yes --fix " + partition .get_path(), operation_details ) ;
|
2004-12-28 17:09:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
} //GParted
|
|
|
|
|
|
|
|
|