Don't make unknown xrandr lines a fatal error - my xrandr shows strange stuff when...
[lilass.git] / dsl.py
1 #!/usr/bin/python
2 # DSL - easy Display Setup for Laptops
3 # Copyright (C) 2012 Ralf Jung <post@ralfj.de>
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program (gpl.txt); if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18
19 import os, re, subprocess
20 from selector_window import PositionSelection
21 import gui
22
23 # for auto-config: common names of internal connectors
24 commonInternalConnectorNames = ['LVDS', 'LVDS0', 'LVDS1', 'LVDS-0', 'LVDS-1']
25
26 # Load a section-less config file: maps parameter names to space-separated lists of strings (with shell quotation)
27 def loadConfigFile(file):
28         import shlex
29         result = {}
30         if not os.path.exists(file):
31                 return result # no config file
32         # read config file
33         linenr = 0
34         with open(file) as file:
35                 for line in file:
36                         linenr += 1
37                         line = line.strip()
38                         if not len(line) or line.startswith("#"): continue # skip empty and comment lines
39                         try:
40                                 # parse line
41                                 pos = line.index("=") # will raise exception when substring is not found
42                                 curKey = line[:pos].strip()
43                                 result[curKey] = shlex.split(line[pos+1:]) # shlex.split also strips
44                         except Exception:
45                                 raise Exception("Invalid config, line %d: Error parsing line (quoting issue?)." % linenr)
46         # add some convencience get functions
47         return result
48
49 def getXrandrInformation():
50         p = subprocess.Popen(["xrandr", "-q"], stdout=subprocess.PIPE)
51         connectors = {} # map of connector names to a list of resolutions
52         connector = None # current connector
53         for line in p.stdout:
54                 # screen?
55                 m = re.search(r'^Screen [0-9]+: ', line)
56                 if m is not None: # ignore this line
57                         connector = None
58                         continue
59                 # new connector?
60                 m = re.search(r'^([\w\-]+) (dis)?connected ', line)
61                 if m is not None:
62                         connector = m.groups()[0]
63                         assert connector not in connectors
64                         connectors[connector] = []
65                         continue
66                 # new resolution?
67                 m = re.search(r'^   ([\d]+)x([\d]+) +', line)
68                 if m is not None:
69                         assert connector is not None
70                         connectors[connector].append((int(m.groups()[0]), int(m.groups()[1])))
71                         continue
72                 # unknown line
73                 # not fatal as my xrandr shows strange stuff when a display is enabled, but not connected
74                 #raise Exception("Unknown line in xrandr output:\n"+line)
75                 print "Warning: Unknown xrandr line %s" % line
76         # be sure to always proprly finish up with the xrandr
77         p.communicate()
78         # if everything succeededso far, check return code
79         if p.returncode != 0: raise Exception("Querying xrandr for data failed.")
80         return connectors
81
82 def res2xrandr(res):
83         (w, h) = res
84         return str(w)+'x'+str(h)
85
86 def res2user(res):
87         (w, h) = res
88         # get ratio
89         ratio = int(round(16.0*h/w))
90         if ratio == 12: # 16:12 = 4:3
91                 strRatio = '4:3'
92         elif ratio == 13: # 16:12.8 = 5:4
93                 strRatio = '5:4'
94         else: # let's just hope this will never be 14 or more...
95                 strRatio = '16:%d' % ratio
96         return '%dx%d (%s)' %(w, h, strRatio)
97
98 def findAvailableConnector(tryConnectors, allConnectors):
99         for connector in tryConnectors:
100                 if connector in allConnectors and allConnectors[connector]: # if the connector exists and is active (i.e. there is a resolution)
101                         return connector
102         return None
103
104 # the main function
105 def main():
106         # load connectors and options
107         connectors = getXrandrInformation()
108         config = loadConfigFile(os.getenv('HOME') + '/.dsl.conf')
109         # find internal connector
110         if 'internalConnector' in config:
111                 if len(config['internalConnector']) != 1:
112                         raise Exception("You must specify exactly one internal connector.")
113                 internalConnector = config['internalConnector'][0]
114                 if not internalConnector in connectors:
115                         raise Exception("Connector %s does not exist, there is an error in your config file." % internalConnector)
116         else:
117                 # auto-config
118                 internalConnector = findAvailableConnector(commonInternalConnectorNames, connectors)
119                 if internalConnector is None:
120                         raise Exception("Could not automatically find internal connector, please use ~/.dsl.conf to specify it manually.")
121         # all the rest is external then, obviously - unless the user wants to do that manually
122         if 'externalConnectors' in config:
123                 externalConnectors = config['externalConnectors']
124                 for connector in externalConnectors:
125                         if not connector in connectors:
126                                 raise Exception("Connector %s does not exist, there is an error in your config file." % connector)
127                         if connector == internalConnector:
128                                 raise Exception("%s is both internal and external, that doesn't make sense." % connector)
129         else:
130                 externalConnectors = connectors.keys()
131                 externalConnectors.remove(internalConnector)
132         if not externalConnectors:
133                 raise Exception("No external connector found - either your config is wrong, or your machine has only one connector.")
134
135         # default: screen off
136         args = {} # maps connector names to xrand arguments
137         for c in externalConnectors+[internalConnector]:
138                 args[c] = ["--off"]
139
140         # Check what to do
141         usedExternalConnector = findAvailableConnector(externalConnectors, connectors) # *the* external connector which is actually used
142         if usedExternalConnector is not None: # there's an external screen connected, we need to ask what to do
143                 internalResolutions = connectors[internalConnector]
144                 externalResolutions = connectors[usedExternalConnector]
145                 extPosition = PositionSelection(usedExternalConnector, map(res2user, internalResolutions), map(res2user, externalResolutions))
146                 extPosition.exec_()
147                 if not extPosition.result(): sys.exit(1) # the user canceled
148                 extResolution = res2xrandr(externalResolutions[extPosition.extResolutions.currentIndex()])
149                 intResolution = res2xrandr(internalResolutions[extPosition.intResolutions.currentIndex()])
150                 # build command-line
151                 args[usedExternalConnector] = ["--mode", extResolution] # set external screen to desired resolution
152                 if extPosition.extOnly.isChecked():
153                         args[usedExternalConnector] += ["--primary"]
154                 else:
155                         # there are two screens
156                         args[internalConnector] = ["--mode", intResolution] # set internal screen to desired resolution
157                         # set position
158                         if extPosition.posLeft.isChecked():
159                                 args[usedExternalConnector] += ["--left-of", internalConnector]
160                         else:
161                                 args[usedExternalConnector] += ["--right-of", internalConnector]
162                         # set primary screen
163                         if extPosition.primExt.isChecked():
164                                 args[usedExternalConnector] += ["--primary"]
165                         else:
166                                 args[internalConnector] += ["--primary"]
167         else:
168                 # use first resolution
169                 args[internalConnector] = ["--mode", res2xrandr(connectors[internalConnector][0]), "--primary"]
170         # and do it
171         call = ["xrandr"]
172         for name in args:
173                 call += ["--output", name] + args[name]
174         print "Call that will be made:",call
175         subprocess.check_call(call)
176
177 # if we run top-level
178 if __name__ == "__main__":
179         try:
180                 main()
181         except Exception as e:
182                 gui.error(str(e))
183                 raise