/usr/lib/python2.7/dist-packages/parted/alignment.py is in python-parted 3.10.7-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | #
# geometry.py
# Python bindings for libparted (built on top of the _ped Python module).
#
# Copyright (C) 2009 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.
#
# Author(s): Chris Lumens <clumens@redhat.com>
# David Cantrell <dcantrell@redhat.com>
# Alex Skinner <alex@lx.lc>
#
import parted
import _ped
from parted.decorators import localeC
class Alignment(object):
"""Alignment()
An Alignment object describes constraints on how sectors and Geometry
objects are aligned. Being aligned means that the sector be located at
a specific sector multiple on a device, or that a geometry must start
and end at sectors at those specific multiples. Most methods on this
object raise ArithmeticError if calculating alignments fails."""
@localeC
def __init__(self, *args, **kwargs):
"""Create a new Alignment object from the sectors offset and
grainSize."""
if "PedAlignment" in kwargs:
self.__alignment = kwargs.get("PedAlignment")
elif "offset" in kwargs and "grainSize" in kwargs:
self.__alignment = _ped.Alignment(kwargs.get("offset"),
kwargs.get("grainSize"))
else:
raise parted.AlignmentException("no offset+grainSize or PedAlignment specified")
offset = property(lambda s: s.__alignment.offset, lambda s, v: setattr(s.__alignment, "offset", v))
grainSize = property(lambda s: s.__alignment.grain_size, lambda s, v: setattr(s.__alignment, "grain_size", v))
def __eq__(self, other):
return not self.__ne__(other)
def __ne__(self, other):
if not isinstance(self, other.__class__):
return True
return self.offset != other.offset or self.grainSize != other.grainSize
def __str__(self):
s = ("parted.Alignment instance --\n"
" offset: %(offset)s grainSize: %(grainSize)s\n"
" PedAlignment: %(ped)r" %
{"offset": self.offset, "grainSize": self.grainSize,
"ped": self.__alignment})
return s
@localeC
def intersect(self, b):
"""Create and return a new Alignment that describes the intersection of
self and alignment b. A sector will satisfy the new alignment iff
it satisfies both of the original alignments. Whether a sector
satisfies a given alignment is determined by is_aligned()."""
return parted.Alignment(PedAlignment=self.__alignment.intersect(b.getPedAlignment()))
@localeC
def alignUp(self, geom, sector):
"""Return the closest sector to the provided sector that lies inside
geom and satisfies the alignment constraint self. This method
prefers, but does not guarantee, that the result is beyond sector.
If no such sector can be found, an ArithmeticError is raised."""
return self.__alignment.align_up(geom.getPedGeometry(), sector)
@localeC
def alignDown(self, geom, sector):
"""Return the closest sector to the provided sector that lies inside
geom and satisfies the alignment constraint self. This method
prefers, but does not guarantee, that the result is below sector.
If no such sector can be found, an ArithmeticError is raised."""
return self.__alignment.align_down(geom.getPedGeometry(), sector)
@localeC
def alignNearest(self, geom, sector):
"""Return the closest sector to the input sector that lies inside
geom and satisfies the alignment constraint self. If no such sector
can be found, an ArithmeticError is raised."""
return self.__alignment.align_nearest(geom.getPedGeometry(), sector)
@localeC
def isAligned(self, geom, sector):
"""Determine whether sector lies inside geom and satisfies the
alignment constraint self."""
if not geom:
raise TypeError("missing parted.Geometry parameter")
if sector is None:
raise TypeError("missing sector parameter")
return self.__alignment.is_aligned(geom.getPedGeometry(), sector)
def getPedAlignment(self):
"""Return the _ped.Alignment object contained in this Alignment.
For internal module use only."""
return self.__alignment
|