# -*- coding: utf-8 -*- # Copyright(C) 2010-2011 Christophe Benz, Romain Bignon # # This file is part of weboob. # # weboob is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # weboob 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. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with weboob. If not, see . __all__ = ['FormattersLoader', 'FormatterLoadError'] class FormatterLoadError(Exception): pass class FormattersLoader(object): BUILTINS = ['htmltable', 'multiline', 'simple', 'table', 'csv', 'webkit', 'json', 'json_line'] def __init__(self): self.formatters = {} def register_formatter(self, name, klass): self.formatters[name] = klass def get_available_formatters(self): l = set(self.formatters.iterkeys()) l = l.union(self.BUILTINS) l = sorted(l) return l def build_formatter(self, name): if name not in self.formatters: try: self.formatters[name] = self.load_builtin_formatter(name) except ImportError as e: FormattersLoader.BUILTINS.remove(name) raise FormatterLoadError('Unable to load formatter "%s": %s' % (name, e)) return self.formatters[name]() def load_builtin_formatter(self, name): if name not in self.BUILTINS: raise FormatterLoadError('Formatter "%s" does not exist' % name) if name == 'htmltable': from .table import HTMLTableFormatter return HTMLTableFormatter elif name == 'table': from .table import TableFormatter return TableFormatter elif name == 'simple': from .simple import SimpleFormatter return SimpleFormatter elif name == 'multiline': from .multiline import MultilineFormatter return MultilineFormatter elif name == 'webkit': from .webkit import WebkitGtkFormatter return WebkitGtkFormatter elif name == 'csv': from .csv import CSVFormatter return CSVFormatter elif name == 'json': from .json import JsonFormatter return JsonFormatter elif name == 'json_line': from .json import JsonLineFormatter return JsonLineFormatter