83 lines
3.2 KiB
Python
83 lines
3.2 KiB
Python
|
# User interface library functions for filesystem/disk space checking
|
||
|
#
|
||
|
# Copyright (C) 2013 Red Hat, Inc.
|
||
|
#
|
||
|
# This copyrighted material is made available to anyone wishing to use,
|
||
|
# modify, copy, or redistribute it subject to the terms and conditions of
|
||
|
# the GNU General Public License v.2, or (at your option) any later version.
|
||
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
||
|
# ANY WARRANTY expressed or implied, including the implied warranties of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 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., 51 Franklin Street, Fifth Floor, Boston, MA
|
||
|
# 02110-1301, USA. Any Red Hat trademarks that are incorporated in the
|
||
|
# source code or documentation are not subject to the GNU General Public
|
||
|
# License and may only be used or replicated with the express permission of
|
||
|
# Red Hat, Inc.
|
||
|
#
|
||
|
# Red Hat Author(s): David Lehman <dlehman@redhat.com>
|
||
|
# Chris Lumens <clumens@redhat.com>
|
||
|
#
|
||
|
|
||
|
from blivet.devices import MultipathDevice, iScsiDiskDevice
|
||
|
from blivet.size import Size
|
||
|
|
||
|
from pyanaconda.flags import flags
|
||
|
|
||
|
__all__ = ["FakeDiskLabel", "FakeDisk", "getDisks", "isLocalDisk", "size_str"]
|
||
|
|
||
|
class FakeDiskLabel(object):
|
||
|
def __init__(self, free=0):
|
||
|
self.free = free
|
||
|
|
||
|
class FakeDisk(object):
|
||
|
def __init__(self, name, size=0, free=0, partitioned=True, vendor=None,
|
||
|
model=None, serial=None, removable=False):
|
||
|
self.name = name
|
||
|
self.size = size
|
||
|
self.format = FakeDiskLabel(free=free)
|
||
|
self.partitioned = partitioned
|
||
|
self.vendor = vendor
|
||
|
self.model = model
|
||
|
self.serial = serial
|
||
|
self.removable = removable
|
||
|
|
||
|
@property
|
||
|
def description(self):
|
||
|
return "%s %s" % (self.vendor, self.model)
|
||
|
|
||
|
def getDisks(devicetree, fake=False):
|
||
|
if not fake:
|
||
|
devices = devicetree.devices
|
||
|
if not flags.imageInstall:
|
||
|
devices += devicetree._hidden
|
||
|
|
||
|
disks = [d for d in devices if d.isDisk and
|
||
|
d.size > 0 and
|
||
|
not d.format.hidden and
|
||
|
not (d.protected and
|
||
|
d.removable)]
|
||
|
else:
|
||
|
disks = []
|
||
|
disks.append(FakeDisk("sda", size=300000, free=10000, serial="00001",
|
||
|
vendor="Seagate", model="Monster"))
|
||
|
disks.append(FakeDisk("sdb", size=300000, free=300000, serial="00002",
|
||
|
vendor="Seagate", model="Monster"))
|
||
|
disks.append(FakeDisk("sdc", size=8000, free=2100, removable=True,
|
||
|
vendor="SanDisk", model="Cruzer", serial="00003"))
|
||
|
|
||
|
# Remove duplicate names from the list.
|
||
|
return sorted(list(set(disks)), key=lambda d: d.name)
|
||
|
|
||
|
def isLocalDisk(disk):
|
||
|
return not isinstance(disk, MultipathDevice) and not isinstance(disk, iScsiDiskDevice)
|
||
|
|
||
|
def size_str(mb):
|
||
|
if isinstance(mb, Size):
|
||
|
size = mb
|
||
|
else:
|
||
|
size = Size(en_spec="%f mb" % mb)
|
||
|
|
||
|
return str(size).upper()
|