2009-11-05 11:08:32 -07:00
|
|
|
/* Copyright (C) 2004 Bart
|
2010-10-19 10:02:18 -06:00
|
|
|
* Copyright (C) 2008, 2009, 2010 Curtis Gedak
|
2004-11-17 06:00:25 -07: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/linux_swap.h"
|
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
2012-01-27 12:41:31 -07:00
|
|
|
const Glib::ustring linux_swap::get_custom_text( CUSTOM_TEXT ttype, int index )
|
|
|
|
{
|
|
|
|
/*TO TRANSLATORS: these labels will be used in the partition menu */
|
|
|
|
static const Glib::ustring activate_text = _( "_Swapon" ) ;
|
|
|
|
static const Glib::ustring deactivate_text = _( "_Swapoff" ) ;
|
|
|
|
|
|
|
|
switch ( ttype ) {
|
|
|
|
case CTEXT_ACTIVATE_FILESYSTEM :
|
|
|
|
return index == 0 ? activate_text : "" ;
|
|
|
|
case CTEXT_DEACTIVATE_FILESYSTEM :
|
|
|
|
return index == 0 ? deactivate_text : "" ;
|
|
|
|
default :
|
|
|
|
return "" ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-24 05:31:58 -07:00
|
|
|
FS linux_swap::get_filesystem_support()
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
|
|
|
FS fs ;
|
2005-12-07 04:21:27 -07:00
|
|
|
fs .filesystem = GParted::FS_LINUX_SWAP ;
|
2004-12-28 05:59:46 -07:00
|
|
|
|
2006-01-24 05:31:58 -07:00
|
|
|
if ( ! Glib::find_program_in_path( "mkswap" ) .empty() )
|
2004-12-28 05:59:46 -07:00
|
|
|
{
|
2005-11-26 17:57:11 -07:00
|
|
|
fs .create = GParted::FS::EXTERNAL ;
|
|
|
|
fs .grow = GParted::FS::EXTERNAL ;
|
|
|
|
fs .shrink = GParted::FS::EXTERNAL ;
|
2004-12-28 05:59:46 -07:00
|
|
|
}
|
2008-04-07 13:41:18 -06:00
|
|
|
|
|
|
|
if ( ! Glib::find_program_in_path( "vol_id" ) .empty() )
|
2008-11-08 16:55:17 -07:00
|
|
|
fs .read_label = FS::EXTERNAL ;
|
2008-04-07 13:41:18 -06:00
|
|
|
|
2010-08-04 15:57:29 -06:00
|
|
|
if ( ! Glib::find_program_in_path( "swaplabel" ) .empty() )
|
2012-01-22 13:49:52 -07:00
|
|
|
{
|
2012-02-18 13:54:58 -07:00
|
|
|
fs .write_label = FS::EXTERNAL ;
|
2012-01-22 13:49:52 -07:00
|
|
|
fs .read_uuid = FS::EXTERNAL ;
|
|
|
|
fs .write_uuid = FS::EXTERNAL ;
|
|
|
|
}
|
2010-08-04 15:57:29 -06:00
|
|
|
|
2010-10-19 10:02:18 -06:00
|
|
|
fs .copy = GParted::FS::EXTERNAL ;
|
2010-10-19 13:43:42 -06:00
|
|
|
fs .move = GParted::FS::EXTERNAL ;
|
2004-11-21 14:49:38 -07:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
return fs ;
|
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
void linux_swap::set_used_sectors( Partition & partition )
|
2004-11-21 14:49:38 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-11-08 16:55:17 -07:00
|
|
|
void linux_swap::read_label( Partition & partition )
|
2006-09-12 14:34:33 -06:00
|
|
|
{
|
2008-04-08 11:36:35 -06:00
|
|
|
if ( ! Utils::execute_command( "vol_id " + partition .get_path(), output, error, true ) )
|
2008-04-07 13:41:18 -06:00
|
|
|
{
|
2012-10-08 07:23:17 -06:00
|
|
|
partition .set_label( Utils::regexp_label( output, "ID_FS_LABEL=([^\n]*)" ) ) ;
|
2008-04-07 13:41:18 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( ! output .empty() )
|
|
|
|
partition .messages .push_back( output ) ;
|
|
|
|
|
|
|
|
if ( ! error .empty() )
|
|
|
|
partition .messages .push_back( error ) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-08 16:55:17 -07:00
|
|
|
bool linux_swap::write_label( const Partition & partition, OperationDetail & operationdetail )
|
2008-04-07 13:41:18 -06:00
|
|
|
{
|
2012-10-08 07:23:17 -06:00
|
|
|
return ! execute_command( "swaplabel -L \"" + partition .get_label() + "\" " + partition .get_path(), operationdetail ) ;
|
2006-09-12 14:34:33 -06:00
|
|
|
}
|
|
|
|
|
2012-01-22 13:49:52 -07:00
|
|
|
void linux_swap::read_uuid( Partition & partition )
|
|
|
|
{
|
|
|
|
if ( ! Utils::execute_command( "swaplabel " + partition .get_path(), output, error, true ) )
|
|
|
|
{
|
2012-09-23 08:44:40 -06:00
|
|
|
partition .uuid = Utils::regexp_label( output, "^UUID:[[:blank:]]*(" RFC4122_NONE_NIL_UUID_REGEXP ")" ) ;
|
2012-01-22 13:49:52 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( ! output .empty() )
|
|
|
|
partition .messages .push_back( output ) ;
|
|
|
|
|
|
|
|
if ( ! error .empty() )
|
|
|
|
partition .messages .push_back( error ) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool linux_swap::write_uuid( const Partition & partition, OperationDetail & operationdetail )
|
|
|
|
{
|
|
|
|
return ! execute_command( "swaplabel -U \"" + Utils::generate_uuid() + "\" " + partition .get_path(), operationdetail ) ;
|
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
bool linux_swap::create( const Partition & new_partition, OperationDetail & operationdetail )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2012-10-08 07:23:17 -06:00
|
|
|
return ! execute_command( "mkswap -L \"" + new_partition .get_label() + "\" " + new_partition .get_path(), operationdetail ) ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
bool linux_swap::resize( const Partition & partition_new, OperationDetail & operationdetail, bool fill_partition )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2008-11-18 16:58:17 -07:00
|
|
|
/*TO TRANSLATORS: looks like create new linux-swap file system */
|
2006-08-20 03:33:54 -06:00
|
|
|
operationdetail .add_child( OperationDetail(
|
2008-11-18 16:58:17 -07:00
|
|
|
String::ucompose( _("create new %1 file system"), Utils::get_filesystem_string( FS_LINUX_SWAP ) ) ) ) ;
|
2009-03-23 14:01:03 -06:00
|
|
|
|
|
|
|
//Maintain label and uuid when recreating swap
|
2012-10-08 07:23:17 -06:00
|
|
|
Glib::ustring command = "mkswap -L \"" + partition_new .get_label() + "\" " ;
|
2010-03-14 13:45:05 -06:00
|
|
|
if ( ! partition_new .uuid .empty() )
|
|
|
|
command += " -U \"" + partition_new .uuid + "\" " ;
|
|
|
|
command += partition_new .get_path() ;
|
2009-03-23 14:01:03 -06:00
|
|
|
bool exit_status = ! execute_command( command , operationdetail .get_last_child() ) ;
|
|
|
|
|
|
|
|
operationdetail .get_last_child() .set_status( exit_status ? STATUS_SUCCES : STATUS_ERROR ) ;
|
|
|
|
return exit_status ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2010-10-19 13:35:53 -06:00
|
|
|
bool linux_swap::move( const Partition & partition_new
|
|
|
|
, const Partition & partition_old
|
|
|
|
, OperationDetail & operationdetail
|
|
|
|
)
|
|
|
|
{
|
2010-10-19 13:43:42 -06:00
|
|
|
//Since linux-swap does not contain data, do not actually move the partition
|
|
|
|
operationdetail .add_child(
|
|
|
|
OperationDetail(
|
|
|
|
/* TO TRANSLATORS: looks like Partition move action skipped because linux-swap file system does not contain data */
|
|
|
|
String::ucompose( _("Partition move action skipped because %1 file system does not contain data")
|
|
|
|
, Utils::get_filesystem_string( FS_LINUX_SWAP )
|
|
|
|
)
|
|
|
|
, STATUS_NONE
|
|
|
|
, FONT_ITALIC
|
|
|
|
)
|
|
|
|
) ;
|
|
|
|
|
2010-10-19 13:35:53 -06:00
|
|
|
return true ;
|
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
bool linux_swap::copy( const Glib::ustring & src_part_path,
|
2006-01-19 12:15:15 -07:00
|
|
|
const Glib::ustring & dest_part_path,
|
2006-08-20 03:33:54 -06:00
|
|
|
OperationDetail & operationdetail )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2010-10-19 10:02:18 -06:00
|
|
|
//Since linux-swap does not contain data, do not actually copy the partition
|
|
|
|
operationdetail .add_child(
|
|
|
|
OperationDetail(
|
|
|
|
/* TO TRANSLATORS: looks like Partition copy action skipped because linux-swap file system does not contain data */
|
|
|
|
String::ucompose( _("Partition copy action skipped because %1 file system does not contain data")
|
|
|
|
, Utils::get_filesystem_string( FS_LINUX_SWAP )
|
|
|
|
)
|
|
|
|
, STATUS_NONE
|
|
|
|
, FONT_ITALIC
|
|
|
|
)
|
|
|
|
) ;
|
|
|
|
|
2006-05-23 15:17:34 -06:00
|
|
|
return true ;
|
2004-11-21 14:49:38 -07:00
|
|
|
}
|
|
|
|
|
2006-08-20 03:33:54 -06:00
|
|
|
bool linux_swap::check_repair( const Partition & partition, OperationDetail & operationdetail )
|
2004-11-17 06:00:25 -07:00
|
|
|
{
|
2006-01-19 12:15:15 -07:00
|
|
|
return true ;
|
2004-11-17 06:00:25 -07:00
|
|
|
}
|
|
|
|
|
2012-07-25 14:05:33 -06:00
|
|
|
bool linux_swap::remove( const Partition & partition, OperationDetail & operationdetail )
|
|
|
|
{
|
|
|
|
return true ;
|
|
|
|
}
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
} //GParted
|