[gparted] Display messages for encrypted file systems (#760080)
- From: Curtis Gedak <gedakc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gparted] Display messages for encrypted file systems (#760080)
- Date: Sat, 30 Jan 2016 17:43:00 +0000 (UTC)
commit 2d910494d3ef7d401fd4b9934bb3e4eb75d4510a
Author: Mike Fleetwood <mike fleetwood googlemail com>
Date: Thu Dec 31 16:32:08 2015 +0000
Display messages for encrypted file systems (#760080)
At the moment any messages for an encrypted file system aren't shown,
only messages from the outer PartitionLUKS object are shown. Also in
Win_GParted::activate_paste() the selected Partition object, possibly
a derived PartitionLUKS, is cloned and the messages cleared.
Therefore a set of accessor methods must be provided to query and modify
partition messages. Messages will be stored in the Partition object to
which they are added and retrieved from all. So in the case of a
derived PartitionLUKS they will be retrieved from the messages vector of
the PartitionLUKS object itself and the messages vector for the
encrypted file system it contains.
To replace code like this in GParted_Core:
partition_temp->messages = messages;
We might naturally provide a set_messages() method which assigns the
messages vector and is used like this:
partition_temp->set_messages( messages );
However on a PartitionLUKS object what should set_messages() do? By the
name it will replace any existing messages in the PartitionLUKS object
itself, but what should happen to the messages for the contained
encrypted Partition object? Should they be cleared or left alone?
Rather than implement set_messages() with unclear semantics implement
append_messages(), which in the PartitionLUKS object case will clearly
leave any messages for the contained encrypted Partition object alone.
Append_messages() is then used to add messages as the Partition or
PartitionLUKS objects when populating the data in GParted_Core.
Bug 760080 - Implement read-only LUKS support
include/Partition.h | 17 ++++++++++++++++-
include/PartitionLUKS.h | 3 +++
src/Dialog_Partition_Info.cc | 33 +++++++++++++++++----------------
src/GParted_Core.cc | 26 +++++++++++---------------
src/PartitionLUKS.cc | 25 +++++++++++++++++++++++++
src/TreeView_Detail.cc | 2 +-
src/Win_GParted.cc | 4 ++--
src/btrfs.cc | 12 ++++++------
src/ext2.cc | 14 +++++++-------
src/fat16.cc | 12 ++++++------
src/hfs.cc | 4 ++--
src/hfsplus.cc | 4 ++--
src/jfs.cc | 12 ++++++------
src/linux_swap.cc | 10 +++++-----
src/lvm2_pv.cc | 6 +-----
src/nilfs2.cc | 12 ++++++------
src/ntfs.cc | 8 ++++----
src/reiser4.cc | 12 ++++++------
src/reiserfs.cc | 12 ++++++------
src/xfs.cc | 12 ++++++------
20 files changed, 138 insertions(+), 102 deletions(-)
---
diff --git a/include/Partition.h b/include/Partition.h
index e1d79f2..25e80b1 100644
--- a/include/Partition.h
+++ b/include/Partition.h
@@ -116,6 +116,21 @@ public:
virtual Glib::ustring get_filesystem_label() const;
void set_filesystem_label( const Glib::ustring & filesystem_label );
+ // Message accessors. Messages are stored locally and accessed globally.
+ // Stored locally means the messages are stored in the Partition object to which
+ // they are added so push_back_messages() and append_messages() are non-virtual.
+ // Accessed globally means that in the case of derived objects which are composed
+ // of more that one Partition object, i.e. PartitionLUKS, the messages have to be
+ // accessible from all copies within the derived object hierarchy. Hence
+ // have_messages(), get_messages() and clear_messages() are virtual to allow for
+ // overridden implementations.
+ virtual bool have_messages() const { return ! messages.empty(); };
+ virtual std::vector<Glib::ustring> get_messages() const { return messages; };
+ virtual void clear_messages() { messages.clear(); };
+ void push_back_message( Glib::ustring msg ) { messages.push_back( msg ); };
+ void append_messages( const std::vector<Glib::ustring> msgs )
+ { messages.insert( messages.end(), msgs.begin(), msgs.end() ); }
+
bool operator==( const Partition & partition ) const ;
bool operator!=( const Partition & partition ) const ;
@@ -137,7 +152,6 @@ public:
Sector significant_threshold; //Threshold from intrinsic to significant unallocated sectors
bool inside_extended;
bool busy;
- std::vector<Glib::ustring> messages ;
std::vector<Glib::ustring> flags ;
PartitionVector logicals;
@@ -161,6 +175,7 @@ private:
std::vector<Glib::ustring> mountpoints ;
bool have_filesystem_label;
Glib::ustring filesystem_label;
+ std::vector<Glib::ustring> messages;
};
}//GParted
diff --git a/include/PartitionLUKS.h b/include/PartitionLUKS.h
index ec1b6fd..f12f38a 100644
--- a/include/PartitionLUKS.h
+++ b/include/PartitionLUKS.h
@@ -40,6 +40,9 @@ public:
virtual Sector get_sectors_unused() const;
virtual Sector get_sectors_unallocated() const;
virtual Glib::ustring get_filesystem_label() const;
+ virtual bool have_messages() const;
+ virtual std::vector<Glib::ustring> get_messages() const;
+ virtual void clear_messages();
private:
Partition encrypted;
diff --git a/src/Dialog_Partition_Info.cc b/src/Dialog_Partition_Info.cc
index 0f42076..a0a5c56 100644
--- a/src/Dialog_Partition_Info.cc
+++ b/src/Dialog_Partition_Info.cc
@@ -40,7 +40,7 @@ Dialog_Partition_Info::Dialog_Partition_Info( const Partition & partition ) : pa
// Set minimum dialog height so it fits on an 800x600 screen without too much
// whitespace (~500 px max for GNOME desktop). Allow extra space if have any
// messages or for LVM2 PV or LUKS encryption.
- if ( partition.messages.size() > 0 ||
+ if ( partition.have_messages() ||
partition.filesystem == FS_LVM2_PV ||
partition.filesystem == FS_LUKS )
this ->set_size_request( -1, 460) ;
@@ -73,7 +73,7 @@ Dialog_Partition_Info::Dialog_Partition_Info( const Partition & partition ) : pa
Display_Info() ;
//display messages (if any)
- if ( partition .messages .size() > 0 )
+ if ( partition.have_messages() )
{
frame = manage( new Gtk::Frame() );
@@ -90,29 +90,30 @@ Dialog_Partition_Info::Dialog_Partition_Info( const Partition & partition ) : pa
frame ->set_label_widget( *hbox ) ;
- //Merge all messages for display so that they can be selected together.
- // Use a blank line between individual messages so that each message can be
- // distinguished. Therefore each message should have been formatted as one
- // or more non-blank lines, with an optional trailing new line. This is
- // true of GParted internal messages and probably all external messages and
- // errors from libparted and executed commands too.
- Glib::ustring all_messages ;
- for ( unsigned int t = 0; t < partition .messages .size(); t ++ )
+ // Concatenate all messages for display so that they can be selected
+ // together. Use a blank line between individual messages so that each
+ // message can be distinguished. Therefore each message should have been
+ // formatted as one or more non-blank lines, with an optional trailing new
+ // line. This is true of GParted internal messages and probably all
+ // external messages and errors from libparted and executed commands too.
+ std::vector<Glib::ustring> messages = partition.get_messages();
+ Glib::ustring concatenated_messages;
+ for ( unsigned int i = 0; i < messages.size(); i ++ )
{
- if ( all_messages .size() > 0 )
- all_messages += "\n\n" ;
+ if ( concatenated_messages.size() > 0 )
+ concatenated_messages += "\n\n";
- Glib::ustring::size_type take = partition .messages[ t ] .size() ;
+ Glib::ustring::size_type take = messages[i].size();
if ( take > 0 )
{
- if ( partition .messages[ t ][ take-1 ] == '\n' )
+ if ( messages[i][take-1] == '\n' )
take -- ; //Skip optional trailing new line
- all_messages += "<i>" + partition .messages[ t ] .substr( 0, take ) + "</i>" ;
+ concatenated_messages += "<i>" + messages[i].substr( 0, take ) + "</i>";
}
}
Gtk::VBox *vbox( manage( new Gtk::VBox() ) ) ;
vbox ->set_border_width( 5 ) ;
- vbox ->pack_start( *Utils::mk_label( all_messages, true, true, true ), Gtk::PACK_SHRINK ) ;
+ vbox->pack_start( *Utils::mk_label( concatenated_messages, true, true, true ),
Gtk::PACK_SHRINK );
frame ->add( *vbox ) ;
info_msg_vbox .pack_start( *frame, Gtk::PACK_EXPAND_WIDGET ) ;
diff --git a/src/GParted_Core.cc b/src/GParted_Core.cc
index f4b516e..df04621 100644
--- a/src/GParted_Core.cc
+++ b/src/GParted_Core.cc
@@ -353,7 +353,7 @@ void GParted_Core::set_devices_thread( std::vector<Device> * pdevices )
false,
false );
// Place unknown file system message in this partition.
- partition_temp->messages = messages;
+ partition_temp->append_messages( messages );
temp_device.partitions.push_back_adopt( partition_temp );
}
// Unrecognised, unpartitioned drive.
@@ -375,9 +375,7 @@ void GParted_Core::set_devices_thread( std::vector<Device> * pdevices )
temp_device.sector_size,
false );
// Place libparted messages in this unallocated partition
- partition_temp->messages.insert( partition_temp->messages.end(),
- libparted_messages.begin(),
- libparted_messages.end() );
+ partition_temp->append_messages( libparted_messages );
libparted_messages.clear();
temp_device.partitions.push_back_adopt( partition_temp );
}
@@ -1298,7 +1296,7 @@ void GParted_Core::set_device_partitions( Device & device, PedDevice* lp_device,
device.sector_size,
( lp_partition->type == PED_PARTITION_LOGICAL ),
partition_is_busy );
- partition_temp->messages = detect_messages;
+ partition_temp->append_messages( detect_messages );
partition_temp->add_paths( pp_info.get_alternate_paths(
partition_temp->get_path() ) );
set_flags( *partition_temp, lp_partition );
@@ -1347,9 +1345,7 @@ void GParted_Core::set_device_partitions( Device & device, PedDevice* lp_device,
if ( device.partition_naming_supported() )
partition_temp->name = Glib::ustring( ped_partition_get_name( lp_partition )
);
- partition_temp->messages.insert( partition_temp->messages.end(),
- libparted_messages.begin(),
- libparted_messages.end() );
+ partition_temp->append_messages( libparted_messages );
if ( ! partition_temp->inside_extended )
device.partitions.push_back_adopt( partition_temp );
@@ -1414,7 +1410,7 @@ void GParted_Core::set_device_one_partition( Device & device, PedDevice * lp_dev
false,
partition_is_busy );
- partition_temp->messages = messages;
+ partition_temp->append_messages( messages );
partition_temp->add_paths( pp_info.get_alternate_paths( partition_temp->get_path() ) );
if ( fstype == FS_LUKS )
@@ -1465,7 +1461,7 @@ void GParted_Core::set_luks_partition( PartitionLUKS & partition )
partition.sector_size,
false,
fs_busy );
- encrypted.messages = detect_messages;
+ encrypted.append_messages( detect_messages );
Proc_Partitions_Info pp_info; // Use cache of proc partitions information
encrypted.add_paths( pp_info.get_alternate_paths( encrypted.get_path() ) );
@@ -1869,7 +1865,7 @@ void GParted_Core::set_mountpoints( Partition & partition )
}
if ( partition.get_mountpoints().empty() )
- partition.messages.push_back( _("Unable to find mount point") );
+ partition.push_back_message( _("Unable to find mount point") );
}
else // Not busy file system
{
@@ -1996,7 +1992,7 @@ void GParted_Core::set_used_sectors( Partition & partition, PedDisk* lp_disk )
Utils::get_filesystem_software(
partition.filesystem )
);
}
- partition.messages.push_back( temp );
+ partition.push_back_message( temp );
}
else if ( ( unallocated = partition.get_sectors_unallocated() ) > 0 )
{
@@ -2015,7 +2011,7 @@ void GParted_Core::set_used_sectors( Partition & partition, PedDisk* lp_disk )
temp += "\n";
temp += _("Partition --> Check.");
}
- partition.messages.push_back( temp );
+ partition.push_back_message( temp );
}
if ( filesystem_resize_disallowed( partition ) )
@@ -2023,7 +2019,7 @@ void GParted_Core::set_used_sectors( Partition & partition, PedDisk* lp_disk )
Glib::ustring temp = get_filesystem_object( partition.filesystem )
->get_custom_text( CTEXT_RESIZE_DISALLOWED_WARNING );
if ( ! temp.empty() )
- partition.messages.push_back( temp );
+ partition.push_back_message( temp );
}
}
}
@@ -2040,7 +2036,7 @@ void GParted_Core::mounted_set_used_sectors( Partition & partition )
partition .set_sector_usage( fs_size / partition .sector_size,
fs_free / partition .sector_size ) ;
else
- partition .messages .push_back( error_message ) ;
+ partition.push_back_message( error_message );
}
}
diff --git a/src/PartitionLUKS.cc b/src/PartitionLUKS.cc
index 71312db..fc4c35c 100644
--- a/src/PartitionLUKS.cc
+++ b/src/PartitionLUKS.cc
@@ -149,4 +149,29 @@ Glib::ustring PartitionLUKS::get_filesystem_label() const
return "";
}
+bool PartitionLUKS::have_messages() const
+{
+ if ( busy )
+ return Partition::have_messages() || encrypted.have_messages();
+ return Partition::have_messages();
+}
+
+std::vector<Glib::ustring> PartitionLUKS::get_messages() const
+{
+ if ( busy )
+ {
+ std::vector<Glib::ustring> msgs = Partition::get_messages();
+ std::vector<Glib::ustring> msgs2 = encrypted.get_messages();
+ msgs.insert( msgs.end(), msgs2.begin(), msgs2.end() );
+ return msgs;
+ }
+ return Partition::get_messages();
+}
+
+void PartitionLUKS::clear_messages()
+{
+ Partition::clear_messages();
+ encrypted.clear_messages();
+}
+
} //GParted
diff --git a/src/TreeView_Detail.cc b/src/TreeView_Detail.cc
index e713106..24debb2 100644
--- a/src/TreeView_Detail.cc
+++ b/src/TreeView_Detail.cc
@@ -167,7 +167,7 @@ void TreeView_Detail::create_row( const Gtk::TreeRow & treerow, const Partition
treerow[ treeview_detail_columns .icon1 ] =
render_icon( Gtk::Stock::DIALOG_AUTHENTICATION, Gtk::ICON_SIZE_BUTTON );
- if ( partition .messages .size() > 0 )
+ if ( partition.have_messages() > 0 )
{
if ( ! static_cast< Glib::RefPtr<Gdk::Pixbuf> >( treerow[ treeview_detail_columns .icon1 ] )
)
treerow[ treeview_detail_columns .icon1 ] =
diff --git a/src/Win_GParted.cc b/src/Win_GParted.cc
index 2379792..0f183e6 100644
--- a/src/Win_GParted.cc
+++ b/src/Win_GParted.cc
@@ -1836,7 +1836,7 @@ void Win_GParted::activate_paste()
// We don't want the messages, mount points or name of the source
// partition for the new partition being created.
Partition * part_temp = copied_partition->clone();
- part_temp->messages.clear();
+ part_temp->clear_messages();
part_temp->clear_mountpoints();
part_temp->name.clear();
@@ -1897,7 +1897,7 @@ void Win_GParted::activate_paste()
new_size,
new_size - copied_partition->sectors_used );
}
- partition_new->messages.clear();
+ partition_new->clear_messages();
Operation * operation = new OperationCopy( devices[current_device],
*selected_partition_ptr,
diff --git a/src/btrfs.cc b/src/btrfs.cc
index 80e2185..9c8d458 100644
--- a/src/btrfs.cc
+++ b/src/btrfs.cc
@@ -285,10 +285,10 @@ void btrfs::set_used_sectors( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -402,10 +402,10 @@ void btrfs::read_label( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
}
@@ -425,10 +425,10 @@ void btrfs::read_uuid( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
diff --git a/src/ext2.cc b/src/ext2.cc
index 5c4ca69..0b74341 100644
--- a/src/ext2.cc
+++ b/src/ext2.cc
@@ -146,7 +146,7 @@ void ext2::set_used_sectors( Partition & partition )
else
{
N = -1 ;
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
else
@@ -166,10 +166,10 @@ void ext2::set_used_sectors( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -182,10 +182,10 @@ void ext2::read_label( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -205,10 +205,10 @@ void ext2::read_uuid( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
diff --git a/src/fat16.cc b/src/fat16.cc
index c8dcbb1..d02b357 100644
--- a/src/fat16.cc
+++ b/src/fat16.cc
@@ -164,10 +164,10 @@ void fat16::set_used_sectors( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -180,10 +180,10 @@ void fat16::read_label( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -212,10 +212,10 @@ void fat16::read_uuid( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
diff --git a/src/hfs.cc b/src/hfs.cc
index f0f473c..13b3234 100644
--- a/src/hfs.cc
+++ b/src/hfs.cc
@@ -68,10 +68,10 @@ void hfs::read_label( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
diff --git a/src/hfsplus.cc b/src/hfsplus.cc
index 6c643b9..76fccd7 100644
--- a/src/hfsplus.cc
+++ b/src/hfsplus.cc
@@ -66,10 +66,10 @@ void hfsplus::read_label( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
diff --git a/src/jfs.cc b/src/jfs.cc
index 7d9cef9..673483f 100644
--- a/src/jfs.cc
+++ b/src/jfs.cc
@@ -106,10 +106,10 @@ void jfs::set_used_sectors( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -122,10 +122,10 @@ void jfs::read_label( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -144,10 +144,10 @@ void jfs::read_uuid( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
diff --git a/src/linux_swap.cc b/src/linux_swap.cc
index 0e9dadc..f711dc8 100644
--- a/src/linux_swap.cc
+++ b/src/linux_swap.cc
@@ -93,7 +93,7 @@ void linux_swap::set_used_sectors( Partition & partition )
}
else
{
- partition .messages .push_back( "open(\"/proc/swaps\", O_RDONLY): " + Glib::strerror(
errno ) ) ;
+ partition.push_back_message( "open(\"/proc/swaps\", O_RDONLY): " + Glib::strerror(
errno ) );
}
if ( N > -1 )
{
@@ -123,10 +123,10 @@ void linux_swap::read_label( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -145,10 +145,10 @@ void linux_swap::read_uuid( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
diff --git a/src/lvm2_pv.cc b/src/lvm2_pv.cc
index e58f34d..5b8d9bc 100644
--- a/src/lvm2_pv.cc
+++ b/src/lvm2_pv.cc
@@ -89,11 +89,7 @@ void lvm2_pv::set_used_sectors( Partition & partition )
}
std::vector<Glib::ustring> error_messages = LVM2_PV_Info::get_error_messages( partition.get_path() );
- if ( ! error_messages .empty() )
- {
- for ( unsigned int i = 0 ; i < error_messages .size() ; i ++ )
- partition .messages .push_back( error_messages [ i ] ) ;
- }
+ partition.append_messages( error_messages );
}
bool lvm2_pv::create( const Partition & new_partition, OperationDetail & operationdetail )
diff --git a/src/nilfs2.cc b/src/nilfs2.cc
index 8fea2e1..0baacda 100644
--- a/src/nilfs2.cc
+++ b/src/nilfs2.cc
@@ -106,10 +106,10 @@ void nilfs2::set_used_sectors( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -126,10 +126,10 @@ void nilfs2::read_label( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -149,10 +149,10 @@ void nilfs2::read_uuid( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
diff --git a/src/ntfs.cc b/src/ntfs.cc
index eac75eb..1fb4c4a 100644
--- a/src/ntfs.cc
+++ b/src/ntfs.cc
@@ -148,10 +148,10 @@ void ntfs::set_used_sectors( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -164,10 +164,10 @@ void ntfs::read_label( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
diff --git a/src/reiser4.cc b/src/reiser4.cc
index 5dfbdb4..3f4b3e1 100644
--- a/src/reiser4.cc
+++ b/src/reiser4.cc
@@ -89,10 +89,10 @@ void reiser4::set_used_sectors( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -113,10 +113,10 @@ void reiser4::read_label( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -129,10 +129,10 @@ void reiser4::read_uuid( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
diff --git a/src/reiserfs.cc b/src/reiserfs.cc
index 6c46613..96466fc 100644
--- a/src/reiserfs.cc
+++ b/src/reiserfs.cc
@@ -106,10 +106,10 @@ void reiserfs::set_used_sectors( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -122,10 +122,10 @@ void reiserfs::read_label( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -145,10 +145,10 @@ void reiserfs::read_uuid( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
diff --git a/src/xfs.cc b/src/xfs.cc
index b261993..9ccf675 100644
--- a/src/xfs.cc
+++ b/src/xfs.cc
@@ -116,10 +116,10 @@ void xfs::set_used_sectors( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -132,10 +132,10 @@ void xfs::read_label( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
@@ -158,10 +158,10 @@ void xfs::read_uuid( Partition & partition )
else
{
if ( ! output .empty() )
- partition .messages .push_back( output ) ;
+ partition.push_back_message( output );
if ( ! error .empty() )
- partition .messages .push_back( error ) ;
+ partition.push_back_message( error );
}
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]