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_FILESYSTEM_H
|
|
|
|
#define GPARTED_FILESYSTEM_H
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2006-01-19 12:15:15 -07:00
|
|
|
#include "../include/Operation.h"
|
2013-02-21 17:57:33 -07:00
|
|
|
#include "../include/PipeCapture.h"
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2004-12-14 15:49:44 -07:00
|
|
|
#include <fstream>
|
2005-12-14 08:15:51 -07:00
|
|
|
#include <sys/stat.h>
|
2004-11-17 06:00:25 -07:00
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
Refactor flags in method FileSystem::execute_command() (#754684)
Change the two optional boolean parameters into a single optional flags
parameter which uses symbolically defined names. Makes reading the
execute_command() calls much easier to understand. (Implemented as bit
field using the same technique as used for Glib::SpawnFlags [1]).
This changes the calls thus:
execute_command(cmd, od) -> (cmd, od)
execute_command(cmd, od, false) -> (cmd, od, EXEC_NONE) // [2]
execute_command(cmd, od, true ) -> (cmd, od, EXEC_CHECK_STATUS)
execute_command(cmd, od, false, true) -> (cmd, od, EXEC_CANCEL_SAFE)
execute_command(cmd, od, true , true) ->
(cmd, od, EXEC_CHECK_STATUS|EXEC_CANCEL_SAFE)
[1] SpawnFlags bitwise operators in
/usr/include/glibmm-2.4/glibmm/spawn.h.
[2] False and EXEC_NONE are the default values for the optional third
parameter before and after this change respectively and both mean
the same. This is being used in btrfs::resize() and being kept for
now despite it being the default.
Bug 754684 - Updates to FileSystem:: and Utils::execute_command()
functions
2015-08-29 08:15:24 -06:00
|
|
|
enum ExecFlags
|
|
|
|
{
|
|
|
|
EXEC_NONE = 1 << 0,
|
Time and check nearly all file system action commands (#754684)
There has been an undocumented rule that external commands displayed in
the operation details, as part of file system manipulations, only get a
time and check mark displayed when multiple commands are needed, and not
otherwise. (GParted checks whether all commands are successful or not
regardless of whether a check mark is displayed in the operation details
or not).
EXCEPTION 1: btrfs resize
Since the following commit [1] from 2013-02-22, GParted stopped
displaying the timing for the btrfs resize command in the operation
details. It being part of a multi-command sequence to perform the step.
This is because FileSystem::execute_command() since the commit can only
check the exit status for zero / non-zero while timing and checking the
command status but btrfs resize needs to consider some non-zero statuses
as successful.
[1] 52a2a9b00a32996921ace055e71d0e09fb33c5fe
Reduce threading (#685740)
EXCEPTION 2: ext2/3/4 move and copy using e2image
When use of e2image was added [2] the single command steps were timed
and check.
[2] 86111fe12a26d23d9fc2a9e2d19281290ecaf985
Use e2image to move/copy ext[234] file systems (#721516)
EXCEPTION 3: fat16/32 write label and UUID
Uses Utils::execute_command() rather than FileSystem::execute_command()
so can be separately changed. See the following commit for resolution
of the final commands not yet timed and check mark displayed.
CHANGE:
Lets make a simpler rule of always displaying the time and a check mark
for all external commands displayed in the operation details. However
this makes several of the other single command actions need special exit
status handling because zero success, non-zero failure is not correct
for every case. Specifically affects resizing of reiserfs and check
repair of ext2/3/4, fat16/32, jfs and reiserfs.
After this change all external commands run as file system actions must
follow one of these two patterns of using the EXEC_CHECK_STATUS flag or
separately calling FileSystem::set_status() to register success or
failure of the command:
exit_status = execute_command(cmd, od, EXEC_CHECK_STATUS...);
or:
exit_status = execute_command(cmd, od, ...);
bool success = (exit_status == 0 || exit_status == OTHER_SUCCESS_VALUE...);
set_status(od, success );
Bug 754684 - Updates to FileSystem:: and Utils::execute_command()
functions
2015-09-05 02:31:16 -06:00
|
|
|
EXEC_CHECK_STATUS = 1 << 1, // Set the status of the command in the operation
|
|
|
|
// details based on the exit status being zero or
|
|
|
|
// non-zero. Must either use this flag when calling
|
|
|
|
// ::execute_command() or call ::set_status()
|
|
|
|
// afterwards.
|
Refactor flags in method FileSystem::execute_command() (#754684)
Change the two optional boolean parameters into a single optional flags
parameter which uses symbolically defined names. Makes reading the
execute_command() calls much easier to understand. (Implemented as bit
field using the same technique as used for Glib::SpawnFlags [1]).
This changes the calls thus:
execute_command(cmd, od) -> (cmd, od)
execute_command(cmd, od, false) -> (cmd, od, EXEC_NONE) // [2]
execute_command(cmd, od, true ) -> (cmd, od, EXEC_CHECK_STATUS)
execute_command(cmd, od, false, true) -> (cmd, od, EXEC_CANCEL_SAFE)
execute_command(cmd, od, true , true) ->
(cmd, od, EXEC_CHECK_STATUS|EXEC_CANCEL_SAFE)
[1] SpawnFlags bitwise operators in
/usr/include/glibmm-2.4/glibmm/spawn.h.
[2] False and EXEC_NONE are the default values for the optional third
parameter before and after this change respectively and both mean
the same. This is being used in btrfs::resize() and being kept for
now despite it being the default.
Bug 754684 - Updates to FileSystem:: and Utils::execute_command()
functions
2015-08-29 08:15:24 -06:00
|
|
|
EXEC_CANCEL_SAFE = 1 << 2
|
|
|
|
};
|
|
|
|
|
|
|
|
inline ExecFlags operator|( ExecFlags lhs, ExecFlags rhs )
|
|
|
|
{ return static_cast<ExecFlags>( static_cast<unsigned>(lhs) | static_cast<unsigned>(rhs) ); }
|
|
|
|
|
|
|
|
inline ExecFlags operator&( ExecFlags lhs, ExecFlags rhs )
|
|
|
|
{ return static_cast<ExecFlags>( static_cast<unsigned>(lhs) & static_cast<unsigned>(rhs) ); }
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
class FileSystem
|
|
|
|
{
|
|
|
|
public:
|
2005-12-24 16:55:54 -07:00
|
|
|
FileSystem() ;
|
|
|
|
virtual ~FileSystem() {}
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2015-05-16 02:38:22 -06:00
|
|
|
virtual const Glib::ustring get_custom_text( CUSTOM_TEXT ttype, int index = 0 ) const;
|
2012-01-27 11:14:53 -07:00
|
|
|
static const Glib::ustring get_generic_text( CUSTOM_TEXT ttype, int index = 0 ) ;
|
|
|
|
|
2005-12-24 16:55:54 -07:00
|
|
|
virtual FS get_filesystem_support() = 0 ;
|
2014-02-14 18:26:32 -07:00
|
|
|
virtual bool is_busy( const Glib::ustring & path ) { return false ; } ;
|
2013-01-30 18:07:44 -07:00
|
|
|
virtual void set_used_sectors( Partition & partition ) {};
|
|
|
|
virtual void read_label( Partition & partition ) {};
|
|
|
|
virtual bool write_label( const Partition & partition, OperationDetail & operationdetail ) { return false; };
|
|
|
|
virtual void read_uuid( Partition & partition ) {};
|
|
|
|
virtual bool write_uuid( const Partition & partition, OperationDetail & operationdetail ) { return false; };
|
|
|
|
virtual bool create( const Partition & new_partition, OperationDetail & operationdetail ) { return false; };
|
2006-08-20 03:33:54 -06:00
|
|
|
virtual bool resize( const Partition & partition_new,
|
|
|
|
OperationDetail & operationdetail,
|
2013-01-30 18:07:44 -07:00
|
|
|
bool fill_partition = false ) { return false; };
|
2010-10-19 13:35:53 -06:00
|
|
|
virtual bool move( const Partition & partition_new
|
|
|
|
, const Partition & partition_old
|
|
|
|
, OperationDetail & operationdetail
|
2013-01-30 18:07:44 -07:00
|
|
|
) { return false; };
|
2013-01-30 19:35:52 -07:00
|
|
|
virtual bool copy( const Partition & src_part,
|
|
|
|
Partition & dest_part,
|
2013-01-30 18:07:44 -07:00
|
|
|
OperationDetail & operationdetail ) { return false; };
|
|
|
|
virtual bool check_repair( const Partition & partition, OperationDetail & operationdetail ) { return false; };
|
|
|
|
virtual bool remove( const Partition & partition, OperationDetail & operationdetail ) { return true; };
|
2013-02-21 17:57:33 -07:00
|
|
|
bool success;
|
2004-11-17 06:00:25 -07:00
|
|
|
protected:
|
2013-01-20 19:50:55 -07:00
|
|
|
int execute_command( const Glib::ustring & command, OperationDetail & operationdetail,
|
Refactor flags in method FileSystem::execute_command() (#754684)
Change the two optional boolean parameters into a single optional flags
parameter which uses symbolically defined names. Makes reading the
execute_command() calls much easier to understand. (Implemented as bit
field using the same technique as used for Glib::SpawnFlags [1]).
This changes the calls thus:
execute_command(cmd, od) -> (cmd, od)
execute_command(cmd, od, false) -> (cmd, od, EXEC_NONE) // [2]
execute_command(cmd, od, true ) -> (cmd, od, EXEC_CHECK_STATUS)
execute_command(cmd, od, false, true) -> (cmd, od, EXEC_CANCEL_SAFE)
execute_command(cmd, od, true , true) ->
(cmd, od, EXEC_CHECK_STATUS|EXEC_CANCEL_SAFE)
[1] SpawnFlags bitwise operators in
/usr/include/glibmm-2.4/glibmm/spawn.h.
[2] False and EXEC_NONE are the default values for the optional third
parameter before and after this change respectively and both mean
the same. This is being used in btrfs::resize() and being kept for
now despite it being the default.
Bug 754684 - Updates to FileSystem:: and Utils::execute_command()
functions
2015-08-29 08:15:24 -06:00
|
|
|
ExecFlags flags = EXEC_NONE );
|
Time and check nearly all file system action commands (#754684)
There has been an undocumented rule that external commands displayed in
the operation details, as part of file system manipulations, only get a
time and check mark displayed when multiple commands are needed, and not
otherwise. (GParted checks whether all commands are successful or not
regardless of whether a check mark is displayed in the operation details
or not).
EXCEPTION 1: btrfs resize
Since the following commit [1] from 2013-02-22, GParted stopped
displaying the timing for the btrfs resize command in the operation
details. It being part of a multi-command sequence to perform the step.
This is because FileSystem::execute_command() since the commit can only
check the exit status for zero / non-zero while timing and checking the
command status but btrfs resize needs to consider some non-zero statuses
as successful.
[1] 52a2a9b00a32996921ace055e71d0e09fb33c5fe
Reduce threading (#685740)
EXCEPTION 2: ext2/3/4 move and copy using e2image
When use of e2image was added [2] the single command steps were timed
and check.
[2] 86111fe12a26d23d9fc2a9e2d19281290ecaf985
Use e2image to move/copy ext[234] file systems (#721516)
EXCEPTION 3: fat16/32 write label and UUID
Uses Utils::execute_command() rather than FileSystem::execute_command()
so can be separately changed. See the following commit for resolution
of the final commands not yet timed and check mark displayed.
CHANGE:
Lets make a simpler rule of always displaying the time and a check mark
for all external commands displayed in the operation details. However
this makes several of the other single command actions need special exit
status handling because zero success, non-zero failure is not correct
for every case. Specifically affects resizing of reiserfs and check
repair of ext2/3/4, fat16/32, jfs and reiserfs.
After this change all external commands run as file system actions must
follow one of these two patterns of using the EXEC_CHECK_STATUS flag or
separately calling FileSystem::set_status() to register success or
failure of the command:
exit_status = execute_command(cmd, od, EXEC_CHECK_STATUS...);
or:
exit_status = execute_command(cmd, od, ...);
bool success = (exit_status == 0 || exit_status == OTHER_SUCCESS_VALUE...);
set_status(od, success );
Bug 754684 - Updates to FileSystem:: and Utils::execute_command()
functions
2015-09-05 02:31:16 -06:00
|
|
|
void set_status( OperationDetail & operationdetail, bool success );
|
2013-02-21 17:57:33 -07:00
|
|
|
void execute_command_eof();
|
2011-12-27 04:05:11 -07:00
|
|
|
Glib::ustring mk_temp_dir( const Glib::ustring & infix, OperationDetail & operationdetail ) ;
|
|
|
|
void rm_temp_dir( const Glib::ustring dir_name, OperationDetail & operationdetail ) ;
|
2005-12-24 16:55:54 -07:00
|
|
|
|
2006-01-22 06:23:58 -07:00
|
|
|
//those are used in several places..
|
2006-02-15 09:05:26 -07:00
|
|
|
Glib::ustring output, error ;
|
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
|
|
|
Sector T, N, S ; //File system [T]otal num of blocks, [N]um of free (or used) blocks, block [S]ize
|
2006-02-25 05:25:18 -07:00
|
|
|
int exit_status ;
|
2005-12-24 16:55:54 -07:00
|
|
|
unsigned int index ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
|
|
|
private:
|
2013-02-21 17:57:33 -07:00
|
|
|
void store_exit_status( GPid pid, int status );
|
|
|
|
bool running;
|
|
|
|
int pipecount;
|
2004-11-17 06:00:25 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} //GParted
|
|
|
|
|
2013-05-27 05:20:16 -06:00
|
|
|
#endif /* GPARTED_FILESYSTEM_H */
|