/usr/lib/python2.7/dist-packages/doit/dependency.py is in python-doit 0.25.0-2.
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 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 | """Manage (save/check) task dependency-on-files data."""
import os
import hashlib
import subprocess
import six
if six.PY3: # pragma: no cover
from dbm import dumb
import dbm as ddbm
else:
import dumbdbm as dumb
import anydbm as ddbm
# uncomment imports below to run tests on all dbm backends...
#import dbhash as ddbm # (removed from python3)
#import dumbdbm as ddbm
#import dbm as ddbm
#import gdbm as ddbm
# note: to check which DBM backend is being used:
# >>> anydbm._defaultmod
from .compat import json
import sqlite3
USE_FILE_TIMESTAMP = True
class DatabaseException(Exception):
"""Exception class for whatever backend exception"""
pass
def get_md5(input_data):
"""return md5 from string or unicode"""
if isinstance(input_data, six.text_type):
byte_data = input_data.encode("utf-8")
else:
byte_data = input_data
return hashlib.md5(byte_data).hexdigest()
def get_file_md5(path):
"""Calculate the md5 sum from file content.
@param path: (string) file path
@return: (string) md5
"""
with open(path,'rb') as file_data:
md5 = hashlib.md5()
block_size = 128 * md5.block_size
while True:
data = file_data.read(block_size)
if not data:
break
md5.update(data)
return md5.hexdigest()
def check_modified(file_path, file_stat, state):
"""check if file in file_path is modified from previous "state"
@param file_path (string): file path
@param file_stat: the value returned from os.stat(file_path)
@param state (tuple), timestamp, size, md5
@returns (bool):
"""
if state is None:
return True
timestamp, size, file_md5 = state
# 1 - if timestamp is not modified file is the same
if USE_FILE_TIMESTAMP and file_stat.st_mtime == timestamp:
return False
# 2 - if size is different file is modified
if file_stat.st_size != size:
return True
# 3 - check md5
return file_md5 != get_file_md5(file_path)
class JsonDB(object):
"""Backend using a single text file with JSON content"""
def __init__(self, name):
"""Open/create a DB file"""
self.name = name
if not os.path.exists(self.name):
self._db = {}
else:
self._db = self._load()
def _load(self):
"""load db content from file"""
db_file = open(self.name, 'r')
try:
try:
return json.load(db_file)
except ValueError as error:
# file contains corrupted json data
msg = (error.args[0] +
"\nInvalid JSON data in %s\n" %
os.path.abspath(self.name) +
"To fix this problem, you can just remove the " +
"corrupted file, a new one will be generated.\n")
error.args = (msg,)
raise DatabaseException(msg)
finally:
db_file.close()
def dump(self):
"""save DB content in file"""
try:
db_file = open(self.name, 'w')
json.dump(self._db, db_file)
finally:
db_file.close()
def set(self, task_id, dependency, value):
"""Store value in the DB."""
if task_id not in self._db:
self._db[task_id] = {}
self._db[task_id][dependency] = value
def get(self, task_id, dependency):
"""Get value stored in the DB.
@return: (string) or (None) if entry not found
"""
if task_id in self._db:
return self._db[task_id].get(dependency, None)
def in_(self, task_id):
"""@return bool if task_id is in DB"""
return task_id in self._db
def remove(self, task_id):
"""remove saved dependecies from DB for taskId"""
if task_id in self._db:
del self._db[task_id]
def remove_all(self):
"""remove saved dependecies from DB for all tasks"""
self._db = {}
def encode_task_id(func):
"""in python 2 dbm module does not automatically convert unicode to bytes"""
if not six.PY3:
def wrap(self, key, *args):
if isinstance(key, six.text_type):
key = key.encode('utf-8')
return func(self, key, *args)
return wrap
else: # pragma: no cover
return func
class DbmDB(object):
"""Backend using a DBM file with individual values encoded in JSON
On initialization all items are read from DBM file and loaded on _dbm.
During execution whenever an item is read ('get' method) the json value
is cached on _db. If a item is modified _db is update and the id is added
to the 'dirty' set. Only on 'dump' all dirty items values are encoded
in json into _dbm and the DBM file is saved.
@ivar name: (str) file name/path
@ivar _dbm: (dbm) items with json encoded values
@ivar _db: (dict) items with python-dict as value
@ivar dirty: (set) id of modified tasks
"""
DBM_CONTENT_ERROR_MSG = 'db type could not be determined'
def __init__(self, name):
"""Open/create a DB file"""
self.name = name
try:
self._dbm = ddbm.open(self.name, 'c')
except ddbm.error as exception:
message = str(exception)
if message == self.DBM_CONTENT_ERROR_MSG:
# When a corrupted/old format database is found
# suggest the user to just remove the file
new_message = (
'Dependencies file in %(filename)s seems to use '
'an old format or is corrupted.\n'
'To fix the issue you can just remove the database file(s) '
'and a new one will be generated.'
% {'filename': repr(self.name)})
raise DatabaseException(new_message)
else:
# Re-raise any other exceptions
raise DatabaseException(message)
self._db = {}
self.dirty = set()
def dump(self):
"""save/close DBM file"""
for task_id in self.dirty:
self._dbm[task_id] = json.dumps(self._db[task_id])
self._dbm.close()
@encode_task_id
def set(self, task_id, dependency, value):
"""Store value in the DB."""
if task_id not in self._db:
self._db[task_id] = {}
self._db[task_id][dependency] = value
self.dirty.add(task_id)
def _in_dbm(self, key):
"""
should be just::
return key in self._dbm
python3: when for get/set key is convert to bytes but not for 'in'
"""
return key.encode('utf-8') in self._dbm
@encode_task_id
def get(self, task_id, dependency):
"""Get value stored in the DB.
@return: (string) or (None) if entry not found
"""
# optimization, just try to get it without checking it exists
if task_id in self._db:
return self._db[task_id].get(dependency, None)
else:
try:
task_data = self._dbm[task_id]
except KeyError:
return
self._db[task_id] = json.loads(task_data.decode('utf-8'))
return self._db[task_id].get(dependency, None)
@encode_task_id
def in_(self, task_id):
"""@return bool if task_id is in DB"""
return self._in_dbm(task_id) or task_id in self.dirty
@encode_task_id
def remove(self, task_id):
"""remove saved dependecies from DB for taskId"""
if task_id in self._db:
del self._db[task_id]
if self._in_dbm(task_id):
del self._dbm[task_id]
if task_id in self.dirty:
self.dirty.remove(task_id)
def remove_all(self):
"""remove saved dependecies from DB for all tasks"""
self._db = {}
# dumb dbm always opens file in update mode
if isinstance(self._dbm, dumb._Database): # pragma: no cover
self._dbm._index = {}
self._dbm.close()
# gdbm can not be running on 2 instances on same thread
# see https://bitbucket.org/schettino72/doit/issue/16/
del self._dbm
self._dbm = ddbm.open(self.name, 'n')
self.dirty = set()
class SqliteDB(object):
""" sqlite3 json backend """
def __init__(self, name):
self.name = name
self._conn = self._sqlite3(self.name)
def _sqlite3(self, name):
"""Open/create a sqlite3 DB file"""
def dict_factory(cursor, row):
d = {}
for idx, col in enumerate(cursor.description):
d[col[0]] = row[idx]
return d
def converter(data):
return json.loads(data.decode('utf-8'))
sqlite3.register_adapter(list, json.dumps)
sqlite3.register_adapter(dict, json.dumps)
sqlite3.register_converter("json", converter)
conn = sqlite3.connect(self.name,
detect_types=sqlite3.PARSE_DECLTYPES|sqlite3.PARSE_COLNAMES,
isolation_level=None)
conn.row_factory = dict_factory
sqlscript = """
create table if not exists doit (
task_id text not null primary key,
task_data json
);"""
try:
conn.execute(sqlscript)
except sqlite3.DatabaseError as exception:
new_message = (
'Dependencies file in %(filename)s seems to use '
'an bad format or is corrupted.\n'
'To fix the issue you can just remove the database file(s) '
'and a new one will be generated.'
'Original error: %(msg)s'
% {'filename': repr(self.name), 'msg': str(exception)})
raise DatabaseException(new_message)
return conn
def get(self, task_id, dependency):
"""Get value stored in the DB.
@return: (string) or (None) if entry not found
"""
data = self._get_task_data(task_id)
return data.get(dependency, None)
def _get_task_data(self, task_id):
data = self._conn.execute('select task_data from doit where task_id=?',
(task_id,)).fetchone()
return data['task_data'] if data else {}
def set(self, task_id, dependency, value):
"""Store value in the DB."""
task_data = self._get_task_data(task_id)
task_data[dependency] = value
self._conn.execute('insert or replace into doit values (?,?)',
(task_id, task_data))
def in_(self, task_id):
if self._conn.execute('select task_id from doit where task_id=?',
(task_id,)).fetchone():
return True
return False
def dump(self):
"""save/close sqlite3 DB file"""
self._conn.commit()
self._conn.close()
def remove(self, task_id):
"""remove saved dependecies from DB for taskId"""
self._conn.execute('delete from doit where task_id=?', (task_id,))
def remove_all(self):
"""remove saved dependecies from DB for all task"""
self._conn.execute('delete from doit')
class DependencyBase(object):
"""Manage tasks dependencies (abstract class)
Each dependency is saved in "db". the "db" can have json or dbm
format where there is a dictionary for every task. each task has a
dictionary where key is a dependency (abs file path), and the value is the
dependency signature.
Apart from dependencies other values are also saved on the task dictionary
* 'result:', 'task:<task-name>', 'ignore:'
* user(task) defined values are defined in '_values_:' sub-dict
@ivar name: (string) filepath of the DB file
@ivar _closed: (bool) DB was flushed to file
"""
def __init__(self, backend):
self._closed = False
self.backend = backend
self._set = self.backend.set
self._get = self.backend.get
self.remove = self.backend.remove
self.remove_all = self.backend.remove_all
self._in = self.backend.in_
self.name = self.backend.name
def close(self):
"""Write DB in file"""
if not self._closed:
self.backend.dump()
self._closed = True
####### task specific
def save_success(self, task):
"""save info after a task is successfuly executed"""
# save task values
self._set(task.name, "_values_:", task.values)
# save task result md5
if task.result:
if isinstance(task.result, dict):
self._set(task.name, "result:", task.result)
else:
self._set(task.name, "result:", get_md5(task.result))
# file-dep
for dep in task.file_dep:
timestamp = os.path.getmtime(dep)
# time optimization. if dep is already saved with current timestamp
# skip calculating md5
current = self._get(task.name, dep)
if current and current[0] == timestamp:
continue
size = os.path.getsize(dep)
self._set(task.name, dep, (timestamp, size, get_file_md5(dep)))
# save list of file_deps
self._set(task.name, 'deps:', tuple(task.file_dep))
def get_values(self, task_name):
"""get all saved values from a task
@return dict
"""
values = self._get(task_name, '_values_:')
return values or {}
def get_value(self, task_id, key_name):
"""get saved value from task
@param task_id (str)
@param key_name (str): key result dict of the value
"""
if not self._in(task_id):
# FIXME do not use generic exception
raise Exception("taskid '%s' has no computed value!" % task_id)
values = self.get_values(task_id)
if key_name not in values:
msg = "Invalid arg name. Task '%s' has no value for '%s'."
raise Exception(msg % (task_id, key_name))
return values[key_name]
def remove_success(self, task):
"""remove saved info from task"""
self.remove(task.name)
def ignore(self, task):
"""mark task to be ignored"""
self._set(task.name, 'ignore:', '1')
def status_is_ignore(self, task):
"""check if task is marked to be ignored"""
return self._get(task.name, "ignore:")
# TODO add option to log this
def get_status(self, task, tasks_dict):
"""Check if task is up to date. set task.dep_changed
@param task: (Task)
@param tasks_dict: (dict: Task) passed to objects used on uptodate
@return: (str) one of up-to-date, run
task.dep_changed (list-strings): file-dependencies that are not
up-to-date if task not up-to-date because of a target, returned value
will contain all file-dependencies reagrdless they are up-to-date
or not.
"""
task.dep_changed = []
# check uptodate bool/callables
checked_uptodate = False
for utd, utd_args, utd_kwargs in task.uptodate:
# if parameter is a callable
if hasattr(utd, '__call__'):
# FIXME control verbosity, check error messages
# 1) prepare arguments
args = [task, self.get_values(task.name)] + utd_args
# 2) setup object with global info all tasks
if isinstance(utd, UptodateCalculator):
utd.setup(self, tasks_dict)
# 3) call it and get result
uptodate_result = utd(*args, **utd_kwargs)
elif isinstance(utd, six.string_types):
# TODO py3.3 has subprocess.DEVNULL
with open(os.devnull, 'wb') as null:
uptodate_result = subprocess.call(
utd, shell=True, stderr=null, stdout=null) == 0
# parameter is a value
else:
uptodate_result = utd
# None means uptodate was not really calculated and should be
# just ignored
if uptodate_result is None:
continue
if uptodate_result:
checked_uptodate = True
else:
return 'run'
# no dependencies means it is never up to date.
if not (task.file_dep or checked_uptodate):
return 'run'
# if target file is not there, task is not up to date
for targ in task.targets:
if not os.path.exists(targ):
task.dep_changed = list(task.file_dep)
return 'run'
# check for modified file_dep
changed = [] # list of file_dep that changed
previous = self._get(task.name, 'deps:')
if previous and set(previous) != task.file_dep:
status = 'run'
else:
status = 'up-to-date' # initial assumption
for dep in tuple(task.file_dep):
try:
file_stat = os.stat(dep)
except os.error:
raise Exception("Dependent file '%s' does not exist." % dep)
if check_modified(dep, file_stat, self._get(task.name, dep)):
changed.append(dep)
status = 'run'
task.dep_changed = changed #FIXME create a separate function for this
return status
####################
class JsonDependency(DependencyBase):
"""Task dependency manager with JSON backend"""
def __init__(self, name):
DependencyBase.__init__(self, JsonDB(name))
class DbmDependency(DependencyBase):
"""Task dependency manager with DBM backend"""
def __init__(self, name):
DependencyBase.__init__(self, DbmDB(name))
class SqliteDependency(DependencyBase):
"""Task dependency manager with sqlite backend"""
def __init__(self, name):
DependencyBase.__init__(self, SqliteDB(name))
# map string used in cmdline option to class
backend_map = {
'json': JsonDependency,
'dbm': DbmDependency,
'sqlite3': SqliteDependency,
}
#############
class UptodateCalculator(object):
"""Base class for 'uptodate' that need access to all tasks
"""
def __init__(self):
self.get_val = None # Dependency._get
self.tasks_dict = None # dict with all tasks
def setup(self, dep_manager, tasks_dict):
"""@param"""
self.get_val = dep_manager._get
self.tasks_dict = tasks_dict
# defaut dependency backend implementation
Dependency = DbmDependency
|