2009-11-05 11:08:32 -07:00
|
|
|
/* Copyright (C) 2004 Bart
|
2012-03-03 11:47:39 -07:00
|
|
|
* Copyright (C) 2008, 2009, 2010, 2011, 2012 Curtis Gedak
|
2005-09-13 08:56:00 -06:00
|
|
|
*
|
|
|
|
* 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/hfsplus.h"
|
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
2006-07-29 02:27:28 -06:00
|
|
|
FS hfsplus::get_filesystem_support()
|
2005-09-13 08:56:00 -06:00
|
|
|
{
|
|
|
|
FS fs ;
|
|
|
|
|
2005-12-07 04:21:27 -07:00
|
|
|
fs .filesystem = GParted::FS_HFSPLUS ;
|
2011-06-09 09:59:41 -06:00
|
|
|
|
2012-03-03 11:47:39 -07:00
|
|
|
#ifdef HAVE_LIBPARTED_FS_RESIZE
|
|
|
|
fs .read = GParted::FS::LIBPARTED ;
|
|
|
|
fs .shrink = GParted::FS::LIBPARTED ;
|
2011-06-09 09:59:41 -06:00
|
|
|
#endif
|
|
|
|
|
2008-07-25 16:19:50 -06:00
|
|
|
if ( ! Glib::find_program_in_path( "mkfs.hfsplus" ) .empty() )
|
|
|
|
fs .create = GParted::FS::EXTERNAL ;
|
|
|
|
|
|
|
|
if ( ! Glib::find_program_in_path( "fsck.hfsplus" ) .empty() )
|
|
|
|
fs .check = FS::EXTERNAL ;
|
|
|
|
|
|
|
|
if ( ! Glib::find_program_in_path( "vol_id" ) .empty() )
|
2008-11-08 16:55:17 -07:00
|
|
|
fs .read_label = FS::EXTERNAL ;
|
2008-07-25 16:19:50 -06:00
|
|
|
|
2006-05-23 15:17:34 -06:00
|
|
|
fs .copy = GParted::FS::GPARTED ;
|
2006-07-19 14:12:46 -06:00
|
|
|
fs .move = GParted::FS::GPARTED ;
|
2012-09-10 09:41:58 -06:00
|
|
|
fs .online_read = FS::GPARTED ;
|
|
|
|
|
2005-09-13 08:56:00 -06:00
|
|
|
return fs ;
|
|
|
|
}
|
|
|
|
|
2008-11-08 16:55:17 -07:00
|
|
|
void hfsplus::read_label( Partition & partition )
|
2006-09-12 14:34:33 -06:00
|
|
|
{
|
2008-07-25 16:19:50 -06:00
|
|
|
if ( ! Utils::execute_command( "vol_id " + partition .get_path(), output, error, true ) )
|
|
|
|
{
|
|
|
|
Glib::ustring label = Utils::regexp_label( output, "ID_FS_LABEL=([^\n]*)" ) ;
|
|
|
|
//FIXME: find a better way to see if label is empty.. imagine someone uses 'untitled' as label.... ;)
|
2012-10-08 07:23:17 -06:00
|
|
|
if ( label != "untitled" )
|
|
|
|
partition .set_label( label ) ;
|
|
|
|
else
|
|
|
|
partition .set_label( "" ) ;
|
2008-07-25 16:19:50 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( ! output .empty() )
|
|
|
|
partition .messages .push_back( output ) ;
|
|
|
|
|
|
|
|
if ( ! error .empty() )
|
|
|
|
partition .messages .push_back( error ) ;
|
|
|
|
}
|
2006-09-12 14:34:33 -06:00
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
bool hfsplus::create( const Partition & new_partition, OperationDetail & operationdetail )
|
2005-09-13 08:56:00 -06:00
|
|
|
{
|
2008-07-25 16:19:50 -06:00
|
|
|
Glib::ustring cmd = "";
|
2012-10-08 07:23:17 -06:00
|
|
|
if( new_partition .get_label() .empty() )
|
2008-07-25 16:19:50 -06:00
|
|
|
cmd = "mkfs.hfsplus " + new_partition .get_path() ;
|
|
|
|
else
|
2012-10-08 07:23:17 -06:00
|
|
|
cmd = "mkfs.hfsplus -v \"" + new_partition .get_label() + "\" " + new_partition .get_path() ;
|
2008-07-25 16:19:50 -06:00
|
|
|
return ! execute_command( cmd , operationdetail ) ;
|
2005-09-13 08:56:00 -06:00
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
bool hfsplus::check_repair( const Partition & partition, OperationDetail & operationdetail )
|
2005-09-13 08:56:00 -06:00
|
|
|
{
|
2008-07-25 16:19:50 -06:00
|
|
|
return ! execute_command( "fsck.hfsplus -f -y " + partition .get_path(), operationdetail ) ;
|
2005-09-13 08:56:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
} //GParted
|