2010-12-09 14:06:38 -07:00
|
|
|
/* Copyright (C) 2008, 2009, 2010 Curtis Gedak
|
2008-11-11 10:19:46 -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.
|
2008-11-11 10:19:46 -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/>.
|
2008-11-11 10:19:46 -07:00
|
|
|
*/
|
|
|
|
|
2013-05-27 05:20:16 -06:00
|
|
|
#ifndef GPARTED_FS_INFO_H
|
|
|
|
#define GPARTED_FS_INFO_H
|
2008-11-11 10:19:46 -07:00
|
|
|
|
2016-10-18 16:45:28 -06:00
|
|
|
#include "BlockSpecial.h"
|
2016-07-07 08:34:57 -06:00
|
|
|
|
2016-07-07 06:11:44 -06:00
|
|
|
#include <glibmm/ustring.h>
|
|
|
|
#include <vector>
|
2008-11-11 10:19:46 -07:00
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
2016-07-07 06:11:44 -06:00
|
|
|
struct FS_Entry
|
|
|
|
{
|
2016-07-07 08:34:57 -06:00
|
|
|
BlockSpecial path;
|
2016-07-07 06:11:44 -06:00
|
|
|
Glib::ustring type;
|
|
|
|
Glib::ustring sec_type;
|
|
|
|
Glib::ustring uuid;
|
|
|
|
bool have_label;
|
|
|
|
Glib::ustring label;
|
|
|
|
};
|
|
|
|
|
2008-11-11 10:19:46 -07:00
|
|
|
class FS_Info
|
|
|
|
{
|
|
|
|
public:
|
2016-07-08 09:26:32 -06:00
|
|
|
static void load_cache();
|
|
|
|
static Glib::ustring get_fs_type( const Glib::ustring & path );
|
|
|
|
static Glib::ustring get_label( const Glib::ustring & path, bool & found );
|
|
|
|
static Glib::ustring get_uuid( const Glib::ustring & path );
|
|
|
|
static Glib::ustring get_path_by_uuid( const Glib::ustring & uuid );
|
|
|
|
static Glib::ustring get_path_by_label( const Glib::ustring & label );
|
2016-07-07 06:11:44 -06:00
|
|
|
|
2008-11-11 10:19:46 -07:00
|
|
|
private:
|
2016-07-08 09:26:32 -06:00
|
|
|
static void initialize_if_required();
|
2016-07-07 06:11:44 -06:00
|
|
|
static void set_commands_found();
|
|
|
|
static const FS_Entry & get_cache_entry_by_path( const Glib::ustring & path );
|
2016-12-24 07:58:23 -07:00
|
|
|
static void load_fs_info_cache();
|
|
|
|
static void load_fs_info_cache_extra_for_path( const Glib::ustring & path );
|
|
|
|
static bool run_blkid_load_cache( const Glib::ustring & path = "" );
|
2016-07-07 06:11:44 -06:00
|
|
|
|
2009-04-24 17:18:36 -06:00
|
|
|
static bool fs_info_cache_initialized ;
|
|
|
|
static bool blkid_found ;
|
2015-03-08 05:13:20 -06:00
|
|
|
static bool need_blkid_vfat_cache_update_workaround;
|
2016-07-07 06:11:44 -06:00
|
|
|
static std::vector<FS_Entry> fs_info_cache;
|
2008-11-11 10:19:46 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
}//GParted
|
|
|
|
|
2013-05-27 05:20:16 -06:00
|
|
|
#endif /* GPARTED_FS_INFO_H */
|