FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[Original HTTPS Page]
cpython/Lib/dbm/__init__.py at 3.14 · python/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python
/
cpython
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
35.2k
Star
74.4k
Code
Issues
5k+
Pull requests
2.5k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Lib
/
dbm
/
__init__.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
194 lines (159 loc) · 5.88 KB
Breadcrumbs
cpython
/
Lib
/
dbm
/
__init__.py
Copy path
File metadata and controls
194 lines (159 loc) · 5.88 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
"""Generic interface to all dbm clones.
Use
import dbm
d = dbm.open(file, 'w', 0o666)
The returned object is a dbm.sqlite3, dbm.gnu, dbm.ndbm or dbm.dumb database object, dependent on the
type of database being opened (determined by the whichdb function) in the case
of an existing dbm. If the dbm does not exist and the create or new flag ('c'
or 'n') was specified, the dbm type will be determined by the availability of
the modules (tested in the above order).
It has the following interface (key and data are strings):
d[key] = data # store data at key (may override data at
# existing key)
data = d[key] # retrieve data at key (raise KeyError if no
# such key)
del d[key] # delete data stored at key (raises KeyError
# if no such key)
flag = key in d # true if the key exists
list = d.keys() # return a list of all existing keys (slow!)
Future versions may change the order in which implementations are
tested for existence, and add interfaces to other dbm-like
implementations.
"""
__all__
=
[
'open'
,
'whichdb'
,
'error'
]
import
io
import
os
import
struct
import
sys
class
error
(
Exception
):
pass
_names
=
[
'dbm.sqlite3'
,
'dbm.gnu'
,
'dbm.ndbm'
,
'dbm.dumb'
]
_defaultmod
=
None
_modules
=
{}
error
=
(
error
,
OSError
)
try
:
from
dbm
import
ndbm
except
ImportError
:
ndbm
=
None
def
open
(
file
,
flag
=
'r'
,
mode
=
0o666
):
"""Open or create database at path given by *file*.
Optional argument *flag* can be 'r' (default) for read-only access, 'w'
for read-write access of an existing database, 'c' for read-write access
to a new or existing database, and 'n' for read-write access to a new
database.
Note: 'r' and 'w' fail if the database doesn't exist; 'c' creates it
only if it doesn't exist; and 'n' always creates a new database.
"""
global
_defaultmod
if
_defaultmod
is
None
:
for
name
in
_names
:
try
:
mod
=
__import__
(
name
,
fromlist
=
[
'open'
])
except
ImportError
:
continue
if
not
_defaultmod
:
_defaultmod
=
mod
_modules
[
name
]
=
mod
if
not
_defaultmod
:
raise
ImportError
(
"no dbm clone found; tried %s"
%
_names
)
# guess the type of an existing database, if not creating a new one
result
=
whichdb
(
file
)
if
'n'
not
in
flag
else
None
if
result
is
None
:
# db doesn't exist or 'n' flag was specified to create a new db
if
'c'
in
flag
or
'n'
in
flag
:
# file doesn't exist and the new flag was used so use default type
mod
=
_defaultmod
else
:
raise
error
[
0
](
"db file doesn't exist; "
"use 'c' or 'n' flag to create a new db"
)
elif
result
==
""
:
# db type cannot be determined
raise
error
[
0
](
"db type could not be determined"
)
elif
result
not
in
_modules
:
raise
error
[
0
](
"db type is {0}, but the module is not "
"available"
.
format
(
result
))
else
:
mod
=
_modules
[
result
]
return
mod
.
open
(
file
,
flag
,
mode
)
def
whichdb
(
filename
):
"""Guess which db package to use to open a db file.
Return values:
- None if the database file can't be read;
- empty string if the file can be read but can't be recognized
- the name of the dbm submodule (e.g. "ndbm" or "gnu") if recognized.
Importing the given module may still fail, and opening the
database using that module may still fail.
"""
# Check for ndbm first -- this has a .pag and a .dir file
filename
=
os
.
fsencode
(
filename
)
try
:
f
=
io
.
open
(
filename
+
b".pag"
,
"rb"
)
f
.
close
()
f
=
io
.
open
(
filename
+
b".dir"
,
"rb"
)
f
.
close
()
return
"dbm.ndbm"
except
OSError
:
# some dbm emulations based on Berkeley DB generate a .db file
# some do not, but they should be caught by the bsd checks
try
:
f
=
io
.
open
(
filename
+
b".db"
,
"rb"
)
f
.
close
()
# guarantee we can actually open the file using dbm
# kind of overkill, but since we are dealing with emulations
# it seems like a prudent step
if
ndbm
is
not
None
:
d
=
ndbm
.
open
(
filename
)
d
.
close
()
return
"dbm.ndbm"
except
OSError
:
pass
# Check for dumbdbm next -- this has a .dir and a .dat file
try
:
# First check for presence of files
os
.
stat
(
filename
+
b".dat"
)
size
=
os
.
stat
(
filename
+
b".dir"
).
st_size
# dumbdbm files with no keys are empty
if
size
==
0
:
return
"dbm.dumb"
f
=
io
.
open
(
filename
+
b".dir"
,
"rb"
)
try
:
if
f
.
read
(
1
)
in
(
b"'"
,
b'"'
):
return
"dbm.dumb"
finally
:
f
.
close
()
except
OSError
:
pass
# See if the file exists, return None if not
try
:
f
=
io
.
open
(
filename
,
"rb"
)
except
OSError
:
return
None
with
f
:
# Read the start of the file -- the magic number
s16
=
f
.
read
(
16
)
s
=
s16
[
0
:
4
]
# Return "" if not at least 4 bytes
if
len
(
s
)
!=
4
:
return
""
# Check for SQLite3 header string.
if
s16
==
b"SQLite format 3
\0
"
:
return
"dbm.sqlite3"
# Convert to 4-byte int in native byte order -- return "" if impossible
try
:
(
magic
,)
=
struct
.
unpack
(
"=l"
,
s
)
except
struct
.
error
:
return
""
# Check for GNU dbm
if
magic
in
(
0x13579ace
,
0x13579acd
,
0x13579acf
):
return
"dbm.gnu"
# Later versions of Berkeley db hash file have a 12-byte pad in
# front of the file type
try
:
(
magic
,)
=
struct
.
unpack
(
"=l"
,
s16
[
-
4
:])
except
struct
.
error
:
return
""
# Unknown
return
""
if
__name__
==
"__main__"
:
for
filename
in
sys
.
argv
[
1
:]:
print
(
whichdb
(
filename
)
or
"UNKNOWN"
,
filename
)
Back
|
FazBrowse Home
|
New Git URL