Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZEO
Commits
8dbba0a3
Commit
8dbba0a3
authored
Jul 22, 1999
by
joey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed to include export to XML format support.
parent
c2690479
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
112 additions
and
6 deletions
+112
-6
src/ZODB/ExportImport.py
src/ZODB/ExportImport.py
+112
-6
No files found.
src/ZODB/ExportImport.py
View file @
8dbba0a3
...
...
@@ -89,8 +89,48 @@ from utils import p64, u64
from
referencesf
import
referencesf
from
cStringIO
import
StringIO
from
cPickle
import
Pickler
,
Unpickler
import
Shared.DC.xml.ppml
ppml
=
Shared
.
DC
.
xml
.
ppml
TupleType
=
type
(())
def
save_record
(
self
,
tag
,
data
):
file
=
self
.
file
write
=
file
.
write
pos
=
file
.
tell
()
file
.
seek
(
pos
)
a
=
data
[
1
]
if
a
.
has_key
(
'id'
):
oid
=
a
[
'id'
]
oid
=
ppml
.
p64
(
string
.
atoi
(
oid
))
v
=
''
for
x
in
data
[
2
:]:
v
=
v
+
x
l
=
ppml
.
p64
(
len
(
v
))
v
=
oid
+
l
+
v
return
v
class
zopedata
:
def
__init__
(
self
,
parser
,
tag
,
attrs
):
self
.
file
=
parser
.
file
write
=
self
.
file
.
write
write
(
'ZEXP'
)
def
append
(
self
,
data
):
file
=
self
.
file
write
=
file
.
write
pos
=
file
.
tell
()
file
.
seek
(
pos
)
write
(
data
)
def
start_zopedata
(
self
,
tag
,
data
):
return
zopedata
(
self
,
tag
,
data
)
def
save_zopedata
(
self
,
tag
,
data
):
file
=
self
.
file
write
=
file
.
write
pos
=
file
.
tell
()
file
.
seek
(
pos
)
write
(
export_end_marker
)
class
ExportImport
:
def
exportFile
(
self
,
oid
,
file
=
None
):
...
...
@@ -120,6 +160,43 @@ class ExportImport:
write
(
export_end_marker
)
return
file
def
XMLrecord
(
self
,
oid
,
len
,
p
):
q
=
ppml
.
ToXMLUnpickler
f
=
StringIO
(
p
)
u
=
q
(
f
)
id
=
ppml
.
u64
(
oid
)
u
.
idprefix
=
str
(
id
)
+
'.'
p
=
u
.
load
().
__str__
(
4
)
if
f
.
tell
()
<
len
:
p
=
p
+
u
.
load
().
__str__
(
4
)
String
=
' <record id="%s">
\
n
%s </record>
\
n
'
%
(
id
,
p
)
return
String
def
exportXML
(
self
,
oid
,
file
=
None
):
if
file
is
None
:
file
=
TemporaryFile
()
elif
type
(
file
)
is
StringType
:
file
=
open
(
file
,
'w+b'
)
write
=
file
.
write
write
(
'<?xml version="1.0"?>
\
012
<ZopeData>
\
012
'
)
version
=
self
.
_version
ref
=
referencesf
oids
=
[
oid
]
done_oids
=
{}
done
=
done_oids
.
has_key
load
=
self
.
_storage
.
load
while
oids
:
oid
=
oids
[
0
]
del
oids
[
0
]
if
done
(
oid
):
continue
done_oids
[
oid
]
=
1
try
:
p
,
serial
=
load
(
oid
,
version
)
except
:
pass
# Ick, a broken reference
else
:
ref
(
p
,
oids
)
write
(
self
.
XMLrecord
(
oid
,
len
(
p
),
p
))
write
(
'</ZopeData>
\
n
'
)
return
file
def
importFile
(
self
,
file
,
clue
=
''
):
# This is tricky, because we need to work in a transaction!
...
...
@@ -129,6 +206,15 @@ class ExportImport:
else
:
try
:
file_name
=
file
.
name
except
:
file_name
=
'(unknown)'
read
=
file
.
read
if
read
(
4
)
==
'<?xm'
:
file
.
seek
(
0
)
return
self
.
importXML
(
file
,
clue
)
else
:
file
.
seek
(
0
)
if
file
.
read
(
4
)
!=
'ZEXP'
:
raise
POSException
.
ExportError
,
'Invalid export header'
t
=
get_transaction
().
sub
()
...
...
@@ -137,11 +223,6 @@ class ExportImport:
storage
=
self
.
_storage
new_oid
=
storage
.
new_oid
read
=
file
.
read
if
read
(
4
)
!=
'ZEXP'
:
raise
POSException
.
ExportError
,
'Invalid export header'
oids
=
{}
wrote_oid
=
oids
.
has_key
new_oid
=
storage
.
new_oid
...
...
@@ -212,6 +293,31 @@ class ExportImport:
if
return_oid
is
not
None
:
return
self
[
return_oid
]
def
importXML
(
self
,
file
,
clue
=
''
):
import
Shared.DC.xml.pyexpat.pyexpat
pyexpat
=
Shared
.
DC
.
xml
.
pyexpat
.
pyexpat
if
type
(
file
)
is
StringType
:
file
=
open
(
file
)
outfile
=
TemporaryFile
()
data
=
file
.
read
()
F
=
ppml
.
xmlPickler
()
F
.
end_handlers
[
'record'
]
=
save_record
F
.
end_handlers
[
'ZopeData'
]
=
save_zopedata
F
.
start_handlers
[
'ZopeData'
]
=
start_zopedata
F
.
binary
=
1
F
.
file
=
outfile
p
=
pyexpat
.
ParserCreate
()
p
.
CharacterDataHandler
=
F
.
handle_data
p
.
StartElementHandler
=
F
.
unknown_starttag
p
.
EndElementHandler
=
F
.
unknown_endtag
r
=
p
.
Parse
(
data
)
outfile
.
seek
(
0
)
return
self
.
importFile
(
outfile
,
clue
)
######################################################################
# BoboPOS 2 compat.
...
...
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