remove spurious spaces
[lilass.git] / cli_frontend.py
1 # DSL - easy Display Setup for Laptops
2 # Copyright (C) 2012-2015 Ralf Jung <post@ralfj.de>
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 # interactive command line interface, question based
19
20 from question_frontend import QuestionFrontend
21
22 import sys
23
24 class CLIFrontend(QuestionFrontend):
25     def error(self, message):
26         print(message, file=sys.stderr)
27
28     def userChoose (self, title, choices, returns, fallback):
29         if not sys.stdin.isatty():
30             raise Exception("Choosing the setup interactively is not possible, due to lack of a TTY")
31         while True:
32             # print question
33             print(title)
34             for i in range(len(choices)):
35                 print("%d. %s"%(i,choices[i]))
36             print("Enter 'c' to cancel.")
37             # handle input
38             answer = input("> ")
39             if answer == "c":
40                 return None
41             #else
42             try:
43                 answerint = int(answer)
44                 if answerint >= 0 and answerint < len(choices):
45                     return returns[answerint]
46             except ValueError:
47                 pass
48             # if we are here something invalid was entered
49             print("INVALID ANSWER: '%s'" % answer)
50
51     @staticmethod
52     def isAvailable():
53         return True