75f1cf2a0a823fc1608060259f0f0c335bf01660
[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, sys, re, subprocess
20 from PyQt4 import QtGui
21 from selector_window import PositionSelection
22 app = QtGui.QApplication(sys.argv)
23
24 # for auto-config: common names of internal connectors
25 commonInternalConnectorNames = ['LVDS', 'LVDS1']
26
27 # Load a section-less config file: maps parameter names to space-separated lists of strings (with shell quotation)
28 def loadConfigFile(file):
29         import shlex
30         result = {}
31         if not os.path.exists(file):
32                 return result # no config file
33         # read config file
34         linenr = 0
35         with open(file) as file:
36                 for line in file:
37                         linenr += 1
38                         line = line.strip()
39                         if not len(line) or line.startswith("#"): continue # skip empty and comment lines
40                         try:
41                                 # parse line
42                                 pos = line.index("=") # will raise exception when substring is not found
43                                 curKey = line[:pos].strip()
44                                 result[curKey] = shlex.split(line[pos+1:]) # shlex.split also strips
45                         except Exception:
46                                 raise Exception("Invalid config, line %d: Error parsing line (quoting issue?)" % linenr)
47         # add some convencience get functions
48         return result
49
50 def getXrandrInformation():
51         p = subprocess.Popen(["xrandr", "-q"], stdout=subprocess.PIPE)
52         connectors = {} # map of connector names to a list of resolutions
53         connector = None # current connector
54         for line in p.stdout:
55                 # new connector?
56                 m = re.search(r'^([\w]+) (dis)?connected ', line)
57                 if m is not None:
58                         connector = m.groups()[0]
59                         assert connector not in connectors
60                         connectors[connector] = []
61                         continue
62                 # new resolution?
63                 m = re.search(r'^   ([\d]+)x([\d]+) +', line)
64                 if m is not None:
65                         assert connector is not None
66                         connectors[connector].append((int(m.groups()[0]), int(m.groups()[1])))
67         p.communicate()
68         if p.returncode != 0: raise Exception("Querying xrandr for data failed")
69         return connectors
70
71 def res2xrandr(res):
72         (w, h) = res
73         return str(w)+'x'+str(h)
74
75 def res2user(res):
76         (w, h) = res
77         # get ratio
78         ratio = int(round(16.0*h/w))
79         if ratio == 12: # 16:12 = 4:3
80                 strRatio = '4:3'
81         elif ratio == 13: # 16:12.8 = 5:4
82                 strRatio = '5:4'
83         else: # let's just hope this will never be 14 or more...
84                 strRatio = '16:%d' % ratio
85         return '%dx%d (%s)' %(w, h, strRatio)
86
87 def findAvailableConnector(tryConnectors):
88         for connector in tryConnectors:
89                 if connector in connectors and connectors[connector]: # if the connector exists and is active (i.e. there is a resolution)
90                         return connector
91         return None
92
93 # load connectors and options
94 connectors = getXrandrInformation()
95 config = loadConfigFile(os.getenv('HOME') + '/.dsl.conf')
96 # find internal connector
97 if 'internalConnector' in config:
98         if len(config['internalConnector']) != 1:
99                 raise Exception("You must specify exactly one internal connector")
100         internalConnector = config['internalConnector'][0]
101         if not internalConnector in connectors:
102                 raise Exception("Connector %s does not exist, there is an error in your config file" % internalConnector)
103 else:
104         # auto-config
105         internalConnector = findAvailableConnector(commonInternalConnectorNames)
106         if internalConnector is None:
107                 raise Exception("Could not automatically find internal connector, please use ~/.dsl.conf to specify it manually")
108 # all the rest is external then, obviously - unless the user wants to do that manually
109 if 'externalConnectors' in config:
110         externalConnectors = config['externalConnectors']
111         for connector in externalConnectors:
112                 if not connector in connectors:
113                         raise Exception("Connector %s does not exist, there is an error in your config file" % internalConnector)
114 else:
115         externalConnectors = connectors.keys()
116         externalConnectors.remove(internalConnector)
117 if not externalConnectors:
118         raise Exception("No external connector found - either your config is wrong, or your machine has only one connector")
119
120 # default: screen off
121 args = {} # maps connector names to xrand arguments
122 for c in externalConnectors+[internalConnector]:
123         args[c] = ["--off"]
124
125 # Check what to do
126 usedExternalConnector = findAvailableConnector(externalConnectors) # *the* external connector which is actually used
127 if usedExternalConnector is not None: # there's an external screen connected, we need to ask what to do
128         internalResolutions = connectors[internalConnector]
129         externalResolutions = connectors[usedExternalConnector]
130         extPosition = PositionSelection(usedExternalConnector, map(res2user, internalResolutions), map(res2user, externalResolutions))
131         extPosition.exec_()
132         if not extPosition.result(): sys.exit(1) # the user canceled
133         extResolution = res2xrandr(externalResolutions[extPosition.extResolutions.currentIndex()])
134         intResolution = res2xrandr(internalResolutions[extPosition.intResolutions.currentIndex()])
135         # build command-line
136         args[usedExternalConnector] = ["--mode", extResolution] # set external screen to desired resolution
137         if extPosition.extOnly.isChecked():
138                 args[usedExternalConnector] += ["--primary"]
139         else:
140                 # there are two screens
141                 args[internalConnector] = ["--mode", intResolution] # set internal screen to desired resolution
142                 # set position
143                 if extPosition.posLeft.isChecked():
144                         args[usedExternalConnector] += ["--left-of", internalConnector]
145                 else:
146                         args[usedExternalConnector] += ["--right-of", internalConnector]
147                 # set primary screen
148                 if extPosition.primExt.isChecked():
149                         args[usedExternalConnector] += ["--primary"]
150                 else:
151                         args[internalConnector] += ["--primary"]
152 else:
153         # use first resolution
154         args[internalConnector] = ["--mode", res2xrandr(connectors[internalConnector][0]), "--primary"]
155 # and do it
156 call = ["xrandr"]
157 for name in args:
158         call += ["--output", name] + args[name]
159 print "Call that will be made:",call
160 subprocess.check_call(call)