aboutsummaryrefslogtreecommitdiff
path: root/scripts/main_loop.py
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-04-26 10:59:35 +0200
committerKarel Kočí <cynerd@email.cz>2015-04-26 10:59:35 +0200
commit93fd034574ae0ed8e3af4501b1fb54a3a8b3db40 (patch)
tree3db0ee722174c56558a870533b078bba6e46dd89 /scripts/main_loop.py
parent295254195ce053b027c02042db928e89fa078593 (diff)
downloadlinux-conf-perf-93fd034574ae0ed8e3af4501b1fb54a3a8b3db40.tar.gz
linux-conf-perf-93fd034574ae0ed8e3af4501b1fb54a3a8b3db40.tar.bz2
linux-conf-perf-93fd034574ae0ed8e3af4501b1fb54a3a8b3db40.zip
Rename script main_loop to loop
Diffstat (limited to 'scripts/main_loop.py')
-rwxr-xr-xscripts/main_loop.py91
1 files changed, 0 insertions, 91 deletions
diff --git a/scripts/main_loop.py b/scripts/main_loop.py
deleted file mode 100755
index 264ea31..0000000
--- a/scripts/main_loop.py
+++ /dev/null
@@ -1,91 +0,0 @@
-#!/bin/python3
-import os
-import sys
-import subprocess
-import signal
-from threading import Thread
-
-from conf import conf
-import initialize
-import phase
-import solution
-import kernel
-from exceptions import MissingFile
-import iteration
-
-def step():
- phs = phase.get()
- if phs == 0:
- try:
- os.mkdir(conf.build_folder)
- except FileExistsError:
- pass
- phase.set(1)
- elif phs == 1:
- phase.message(1)
- initialize.parse_kconfig()
- initialize.gen_requred()
- iteration.reset()
- phase.set(2)
- elif phs == 2:
- phase.message(2)
- phase.set(3)
- elif phs == 3:
- phase.message(3)
- solution.generate()
- iteration.inc()
- phase.set(4)
- elif phs == 4:
- phase.message(4)
- phase.set(5)
- elif phs == 5:
- phase.message(5)
- solution.apply()
- phase.set(6)
- elif phs == 6:
- phase.message(6)
- phase.set(7)
- elif phs == 7:
- phase.message(7)
- kernel.config()
- phase.set(8)
- elif phs == 8:
- phase.message(8)
- phase.set(9)
- elif phs == 9:
- phase.message(9)
- kernel.make()
- phase.set(10)
- elif phs == 10:
- phase.message(10)
- phase.set(2)
-
-class mainThread(Thread):
- def __init__(self, name):
- Thread.__init__(self, name=name)
- self.term = False
- def run(self):
- while not self.term:
- step()
-
-def loop_term():
- global thr
- thr.term = True
-
-def sigterm_handler(_signo, _stack_frame):
- loop_term()
-
-def main_loop():
- global thr
- thr = mainThread("thred")
- thr.start()
- try:
- thr.join()
- except KeyboardInterrupt:
- loop_term()
-
-#################################################################################
-
-if __name__ == '__main__':
- signal.signal(signal.SIGTERM, sigterm_handler)
- main_loop()