100 lines
3 KiB
Python
100 lines
3 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# dirindex.py --- Class used to parse .dirindex files
|
||
|
#
|
||
|
# Copyright (C) 2016 Torsten Dreyer
|
||
|
#
|
||
|
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
|
||
|
"""Parser for .dirindex files."""
|
||
|
|
||
|
from .exceptions import InvalidDirIndexFile
|
||
|
from .virtual_path import VirtualPath
|
||
|
|
||
|
|
||
|
class DirIndex:
|
||
|
"""Parser for .dirindex files."""
|
||
|
|
||
|
def __init__(self, dirIndexFile):
|
||
|
self.d = []
|
||
|
self.f = []
|
||
|
self.t = []
|
||
|
self.version = 0
|
||
|
self.path = None # will be a VirtualPath instance when set
|
||
|
|
||
|
# readFrom() stores the raw contents of the .dirindex file in this
|
||
|
# attribute. This is useful for troubleshooting.
|
||
|
self._rawContents = None
|
||
|
|
||
|
with open(dirIndexFile, "r", encoding="utf-8") as f:
|
||
|
self.readFrom(f)
|
||
|
|
||
|
self._sanityCheck()
|
||
|
|
||
|
def readFrom(self, readable):
|
||
|
self._rawContents = readable.read()
|
||
|
|
||
|
for line in self._rawContents.split('\n'):
|
||
|
line = line.strip()
|
||
|
if line.startswith('#'):
|
||
|
continue
|
||
|
|
||
|
tokens = line.split(':')
|
||
|
if len(tokens) == 0:
|
||
|
continue
|
||
|
|
||
|
if tokens[0] == "version":
|
||
|
self.version = int(tokens[1])
|
||
|
|
||
|
elif tokens[0] == "path":
|
||
|
# This is relative to the repository root
|
||
|
self.path = VirtualPath(tokens[1])
|
||
|
|
||
|
elif tokens[0] == "d":
|
||
|
self.d.append({ 'name': tokens[1], 'hash': tokens[2] })
|
||
|
|
||
|
elif tokens[0] == "f":
|
||
|
self.f.append({ 'name': tokens[1],
|
||
|
'hash': tokens[2], 'size': int(tokens[3]) })
|
||
|
|
||
|
elif tokens[0] == "t":
|
||
|
self.t.append({ 'name': tokens[1], 'hash': tokens[2],
|
||
|
'size': int(tokens[3]) })
|
||
|
|
||
|
def _sanityCheck(self):
|
||
|
if self.path is None:
|
||
|
assert self._rawContents is not None
|
||
|
|
||
|
firstLines = self._rawContents.split('\n')[:5]
|
||
|
raise InvalidDirIndexFile(
|
||
|
"no 'path' field found; the first lines of this .dirindex file "
|
||
|
"follow:\n\n" + '\n'.join(firstLines))
|
||
|
|
||
|
def getVersion(self):
|
||
|
return self.version
|
||
|
|
||
|
def getPath(self):
|
||
|
return self.path
|
||
|
|
||
|
def getDirectories(self):
|
||
|
return self.d
|
||
|
|
||
|
def getTarballs(self):
|
||
|
return self.t
|
||
|
|
||
|
def getFiles(self):
|
||
|
return self.f
|
||
|
|