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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# vim: set fileencoding=utf-8 :
#
# (C) 2013 Guido Günther <agx@sigxcpu.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.
#
# 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 io
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 = io.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._data.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)
|