1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-19 19:01:03 +00:00

Prevent issuing useless move operations if files have been created

This commit is contained in:
spl0k 2015-04-11 16:21:19 +02:00
parent 1282a5ab12
commit e73b358c63

View File

@ -32,6 +32,7 @@ from supysonic.scanner import Scanner
OP_SCAN = 1
OP_REMOVE = 2
OP_MOVE = 4
FLAG_CREATE = 8
class SupysonicWatcherEventHandler(PatternMatchingEventHandler):
def __init__(self, queue, logger):
@ -50,7 +51,7 @@ class SupysonicWatcherEventHandler(PatternMatchingEventHandler):
def on_created(self, event):
self.__logger.debug("File created: '%s'", event.src_path)
self.__queue.put(event.src_path, OP_SCAN)
self.__queue.put(event.src_path, OP_SCAN | FLAG_CREATE)
def on_deleted(self, event):
self.__logger.debug("File deleted: '%s'", event.src_path)
@ -83,6 +84,8 @@ class Event(object):
self.__op &= ~OP_REMOVE
if operation & OP_REMOVE:
self.__op &= ~OP_SCAN
if operation & FLAG_CREATE:
self.__op &= ~OP_MOVE
self.__op |= operation
src_path = kwargs.get("src_path")