Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
1b5a1d07
Kaydet (Commit)
1b5a1d07
authored
May 28, 1996
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Total rewrite
üst
72e31642
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
78 additions
and
58 deletions
+78
-58
ArrayIO.py
Lib/ArrayIO.py
+78
-58
No files found.
Lib/ArrayIO.py
Dosyayı görüntüle @
1b5a1d07
# port of StringIO.py using arrays
"""File-like objects that read/write an array buffer.
# ArrayIO.py
# jjk 02/28/96 001 direct mod of StringIO, test suite checks out
This implements (nearly) all stdio methods.
# jjk 02/28/96 002 inherit from StringIO, test suite checks out
# jjk 02/28/96 003 add __xx__() functions
f = ArrayIO() # ready for writing
#
f = ArrayIO(buf) # ready for reading
# class ArrayIO implements file-like objects that read/write a
f.close() # explicitly release resources held
# string buffer (a.k.a. "memory files").
flag = f.isatty() # always false
#
pos = f.tell() # get current position
# all methods that interface with ArrayIO pass strings. Internally, however,
f.seek(pos) # set current position
# ArrayIO uses an array object.
f.seek(pos, mode) # mode 0: absolute; 1: relative; 2: relative to EOF
#
buf = f.read() # read until EOF
# the interface is the same as StringIO.py
buf = f.read(n) # read up to n bytes
# also handles len(a), a[i], a[i]='x', a[i:j], a[i:j] = aString
buf = f.readline() # read until end of line ('
\n
') or EOF
#
list = f.readlines()# list of f.readline() results until EOF
f.write(buf) # write at current position
f.writelines(list) # for line in list: f.write(line)
f.getvalue() # return whole file's contents as a string
Notes:
- This is very similar to StringIO. StringIO is faster for reading,
but ArrayIO is faster for writing.
- ArrayIO uses an array object internally, but all its interfaces
accept and return strings.
- Using a real file is often faster (but less convenient).
- fileno() is left unimplemented so that code which uses it triggers
an exception early.
- Seeking far beyond EOF and then writing will insert real null
bytes that occupy space in the buffer.
- There's a simple test set (see end of this file).
"""
import
string
import
string
import
array
from
array
import
array
import
StringIO
class
ArrayIO
(
StringIO
.
StringIO
):
class
ArrayIO
:
# jjk 02/28/96
def
__init__
(
self
,
buf
=
''
):
def
__init__
(
self
,
buf
=
''
):
#jjk 02/28/96
self
.
buf
=
array
(
'c'
,
buf
)
self
.
buf
=
array
.
array
(
'c'
,
buf
)
self
.
pos
=
0
self
.
pos
=
0
self
.
closed
=
0
self
.
closed
=
0
def
__len__
(
self
):
self
.
softspace
=
0
#jjk 02/28/96
def
close
(
self
):
return
len
(
self
.
buf
)
if
not
self
.
closed
:
def
__getitem__
(
self
,
key
):
self
.
closed
=
1
#jjk 02/28/96
del
self
.
buf
,
self
.
pos
return
self
.
buf
[
key
]
def
isatty
(
self
):
def
__setitem__
(
self
,
key
,
item
):
return
0
#jjk 02/28/96
def
seek
(
self
,
pos
,
mode
=
0
):
self
.
buf
[
key
]
=
item
if
mode
==
1
:
def
__getslice__
(
self
,
i
,
j
):
pos
=
pos
+
self
.
pos
#jjk 02/28/96
elif
mode
==
2
:
return
self
.
buf
[
i
:
j
]
.
tostring
()
pos
=
pos
+
len
(
self
.
buf
)
def
__setslice__
(
self
,
i
,
j
,
aString
):
self
.
pos
=
max
(
0
,
pos
)
#jjk 02/28/96
def
tell
(
self
):
self
.
buf
[
i
:
j
]
=
array
.
array
(
'c'
,
aString
)
return
self
.
pos
def
read
(
self
,
n
=
0
):
def
read
(
self
,
n
=
-
1
):
#jjk 02/28/96
if
n
<
0
:
r
=
StringIO
.
StringIO
.
read
(
self
,
n
)
newpos
=
len
(
self
.
buf
)
return
(
r
.
tostring
())
else
:
def
_findCharacter
(
self
,
char
,
start
):
newpos
=
min
(
self
.
pos
+
n
,
len
(
self
.
buf
))
#probably very slow
r
=
self
.
buf
[
self
.
pos
:
newpos
]
.
tostring
()
#jjk 02/28/96
self
.
pos
=
newpos
for
i
in
range
(
max
(
start
,
0
),
len
(
self
.
buf
)):
return
r
if
(
self
.
buf
[
i
]
==
char
):
return
(
i
)
return
(
-
1
)
def
readline
(
self
):
def
readline
(
self
):
#jjk 02/28/96
i
=
string
.
find
(
self
.
buf
[
self
.
pos
:]
.
tostring
(),
'
\n
'
)
i
=
self
.
_findCharacter
(
'
\n
'
,
self
.
pos
)
if
i
<
0
:
if
i
<
0
:
newpos
=
len
(
self
.
buf
)
newpos
=
len
(
self
.
buf
)
else
:
else
:
newpos
=
i
+
1
newpos
=
self
.
pos
+
i
+
1
r
=
self
.
buf
[
self
.
pos
:
newpos
]
.
tostring
()
r
=
self
.
buf
[
self
.
pos
:
newpos
]
.
tostring
()
self
.
pos
=
newpos
self
.
pos
=
newpos
return
r
return
r
def
readlines
(
self
):
lines
=
string
.
splitfields
(
self
.
read
(),
'
\n
'
)
if
not
lines
:
return
lines
for
i
in
range
(
len
(
lines
)
-
1
):
lines
[
i
]
=
lines
[
i
]
+
'
\n
'
if
not
lines
[
-
1
]:
del
lines
[
-
1
]
return
lines
def
write
(
self
,
s
):
def
write
(
self
,
s
):
#jjk 02/28/96
if
not
s
:
return
if
not
s
:
return
if
self
.
pos
>
len
(
self
.
buf
):
a
=
array
(
'c'
,
s
)
self
.
buf
.
fromstring
(
'
\0
'
*
(
self
.
pos
-
len
(
self
.
buf
)))
n
=
self
.
pos
-
len
(
self
.
buf
)
newpos
=
self
.
pos
+
len
(
s
)
if
n
>
0
:
self
.
buf
[
self
.
pos
:
newpos
]
=
array
.
array
(
'c'
,
s
)
self
.
buf
[
len
(
self
.
buf
):]
=
array
(
'c'
,
'
\0
'
)
*
n
newpos
=
self
.
pos
+
len
(
a
)
self
.
buf
[
self
.
pos
:
newpos
]
=
a
self
.
pos
=
newpos
self
.
pos
=
newpos
def
writelines
(
self
,
list
):
self
.
write
(
string
.
joinfields
(
list
,
''
))
def
flush
(
self
):
pass
def
getvalue
(
self
):
def
getvalue
(
self
):
#jjk 02/28/96
return
self
.
buf
.
tostring
()
return
self
.
buf
.
tostring
()
# A little test suite
# A little test suite
# identical to test suite in StringIO.py , except for "f = ArrayIO()"
# too bad I couldn't inherit this :-)
def
test
():
def
test
():
import
sys
import
sys
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment