File: subfile.py

package info (click to toggle)
dpkg-scriptlib 0.1-2hamm1
  • links: PTS
  • area: main
  • in suites: hamm, slink
  • size: 188 kB
  • ctags: 230
  • sloc: python: 1,685; perl: 534; makefile: 41; sh: 18
file content (98 lines) | stat: -rw-r--r-- 2,528 bytes parent folder | download | duplicates (2)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# $Id$
#
# Copyright (C) 1997  Klee Dienes <klee@mit.edu>
#
# 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., 675 Mass Ave, Cambridge, MA 02139, USA.

class subfile:

	def __init__ (self, f, offset, length = -1):
		self.f = f
		self.f.seek (offset)
		self.offset = offset
		self.pos = 0
		self.length = length
		self.blocksize = 16 * 1024

	def isatty (self):
		return 0

	def tell (self):
		#print 'sfile: tell is %d' % self.pos
		return self.pos

	def seek (self, offset, mode = 0):
		#print 'sfile: seeking from %d to %d' % (self.pos, offset)
		if (mode == 0):
			if (self.length < 0):
				self.pos = offset
				self.f.seek (self.pos + self.offset)
			else:
				if (offset > self.length):
					raise IOError, 'seek past end of file'
				self.pos = offset
				self.f.seek (self.pos + self.offset)

		if (mode == 1):
			self.pos = self.pos + offset
			self.f.seek (self.pos + self.offset)

		elif (mode == 2):
			if (length < 0):
				self.f.seek (0, 2)
				self.pos = self.f.tell () - self.offset
			elif (length > self.length):
				raise IOError, 'seek past end of file'
			else:
				self.seek (self.pos + self.length - self.offset)

	def read (self, n = -1):
		self.f.seek (self.offset + self.pos)
		#print 'sfile: n: %d' % n
		if ((n < 0) and (self.length >= 0)):
			n = self.length - self.pos
		if (self.length >= 0):
			n = min (n, self.length - self.pos)
		#print 'sfile: n: %d' % n
		r = ''
		while (n != 0):
			op = self.f.tell ()
			s = self.f.read (n)
			#print 'sfile: read %d bytes from %d (%d in original)' % (len (s), self.pos, op)
			self.pos = self.pos + len (s)
			n = n - len (s)
			if (s == ''):
				break
			r = r + s
		#print 'returning: "%s"' % r
		return r

	def readline (self):
		r = ''
		while 1:
			s = self.read (1)
			if (s == ''):
				return r
			r = r + s
			if (s == '\n'):
				return r

	def readlines (self):
		r = []
		while 1:
			l = self.readline ()
			if (l == ''):
				return r
			r.append (l)