You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
195 lines
4.6 KiB
195 lines
4.6 KiB
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright 2011-2013 Codernity (http://codernity.com)
|
|
#
|
|
# 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.
|
|
|
|
|
|
import os
|
|
import marshal
|
|
|
|
import struct
|
|
import shutil
|
|
|
|
from CodernityDB.storage import IU_Storage, DummyStorage
|
|
|
|
try:
|
|
from CodernityDB import __version__
|
|
except ImportError:
|
|
from __init__ import __version__
|
|
|
|
|
|
import io
|
|
|
|
|
|
class IndexException(Exception):
|
|
pass
|
|
|
|
|
|
class IndexNotFoundException(IndexException):
|
|
pass
|
|
|
|
|
|
class ReindexException(IndexException):
|
|
pass
|
|
|
|
|
|
class TryReindexException(ReindexException):
|
|
pass
|
|
|
|
|
|
class ElemNotFound(IndexException):
|
|
pass
|
|
|
|
|
|
class DocIdNotFound(ElemNotFound):
|
|
pass
|
|
|
|
|
|
class IndexConflict(IndexException):
|
|
pass
|
|
|
|
|
|
class IndexPreconditionsException(IndexException):
|
|
pass
|
|
|
|
|
|
class Index(object):
|
|
|
|
__version__ = __version__
|
|
|
|
custom_header = "" # : use it for imports required by your index
|
|
|
|
def __init__(self,
|
|
db_path,
|
|
name):
|
|
self.name = name
|
|
self._start_ind = 500
|
|
self.db_path = db_path
|
|
|
|
def open_index(self):
|
|
if not os.path.isfile(os.path.join(self.db_path, self.name + '_buck')):
|
|
raise IndexException("Doesn't exists")
|
|
self.buckets = io.open(
|
|
os.path.join(self.db_path, self.name + "_buck"), 'r+b', buffering=0)
|
|
self._fix_params()
|
|
self._open_storage()
|
|
|
|
def _close(self):
|
|
self.buckets.close()
|
|
self.storage.close()
|
|
|
|
def close_index(self):
|
|
self.flush()
|
|
self.fsync()
|
|
self._close()
|
|
|
|
def create_index(self):
|
|
raise NotImplementedError()
|
|
|
|
def _fix_params(self):
|
|
self.buckets.seek(0)
|
|
props = marshal.loads(self.buckets.read(self._start_ind))
|
|
for k, v in props.iteritems():
|
|
self.__dict__[k] = v
|
|
self.buckets.seek(0, 2)
|
|
|
|
def _save_params(self, in_params={}):
|
|
self.buckets.seek(0)
|
|
props = marshal.loads(self.buckets.read(self._start_ind))
|
|
props.update(in_params)
|
|
self.buckets.seek(0)
|
|
data = marshal.dumps(props)
|
|
if len(data) > self._start_ind:
|
|
raise IndexException("To big props")
|
|
self.buckets.write(data)
|
|
self.flush()
|
|
self.buckets.seek(0, 2)
|
|
self.__dict__.update(props)
|
|
|
|
def _open_storage(self, *args, **kwargs):
|
|
pass
|
|
|
|
def _create_storage(self, *args, **kwargs):
|
|
pass
|
|
|
|
def _destroy_storage(self, *args, **kwargs):
|
|
self.storage.destroy()
|
|
|
|
def _find_key(self, key):
|
|
raise NotImplementedError()
|
|
|
|
def update(self, doc_id, key, start, size):
|
|
raise NotImplementedError()
|
|
|
|
def insert(self, doc_id, key, start, size):
|
|
raise NotImplementedError()
|
|
|
|
def get(self, key):
|
|
raise NotImplementedError()
|
|
|
|
def get_many(self, key, start_from=None, limit=0):
|
|
raise NotImplementedError()
|
|
|
|
def all(self, start_pos):
|
|
raise NotImplementedError()
|
|
|
|
def delete(self, key, start, size):
|
|
raise NotImplementedError()
|
|
|
|
def make_key_value(self, data):
|
|
raise NotImplementedError()
|
|
|
|
def make_key(self, data):
|
|
raise NotImplementedError()
|
|
|
|
def compact(self, *args, **kwargs):
|
|
raise NotImplementedError()
|
|
|
|
def destroy(self, *args, **kwargs):
|
|
self._close()
|
|
bucket_file = os.path.join(self.db_path, self.name + '_buck')
|
|
os.unlink(bucket_file)
|
|
self._destroy_storage()
|
|
self._find_key.clear()
|
|
|
|
def flush(self):
|
|
try:
|
|
self.buckets.flush()
|
|
self.storage.flush()
|
|
except:
|
|
pass
|
|
|
|
def fsync(self):
|
|
try:
|
|
os.fsync(self.buckets.fileno())
|
|
self.storage.fsync()
|
|
except:
|
|
pass
|
|
|
|
def update_with_storage(self, doc_id, key, value):
|
|
if value:
|
|
start, size = self.storage.insert(value)
|
|
else:
|
|
start = 1
|
|
size = 0
|
|
return self.update(doc_id, key, start, size)
|
|
|
|
def insert_with_storage(self, doc_id, key, value):
|
|
if value:
|
|
start, size = self.storage.insert(value)
|
|
else:
|
|
start = 1
|
|
size = 0
|
|
return self.insert(doc_id, key, start, size)
|
|
|