2010-01-02 04:11:50 -07:00
|
|
|
/* Copyright (C) 2009,2010 Luca Bruno <lucab@debian.org>
|
2010-10-19 13:35:53 -06:00
|
|
|
* Copyright (C) 2010 Curtis Gedak
|
2010-01-02 04:11:50 -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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef BTRFS_H_
|
|
|
|
#define BTRFS_H_
|
|
|
|
|
|
|
|
#include "../include/FileSystem.h"
|
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
class btrfs : public FileSystem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FS get_filesystem_support() ;
|
|
|
|
void set_used_sectors( Partition & partition ) ;
|
|
|
|
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 ) ;
|
2010-01-02 04:11:50 -07:00
|
|
|
bool create( const Partition & new_partition, OperationDetail & operationdetail ) ;
|
|
|
|
bool resize( const Partition & partition_new, OperationDetail & operationdetail, bool fill_partition = false ) ;
|
2010-10-19 13:35:53 -06:00
|
|
|
bool move( const Partition & partition_new
|
|
|
|
, const Partition & partition_old
|
|
|
|
, OperationDetail & operationdetail
|
|
|
|
) ;
|
2010-01-02 04:11:50 -07:00
|
|
|
bool copy( const Glib::ustring & src_part_path,
|
|
|
|
const Glib::ustring & dest_part_path,
|
|
|
|
OperationDetail & operationdetail ) ;
|
|
|
|
bool check_repair( const Partition & partition, OperationDetail & operationdetail ) ;
|
2012-07-25 14:05:33 -06:00
|
|
|
bool remove( const Partition & partition, OperationDetail & operationdetail ) ;
|
Query unallocated space for unmounted file systems (#499202)
Update file system specific implementations to set the size and free
space, thus allowing the unallocated space in the partition to be
calculated, for the following unmounted file systems:
btrfs, ext2, ext3, ext4, fat16, fat32, jfs, nilfs2, ntfs, reiserfs,
reiser4, xfs
Bug #499202 - gparted does not see the difference if partition size
differs from filesystem size
2012-01-10 08:19:01 -07:00
|
|
|
|
|
|
|
private:
|
2012-07-07 05:23:01 -06:00
|
|
|
static Byte_Value btrfs_size_to_num( Glib::ustring str, Byte_Value ptn_bytes, bool scale_up ) ;
|
|
|
|
static gdouble btrfs_size_max_delta( Glib::ustring str ) ;
|
|
|
|
static gdouble btrfs_size_to_gdouble( Glib::ustring str ) ;
|
2010-01-02 04:11:50 -07:00
|
|
|
};
|
|
|
|
} //GParted
|
|
|
|
|
|
|
|
#endif //BTRFS_H_
|