forked from muupan/async-rl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prepare_output_dir.py
48 lines (39 loc) · 1.46 KB
/
prepare_output_dir.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import os
import tempfile
import json
import subprocess
def prepare_output_dir(args, user_specified_dir=None):
"""Prepare output directory.
An output directory is created if it does not exist. Then the following
infomation is saved into the directory:
args.txt: command-line arguments
git-status.txt: result of `git status`
git-log.txt: result of `git log`
git-diff.txt: result of `git diff`
Args:
args: dict that describes command-line arguments
user_specified_dir: directory path
"""
if user_specified_dir is not None:
if os.path.exists(user_specified_dir):
if not os.path.isdir(user_specified_dir):
raise RuntimeError(
'{} is not a directory'.format(user_specified_dir))
else:
os.makedirs(user_specified_dir)
outdir = user_specified_dir
else:
outdir = tempfile.mkdtemp()
# Save all the arguments
with open(os.path.join(outdir, 'args.txt'), 'w') as f:
f.write(json.dumps(vars(args)))
# Save `git status`
with open(os.path.join(outdir, 'git-status.txt'), 'w') as f:
f.write(subprocess.getoutput('git status'))
# Save `git log`
with open(os.path.join(outdir, 'git-log.txt'), 'w') as f:
f.write(subprocess.getoutput('git log'))
# Save `git diff`
with open(os.path.join(outdir, 'git-diff.txt'), 'w') as f:
f.write(subprocess.getoutput('git diff'))
return outdir