/usr/share/pyshared/CedarBackup2/extend/capacity.py is in cedar-backup2 2.26.5-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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 | # -*- coding: iso-8859-1 -*-
# vim: set ft=python ts=3 sw=3 expandtab:
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#
# C E D A R
# S O L U T I O N S "Software done right."
# S O F T W A R E
#
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#
# Copyright (c) 2008,2010 Kenneth J. Pronovici.
# All rights reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License,
# Version 2, as published by the Free Software Foundation.
#
# 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.
#
# Copies of the GNU General Public License are available from
# the Free Software Foundation website, http://www.gnu.org/.
#
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
#
# Author : Kenneth J. Pronovici <pronovic@ieee.org>
# Language : Python 2 (>= 2.7)
# Project : Cedar Backup, release 2
# Purpose : Provides an extension to check remaining media capacity.
#
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
########################################################################
# Module documentation
########################################################################
"""
Provides an extension to check remaining media capacity.
Some users have asked for advance warning that their media is beginning to fill
up. This is an extension that checks the current capacity of the media in the
writer, and prints a warning if the media is more than X% full, or has fewer
than X bytes of capacity remaining.
@author: Kenneth J. Pronovici <pronovic@ieee.org>
"""
########################################################################
# Imported modules
########################################################################
# System modules
import logging
# Cedar Backup modules
from CedarBackup2.util import displayBytes
from CedarBackup2.config import ByteQuantity, readByteQuantity, addByteQuantityNode
from CedarBackup2.xmlutil import createInputDom, addContainerNode, addStringNode
from CedarBackup2.xmlutil import readFirstChild, readString
from CedarBackup2.actions.util import createWriter, checkMediaState
########################################################################
# Module-wide constants and variables
########################################################################
logger = logging.getLogger("CedarBackup2.log.extend.capacity")
########################################################################
# Percentage class definition
########################################################################
class PercentageQuantity(object):
"""
Class representing a percentage quantity.
The percentage is maintained internally as a string so that issues of
precision can be avoided. It really isn't possible to store a floating
point number here while being able to losslessly translate back and forth
between XML and object representations. (Perhaps the Python 2.4 Decimal
class would have been an option, but I originally wanted to stay compatible
with Python 2.3.)
Even though the quantity is maintained as a string, the string must be in a
valid floating point positive number. Technically, any floating point
string format supported by Python is allowble. However, it does not make
sense to have a negative percentage in this context.
@sort: __init__, __repr__, __str__, __cmp__, quantity
"""
def __init__(self, quantity=None):
"""
Constructor for the C{PercentageQuantity} class.
@param quantity: Percentage quantity, as a string (i.e. "99.9" or "12")
@raise ValueError: If the quantity value is invaid.
"""
self._quantity = None
self.quantity = quantity
def __repr__(self):
"""
Official string representation for class instance.
"""
return "PercentageQuantity(%s)" % (self.quantity)
def __str__(self):
"""
Informal string representation for class instance.
"""
return self.__repr__()
def __cmp__(self, other):
"""
Definition of equals operator for this class.
Lists within this class are "unordered" for equality comparisons.
@param other: Other object to compare to.
@return: -1/0/1 depending on whether self is C{<}, C{=} or C{>} other.
"""
if other is None:
return 1
if self.quantity != other.quantity:
if self.quantity < other.quantity:
return -1
else:
return 1
return 0
def _setQuantity(self, value):
"""
Property target used to set the quantity
The value must be a non-empty string if it is not C{None}.
@raise ValueError: If the value is an empty string.
@raise ValueError: If the value is not a valid floating point number
@raise ValueError: If the value is less than zero
"""
if value is not None:
if len(value) < 1:
raise ValueError("Percentage must be a non-empty string.")
floatValue = float(value)
if floatValue < 0.0 or floatValue > 100.0:
raise ValueError("Percentage must be a positive value from 0.0 to 100.0")
self._quantity = value # keep around string
def _getQuantity(self):
"""
Property target used to get the quantity.
"""
return self._quantity
def _getPercentage(self):
"""
Property target used to get the quantity as a floating point number.
If there is no quantity set, then a value of 0.0 is returned.
"""
if self.quantity is not None:
return float(self.quantity)
return 0.0
quantity = property(_getQuantity, _setQuantity, None, doc="Percentage value, as a string")
percentage = property(_getPercentage, None, None, "Percentage value, as a floating point number.")
########################################################################
# CapacityConfig class definition
########################################################################
class CapacityConfig(object):
"""
Class representing capacity configuration.
The following restrictions exist on data in this class:
- The maximum percentage utilized must be a PercentageQuantity
- The minimum bytes remaining must be a ByteQuantity
@sort: __init__, __repr__, __str__, __cmp__, maxPercentage, minBytes
"""
def __init__(self, maxPercentage=None, minBytes=None):
"""
Constructor for the C{CapacityConfig} class.
@param maxPercentage: Maximum percentage of the media that may be utilized
@param minBytes: Minimum number of free bytes that must be available
"""
self._maxPercentage = None
self._minBytes = None
self.maxPercentage = maxPercentage
self.minBytes = minBytes
def __repr__(self):
"""
Official string representation for class instance.
"""
return "CapacityConfig(%s, %s)" % (self.maxPercentage, self.minBytes)
def __str__(self):
"""
Informal string representation for class instance.
"""
return self.__repr__()
def __cmp__(self, other):
"""
Definition of equals operator for this class.
@param other: Other object to compare to.
@return: -1/0/1 depending on whether self is C{<}, C{=} or C{>} other.
"""
if other is None:
return 1
if self.maxPercentage != other.maxPercentage:
if self.maxPercentage < other.maxPercentage:
return -1
else:
return 1
if self.minBytes != other.minBytes:
if self.minBytes < other.minBytes:
return -1
else:
return 1
return 0
def _setMaxPercentage(self, value):
"""
Property target used to set the maxPercentage value.
If not C{None}, the value must be a C{PercentageQuantity} object.
@raise ValueError: If the value is not a C{PercentageQuantity}
"""
if value is None:
self._maxPercentage = None
else:
if not isinstance(value, PercentageQuantity):
raise ValueError("Value must be a C{PercentageQuantity} object.")
self._maxPercentage = value
def _getMaxPercentage(self):
"""
Property target used to get the maxPercentage value
"""
return self._maxPercentage
def _setMinBytes(self, value):
"""
Property target used to set the bytes utilized value.
If not C{None}, the value must be a C{ByteQuantity} object.
@raise ValueError: If the value is not a C{ByteQuantity}
"""
if value is None:
self._minBytes = None
else:
if not isinstance(value, ByteQuantity):
raise ValueError("Value must be a C{ByteQuantity} object.")
self._minBytes = value
def _getMinBytes(self):
"""
Property target used to get the bytes remaining value.
"""
return self._minBytes
maxPercentage = property(_getMaxPercentage, _setMaxPercentage, None, "Maximum percentage of the media that may be utilized.")
minBytes = property(_getMinBytes, _setMinBytes, None, "Minimum number of free bytes that must be available.")
########################################################################
# LocalConfig class definition
########################################################################
class LocalConfig(object):
"""
Class representing this extension's configuration document.
This is not a general-purpose configuration object like the main Cedar
Backup configuration object. Instead, it just knows how to parse and emit
specific configuration values to this extension. Third parties who need to
read and write configuration related to this extension should access it
through the constructor, C{validate} and C{addConfig} methods.
@note: Lists within this class are "unordered" for equality comparisons.
@sort: __init__, __repr__, __str__, __cmp__, capacity, validate, addConfig
"""
def __init__(self, xmlData=None, xmlPath=None, validate=True):
"""
Initializes a configuration object.
If you initialize the object without passing either C{xmlData} or
C{xmlPath} then configuration will be empty and will be invalid until it
is filled in properly.
No reference to the original XML data or original path is saved off by
this class. Once the data has been parsed (successfully or not) this
original information is discarded.
Unless the C{validate} argument is C{False}, the L{LocalConfig.validate}
method will be called (with its default arguments) against configuration
after successfully parsing any passed-in XML. Keep in mind that even if
C{validate} is C{False}, it might not be possible to parse the passed-in
XML document if lower-level validations fail.
@note: It is strongly suggested that the C{validate} option always be set
to C{True} (the default) unless there is a specific need to read in
invalid configuration from disk.
@param xmlData: XML data representing configuration.
@type xmlData: String data.
@param xmlPath: Path to an XML file on disk.
@type xmlPath: Absolute path to a file on disk.
@param validate: Validate the document after parsing it.
@type validate: Boolean true/false.
@raise ValueError: If both C{xmlData} and C{xmlPath} are passed-in.
@raise ValueError: If the XML data in C{xmlData} or C{xmlPath} cannot be parsed.
@raise ValueError: If the parsed configuration document is not valid.
"""
self._capacity = None
self.capacity = None
if xmlData is not None and xmlPath is not None:
raise ValueError("Use either xmlData or xmlPath, but not both.")
if xmlData is not None:
self._parseXmlData(xmlData)
if validate:
self.validate()
elif xmlPath is not None:
xmlData = open(xmlPath).read()
self._parseXmlData(xmlData)
if validate:
self.validate()
def __repr__(self):
"""
Official string representation for class instance.
"""
return "LocalConfig(%s)" % (self.capacity)
def __str__(self):
"""
Informal string representation for class instance.
"""
return self.__repr__()
def __cmp__(self, other):
"""
Definition of equals operator for this class.
Lists within this class are "unordered" for equality comparisons.
@param other: Other object to compare to.
@return: -1/0/1 depending on whether self is C{<}, C{=} or C{>} other.
"""
if other is None:
return 1
if self.capacity != other.capacity:
if self.capacity < other.capacity:
return -1
else:
return 1
return 0
def _setCapacity(self, value):
"""
Property target used to set the capacity configuration value.
If not C{None}, the value must be a C{CapacityConfig} object.
@raise ValueError: If the value is not a C{CapacityConfig}
"""
if value is None:
self._capacity = None
else:
if not isinstance(value, CapacityConfig):
raise ValueError("Value must be a C{CapacityConfig} object.")
self._capacity = value
def _getCapacity(self):
"""
Property target used to get the capacity configuration value.
"""
return self._capacity
capacity = property(_getCapacity, _setCapacity, None, "Capacity configuration in terms of a C{CapacityConfig} object.")
def validate(self):
"""
Validates configuration represented by the object.
THere must be either a percentage, or a byte capacity, but not both.
@raise ValueError: If one of the validations fails.
"""
if self.capacity is None:
raise ValueError("Capacity section is required.")
if self.capacity.maxPercentage is None and self.capacity.minBytes is None:
raise ValueError("Must provide either max percentage or min bytes.")
if self.capacity.maxPercentage is not None and self.capacity.minBytes is not None:
raise ValueError("Must provide either max percentage or min bytes, but not both.")
def addConfig(self, xmlDom, parentNode):
"""
Adds a <capacity> configuration section as the next child of a parent.
Third parties should use this function to write configuration related to
this extension.
We add the following fields to the document::
maxPercentage //cb_config/capacity/max_percentage
minBytes //cb_config/capacity/min_bytes
@param xmlDom: DOM tree as from C{impl.createDocument()}.
@param parentNode: Parent that the section should be appended to.
"""
if self.capacity is not None:
sectionNode = addContainerNode(xmlDom, parentNode, "capacity")
LocalConfig._addPercentageQuantity(xmlDom, sectionNode, "max_percentage", self.capacity.maxPercentage)
if self.capacity.minBytes is not None: # because utility function fills in empty section on None
addByteQuantityNode(xmlDom, sectionNode, "min_bytes", self.capacity.minBytes)
def _parseXmlData(self, xmlData):
"""
Internal method to parse an XML string into the object.
This method parses the XML document into a DOM tree (C{xmlDom}) and then
calls a static method to parse the capacity configuration section.
@param xmlData: XML data to be parsed
@type xmlData: String data
@raise ValueError: If the XML cannot be successfully parsed.
"""
(xmlDom, parentNode) = createInputDom(xmlData)
self._capacity = LocalConfig._parseCapacity(parentNode)
@staticmethod
def _parseCapacity(parentNode):
"""
Parses a capacity configuration section.
We read the following fields::
maxPercentage //cb_config/capacity/max_percentage
minBytes //cb_config/capacity/min_bytes
@param parentNode: Parent node to search beneath.
@return: C{CapacityConfig} object or C{None} if the section does not exist.
@raise ValueError: If some filled-in value is invalid.
"""
capacity = None
section = readFirstChild(parentNode, "capacity")
if section is not None:
capacity = CapacityConfig()
capacity.maxPercentage = LocalConfig._readPercentageQuantity(section, "max_percentage")
capacity.minBytes = readByteQuantity(section, "min_bytes")
return capacity
@staticmethod
def _readPercentageQuantity(parent, name):
"""
Read a percentage quantity value from an XML document.
@param parent: Parent node to search beneath.
@param name: Name of node to search for.
@return: Percentage quantity parsed from XML document
"""
quantity = readString(parent, name)
if quantity is None:
return None
return PercentageQuantity(quantity)
@staticmethod
def _addPercentageQuantity(xmlDom, parentNode, nodeName, percentageQuantity):
"""
Adds a text node as the next child of a parent, to contain a percentage quantity.
If the C{percentageQuantity} is None, then no node will be created.
@param xmlDom: DOM tree as from C{impl.createDocument()}.
@param parentNode: Parent node to create child for.
@param nodeName: Name of the new container node.
@param percentageQuantity: PercentageQuantity object to put into the XML document
@return: Reference to the newly-created node.
"""
if percentageQuantity is not None:
addStringNode(xmlDom, parentNode, nodeName, percentageQuantity.quantity)
########################################################################
# Public functions
########################################################################
###########################
# executeAction() function
###########################
def executeAction(configPath, options, config):
"""
Executes the capacity action.
@param configPath: Path to configuration file on disk.
@type configPath: String representing a path on disk.
@param options: Program command-line options.
@type options: Options object.
@param config: Program configuration.
@type config: Config object.
@raise ValueError: Under many generic error conditions
@raise IOError: If there are I/O problems reading or writing files
"""
logger.debug("Executing capacity extended action.")
if config.options is None or config.store is None:
raise ValueError("Cedar Backup configuration is not properly filled in.")
local = LocalConfig(xmlPath=configPath)
if config.store.checkMedia:
checkMediaState(config.store) # raises exception if media is not initialized
capacity = createWriter(config).retrieveCapacity()
logger.debug("Media capacity: %s", capacity)
if local.capacity.maxPercentage is not None:
if capacity.utilized > local.capacity.maxPercentage.percentage:
logger.error("Media has reached capacity limit of %s%%: %.2f%% utilized",
local.capacity.maxPercentage.quantity, capacity.utilized)
else:
if capacity.bytesAvailable < local.capacity.minBytes:
logger.error("Media has reached capacity limit of %s: only %s available",
local.capacity.minBytes, displayBytes(capacity.bytesAvailable))
logger.info("Executed the capacity extended action successfully.")
|