From 8e6bc0bedeea9d09877b5edaa45ce0e1f18af5e9 Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Fri, 24 Aug 2012 17:39:27 -0400 Subject: [PATCH] cc-3936: Added reset owners function for safe use. Changed the return mechanics of add_file_owner. --- python_apps/media-monitor2/media/monitor/owners.py | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/python_apps/media-monitor2/media/monitor/owners.py b/python_apps/media-monitor2/media/monitor/owners.py index c85045c7f..a8a39cd7d 100644 --- a/python_apps/media-monitor2/media/monitor/owners.py +++ b/python_apps/media-monitor2/media/monitor/owners.py @@ -4,17 +4,27 @@ log = get_logger() # hash: 'filepath' => owner_id owners = {} +def reset_owners(): + """ + Wipes out all file => owner associations + """ + global owners + owners = {} + def add_file_owner(f,owner): """ Associate file f with owner. If owner is -1 then do we will not record it - because -1 means there is no owner + because -1 means there is no owner. Returns True if f is being stored after + the function. False otherwise. """ - if owner == -1: return None + if owner == -1: return False if f in owners: if owner != owners[f]: # check for fishiness log.info("Warning ownership of file '%s' changed from '%d' to '%d'" % (f, owners[f], owner)) + else: return True owners[f] = owner + return True def has_owner(f): """