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
32b5cb0a
Kaydet (Commit)
32b5cb0a
authored
May 28, 2011
tarafından
Ned Deily
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #985064: Make plistlib more resilient to faulty input plists.
Patch by Mher Movsisyan.
üst
056f5b9d
b8e59f77
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
67 additions
and
22 deletions
+67
-22
plistlib.py
Lib/plistlib.py
+37
-22
test_plistlib.py
Lib/test/test_plistlib.py
+26
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/plistlib.py
Dosyayı görüntüle @
32b5cb0a
...
...
@@ -68,13 +68,15 @@ def readPlist(pathOrFile):
usually is a dictionary).
"""
didOpen
=
False
if
isinstance
(
pathOrFile
,
str
):
pathOrFile
=
open
(
pathOrFile
,
'rb'
)
didOpen
=
True
p
=
PlistParser
()
rootObject
=
p
.
parse
(
pathOrFile
)
if
didOpen
:
pathOrFile
.
close
()
try
:
if
isinstance
(
pathOrFile
,
str
):
pathOrFile
=
open
(
pathOrFile
,
'rb'
)
didOpen
=
True
p
=
PlistParser
()
rootObject
=
p
.
parse
(
pathOrFile
)
finally
:
if
didOpen
:
pathOrFile
.
close
()
return
rootObject
...
...
@@ -83,15 +85,17 @@ def writePlist(rootObject, pathOrFile):
file name or a (writable) file object.
"""
didOpen
=
False
if
isinstance
(
pathOrFile
,
str
):
pathOrFile
=
open
(
pathOrFile
,
'wb'
)
didOpen
=
True
writer
=
PlistWriter
(
pathOrFile
)
writer
.
writeln
(
"<plist version=
\"
1.0
\"
>"
)
writer
.
writeValue
(
rootObject
)
writer
.
writeln
(
"</plist>"
)
if
didOpen
:
pathOrFile
.
close
()
try
:
if
isinstance
(
pathOrFile
,
str
):
pathOrFile
=
open
(
pathOrFile
,
'wb'
)
didOpen
=
True
writer
=
PlistWriter
(
pathOrFile
)
writer
.
writeln
(
"<plist version=
\"
1.0
\"
>"
)
writer
.
writeValue
(
rootObject
)
writer
.
writeln
(
"</plist>"
)
finally
:
if
didOpen
:
pathOrFile
.
close
()
def
readPlistFromBytes
(
data
):
...
...
@@ -352,7 +356,6 @@ class Data:
def
__repr__
(
self
):
return
"
%
s(
%
s)"
%
(
self
.
__class__
.
__name__
,
repr
(
self
.
data
))
class
PlistParser
:
def
__init__
(
self
):
...
...
@@ -362,11 +365,11 @@ class PlistParser:
def
parse
(
self
,
fileobj
):
from
xml.parsers.expat
import
ParserCreate
parser
=
ParserCreate
()
parser
.
StartElementHandler
=
self
.
handleBeginElement
parser
.
EndElementHandler
=
self
.
handleEndElement
parser
.
CharacterDataHandler
=
self
.
handleData
parser
.
ParseFile
(
fileobj
)
self
.
parser
=
ParserCreate
()
self
.
parser
.
StartElementHandler
=
self
.
handleBeginElement
self
.
parser
.
EndElementHandler
=
self
.
handleEndElement
self
.
parser
.
CharacterDataHandler
=
self
.
handleData
self
.
parser
.
ParseFile
(
fileobj
)
return
self
.
root
def
handleBeginElement
(
self
,
element
,
attrs
):
...
...
@@ -385,12 +388,18 @@ class PlistParser:
def
addObject
(
self
,
value
):
if
self
.
currentKey
is
not
None
:
if
not
isinstance
(
self
.
stack
[
-
1
],
type
({})):
raise
ValueError
(
"unexpected element at line
%
d"
%
self
.
parser
.
CurrentLineNumber
)
self
.
stack
[
-
1
][
self
.
currentKey
]
=
value
self
.
currentKey
=
None
elif
not
self
.
stack
:
# this is the root object
self
.
root
=
value
else
:
if
not
isinstance
(
self
.
stack
[
-
1
],
type
([])):
raise
ValueError
(
"unexpected element at line
%
d"
%
self
.
parser
.
CurrentLineNumber
)
self
.
stack
[
-
1
]
.
append
(
value
)
def
getData
(
self
):
...
...
@@ -405,9 +414,15 @@ class PlistParser:
self
.
addObject
(
d
)
self
.
stack
.
append
(
d
)
def
end_dict
(
self
):
if
self
.
currentKey
:
raise
ValueError
(
"missing value for key '
%
s' at line
%
d"
%
(
self
.
currentKey
,
self
.
parser
.
CurrentLineNumber
))
self
.
stack
.
pop
()
def
end_key
(
self
):
if
self
.
currentKey
or
not
isinstance
(
self
.
stack
[
-
1
],
type
({})):
raise
ValueError
(
"unexpected key at line
%
d"
%
self
.
parser
.
CurrentLineNumber
)
self
.
currentKey
=
self
.
getData
()
def
begin_array
(
self
,
attrs
):
...
...
Lib/test/test_plistlib.py
Dosyayı görüntüle @
32b5cb0a
...
...
@@ -175,6 +175,32 @@ class TestPlistlib(unittest.TestCase):
self
.
assertEqual
(
test1
,
result1
)
self
.
assertEqual
(
test2
,
result2
)
def
test_invalidarray
(
self
):
for
i
in
[
"<key>key inside an array</key>"
,
"<key>key inside an array2</key><real>3</real>"
,
"<true/><key>key inside an array3</key>"
]:
self
.
assertRaises
(
ValueError
,
plistlib
.
readPlistFromBytes
,
(
"<plist><array>
%
s</array></plist>"
%
i
)
.
encode
())
def
test_invaliddict
(
self
):
for
i
in
[
"<key><true/>k</key><string>compound key</string>"
,
"<key>single key</key>"
,
"<string>missing key</string>"
,
"<key>k1</key><string>v1</string><real>5.3</real>"
"<key>k1</key><key>k2</key><string>double key</string>"
]:
self
.
assertRaises
(
ValueError
,
plistlib
.
readPlistFromBytes
,
(
"<plist><dict>
%
s</dict></plist>"
%
i
)
.
encode
())
self
.
assertRaises
(
ValueError
,
plistlib
.
readPlistFromBytes
,
(
"<plist><array><dict>
%
s</dict></array></plist>"
%
i
)
.
encode
())
def
test_invalidinteger
(
self
):
self
.
assertRaises
(
ValueError
,
plistlib
.
readPlistFromBytes
,
b
"<plist><integer>not integer</integer></plist>"
)
def
test_invalidreal
(
self
):
self
.
assertRaises
(
ValueError
,
plistlib
.
readPlistFromBytes
,
b
"<plist><integer>not real</integer></plist>"
)
def
test_main
():
support
.
run_unittest
(
TestPlistlib
)
...
...
Misc/ACKS
Dosyayı görüntüle @
32b5cb0a
...
...
@@ -608,6 +608,7 @@ Paul Moore
Derek Morr
James A Morrison
Pablo Mouzo
Mher Movsisyan
Sjoerd Mullender
Sape Mullender
Michael Muller
...
...
Misc/NEWS
Dosyayı görüntüle @
32b5cb0a
...
...
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
- Issue #985064: Make plistlib more resilient to faulty input plists.
Patch by Mher Movsisyan.
- Issue #12175: RawIOBase.readall() now returns None if read() returns None.
- Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError
...
...
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