Manual 2to3 fixups.
[cumulus.git] / python / cumulus / store / file.py
1 # Cumulus: Efficient Filesystem Backup to the Cloud
2 # Copyright (C) 2008-2009 The Cumulus Developers
3 # See the AUTHORS file for a list of contributors.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License along
16 # with this program; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
19 from __future__ import division, print_function, unicode_literals
20
21 import os, sys, tempfile
22
23 import cumulus.store
24
25 type_patterns = cumulus.store.type_patterns
26
27 class FileStore(cumulus.store.Store):
28     def __init__(self, url, **kw):
29         # if constructor isn't called via factory interpret url as filename
30         if not hasattr (self, 'path'):
31             self.path = url
32         self.prefix = self.path.rstrip("/")
33
34     def list(self, subdir):
35         try:
36             return os.listdir(os.path.join(self.prefix, subdir))
37         except OSError:
38             raise cumulus.store.NotFoundError(subdir)
39
40     def get(self, path):
41         try:
42             return open(os.path.join(self.prefix, path), 'rb')
43         except IOError:
44             raise cumulus.store.NotFoundError(path)
45
46     def put(self, path, fp):
47         out = open(os.path.join(self.prefix, path), 'wb')
48         buf = fp.read(4096)
49         while len(buf) > 0:
50             out.write(buf)
51             buf = fp.read(4096)
52
53     def delete(self, path):
54         os.unlink(os.path.join(self.prefix, path))
55
56     def stat(self, path):
57         try:
58             stat = os.stat(os.path.join(self.prefix, path))
59             return {'size': stat.st_size}
60         except OSError:
61             raise cumulus.store.NotFoundError(path)
62
63 Store = FileStore