All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 from __future__ import print_function
10 DATE_FORMAT = '%Y%m%dT%H%M%SZ'
13 COMPLETED = 'completed'
15 VERSION_2_1_0 = six.u('2.1.0')
16 VERSION_2_2_0 = six.u('2.2.0')
17 VERSION_2_3_0 = six.u('2.3.0')
18 VERSION_2_4_0 = six.u('2.4.0')
20 logger = logging.getLogger(__name__)
23 class TaskWarriorException(Exception):
27 class TaskResource(object):
30 def _load_data(self, data):
32 # We need to use a copy for original data, so that changes
34 self._original_data = data.copy()
36 def __getitem__(self, key):
37 # This is a workaround to make TaskResource non-iterable
38 # over simple index-based iteration
45 return self._deserialize(key, self._data.get(key))
47 def __setitem__(self, key, value):
48 if key in self.read_only_fields:
49 raise RuntimeError('Field \'%s\' is read-only' % key)
50 self._data[key] = self._serialize(key, value)
52 def _deserialize(self, key, value):
53 hydrate_func = getattr(self, 'deserialize_{0}'.format(key),
55 return hydrate_func(value)
57 def _serialize(self, key, value):
58 dehydrate_func = getattr(self, 'serialize_{0}'.format(key),
60 return dehydrate_func(value)
63 s = six.text_type(self.__unicode__())
72 class TaskAnnotation(TaskResource):
73 read_only_fields = ['entry', 'description']
75 def __init__(self, task, data={}):
79 def deserialize_entry(self, data):
80 return datetime.datetime.strptime(data, DATE_FORMAT) if data else None
82 def serialize_entry(self, date):
83 return date.strftime(DATE_FORMAT) if date else ''
86 self.task.remove_annotation(self)
88 def __unicode__(self):
89 return self['description']
91 __repr__ = __unicode__
94 class Task(TaskResource):
95 read_only_fields = ['id', 'entry', 'urgency', 'uuid', 'modified']
97 class DoesNotExist(Exception):
100 class CompletedTask(Exception):
102 Raised when the operation cannot be performed on the completed task.
106 class DeletedTask(Exception):
108 Raised when the operation cannot be performed on the deleted task.
112 class NotSaved(Exception):
114 Raised when the operation cannot be performed on the task, because
115 it has not been saved to TaskWarrior yet.
119 def __init__(self, warrior, data={}, **kwargs):
120 self.warrior = warrior
122 # We serialize the data in kwargs so that users of the library
123 # do not have to pass different data formats via __setitem__ and
124 # __init__ methods, that would be confusing
126 # Rather unfortunate syntax due to python2.6 comaptiblity
127 self._load_data(dict((key, self._serialize(key, value))
128 for (key, value) in six.iteritems(kwargs)))
130 # We keep data for backwards compatibility
131 # TODO: Should we keep this using unserialized access to _data dict?
132 self._data.update(data)
133 self._original_data.update(data)
135 def __unicode__(self):
136 return self['description']
138 def __eq__(self, other):
139 if self['uuid'] and other['uuid']:
140 # For saved Tasks, just define equality by equality of uuids
141 return self['uuid'] == other['uuid']
143 # If the tasks are not saved, compare the actual instances
144 return id(self) == id(other)
149 # For saved Tasks, just define equality by equality of uuids
150 return self['uuid'].__hash__()
152 # If the tasks are not saved, return hash of instance id
153 return id(self).__hash__()
156 def _modified_fields(self):
157 writable_fields = set(self._data.keys()) - set(self.read_only_fields)
158 for key in writable_fields:
159 if self._data.get(key) != self._original_data.get(key):
164 return self['status'] == six.text_type('completed')
168 return self['status'] == six.text_type('deleted')
172 return self['status'] == six.text_type('waiting')
176 return self['status'] == six.text_type('pending')
180 return self['uuid'] is not None or self['id'] is not None
182 def serialize_due(self, date):
185 return date.strftime(DATE_FORMAT)
187 def deserialize_due(self, date_str):
190 return datetime.datetime.strptime(date_str, DATE_FORMAT)
192 def serialize_depends(self, cur_dependencies):
193 # Check that all the tasks are saved
194 for task in cur_dependencies:
196 raise Task.NotSaved('Task \'%s\' needs to be saved before '
197 'it can be set as dependency.' % task)
199 # Return the list of uuids
200 return ','.join(task['uuid'] for task in cur_dependencies)
202 def deserialize_depends(self, raw_uuids):
203 raw_uuids = raw_uuids or '' # Convert None to empty string
204 uuids = raw_uuids.split(',')
205 return set(self.warrior.tasks.get(uuid=uuid) for uuid in uuids if uuid)
207 def format_depends(self):
208 # We need to generate added and removed dependencies list,
209 # since Taskwarrior does not accept redefining dependencies.
211 # This cannot be part of serialize_depends, since we need
212 # to keep a list of all depedencies in the _data dictionary,
213 # not just currently added/removed ones
215 old_dependencies_raw = self._original_data.get('depends','')
216 old_dependencies = self.deserialize_depends(old_dependencies_raw)
218 added = self['depends'] - old_dependencies
219 removed = old_dependencies - self['depends']
221 # Removed dependencies need to be prefixed with '-'
223 [t['uuid'] for t in added] +
224 ['-' + t['uuid'] for t in removed]
227 def deserialize_annotations(self, data):
228 return [TaskAnnotation(self, d) for d in data] if data else []
230 def deserialize_tags(self, tags):
231 if isinstance(tags, basestring):
232 return tags.split(',') if tags else []
235 def serialize_tags(self, tags):
236 return ','.join(tags) if tags else ''
240 raise Task.NotSaved("Task needs to be saved before it can be deleted")
242 # Refresh the status, and raise exception if the task is deleted
243 self.refresh(only_fields=['status'])
246 raise Task.DeletedTask("Task was already deleted")
248 self.warrior.execute_command([self['uuid'], 'delete'], config_override={
249 'confirmation': 'no',
252 # Refresh the status again, so that we have updated info stored
253 self.refresh(only_fields=['status'])
258 raise Task.NotSaved("Task needs to be saved before it can be completed")
260 # Refresh, and raise exception if task is already completed/deleted
261 self.refresh(only_fields=['status'])
264 raise Task.CompletedTask("Cannot complete a completed task")
266 raise Task.DeletedTask("Deleted task cannot be completed")
268 self.warrior.execute_command([self['uuid'], 'done'])
270 # Refresh the status again, so that we have updated info stored
271 self.refresh(only_fields=['status'])
274 args = [self['uuid'], 'modify'] if self.saved else ['add']
275 args.extend(self._get_modified_fields_as_args())
276 output = self.warrior.execute_command(args)
278 # Parse out the new ID, if the task is being added for the first time
280 id_lines = [l for l in output if l.startswith('Created task ')]
282 # Complain loudly if it seems that more tasks were created
284 if len(id_lines) != 1 or len(id_lines[0].split(' ')) != 3:
285 raise TaskWarriorException("Unexpected output when creating "
286 "task: %s" % '\n'.join(id_lines))
288 # Circumvent the ID storage, since ID is considered read-only
289 self._data['id'] = int(id_lines[0].split(' ')[2].rstrip('.'))
293 def add_annotation(self, annotation):
295 raise Task.NotSaved("Task needs to be saved to add annotation")
297 args = [self['uuid'], 'annotate', annotation]
298 self.warrior.execute_command(args)
299 self.refresh(only_fields=['annotations'])
301 def remove_annotation(self, annotation):
303 raise Task.NotSaved("Task needs to be saved to add annotation")
305 if isinstance(annotation, TaskAnnotation):
306 annotation = annotation['description']
307 args = [self['uuid'], 'denotate', annotation]
308 self.warrior.execute_command(args)
309 self.refresh(only_fields=['annotations'])
311 def _get_modified_fields_as_args(self):
314 def add_field(field):
315 # Task version older than 2.4.0 ignores first word of the
316 # task description if description: prefix is used
317 if self.warrior.version < VERSION_2_4_0 and field == 'description':
318 args.append(self._data[field])
319 elif field == 'depends':
320 args.append('{0}:{1}'.format(field, self.format_depends()))
322 # Use empty string to substitute for None value
323 args.append('{0}:{1}'.format(field, self._data[field] or ''))
325 # If we're modifying saved task, simply pass on all modified fields
327 for field in self._modified_fields:
329 # For new tasks, pass all fields that make sense
331 for field in self._data.keys():
332 if field in self.read_only_fields:
338 def refresh(self, only_fields=[]):
339 # Raise error when trying to refresh a task that has not been saved
341 raise Task.NotSaved("Task needs to be saved to be refreshed")
343 # We need to use ID as backup for uuid here for the refreshes
344 # of newly saved tasks. Any other place in the code is fine
345 # with using UUID only.
346 args = [self['uuid'] or self['id'], 'export']
347 new_data = json.loads(self.warrior.execute_command(args)[0])
350 [(k, new_data.get(k)) for k in only_fields])
351 self._data.update(to_update)
352 self._original_data.update(to_update)
354 self._data = new_data
355 # We need to create a clone for original_data though
356 # Shallow copy is alright, since data dict uses only
357 # primitive data types
358 self._original_data = new_data.copy()
361 class TaskFilter(object):
363 A set of parameters to filter the task list with.
366 def __init__(self, filter_params=[]):
367 self.filter_params = filter_params
369 def add_filter(self, filter_str):
370 self.filter_params.append(filter_str)
372 def add_filter_param(self, key, value):
373 key = key.replace('__', '.')
375 # Replace the value with empty string, since that is the
376 # convention in TW for empty values
377 value = value if value is not None else ''
379 # If we are filtering by uuid:, do not use uuid keyword
382 self.filter_params.insert(0, value)
384 self.filter_params.append('{0}:{1}'.format(key, value))
386 def get_filter_params(self):
387 return [f for f in self.filter_params if f]
391 c.filter_params = list(self.filter_params)
395 class TaskQuerySet(object):
397 Represents a lazy lookup for a task objects.
400 def __init__(self, warrior=None, filter_obj=None):
401 self.warrior = warrior
402 self._result_cache = None
403 self.filter_obj = filter_obj or TaskFilter()
405 def __deepcopy__(self, memo):
407 Deep copy of a QuerySet doesn't populate the cache
409 obj = self.__class__()
410 for k, v in self.__dict__.items():
411 if k in ('_iter', '_result_cache'):
412 obj.__dict__[k] = None
414 obj.__dict__[k] = copy.deepcopy(v, memo)
418 data = list(self[:REPR_OUTPUT_SIZE + 1])
419 if len(data) > REPR_OUTPUT_SIZE:
420 data[-1] = "...(remaining elements truncated)..."
424 if self._result_cache is None:
425 self._result_cache = list(self)
426 return len(self._result_cache)
429 if self._result_cache is None:
430 self._result_cache = self._execute()
431 return iter(self._result_cache)
433 def __getitem__(self, k):
434 if self._result_cache is None:
435 self._result_cache = list(self)
436 return self._result_cache.__getitem__(k)
439 if self._result_cache is not None:
440 return bool(self._result_cache)
443 except StopIteration:
447 def __nonzero__(self):
448 return type(self).__bool__(self)
450 def _clone(self, klass=None, **kwargs):
452 klass = self.__class__
453 filter_obj = self.filter_obj.clone()
454 c = klass(warrior=self.warrior, filter_obj=filter_obj)
455 c.__dict__.update(kwargs)
460 Fetch the tasks which match the current filters.
462 return self.warrior.filter_tasks(self.filter_obj)
466 Returns a new TaskQuerySet that is a copy of the current one.
471 return self.filter(status=PENDING)
474 return self.filter(status=COMPLETED)
476 def filter(self, *args, **kwargs):
478 Returns a new TaskQuerySet with the given filters added.
480 clone = self._clone()
482 clone.filter_obj.add_filter(f)
483 for key, value in kwargs.items():
484 clone.filter_obj.add_filter_param(key, value)
487 def get(self, **kwargs):
489 Performs the query and returns a single object matching the given
492 clone = self.filter(**kwargs)
495 return clone._result_cache[0]
497 raise Task.DoesNotExist(
498 'Task matching query does not exist. '
499 'Lookup parameters were {0}'.format(kwargs))
501 'get() returned more than one Task -- it returned {0}! '
502 'Lookup parameters were {1}'.format(num, kwargs))
505 class TaskWarrior(object):
506 def __init__(self, data_location='~/.task', create=True):
507 data_location = os.path.expanduser(data_location)
508 if create and not os.path.exists(data_location):
509 os.makedirs(data_location)
511 'data.location': os.path.expanduser(data_location),
513 self.tasks = TaskQuerySet(self)
514 self.version = self._get_version()
516 def _get_command_args(self, args, config_override={}):
517 command_args = ['task', 'rc:/']
518 config = self.config.copy()
519 config.update(config_override)
520 for item in config.items():
521 command_args.append('rc.{0}={1}'.format(*item))
522 command_args.extend(map(str, args))
525 def _get_version(self):
526 p = subprocess.Popen(
527 ['task', '--version'],
528 stdout=subprocess.PIPE,
529 stderr=subprocess.PIPE)
530 stdout, stderr = [x.decode('utf-8') for x in p.communicate()]
531 return stdout.strip('\n')
533 def execute_command(self, args, config_override={}):
534 command_args = self._get_command_args(
535 args, config_override=config_override)
536 logger.debug(' '.join(command_args))
537 p = subprocess.Popen(command_args, stdout=subprocess.PIPE,
538 stderr=subprocess.PIPE)
539 stdout, stderr = [x.decode('utf-8') for x in p.communicate()]
542 error_msg = stderr.strip().splitlines()[-1]
544 error_msg = stdout.strip()
545 raise TaskWarriorException(error_msg)
546 return stdout.strip().split('\n')
548 def filter_tasks(self, filter_obj):
549 args = ['export', '--'] + filter_obj.get_filter_params()
551 for line in self.execute_command(args):
553 data = line.strip(',')
555 tasks.append(Task(self, json.loads(data)))
557 raise TaskWarriorException('Invalid JSON: %s' % data)
560 def merge_with(self, path, push=False):
561 path = path.rstrip('/') + '/'
562 self.execute_command(['merge', path], config_override={
563 'merge.autopush': 'yes' if push else 'no',
567 self.execute_command(['undo'], config_override={
568 'confirmation': 'no',