2013-09-25 21:50:03 +00:00
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
|
2014-04-03 21:31:46 +00:00
|
|
|
from storage.basestorage import BaseStorage
|
2013-09-25 21:50:03 +00:00
|
|
|
|
|
|
|
|
2014-04-03 21:31:46 +00:00
|
|
|
class LocalStorage(BaseStorage):
|
2013-09-25 21:50:03 +00:00
|
|
|
|
2014-04-03 21:31:46 +00:00
|
|
|
def __init__(self, storage_path):
|
|
|
|
self._root_path = storage_path
|
2013-09-25 21:50:03 +00:00
|
|
|
|
2014-04-03 21:31:46 +00:00
|
|
|
def _init_path(self, path=None, create=False):
|
|
|
|
path = os.path.join(self._root_path, path) if path else self._root_path
|
|
|
|
if create is True:
|
|
|
|
dirname = os.path.dirname(path)
|
|
|
|
if not os.path.exists(dirname):
|
|
|
|
os.makedirs(dirname)
|
|
|
|
return path
|
2013-09-25 21:50:03 +00:00
|
|
|
|
2014-04-03 21:31:46 +00:00
|
|
|
def get_content(self, path):
|
|
|
|
path = self._init_path(path)
|
|
|
|
with open(path, mode='r') as f:
|
|
|
|
return f.read()
|
2013-09-25 21:50:03 +00:00
|
|
|
|
2014-04-03 21:31:46 +00:00
|
|
|
def put_content(self, path, content):
|
|
|
|
path = self._init_path(path, create=True)
|
|
|
|
with open(path, mode='w') as f:
|
|
|
|
f.write(content)
|
|
|
|
return path
|
2013-09-25 21:50:03 +00:00
|
|
|
|
2014-04-03 21:31:46 +00:00
|
|
|
def stream_read(self, path):
|
|
|
|
path = self._init_path(path)
|
|
|
|
with open(path, mode='rb') as f:
|
|
|
|
while True:
|
|
|
|
buf = f.read(self.buffer_size)
|
|
|
|
if not buf:
|
|
|
|
break
|
|
|
|
yield buf
|
2013-09-25 21:50:03 +00:00
|
|
|
|
2014-04-03 21:31:46 +00:00
|
|
|
def stream_read_file(self, path):
|
|
|
|
path = self._init_path(path)
|
|
|
|
return open(path, mode='rb')
|
2013-10-18 18:31:14 +00:00
|
|
|
|
2014-09-09 20:52:53 +00:00
|
|
|
def stream_write(self, path, fp, content_type=None):
|
2014-04-03 21:31:46 +00:00
|
|
|
# Size is mandatory
|
|
|
|
path = self._init_path(path, create=True)
|
|
|
|
with open(path, mode='wb') as f:
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
buf = fp.read(self.buffer_size)
|
|
|
|
if not buf:
|
|
|
|
break
|
|
|
|
f.write(buf)
|
|
|
|
except IOError:
|
|
|
|
break
|
2013-09-25 21:50:03 +00:00
|
|
|
|
2014-04-03 21:31:46 +00:00
|
|
|
def list_directory(self, path=None):
|
|
|
|
path = self._init_path(path)
|
|
|
|
prefix = path[len(self._root_path) + 1:] + '/'
|
|
|
|
exists = False
|
|
|
|
for d in os.listdir(path):
|
|
|
|
exists = True
|
|
|
|
yield prefix + d
|
|
|
|
if exists is False:
|
|
|
|
# Raises OSError even when the directory is empty
|
|
|
|
# (to be consistent with S3)
|
|
|
|
raise OSError('No such directory: \'{0}\''.format(path))
|
2013-09-25 21:50:03 +00:00
|
|
|
|
2014-04-03 21:31:46 +00:00
|
|
|
def exists(self, path):
|
|
|
|
path = self._init_path(path)
|
|
|
|
return os.path.exists(path)
|
2013-09-25 21:50:03 +00:00
|
|
|
|
2014-04-03 21:31:46 +00:00
|
|
|
def remove(self, path):
|
|
|
|
path = self._init_path(path)
|
|
|
|
if os.path.isdir(path):
|
|
|
|
shutil.rmtree(path)
|
|
|
|
return
|
|
|
|
try:
|
|
|
|
os.remove(path)
|
|
|
|
except OSError:
|
|
|
|
pass
|
2014-09-09 19:54:03 +00:00
|
|
|
|
|
|
|
def get_checksum(self, path):
|
|
|
|
path = self._init_path(path)
|
|
|
|
sha_hash = hashlib.sha256()
|
|
|
|
with open(path, 'r') as to_hash:
|
|
|
|
while True:
|
|
|
|
buf = to_hash.read(self.buffer_size)
|
|
|
|
if not buf:
|
|
|
|
break
|
|
|
|
sha_hash.update(buf)
|
|
|
|
return sha_hash.hexdigest()[:7]
|