-
Notifications
You must be signed in to change notification settings - Fork 37
/
database.py
156 lines (131 loc) · 4.67 KB
/
database.py
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
#******************************************************************************
# * Copyright (c) 2019, XtremeDV. All rights reserved.
# *
# * Licensed under the Apache License, Version 2.0 (the "License");
# * you may not use this file except in compliance with the License.
# * You may obtain a copy of the License at
# *
# * http://www.apache.org/licenses/LICENSE-2.0
# *
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an "AS IS" BASIS,
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# * See the License for the specific language governing permissions and
# * limitations under the License.
# *
# * Author: Jude Zhang, Email: zhajio.1988@gmail.com
# *******************************************************************************
# Copyright (c) 2014-2018, Lars Asplund lars.anders.asplund@gmail.com
"""
A simple file based database
"""
from os.path import join, exists
import os
import pickle
import io
import struct
from ostools import renew_path
class DataBase(object):
"""
A simple file based database
both keys and values are bytes
The database consists of a folder with files called nodes.
Each nodes contains four bytes denoting the key length as an
unsigned integer followed by the key followed by the data.
The reason to not just have the keys as the file names is that
many operating systems does not support very long file names thus limiting the key length
"""
def __init__(self, path, new=False):
"""
Create database in path
- path is a directory
- new create new database
"""
self._path = path
if new:
renew_path(path)
elif not exists(path):
os.makedirs(path)
# Map keys to nodes indexes
self._keys_to_nodes = self._discover_nodes()
if not self._keys_to_nodes:
self._next_node = 0
else:
self._next_node = max(self._keys_to_nodes.values()) + 1
def _discover_nodes(self):
"""
Discover nodes already found in the database
"""
keys_to_nodes = {}
for file_base_name in os.listdir(self._path):
key = self._read_key(join(self._path, file_base_name))
assert key not in keys_to_nodes # Two nodes contains the same key
keys_to_nodes[key] = int(file_base_name)
return keys_to_nodes
@staticmethod
def _read_key_from_fptr(fptr):
"""
Read the key from a file pointer
first read four bytes for the key length then read the key
"""
key_size = struct.unpack("I", fptr.read(4))[0]
key = fptr.read(key_size)
return key
def _read_key(self, file_name):
"""
Read key found in file_name
"""
with io.open(file_name, "rb") as fptr:
return self._read_key_from_fptr(fptr)
def _read_data(self, file_name):
"""
Read key found in file_name
"""
with io.open(file_name, "rb") as fptr:
self._read_key_from_fptr(fptr)
data = fptr.read()
return data
@staticmethod
def _write_node(file_name, key, value):
"""
Write node to file
"""
with io.open(file_name, "wb") as fptr:
fptr.write(struct.pack("I", len(key)))
fptr.write(key)
fptr.write(value)
def _to_file_name(self, key):
"""
Convert key to file name
"""
return join(self._path, str(self._keys_to_nodes[key]))
def _allocate_node_for_key(self, key):
"""
Allocate a node index for a new key
"""
assert key not in self._keys_to_nodes
self._keys_to_nodes[key] = self._next_node
self._next_node += 1
def __setitem__(self, key, value):
if key not in self._keys_to_nodes:
self._allocate_node_for_key(key)
self._write_node(self._to_file_name(key), key, value)
def __getitem__(self, key):
if key not in self:
raise KeyError(key)
return self._read_data(self._to_file_name(key))
def __contains__(self, key):
return key in self._keys_to_nodes
class PickledDataBase(object):
"""
Wraps a byte based database (un)pickling the values
Allowing storage of arbitrary Python objects
"""
def __init__(self, database):
self._database = database
def __getitem__(self, key):
return pickle.loads(self._database[key])
def __setitem__(self, key, value):
self._database[key] = pickle.dumps(value, protocol=pickle.HIGHEST_PROTOCOL)
def __contains__(self, key):
return key in self._database