From eef3f26d2a2658b1034aa5fb3ccd50b31c9f258a Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Mon, 23 Jul 2012 17:49:54 -0400 Subject: [PATCH] cc-4105: read path info from conf file instead of hard coded --- python_apps/media-monitor2/mm2.py | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/python_apps/media-monitor2/mm2.py b/python_apps/media-monitor2/mm2.py index 91b0def70..3cadb3c4c 100644 --- a/python_apps/media-monitor2/mm2.py +++ b/python_apps/media-monitor2/mm2.py @@ -60,14 +60,21 @@ except Exception as e: log.info("Failed to set the locale for unknown reason. Logging exception.") log.info(str(e)) -channels = { - # note that org channel still has a 'watch' path because that is the path - # it supposed to be moving the organized files to. it doesn't matter where - # are all the "to organize" files are coming from - 'org' : PathChannel('org', '/home/rudi/throwaway/fucking_around/organize'), - 'watch' : [], - 'badfile' : PathChannel('badfile', '/home/rudi/throwaway/fucking_around/problem_dir'), -} +#channels = { + #note that org channel still has a 'watch' path because that is the path + #it supposed to be moving the organized files to. it doesn't matter where + #are all the "to organize" files are coming from + #'org' : PathChannel('org', '/home/rudi/throwaway/fucking_around/organize'), + #'watch' : [], + #'badfile' : PathChannel('badfile', '/home/rudi/throwaway/fucking_around/problem_dir'), +#} + +channels = {} +org = config['org'] +channels['org'] = PathChannel(org['signal'], org['path']) +channels['watch'] = [] +problem = config['problem'] +channels['badfile'] = PathChannel(problem['signal'], problem['path']) apiclient = apc.AirtimeApiClient(log) # We initialize sdb before anything because we must know what our watched @@ -85,6 +92,7 @@ for watch_dir in sdb.list_directories(): if os.path.exists(watch_dir): channels['watch'].append(PathChannel('watch', watch_dir)) +# The stor directory is the first directory in the watched directories list org = Organizer(channel=channels['org'],target_path=channels['watch'][0].path) watches = [ WatchSyncer(channel=pc) for pc in channels['watch'] ] problem_files = ProblemFileHandler(channel=channels['badfile'])