2005-12-13 14:30:13 -07:00
|
|
|
/* Copyright (C) 2004 Bart 'plors' Hakvoort
|
|
|
|
*
|
|
|
|
* 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/Utils.h"
|
|
|
|
|
|
|
|
#include <sstream>
|
2006-01-04 11:54:46 -07:00
|
|
|
#include <iomanip>
|
2005-12-14 07:47:58 -07:00
|
|
|
|
2005-12-13 14:30:13 -07:00
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
2006-03-28 05:40:29 -07:00
|
|
|
Sector Utils::round( double double_value )
|
2005-12-13 14:30:13 -07:00
|
|
|
{
|
2006-01-21 17:07:27 -07:00
|
|
|
return static_cast<Sector>( double_value + 0.5 ) ;
|
2005-12-13 14:30:13 -07:00
|
|
|
}
|
|
|
|
|
2006-03-14 14:37:47 -07:00
|
|
|
Gtk::Label * Utils::mk_label( const Glib::ustring & text,
|
|
|
|
bool use_markup,
|
2006-03-28 05:40:29 -07:00
|
|
|
Gtk::AlignmentEnum x_align,
|
|
|
|
Gtk::AlignmentEnum y_align,
|
2006-03-14 14:37:47 -07:00
|
|
|
bool wrap,
|
|
|
|
const Glib::ustring & text_color )
|
2005-12-13 14:30:13 -07:00
|
|
|
{
|
2006-03-28 05:40:29 -07:00
|
|
|
|
|
|
|
Gtk::Label * label = manage( new Gtk::Label( text, x_align, y_align ) ) ;
|
2005-12-13 14:30:13 -07:00
|
|
|
|
|
|
|
label ->set_use_markup( use_markup ) ;
|
|
|
|
label ->set_line_wrap( wrap ) ;
|
|
|
|
|
|
|
|
if ( text_color != "black" )
|
|
|
|
{
|
|
|
|
Gdk::Color color( text_color ) ;
|
2006-03-20 03:12:55 -07:00
|
|
|
label ->modify_fg( label ->get_state(), color ) ;
|
2005-12-13 14:30:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return label ;
|
|
|
|
}
|
|
|
|
|
|
|
|
Glib::ustring Utils::num_to_str( Sector number, bool use_C_locale )
|
|
|
|
{
|
|
|
|
std::stringstream ss ;
|
|
|
|
//ss.imbue( std::locale( use_C_locale ? "C" : "" ) ) ; see #157871
|
|
|
|
ss << number ;
|
2006-03-20 03:12:55 -07:00
|
|
|
return ss .str() ;
|
2005-12-13 14:30:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//use http://developer.gnome.org/projects/gup/hig/2.0/design.html#Palette as a starting point..
|
2006-03-28 05:40:29 -07:00
|
|
|
Glib::ustring Utils::get_color( FILESYSTEM filesystem )
|
2005-12-13 14:30:13 -07:00
|
|
|
{
|
|
|
|
switch( filesystem )
|
|
|
|
{
|
2005-12-15 08:10:34 -07:00
|
|
|
case FS_UNALLOCATED : return "#A9A9A9" ;
|
|
|
|
case FS_UNKNOWN : return "#000000" ;
|
|
|
|
case FS_UNFORMATTED : return "#000000" ;
|
2005-12-13 14:30:13 -07:00
|
|
|
case FS_EXTENDED : return "#7DFCFE" ;
|
|
|
|
case FS_EXT2 : return "#9DB8D2" ;
|
|
|
|
case FS_EXT3 : return "#7590AE" ;
|
|
|
|
case FS_LINUX_SWAP : return "#C1665A" ;
|
2005-12-15 08:10:34 -07:00
|
|
|
case FS_FAT16 : return "#00FF00" ;
|
2005-12-13 14:30:13 -07:00
|
|
|
case FS_FAT32 : return "#18D918" ;
|
|
|
|
case FS_NTFS : return "#42E5AC" ;
|
|
|
|
case FS_REISERFS : return "#ADA7C8" ;
|
|
|
|
case FS_REISER4 : return "#887FA3" ;
|
|
|
|
case FS_XFS : return "#EED680" ;
|
|
|
|
case FS_JFS : return "#E0C39E" ;
|
|
|
|
case FS_HFS : return "#E0B6AF" ;
|
|
|
|
case FS_HFSPLUS : return "#C0A39E" ;
|
|
|
|
case FS_UFS : return "#D1940C" ;
|
2005-12-15 08:10:34 -07:00
|
|
|
case FS_USED : return "#F8F8BA" ;
|
|
|
|
case FS_UNUSED : return "#FFFFFF" ;
|
2005-12-13 14:30:13 -07:00
|
|
|
|
2005-12-15 08:10:34 -07:00
|
|
|
default : return "#000000" ;
|
2005-12-13 14:30:13 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-15 08:10:34 -07:00
|
|
|
Glib::RefPtr<Gdk::Pixbuf> Utils::get_color_as_pixbuf( FILESYSTEM filesystem, int width, int height )
|
|
|
|
{
|
|
|
|
Glib::RefPtr<Gdk::Pixbuf> pixbuf = Gdk::Pixbuf::create( Gdk::COLORSPACE_RGB, false, 8, width, height ) ;
|
|
|
|
|
|
|
|
if ( pixbuf )
|
|
|
|
{
|
2006-03-28 05:40:29 -07:00
|
|
|
std::stringstream hex( get_color( filesystem ) .substr( 1 ) + "00" ) ;
|
2005-12-15 08:10:34 -07:00
|
|
|
unsigned long dec ;
|
|
|
|
hex >> std::hex >> dec ;
|
|
|
|
|
|
|
|
pixbuf ->fill( dec ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return pixbuf ;
|
|
|
|
}
|
|
|
|
|
2006-03-28 05:40:29 -07:00
|
|
|
Glib::ustring Utils::get_filesystem_string( FILESYSTEM filesystem )
|
2005-12-13 14:30:13 -07:00
|
|
|
{
|
|
|
|
switch( filesystem )
|
|
|
|
{
|
|
|
|
case FS_UNALLOCATED : return _("unallocated") ;
|
|
|
|
case FS_UNKNOWN : return _("unknown") ;
|
|
|
|
case FS_UNFORMATTED : return _("unformatted") ;
|
|
|
|
case FS_EXTENDED : return "extended" ;
|
|
|
|
case FS_EXT2 : return "ext2" ;
|
|
|
|
case FS_EXT3 : return "ext3" ;
|
|
|
|
case FS_LINUX_SWAP : return "linux-swap" ;
|
|
|
|
case FS_FAT16 : return "fat16" ;
|
|
|
|
case FS_FAT32 : return "fat32" ;
|
|
|
|
case FS_NTFS : return "ntfs" ;
|
|
|
|
case FS_REISERFS : return "reiserfs" ;
|
|
|
|
case FS_REISER4 : return "reiser4" ;
|
|
|
|
case FS_XFS : return "xfs" ;
|
|
|
|
case FS_JFS : return "jfs" ;
|
|
|
|
case FS_HFS : return "hfs" ;
|
|
|
|
case FS_HFSPLUS : return "hfs+" ;
|
|
|
|
case FS_UFS : return "ufs" ;
|
2005-12-15 08:10:34 -07:00
|
|
|
case FS_USED : return _("used") ;
|
|
|
|
case FS_UNUSED : return _("unused") ;
|
2005-12-13 14:30:13 -07:00
|
|
|
|
|
|
|
default : return "" ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-01-04 11:54:46 -07:00
|
|
|
Glib::ustring Utils::format_size( Sector size )
|
|
|
|
{
|
|
|
|
std::stringstream ss ;
|
2006-01-07 08:04:42 -07:00
|
|
|
//ss .imbue( std::locale( "" ) ) ; see #157871
|
2006-01-04 11:54:46 -07:00
|
|
|
ss << std::setiosflags( std::ios::fixed ) << std::setprecision( 2 ) ;
|
2006-02-17 14:18:07 -07:00
|
|
|
|
2006-01-21 17:07:27 -07:00
|
|
|
if ( size < KIBIBYTE )
|
2006-01-04 11:54:46 -07:00
|
|
|
{
|
2006-01-21 17:07:27 -07:00
|
|
|
ss << sector_to_unit( size, UNIT_BYTE ) ;
|
|
|
|
return String::ucompose( _("%1 B"), ss .str() ) ;
|
|
|
|
}
|
|
|
|
else if ( size < MEBIBYTE )
|
|
|
|
{
|
|
|
|
ss << sector_to_unit( size, UNIT_KIB ) ;
|
|
|
|
return String::ucompose( _("%1 KiB"), ss .str() ) ;
|
|
|
|
}
|
|
|
|
else if ( size < GIBIBYTE )
|
|
|
|
{
|
|
|
|
ss << sector_to_unit( size, UNIT_MIB ) ;
|
2006-01-20 16:35:06 -07:00
|
|
|
return String::ucompose( _("%1 MiB"), ss .str() ) ;
|
2006-01-04 11:54:46 -07:00
|
|
|
}
|
2006-01-21 17:07:27 -07:00
|
|
|
else if ( size < TEBIBYTE )
|
2006-01-04 11:54:46 -07:00
|
|
|
{
|
2006-01-21 17:07:27 -07:00
|
|
|
ss << sector_to_unit( size, UNIT_GIB ) ;
|
2006-01-20 16:35:06 -07:00
|
|
|
return String::ucompose( _("%1 GiB"), ss .str() ) ;
|
2006-01-04 11:54:46 -07:00
|
|
|
}
|
2006-01-21 17:07:27 -07:00
|
|
|
else
|
|
|
|
{
|
|
|
|
ss << sector_to_unit( size, UNIT_TIB ) ;
|
|
|
|
return String::ucompose( _("%1 TiB"), ss .str() ) ;
|
|
|
|
}
|
|
|
|
}
|
2006-08-22 13:29:59 -06:00
|
|
|
|
|
|
|
Glib::ustring Utils::format_time( std::time_t seconds )
|
|
|
|
{
|
|
|
|
Glib::ustring time ;
|
|
|
|
|
|
|
|
int unit = static_cast<int>( seconds / 3600 ) ;
|
|
|
|
if ( unit > 0 )
|
|
|
|
{
|
|
|
|
if ( unit < 10 )
|
|
|
|
time += "0" ;
|
|
|
|
time += num_to_str( unit ) + ":" ;
|
|
|
|
seconds %= 3600 ;
|
|
|
|
}
|
|
|
|
|
|
|
|
unit = static_cast<int>( seconds / 60 ) ;
|
|
|
|
if ( unit < 10 )
|
|
|
|
time += "0" ;
|
|
|
|
time += num_to_str( unit ) + ":" ;
|
|
|
|
seconds %= 60 ;
|
|
|
|
|
|
|
|
if ( seconds < 10 )
|
|
|
|
time += "0" ;
|
|
|
|
time += num_to_str( seconds ) ;
|
|
|
|
|
|
|
|
return time ;
|
|
|
|
}
|
2006-01-21 17:07:27 -07:00
|
|
|
|
|
|
|
double Utils::sector_to_unit( Sector sectors, SIZE_UNIT size_unit )
|
|
|
|
{
|
|
|
|
switch ( size_unit )
|
|
|
|
{
|
|
|
|
case UNIT_BYTE :
|
|
|
|
return sectors * 512 ;
|
|
|
|
|
|
|
|
case UNIT_KIB :
|
2006-02-25 03:09:30 -07:00
|
|
|
return sectors / static_cast<double>( KIBIBYTE ) ;
|
2006-01-21 17:07:27 -07:00
|
|
|
case UNIT_MIB :
|
2006-02-25 03:09:30 -07:00
|
|
|
return sectors / static_cast<double>( MEBIBYTE ) ;
|
2006-01-21 17:07:27 -07:00
|
|
|
case UNIT_GIB :
|
2006-02-25 03:09:30 -07:00
|
|
|
return sectors / static_cast<double>( GIBIBYTE ) ;
|
2006-01-21 17:07:27 -07:00
|
|
|
case UNIT_TIB :
|
2006-02-25 03:09:30 -07:00
|
|
|
return sectors / static_cast<double>( TEBIBYTE ) ;
|
2006-01-21 17:07:27 -07:00
|
|
|
|
|
|
|
default:
|
|
|
|
return sectors ;
|
|
|
|
}
|
2006-01-04 11:54:46 -07:00
|
|
|
}
|
2006-04-02 07:04:24 -06:00
|
|
|
|
|
|
|
int Utils::execute_command( const Glib::ustring & command )
|
|
|
|
{
|
|
|
|
Glib::ustring dummy ;
|
|
|
|
return execute_command( command, dummy, dummy ) ;
|
|
|
|
}
|
2006-01-04 11:54:46 -07:00
|
|
|
|
2006-02-15 09:05:26 -07:00
|
|
|
int Utils::execute_command( const Glib::ustring & command,
|
|
|
|
Glib::ustring & output,
|
|
|
|
Glib::ustring & error,
|
|
|
|
bool use_C_locale )
|
|
|
|
{
|
|
|
|
int exit_status = -1 ;
|
|
|
|
std::string std_out, std_error ;
|
2006-03-17 03:07:49 -07:00
|
|
|
|
2006-02-15 09:05:26 -07:00
|
|
|
try
|
|
|
|
{
|
|
|
|
if ( use_C_locale )
|
|
|
|
{
|
|
|
|
std::vector<std::string> envp, argv;
|
|
|
|
envp .push_back( "LC_ALL=C" ) ;
|
|
|
|
envp .push_back( "PATH=" + Glib::getenv( "PATH" ) ) ;
|
|
|
|
|
|
|
|
argv .push_back( "sh" ) ;
|
|
|
|
argv .push_back( "-c" ) ;
|
|
|
|
argv .push_back( command ) ;
|
|
|
|
|
|
|
|
Glib::spawn_sync( ".",
|
|
|
|
argv,
|
|
|
|
envp,
|
|
|
|
Glib::SPAWN_SEARCH_PATH,
|
|
|
|
sigc::slot<void>(),
|
|
|
|
&std_out,
|
|
|
|
&std_error,
|
|
|
|
&exit_status ) ;
|
|
|
|
}
|
|
|
|
else
|
2006-08-21 13:59:48 -06:00
|
|
|
Glib::spawn_command_line_sync( "sh -c '" + command + "'", &std_out, &std_error, &exit_status ) ;
|
2006-02-15 09:05:26 -07:00
|
|
|
}
|
|
|
|
catch ( Glib::Exception & e )
|
|
|
|
{
|
|
|
|
error = e .what() ;
|
|
|
|
|
|
|
|
return -1 ;
|
|
|
|
}
|
|
|
|
|
|
|
|
output = std_out ;
|
|
|
|
error = std_error ;
|
2006-04-03 12:48:53 -06:00
|
|
|
|
2006-02-15 09:05:26 -07:00
|
|
|
return exit_status ;
|
|
|
|
}
|
|
|
|
|
2005-12-13 14:30:13 -07:00
|
|
|
} //GParted..
|