aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--CachePath.py30
-rw-r--r--PhotoAlbum.py61
-rw-r--r--TreeWalker.py33
-rwxr-xr-xtest.py2
5 files changed, 85 insertions, 42 deletions
diff --git a/.gitignore b/.gitignore
index 2173ff7..f1f1c3e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
*.pyc
cache/*
+test/*
diff --git a/CachePath.py b/CachePath.py
new file mode 100644
index 0000000..c9c19fc
--- /dev/null
+++ b/CachePath.py
@@ -0,0 +1,30 @@
+import os.path
+from datetime import datetime
+
+def set_cache_path_base(base):
+ trim_base.base = base
+def untrim_base(path):
+ return os.path.join(trim_base.base, path)
+def trim_base_custom(path, base):
+ if path.startswith(base):
+ path = path[len(base):]
+ if path.startswith('/'):
+ path = path[1:]
+ return path
+def trim_base(path):
+ return trim_base_custom(path, trim_base.base)
+def cache_base(path):
+ path = trim_base(path).replace('/', '-').replace(' ', '_')
+ if len(path) == 0:
+ path = "root"
+ return path
+def json_cache(path):
+ return cache_base(path) + ".json"
+def image_cache(path, size, square=False):
+ if square:
+ suffix = str(size) + "s"
+ else:
+ suffix = str(size)
+ return cache_base(path) + "_" + suffix + ".jpg"
+def file_mtime(path):
+ return datetime.fromtimestamp(int(os.path.getmtime(path)))
diff --git a/PhotoAlbum.py b/PhotoAlbum.py
index ec91b8a..045f4af 100644
--- a/PhotoAlbum.py
+++ b/PhotoAlbum.py
@@ -1,31 +1,10 @@
+from CachePath import *
from datetime import datetime
import json
import os.path
from PIL import Image
from PIL.ExifTags import TAGS
-def set_cache_path_base(base):
- trim_base.base = base
-def untrim_base(path):
- return os.path.join(trim_base.base, path)
-def trim_base_custom(path, base):
- if path.startswith(base):
- path = path[len(base):]
- if path.startswith('/'):
- path = path[1:]
- return path
-def trim_base(path):
- return trim_base_custom(path, trim_base.base)
-def cache_base(path):
- path = trim_base(path).replace('/', '-').replace(' ', '_')
- if len(path) == 0:
- path = "root"
- return path
-def json_cache(path):
- return cache_base(path) + ".json"
-def image_cache(path, suffix):
- return cache_base(path) + "_" + suffix + ".jpg"
-
class Album(object):
def __init__(self, path):
self._path = trim_base(path)
@@ -34,6 +13,12 @@ class Album(object):
self._photos_sorted = True
self._albums_sorted = True
@property
+ def photos(self):
+ return self._photos
+ @property
+ def albums(self):
+ return self._albums
+ @property
def path(self):
return self._path
def __str__(self):
@@ -101,10 +86,15 @@ class Album(object):
return None
class Photo(object):
+ thumb_sizes = [ (150, True), (640, False), (1024, False) ]
def __init__(self, path, thumb_path=None, attributes=None):
self._path = trim_base(path)
self.is_valid = True
- mtime = datetime.fromtimestamp(os.path.getmtime(path))
+ try:
+ mtime = file_mtime(path)
+ except:
+ self.is_valid = False
+ return
if attributes is not None and attributes["DateTimeFile"] >= mtime:
self._attributes = attributes
return
@@ -123,6 +113,8 @@ class Photo(object):
info = image._getexif()
except:
return
+ if not info:
+ return
for tag, value in info.items():
decoded = TAGS.get(tag, tag)
if not isinstance(decoded, int) and decoded not in ['JPEGThumbnail', 'TIFFThumbnail', 'Filename', 'FileSource', 'MakerNote', 'UserComment', 'ImageDescription', 'ComponentsConfiguration']:
@@ -135,13 +127,9 @@ class Photo(object):
pass
self._attributes[decoded] = value
def _thumbnail(self, image, thumb_path, size, square=False):
- if square:
- suffix = str(size) + "s"
- else:
- suffix = str(size)
- thumb_path = os.path.join(thumb_path, image_cache(self._path, suffix))
+ thumb_path = os.path.join(thumb_path, image_cache(self._path, size, square))
print "Thumbing %s" % thumb_path
- if os.path.exists(thumb_path) and datetime.fromtimestamp(os.path.getmtime(thumb_path)) >= self._attributes["DateTimeFile"]:
+ if os.path.exists(thumb_path) and file_mtime(thumb_path) >= self._attributes["DateTimeFile"]:
return
image = image.copy()
if square:
@@ -157,7 +145,10 @@ class Photo(object):
bottom = image.size[1] - ((image.size[1] - image.size[0]) / 2)
image = image.crop((left, top, right, bottom))
image.thumbnail((size, size), Image.ANTIALIAS)
- image.save(thumb_path, "JPEG")
+ try:
+ image.save(thumb_path, "JPEG")
+ except:
+ os.path.unlink(thumb_path)
def _thumbnails(self, image, thumb_path):
if "Orientation" in self._attributes:
@@ -186,16 +177,20 @@ class Photo(object):
elif orientation == 8:
# Rotation 90
mirror = image.transpose(Image.ROTATE_90)
- self._thumbnail(mirror, thumb_path, 150, True)
- self._thumbnail(mirror, thumb_path, 640)
- self._thumbnail(mirror, thumb_path, 1024)
+ for size in Photo.thumb_sizes:
+ self._thumbnail(mirror, thumb_path, size[0], size[1])
@property
def name(self):
return os.path.basename(self._path)
def __str__(self):
return self.name
@property
+ def image_caches(self):
+ return [image_cache(self._path, size[0], size[1]) for size in Photo.thumb_sizes]
+ @property
def date(self):
+ if not self.is_valid:
+ return datetime(1900, 1, 1)
if "DateTimeOriginal" in self._attributes:
return self._attributes["DateTimeOriginal"]
elif "DateTime" in self._attributes:
diff --git a/TreeWalker.py b/TreeWalker.py
index 11ce7de..17b9b54 100644
--- a/TreeWalker.py
+++ b/TreeWalker.py
@@ -1,16 +1,17 @@
import os
import os.path
from datetime import datetime
-from PhotoAlbum import Photo, Album, json_cache, set_cache_path_base
+from PhotoAlbum import Photo, Album
+from CachePath import json_cache, set_cache_path_base, file_mtime
class TreeWalker:
def __init__(self, album_path, cache_path):
- self.album_path = album_path
- self.cache_path = cache_path
+ self.album_path = os.path.abspath(album_path)
+ self.cache_path = os.path.abspath(cache_path)
set_cache_path_base(self.album_path)
self.all_albums = list()
self.all_photos = list()
- self.walk(album_path)
+ self.walk(self.album_path)
self.remove_stale()
def walk(self, path):
print "Walking %s" % path
@@ -20,10 +21,12 @@ class TreeWalker:
if os.path.exists(cache):
print "Has cache %s" % path
cached_album = Album.from_cache(cache)
- if os.path.getmtime(path) <= os.path.getmtime(cache):
+ if file_mtime(path) <= file_mtime(cache):
print "Album is fully cached"
cached = True
album = cached_album
+ for photo in album.photos:
+ self.all_photos.append(photo)
if not cached:
album = Album(path)
for entry in os.listdir(path):
@@ -34,12 +37,12 @@ class TreeWalker:
cache_hit = False
if cached_album:
cached_photo = cached_album.photo_from_path(entry)
- if cached_photo and datetime.fromtimestamp(os.path.getmtime(entry)) <= cached_photo.attributes["DateTimeFile"]:
+ if cached_photo and file_mtime(entry) <= cached_photo.attributes["DateTimeFile"]:
print "Photo cache hit %s" % entry
cache_hit = True
photo = cached_photo
if not cache_hit:
- print "No cache - scanning %s" % entry
+ print "No cache, scanning %s" % entry
photo = Photo(entry, self.cache_path)
if photo.is_valid:
self.all_photos.append(photo)
@@ -49,4 +52,18 @@ class TreeWalker:
self.all_albums.append(album)
return album
def remove_stale(self):
- pass #TODO: remove left over caches \ No newline at end of file
+ for cache in os.listdir(self.cache_path):
+ match = False
+ for album in self.all_albums:
+ if cache == album.cache_path:
+ match = True
+ break
+ if match:
+ continue
+ for photo in self.all_photos:
+ if cache in photo.image_caches:
+ match = True
+ break
+ if not match:
+ print "Removing stale cache %s" % cache
+ os.unlink(os.path.join(self.cache_path, cache)) \ No newline at end of file
diff --git a/test.py b/test.py
index 6024d5a..cd41d52 100755
--- a/test.py
+++ b/test.py
@@ -2,4 +2,4 @@
from TreeWalker import TreeWalker
-walker = TreeWalker("/home/zx2c4/Pictures", "./cache") \ No newline at end of file
+walker = TreeWalker("./test", "./cache") \ No newline at end of file