2010-02-20 15:12:26 -07:00
|
|
|
/* Copyright (C) 2004 Bart
|
|
|
|
* Copyright (C) 2010 Curtis Gedak
|
2004-09-19 14:24:53 -06: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-09-19 14:24:53 -06: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-09-19 14:24:53 -06:00
|
|
|
*/
|
2013-05-27 05:20:16 -06:00
|
|
|
|
|
|
|
#ifndef GPARTED_DEVICE_H
|
|
|
|
#define GPARTED_DEVICE_H
|
2004-09-19 14:24:53 -06:00
|
|
|
|
|
|
|
#include "../include/Partition.h"
|
|
|
|
|
|
|
|
namespace GParted
|
|
|
|
{
|
|
|
|
|
|
|
|
class Device
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
2006-01-05 13:01:34 -07:00
|
|
|
Device() ;
|
|
|
|
~Device() ;
|
2006-03-14 14:37:47 -07:00
|
|
|
|
|
|
|
void add_path( const Glib::ustring & path, bool clear_paths = false ) ;
|
|
|
|
void add_paths( const std::vector<Glib::ustring> & paths, bool clear_paths = false ) ;
|
2006-03-15 14:44:24 -07:00
|
|
|
Glib::ustring get_path() const ;
|
|
|
|
std::vector<Glib::ustring> get_paths() const ;
|
|
|
|
|
|
|
|
bool operator==( const Device & device ) const ;
|
|
|
|
bool operator!=( const Device & device ) const ;
|
2004-11-06 04:55:03 -07:00
|
|
|
|
2006-01-05 13:01:34 -07:00
|
|
|
void Reset() ;
|
|
|
|
std::vector<Partition> partitions ;
|
2004-10-01 15:09:19 -06:00
|
|
|
Sector length;
|
2006-12-08 06:14:05 -07:00
|
|
|
Sector heads ;
|
|
|
|
Sector sectors ;
|
|
|
|
Sector cylinders ;
|
2006-02-25 03:09:30 -07:00
|
|
|
Sector cylsize ;
|
2004-10-01 15:09:19 -06:00
|
|
|
Glib::ustring model;
|
|
|
|
Glib::ustring disktype;
|
2010-02-20 15:12:26 -07:00
|
|
|
int sector_size ;
|
2004-11-17 06:00:25 -07:00
|
|
|
int max_prims ;
|
2004-12-27 11:56:57 -07:00
|
|
|
int highest_busy ;
|
2004-11-29 06:20:05 -07:00
|
|
|
bool readonly ;
|
2004-11-27 16:31:19 -07:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
private:
|
2006-03-14 14:37:47 -07:00
|
|
|
void sort_paths_and_remove_duplicates() ;
|
2004-11-17 06:00:25 -07:00
|
|
|
|
2006-03-14 14:37:47 -07:00
|
|
|
static bool compare_paths( const Glib::ustring & A, const Glib::ustring & B ) ;
|
|
|
|
|
|
|
|
std::vector<Glib::ustring> paths ;
|
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
};
|
2004-09-19 14:24:53 -06:00
|
|
|
|
2004-11-17 06:00:25 -07:00
|
|
|
} //GParted
|
2013-05-27 05:20:16 -06:00
|
|
|
|
|
|
|
#endif /* GPARTED_DEVICE_H */
|