2009-11-05 11:08:32 -07:00
|
|
|
/* Copyright (C) 2004 Bart
|
2010-10-19 13:35:53 -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
|
2014-01-23 03:59:48 -07:00
|
|
|
* GNU General Public License for more details.
|
2004-11-17 06:00:25 -07:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-23 03:59:48 -07:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2004-11-17 06:00:25 -07:00
|
|
|
*/
|
2013-05-27 05:20:16 -06:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef GPARTED_EXT2_H
|
|
|
|
#define GPARTED_EXT2_H
|
2004-11-17 06:00:25 -07:00
|
|
|
|
|
|
|
#include "../include/FileSystem.h"
|
2015-11-25 07:55:19 -07:00
|
|
|
#include "../include/Partition.h"
|
2004-11-17 06:00:25 -07:00
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
class ext2 : public FileSystem
|
|
|
|
{
|
2013-01-21 13:41:24 -07:00
|
|
|
const enum FILESYSTEM specific_type;
|
2014-10-18 04:57:22 -06:00
|
|
|
Glib::ustring dump_cmd;
|
|
|
|
Glib::ustring fsck_cmd;
|
|
|
|
Glib::ustring image_cmd;
|
|
|
|
Glib::ustring label_cmd;
|
|
|
|
Glib::ustring mkfs_cmd;
|
|
|
|
Glib::ustring resize_cmd;
|
|
|
|
Glib::ustring tune_cmd;
|
2004-11-17 06:00:25 -07:00
|
|
|
public:
|
2014-10-18 04:57:22 -06:00
|
|
|
ext2( enum FILESYSTEM type ) : specific_type( type ), dump_cmd( "" ), fsck_cmd( "" ), image_cmd( "" ),
|
|
|
|
label_cmd( "" ), mkfs_cmd( "" ), resize_cmd( "" ), tune_cmd( "" ) {};
|
2006-07-29 02:27:28 -06:00
|
|
|
FS get_filesystem_support() ;
|
2006-08-20 03:33:54 -06:00
|
|
|
void set_used_sectors( Partition & partition ) ;
|
2008-11-08 16:55:17 -07:00
|
|
|
void read_label( Partition & partition ) ;
|
|
|
|
bool write_label( const Partition & partition, OperationDetail & operationdetail ) ;
|
2012-01-22 13:49:52 -07:00
|
|
|
void read_uuid( Partition & partition ) ;
|
|
|
|
bool write_uuid( const Partition & partition, OperationDetail & operationdetail ) ;
|
2006-08-20 03:33:54 -06:00
|
|
|
bool create( const Partition & new_partition, OperationDetail & operationdetail ) ;
|
|
|
|
bool resize( const Partition & partition_new, OperationDetail & operationdetail, bool fill_partition = false ) ;
|
|
|
|
bool check_repair( const Partition & partition, OperationDetail & operationdetail ) ;
|
2014-01-04 22:32:54 -07:00
|
|
|
bool move( const Partition & partition_new,
|
|
|
|
const Partition & partition_old,
|
|
|
|
OperationDetail & operationdetail );
|
|
|
|
bool copy( const Partition & partition_new,
|
|
|
|
Partition & partition_old,
|
|
|
|
OperationDetail & operationdetail );
|
2013-03-02 08:14:51 -07:00
|
|
|
|
|
|
|
private:
|
|
|
|
void resize_progress( OperationDetail *operationdetail );
|
2013-03-02 08:24:54 -07:00
|
|
|
void create_progress( OperationDetail *operationdetail );
|
2013-03-02 15:57:34 -07:00
|
|
|
void check_repair_progress( OperationDetail *operationdetail );
|
2004-11-17 06:00:25 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} //GParted
|
|
|
|
|
2013-05-27 05:20:16 -06:00
|
|
|
#endif /* GPARTED_EXT2_H */
|