blob: a5036559dd0f6c141d9b7c5b22a75d1f6d147028 [file] [log] [blame]
# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
class DataSource(object):
'''
Defines an abstraction for all DataSources.
DataSources must have two public methods, get and Refresh. A DataSource is
initialized with a ServerInstance and a Request (defined in servlet.py).
Anything in the ServerInstance can be used by the DataSource. Request is None
when DataSources are created for Refresh.
DataSources are used to provide templates with access to data. DataSources may
not access other DataSources and any logic or data that is useful to other
DataSources must be moved to a different class.
'''
def __init__(self, server_instance, request):
pass
def Refresh(self):
'''Refreshes the cache of data this source provides. Should return a Future
which resolves to a boolean indicating the success or failure of the
refresh.
'''
raise NotImplementedError(self.__class__)
def get(self, key):
'''Returns a dictionary or list that can be consumed by a template. Called
on an offline file system and can only access files in the cache.
'''
raise NotImplementedError(self.__class__)