Update do_tasks.py.
This commit is contained in:
parent
daafa1349d
commit
65c29d16e2
1 changed files with 42 additions and 18 deletions
60
do_tasks.py
60
do_tasks.py
|
@ -1,32 +1,56 @@
|
||||||
'''
|
'''
|
||||||
Execute the contents of all .task files forever.
|
Execute the contents of all .task files forever.
|
||||||
'''
|
'''
|
||||||
|
import argparse
|
||||||
import os
|
import os
|
||||||
|
import send2trash
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
|
|
||||||
def main(args=None):
|
|
||||||
if args:
|
|
||||||
task_files = args
|
|
||||||
do_loop = False
|
|
||||||
else:
|
|
||||||
do_loop = True
|
|
||||||
|
|
||||||
|
def get_task_files():
|
||||||
|
return [f for f in os.listdir() if (os.path.isfile(f) and f.endswith('.task'))]
|
||||||
|
|
||||||
|
def do_tasks(task_files):
|
||||||
|
for task_file in task_files:
|
||||||
|
if not os.path.exists(task_file):
|
||||||
|
continue
|
||||||
|
with open(task_file, 'r', encoding='utf-8') as handle:
|
||||||
|
task_content = handle.read()
|
||||||
|
task_content = task_content.strip()
|
||||||
|
print('TASK:', task_content)
|
||||||
|
status = os.system(task_content)
|
||||||
|
if status == 0:
|
||||||
|
send2trash.send2trash(task_file)
|
||||||
|
|
||||||
|
def do_tasks_forever():
|
||||||
while True:
|
while True:
|
||||||
if do_loop:
|
print(time.strftime('%H:%M:%S'), 'Looking for tasks.')
|
||||||
task_files = [f for f in os.listdir() if (os.path.isfile(f) and f.endswith('.task'))]
|
task_files = get_task_files()
|
||||||
for task_file in task_files:
|
do_tasks(task_files)
|
||||||
with open(task_file, 'r', encoding='utf-8') as handle:
|
try:
|
||||||
task_content = handle.read()
|
time.sleep(10)
|
||||||
task_content = task_content.strip()
|
except KeyboardInterrupt:
|
||||||
print('TASK:', task_content)
|
|
||||||
status = os.system(task_content)
|
|
||||||
if status == 0:
|
|
||||||
os.remove(task_file)
|
|
||||||
if not do_loop:
|
|
||||||
break
|
break
|
||||||
time.sleep(10)
|
|
||||||
|
|
||||||
|
def do_tasks_argparse(args):
|
||||||
|
if args.task_files:
|
||||||
|
return do_tasks(args.task_files)
|
||||||
|
|
||||||
|
if args.only_once:
|
||||||
|
return do_tasks(get_task_files())
|
||||||
|
|
||||||
|
return do_tasks_forever()
|
||||||
|
|
||||||
|
def main(argv):
|
||||||
|
parser = argparse.ArgumentParser(description=__doc__)
|
||||||
|
|
||||||
|
parser.add_argument('task_files', nargs='*', default=None)
|
||||||
|
parser.add_argument('--once', dest='only_once', action='store_true')
|
||||||
|
parser.set_defaults(func=do_tasks_argparse)
|
||||||
|
|
||||||
|
args = parser.parse_args(argv)
|
||||||
|
args.func(args)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
raise SystemExit(main(sys.argv[1:]))
|
raise SystemExit(main(sys.argv[1:]))
|
||||||
|
|
Loading…
Reference in a new issue