# vim: set fileencoding=utf-8 : # # (C) 2013 Guido Günther # 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. # # This program 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 General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """Make blobs in a git repository accessible as file like objects""" import StringIO from gbp.git.repository import GitRepositoryError class GitVfs(object): class _File(object): """ A file like object representing a file in git @todo: We don't support any byte ranges yet. """ def __init__(self, content): self._iter = iter self._data = StringIO.StringIO(content) def readline(self): return self._data.readline() def readlines(self): return self._data.readlines() def read(self, size=None): return self._data.read(size) def close(self): return self.close() def __init__(self, repo, committish=None): """ Access files in a unpaced Debian source package. @param repo: the git repository to act on @param committish: the committish to act on """ self._repo = repo self._committish = committish or 'HEAD' def open(self, path, flags=None): flags = flags or 'r' if flags != 'r': raise NotImplementedError("Only reading supported so far") try: return GitVfs._File(self._repo.show( "%s:%s" % (self._committish, path))) except GitRepositoryError as e: raise IOError(e)