-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrol.py
executable file
·58 lines (45 loc) · 1.4 KB
/
control.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
49
50
51
52
53
54
55
56
57
58
#!/usr/bin/python
import os
from os.path import join, getsize
def get_next_demo(current_name, demos):
hit = False
for demo in demos.items():
if hit:
return demo
if current_name == demo[0]:
hit = True
return demos.items()[0]
def write_current_demo(name):
with open(current_file, "w") as file:
file.write(name)
file.close()
current_dir = '/home/dimo/current_demo'
demos_dir = '/home/dimo/demos/'
current_file = '/tmp/current_demo'
if not os.path.isfile(current_file):
for dir in os.listdir(demos_dir):
print "No renderer currently running... starting with " + dir
write_current_demo(dir)
break
with open(current_file, "r") as file:
current_name = file.read()
file.close()
demos = {}
for dir in os.listdir(demos_dir):
about_file = demos_dir + dir + "/run/about.html"
print "ABOUT: " + about_file
if os.path.isfile(about_file):
demos[dir] = {}
demos[dir]['name'] = dir
demos[dir]['path'] = demos_dir + dir + '/run/'
demos[dir]['about_file'] = about_file
print "Current demo is " + current_name
demo = get_next_demo(current_name, demos)[1]
print "New demo is " + demo['name']
write_current_demo(demo['name'])
try :
os.unlink(current_dir)
except:
print "foo"
os.symlink(demo['path'], current_dir)
print "XOMG " + current_dir + " " + demo['path']