From: Christoph Gysin Date: Mon, 13 Nov 2017 14:46:59 +0000 (+0200) Subject: break long lines X-Git-Tag: 1.3~6^2~2 X-Git-Url: https://git.donarmstrong.com/?p=deb_pkgs%2Fautorandr.git;a=commitdiff_plain;h=a631164f12b17b82931d950583792e2ab34ab4bd break long lines --- diff --git a/autorandr.py b/autorandr.py index 756e76d..a78b222 100755 --- a/autorandr.py +++ b/autorandr.py @@ -136,8 +136,8 @@ class XrandrOutput(object): # This regular expression is used to parse an output in `xrandr --verbose' XRANDR_OUTPUT_REGEXP = """(?x) ^(?P[^ ]+)\s+ # Line starts with output name - (?: # Differentiate disconnected and connected in first line - disconnected | + (?: # Differentiate disconnected and connected + disconnected | # in first line unknown\ connection | (?Pconnected) ) @@ -149,7 +149,7 @@ class XrandrOutput(object): (?:\(0x[0-9a-fA-F]+\)\s+)? # XID (?P(?:normal|left|right|inverted))\s+ # Rotation (?:(?PX\ and\ Y|X|Y)\ axis)? # Reflection - )? # .. but everything of the above only if the screen is in use. + )? # .. but only if the screen is in use. (?:[\ \t]*\([^\)]+\))(?:\s*[0-9]+mm\sx\s[0-9]+mm)? (?:[\ \t]*panning\ (?P[0-9]+x[0-9]+\+[0-9]+\+[0-9]+))? # Panning information (?:[\ \t]*tracking\ (?P[0-9]+x[0-9]+\+[0-9]+\+[0-9]+))? # Tracking information @@ -162,8 +162,8 @@ class XrandrOutput(object): ))+ \s* (?P(?: - (?P\S+).+?\*current.*\s+ # Interesting (current) resolution: Extract rate - h:\s+width\s+(?P[0-9]+).+\s+ + (?P\S+).+?\*current.*\s+ # Interesting (current) resolution: + h:\s+width\s+(?P[0-9]+).+\s+ # Extract rate v:\s+height\s+(?P[0-9]+).+clock\s+(?P[0-9\.]+)Hz\s* | \S+(?:(?!\*current).)+\s+h:.+\s+v:.+\s* # Other resolutions )*) @@ -269,14 +269,18 @@ class XrandrOutput(object): xrandr_output = xrandr_output.replace("\r\n", "\n") match_object = re.search(XrandrOutput.XRANDR_OUTPUT_REGEXP, xrandr_output) except: - raise AutorandrException("Parsing XRandR output failed, there is an error in the regular expression.", report_bug=True) + raise AutorandrException("Parsing XRandR output failed, there is an error in the regular expression.", + report_bug=True) if not match_object: debug = debug_regexp(XrandrOutput.XRANDR_OUTPUT_REGEXP, xrandr_output) - raise AutorandrException("Parsing XRandR output failed, the regular expression did not match: %s" % debug, report_bug=True) + raise AutorandrException("Parsing XRandR output failed, the regular expression did not match: %s" % debug, + report_bug=True) remainder = xrandr_output[len(match_object.group(0)):] if remainder: - raise AutorandrException(("Parsing XRandR output failed, %d bytes left unmatched after regular expression, " - "starting at byte %d with ..'%s'.") % (len(remainder), len(match_object.group(0)), remainder[:10]), report_bug=True) + raise AutorandrException("Parsing XRandR output failed, %d bytes left unmatched after " + "regular expression, starting at byte %d with ..'%s'." % + (len(remainder), len(match_object.group(0)), remainder[:10]), + report_bug=True) match = match_object.groupdict() @@ -326,9 +330,10 @@ class XrandrOutput(object): if transformation != "1.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,1.000000": options["transform"] = transformation if not match["mode_name"]: - # TODO We'd need to apply the reverse transformation here. Let's see if someone complains, I doubt that this - # special case is actually required. - print("Warning: Output %s has a transformation applied. Could not determine correct mode! Using `%s'." % (match["output"], options["mode"]), file=sys.stderr) + # TODO We'd need to apply the reverse transformation here. Let's see if someone complains, + # I doubt that this special case is actually required. + print("Warning: Output %s has a transformation applied. Could not determine correct mode! " + "Using `%s'." % (match["output"], options["mode"]), file=sys.stderr) if match["gamma"]: gamma = match["gamma"].strip() # xrandr prints different values in --verbose than it accepts as a parameter value for --gamma @@ -363,7 +368,8 @@ class XrandrOutput(object): if fuzzy_output in fuzzy_edid_map: edid = edid_map[list(edid_map.keys())[fuzzy_edid_map.index(fuzzy_output)]] elif "off" not in options: - raise AutorandrException("Failed to find an EDID for output `%s' in setup file, required as `%s' is not off in config file." % (options["output"], options["output"])) + raise AutorandrException("Failed to find an EDID for output `%s' in setup file, required as `%s' " + "is not off in config file." % (options["output"], options["output"])) output = options["output"] del options["output"] @@ -398,11 +404,14 @@ class XrandrOutput(object): else: for name in set(chain.from_iterable((self.options.keys(), other.options.keys()))): if name not in other.options: - diffs.append("Option --%s %sis not present in the new configuration" % (name, "(= `%s') " % self.options[name] if self.options[name] else "")) + diffs.append("Option --%s %sis not present in the new configuration" % + (name, "(= `%s') " % self.options[name] if self.options[name] else "")) elif name not in self.options: - diffs.append("Option --%s (`%s' in the new configuration) is not present currently" % (name, other.options[name])) + diffs.append("Option --%s (`%s' in the new configuration) is not present currently" % + (name, other.options[name])) elif self.options[name] != other.options[name]: - diffs.append("Option --%s %sis `%s' in the new configuration" % (name, "(= `%s') " % self.options[name] if self.options[name] else "", other.options[name])) + diffs.append("Option --%s %sis `%s' in the new configuration" % + (name, "(= `%s') " % self.options[name] if self.options[name] else "", other.options[name])) return diffs @@ -430,9 +439,9 @@ def debug_regexp(pattern, string): break bounds = (half, bounds[1]) if regex.search(pattern, string[:half], partial=True) else (bounds[0], half - 1) partial_length = bounds[0] - return ("Regular expression matched until position " - "%d, ..'%s', and did not match from '%s'.." % (partial_length, string[max(0, partial_length - 20):partial_length], - string[partial_length:partial_length + 10])) + return ("Regular expression matched until position %d, ..'%s', and did not match from '%s'.." % + (partial_length, string[max(0, partial_length - 20):partial_length], + string[partial_length:partial_length + 10])) except ImportError: pass return "Debug information would be available if the `regex' module was installed." @@ -656,7 +665,8 @@ def apply_configuration(new_configuration, current_configuration, dry_run=False) # Disable unused outputs, but make sure that there always is at least one active screen disable_keep = 0 if remain_active_count else 1 if len(disable_outputs) > disable_keep: - if call_and_retry(base_argv + list(chain.from_iterable(disable_outputs[:-1] if disable_keep else disable_outputs)), dry_run=dry_run) != 0: + argv = base_argv + list(chain.from_iterable(disable_outputs[:-1] if disable_keep else disable_outputs)) + if call_and_retry(argv, dry_run=dry_run) != 0: # Disabling the outputs failed. Retry with the next command: # Sometimes disabling of outputs fails due to an invalid RRSetScreenSize. # This does not occur if simultaneously the primary screen is reset. @@ -697,8 +707,10 @@ def add_unused_outputs(source_configuration, target_configuration): def remove_irrelevant_outputs(source_configuration, target_configuration): "Remove outputs from target that ought to be 'off' and already are" for output_name, output in source_configuration.items(): - if "off" in output.options and output_name in target_configuration and "off" in target_configuration[output_name].options: - del target_configuration[output_name] + if "off" in output.options: + if output_name in target_configuration: + if "off" in target_configuration[output_name].options: + del target_configuration[output_name] def generate_virtual_profile(configuration, modes, profile_name): @@ -744,7 +756,8 @@ def generate_virtual_profile(configuration, modes, profile_name): configuration[output].options["mode"] = mode["name"] configuration[output].options["rate"] = mode["rate"] configuration[output].options["pos"] = "0x0" - scale = max(float(biggest_resolution["width"]) / float(mode["width"]), float(biggest_resolution["height"]) / float(mode["height"])) + scale = max(float(biggest_resolution["width"]) / float(mode["width"]), + float(biggest_resolution["height"]) / float(mode["height"])) mov_x = (float(mode["width"]) * scale - float(biggest_resolution["width"])) / -2 mov_y = (float(mode["height"]) * scale - float(biggest_resolution["height"])) / -2 configuration[output].options["transform"] = "{},0,{},0,{},{},0,0,1".format(scale, mov_x, scale, mov_y) @@ -953,7 +966,9 @@ def dispatch_call_to_sessions(argv): def main(argv): try: - opts, args = getopt.getopt(argv[1:], "s:r:l:d:cfh", ["batch", "dry-run", "change", "default=", "save=", "remove=", "load=", "force", "fingerprint", "config", "debug", "skip-options=", "help"]) + opts, args = getopt.getopt(argv[1:], "s:r:l:d:cfh", + ["batch", "dry-run", "change", "default=", "save=", "remove=", "load=", + "force", "fingerprint", "config", "debug", "skip-options=", "help"]) except getopt.GetoptError as e: print("Failed to parse options: {0}.\n" "Use --help to get usage information.".format(str(e)), @@ -1026,7 +1041,8 @@ def main(argv): options["--save"] = options["-s"] if "--save" in options: if options["--save"] in (x[0] for x in virtual_profiles): - raise AutorandrException("Cannot save current configuration as profile '%s':\nThis configuration name is a reserved virtual configuration." % options["--save"]) + raise AutorandrException("Cannot save current configuration as profile '%s':\n" + "This configuration name is a reserved virtual configuration." % options["--save"]) try: profile_folder = os.path.join(profile_path, options["--save"]) save_configuration(profile_folder, config) @@ -1040,9 +1056,11 @@ def main(argv): options["--remove"] = options["-r"] if "--remove" in options: if options["--remove"] in (x[0] for x in virtual_profiles): - raise AutorandrException("Cannot remove profile '%s':\nThis configuration name is a reserved virtual configuration." % options["--remove"]) + raise AutorandrException("Cannot remove profile '%s':\n" + "This configuration name is a reserved virtual configuration." % options["--remove"]) if options["--remove"] not in profiles.keys(): - raise AutorandrException("Cannot remove profile '%s':\nThis profile does not exist." % options["--remove"]) + raise AutorandrException("Cannot remove profile '%s':\n" + "This profile does not exist." % options["--remove"]) try: remove = True profile_folder = os.path.join(profile_path, options["--remove"]) @@ -1050,7 +1068,8 @@ def main(argv): profile_dirlist.remove("config") profile_dirlist.remove("setup") if profile_dirlist: - print("Profile folder '%s' contains the following additional files:\n---\n%s\n---" % (options["--remove"], "\n".join(profile_dirlist))) + print("Profile folder '%s' contains the following additional files:\n" + "---\n%s\n---" % (options["--remove"], "\n".join(profile_dirlist))) response = input("Do you really want to remove profile '%s'? If so, type 'yes': " % options["--remove"]).strip() if response != "yes": remove = False @@ -1171,7 +1190,9 @@ def exception_handled_main(argv=sys.argv): print("Exception: {0}".format(e.__class__.__name__)) sys.exit(2) - print("Unhandled exception ({0}). Please report this as a bug at https://github.com/phillipberndt/autorandr/issues.".format(e), file=sys.stderr) + print("Unhandled exception ({0}). Please report this as a bug at " + "https://github.com/phillipberndt/autorandr/issues.".format(e), + file=sys.stderr) raise