summaryrefslogtreecommitdiffstats
path: root/kittystore/__init__.py
blob: db00b1bda84e11284cf2260604307711966010f9 (plain)
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
# -*- coding: utf-8 -*-

"""
Module entry point: call get_store() to instanciate a KittyStore
implementation.

Copyright (C) 2012 Aurelien Bompard
Author: Aurelien Bompard <abompard@fedoraproject.org>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at
your option) any later version.
See http://www.gnu.org/copyleft/gpl.html  for the full text of the
license.
"""

__all__ = ("get_store", "MessageNotFound", )


def get_store(url, debug=False):
    """Factory for a KittyStore subclass"""
    if url.startswith("mongo://"):
        raise NotImplementedError
    #else:
    #    from kittystore.sa import KittySAStore
    #    return KittySAStore(url, debug)
    else:
        from kittystore.storm import get_storm_store
        return get_storm_store(url, debug)


class MessageNotFound(Exception):
    pass