summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorhut <hut@lepus.uberspace.de>2016-01-18 17:03:08 +0100
committerhut <hut@lepus.uberspace.de>2016-01-18 17:03:08 +0100
commit5a502f6edff42cac3963d38bb4d5c3e38887bd2e (patch)
treef5adbdb44edaa6445ac80e4081550b304e4fd6f1 /ranger
parent1831f809eb2e7221fbe4ea5a7f41036d1e0847f6 (diff)
downloadranger-5a502f6edff42cac3963d38bb4d5c3e38887bd2e.tar.gz
ext.img_display: Autodetect w3mimgdisplay location
Diffstat (limited to 'ranger')
-rw-r--r--ranger/ext/img_display.py69
1 files changed, 41 insertions, 28 deletions
diff --git a/ranger/ext/img_display.py b/ranger/ext/img_display.py
index 2d8504fc..fbb7bbca 100644
--- a/ranger/ext/img_display.py
+++ b/ranger/ext/img_display.py
@@ -21,8 +21,14 @@ import termios
 from ranger.core.shared import FileManagerAware
 from subprocess import Popen, PIPE
 
-W3MIMGDISPLAY_PATH = '/usr/lib/w3m/w3mimgdisplay'
+W3MIMGDISPLAY_ENV = "W3MIMGDISPLAY_PATH"
 W3MIMGDISPLAY_OPTIONS = []
+W3MIMGDISPLAY_PATHS = [
+    '/usr/lib/w3m/w3mimgdisplay',
+    '/usr/libexec/w3m/w3mimgdisplay',
+    '/usr/lib64/w3m/w3mimgdisplay',
+    '/usr/libexec64/w3m/w3mimgdisplay'
+]
 
 class ImgDisplayUnsupportedException(Exception):
     pass
@@ -53,13 +59,42 @@ class W3MImageDisplayer(ImageDisplayer):
 
     def initialize(self):
         """start w3mimgdisplay"""
-        self.binary_path = os.environ.get("W3MIMGDISPLAY_PATH", None)
-        if not self.binary_path:
-            self.binary_path = W3MIMGDISPLAY_PATH
+        self.binary_path = None
+        self.binary_path = self._find_w3mimgdisplay_executable()  # may crash
         self.process = Popen([self.binary_path] + W3MIMGDISPLAY_OPTIONS,
                 stdin=PIPE, stdout=PIPE, universal_newlines=True)
         self.is_initialized = True
 
+    def _find_w3mimgdisplay_executable(self):
+        paths = [os.environ.get(W3MIMGDISPLAY_ENV, None)] + W3MIMGDISPLAY_PATHS
+        for path in paths:
+            if path is not None and os.path.exists(path):
+                return path
+        raise RuntimeError("No w3mimgdisplay executable found.  Please set "
+            "the path manually by setting the %s environment variable.  (see "
+            "man page)" % W3MIMGDISPLAY_ENV)
+
+    def _get_font_dimensions(self):
+        # Get the height and width of a character displayed in the terminal in
+        # pixels.
+        if self.binary_path is None:
+            self.binary_path = self._find_w3mimgdisplay_executable()
+        s = struct.pack("HHHH", 0, 0, 0, 0)
+        fd_stdout = sys.stdout.fileno()
+        x = fcntl.ioctl(fd_stdout, termios.TIOCGWINSZ, s)
+        rows, cols, xpixels, ypixels = struct.unpack("HHHH", x)
+        if xpixels == 0 and ypixels == 0:
+            process = Popen([self.binary_path, "-test"],
+                stdout=PIPE, universal_newlines=True)
+            output, _ = process.communicate()
+            output = output.split()
+            xpixels, ypixels = int(output[0]), int(output[1])
+            # adjust for misplacement
+            xpixels += 2
+            ypixels += 2
+
+        return (xpixels // cols), (ypixels // rows)
+
     def draw(self, path, start_x, start_y, width, height):
         if not self.is_initialized or self.process.poll() is not None:
             self.initialize()
@@ -72,7 +107,7 @@ class W3MImageDisplayer(ImageDisplayer):
         if not self.is_initialized or self.process.poll() is not None:
             self.initialize()
 
-        fontw, fonth = _get_font_dimensions()
+        fontw, fonth = self._get_font_dimensions()
 
         cmd = "6;{x};{y};{w};{h}\n4;\n3;\n".format(
                 x = int((start_x - 0.2) * fontw),
@@ -92,7 +127,7 @@ class W3MImageDisplayer(ImageDisplayer):
         start_x, start_y, max_height and max_width specify the drawing area.
         They are expressed in number of characters.
         """
-        fontw, fonth = _get_font_dimensions()
+        fontw, fonth = self._get_font_dimensions()
         if fontw == 0 or fonth == 0:
             raise ImgDisplayUnsupportedException()
 
@@ -240,25 +275,3 @@ class ITerm2ImageDisplayer(ImageDisplayer, FileManagerAware):
             return 0, 0
         file_handle.close()
         return width, height
-
-def _get_font_dimensions():
-    # Get the height and width of a character displayed in the terminal in
-    # pixels.
-    s = struct.pack("HHHH", 0, 0, 0, 0)
-    fd_stdout = sys.stdout.fileno()
-    x = fcntl.ioctl(fd_stdout, termios.TIOCGWINSZ, s)
-    rows, cols, xpixels, ypixels = struct.unpack("HHHH", x)
-    if xpixels == 0 and ypixels == 0:
-        binary_path = os.environ.get("W3MIMGDISPLAY_PATH", None)
-        if not binary_path:
-            binary_path = W3MIMGDISPLAY_PATH
-        process = Popen([binary_path, "-test"],
-            stdout=PIPE, universal_newlines=True)
-        output, _ = process.communicate()
-        output = output.split()
-        xpixels, ypixels = int(output[0]), int(output[1])
-        # adjust for misplacement
-        xpixels += 2
-        ypixels += 2
-
-    return (xpixels // cols), (ypixels // rows)