X-Git-Url: https://git.phdru.name/?p=xsetbg.git;a=blobdiff_plain;f=print-filename.py;h=676aed241a61f27339d011788d0bd5d7491f0ec3;hp=81503672330deecfaa66d28d901df83d47c634dc;hb=HEAD;hpb=a18440e4fb901f7a132e6a10272593cb8a5ee142 diff --git a/print-filename.py b/print-filename.py index 8150367..e9f217b 100755 --- a/print-filename.py +++ b/print-filename.py @@ -1,72 +1,61 @@ -#! /usr/bin/env python -"""Print background filename +#! /usr/bin/env python3 +"""print(background filename) -Print the filename of the current or previous background image. +print(the filename of the current or previous background image.) This file is a part of XSetBg. """ -__version__ = "$Revision$"[11:-2] -__revision__ = "$Id$"[5:-2] -__date__ = "$Date$"[7:-2] +import sys +from xsetbg_db import xsetbg_db -__author__ = "Oleg Broytman " -__copyright__ = "Copyright (C) 2004-2007 PhiloSoft Design" -__license__ = "GNU GPL" - - -import sys, os, shelve +if not xsetbg_db: + sys.exit("Error: no database found") def usage(code=0): - sys.stderr.write("Usage: %s [-o|--old]\n" % sys.argv[0]) - sys.exit(code) + sys.stderr.write("Usage: %s [index]\n" % sys.argv[0]) + sys.exit(code) def get_args(): - from getopt import getopt, GetoptError - - try: - options, arguments = getopt(sys.argv[1:], "ho", ["help", "old"]) - except GetoptError: - usage(1) - - old = False - - for option, value in options: - if option in ("-h", "--help"): - usage() - elif option in ("-o", "--old"): - old = True - else: - usage(2) - - if arguments: - usage(3) - - return old - -old = get_args() - - -xsetbg_dir = os.path.join(os.environ["HOME"], "lib", "xsetbg") -os.chdir(xsetbg_dir) - -global_db_name = "xsetbg.db" -filename_key = "filename" -old_filename_key = "old_filename" - - -global_db = shelve.open(global_db_name, flag='r') -if old: - key = old_filename_key -else: - key = filename_key -filename = global_db[key] -global_db.close() - -from m_lib.defenc import default_encoding -filename = unicode(filename, default_encoding) - -print filename.encode(default_encoding) + from getopt import getopt, GetoptError + + try: + options, arguments = getopt(sys.argv[1:], "he:", + ["help", "output-encoding="]) + except GetoptError: + usage(1) + + index = 0 + output_encoding = None + + for option, value in options: + if option in ("-h", "--help"): + usage() + elif option in ("-e", "--output-encoding"): + output_encoding = value + else: + usage(2) + + if arguments: + if len(arguments) == 1: + try: + index = int(arguments[0]) + except ValueError: + usage(3) + else: + usage(4) + + if output_encoding is None: + from m_lib.defenc import default_encoding + output_encoding = default_encoding + return index, output_encoding + + +index, output_encoding = get_args() +filename = xsetbg_db.select('last_shown IS NOT NULL', + orderBy='-last_shown')[index].full_name + +sys.stdout.buffer.write(filename.encode(output_encoding) + b'\n')