Files
deb-python-taskflow/taskflow/persistence/backends/base.py
anastasia-karpinska 06bd21f8c2 All classes should explicitly inherit object class
To avoid pylint errors six.with_metaclass was substituted
with six.add_metaclass and explicit inheritance of object class.

Change-Id: I516f111a9ba1af414b1a5daefad44b743af0412f
2013-11-28 14:43:49 +02:00

105 lines
2.9 KiB
Python

# -*- coding: utf-8 -*-
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# Copyright (C) 2013 Rackspace Hosting Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import abc
import six
@six.add_metaclass(abc.ABCMeta)
class Backend(object):
"""Base class for persistence backends."""
def __init__(self, conf):
self._conf = conf
@abc.abstractmethod
def get_connection(self):
"""Return a Connection instance based on the configuration settings."""
pass
@abc.abstractmethod
def close(self):
"""Closes any resources this backend has open."""
pass
@six.add_metaclass(abc.ABCMeta)
class Connection(object):
"""Base class for backend connections."""
@abc.abstractproperty
def backend(self):
"""Returns the backend this connection is associated with."""
pass
@abc.abstractmethod
def close(self):
"""Closes any resources this connection has open."""
pass
@abc.abstractmethod
def upgrade(self):
"""Migrate the persistence backend to the most recent version."""
pass
@abc.abstractmethod
def clear_all(self):
"""Clear all entries from this backend."""
pass
@abc.abstractmethod
def update_task_details(self, task_detail):
"""Updates a given task details and returns the updated version.
NOTE(harlowja): the details that is to be updated must already have
been created by saving a flow details with the given task detail inside
of it.
"""
pass
@abc.abstractmethod
def update_flow_details(self, flow_detail):
"""Updates a given flow details and returns the updated version.
NOTE(harlowja): the details that is to be updated must already have
been created by saving a logbook with the given flow detail inside
of it.
"""
pass
@abc.abstractmethod
def save_logbook(self, book):
"""Saves a logbook, and all its contained information."""
pass
@abc.abstractmethod
def destroy_logbook(self, book_uuid):
"""Deletes/destroys a logbook matching the given uuid."""
pass
@abc.abstractmethod
def get_logbook(self, book_uuid):
"""Fetches a logbook object matching the given uuid."""
pass
@abc.abstractmethod
def get_logbooks(self):
"""Return an iterable of logbook objects."""
pass