2010-12-02 16:46:23 +00:00
|
|
|
#!/usr/bin/env python
|
2012-05-07 06:50:40 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2012-05-07 06:19:19 +00:00
|
|
|
"""
|
|
|
|
Copyright © 2008-2012 Joel Schaerer
|
2013-07-07 02:17:54 +00:00
|
|
|
Copyright © 2012-2013 William Ting
|
2012-05-07 06:19:19 +00:00
|
|
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
"""
|
|
|
|
|
2010-10-24 09:30:01 +00:00
|
|
|
from __future__ import division, print_function
|
|
|
|
|
2013-05-14 22:34:19 +00:00
|
|
|
import collections
|
2013-05-14 23:30:00 +00:00
|
|
|
import difflib
|
2013-09-26 20:40:34 +00:00
|
|
|
import errno
|
2013-05-14 22:34:19 +00:00
|
|
|
import math
|
|
|
|
import operator
|
|
|
|
import os
|
2012-05-06 23:41:00 +00:00
|
|
|
import re
|
2011-09-27 13:47:24 +00:00
|
|
|
import shutil
|
2013-05-14 22:34:19 +00:00
|
|
|
import sys
|
2013-05-15 02:58:23 +00:00
|
|
|
import tempfile
|
2011-09-06 14:21:59 +00:00
|
|
|
|
2013-09-26 20:40:34 +00:00
|
|
|
|
2013-05-21 14:28:39 +00:00
|
|
|
try:
|
|
|
|
import argparse
|
|
|
|
except ImportError:
|
|
|
|
# Python 2.6 support
|
|
|
|
sys.path.append(os.path.dirname(os.path.realpath(__file__)))
|
|
|
|
import autojump_argparse as argparse
|
|
|
|
sys.path.pop()
|
|
|
|
|
2013-09-26 20:40:34 +00:00
|
|
|
|
|
|
|
def create_dir_atomically(path):
|
|
|
|
try:
|
|
|
|
os.makedirs(path)
|
|
|
|
except OSError as exception:
|
|
|
|
if exception.errno != errno.EEXIST:
|
|
|
|
raise
|
|
|
|
|
|
|
|
|
2012-05-06 23:12:39 +00:00
|
|
|
class Database:
|
2012-05-13 02:31:37 +00:00
|
|
|
"""
|
2013-07-07 01:23:34 +00:00
|
|
|
Abstraction for interfacing with with autojump database file.
|
2012-05-13 02:31:37 +00:00
|
|
|
"""
|
2012-05-06 23:12:39 +00:00
|
|
|
|
2013-05-14 22:34:19 +00:00
|
|
|
def __init__(self, config):
|
|
|
|
self.config = config
|
|
|
|
self.filename = config['db']
|
|
|
|
self.data = collections.defaultdict(int)
|
2012-05-06 23:12:39 +00:00
|
|
|
self.load()
|
|
|
|
|
2012-05-13 02:31:37 +00:00
|
|
|
def __len__(self):
|
|
|
|
return len(self.data)
|
|
|
|
|
2012-05-06 23:12:39 +00:00
|
|
|
def load(self, error_recovery = False):
|
2012-05-13 02:31:37 +00:00
|
|
|
"""
|
2013-05-14 22:34:19 +00:00
|
|
|
Open database file, recovering from backup if needed.
|
2012-05-13 02:31:37 +00:00
|
|
|
"""
|
2012-05-28 19:21:31 +00:00
|
|
|
if os.path.exists(self.filename):
|
2012-05-28 19:44:09 +00:00
|
|
|
try:
|
2012-11-23 16:57:54 +00:00
|
|
|
if sys.version_info >= (3, 0):
|
2013-05-14 22:34:19 +00:00
|
|
|
with open(self.filename, 'r', encoding='utf-8') as f:
|
2012-11-22 23:13:38 +00:00
|
|
|
for line in f.readlines():
|
|
|
|
weight, path = line[:-1].split("\t", 1)
|
|
|
|
path = decode(path, 'utf-8')
|
|
|
|
self.data[path] = float(weight)
|
|
|
|
else:
|
|
|
|
with open(self.filename, 'r') as f:
|
|
|
|
for line in f.readlines():
|
|
|
|
weight, path = line[:-1].split("\t", 1)
|
|
|
|
path = decode(path, 'utf-8')
|
|
|
|
self.data[path] = float(weight)
|
2012-05-28 19:44:09 +00:00
|
|
|
except (IOError, EOFError):
|
|
|
|
self.load_backup(error_recovery)
|
|
|
|
else:
|
|
|
|
self.load_backup(error_recovery)
|
|
|
|
|
|
|
|
def load_backup(self, error_recovery = False):
|
|
|
|
"""
|
|
|
|
Loads database from backup file.
|
|
|
|
"""
|
|
|
|
if os.path.exists(self.filename + '.bak'):
|
2012-05-28 19:21:31 +00:00
|
|
|
if not error_recovery:
|
2012-05-06 23:12:39 +00:00
|
|
|
print('Problem with autojump database,\
|
|
|
|
trying to recover from backup...', file=sys.stderr)
|
|
|
|
shutil.copy(self.filename + '.bak', self.filename)
|
|
|
|
return self.load(True)
|
|
|
|
|
|
|
|
def save(self):
|
2012-05-13 02:31:37 +00:00
|
|
|
"""
|
2012-05-28 19:21:31 +00:00
|
|
|
Save database atomically and preserve backup, creating new database if
|
|
|
|
needed.
|
2012-05-13 02:31:37 +00:00
|
|
|
"""
|
2012-05-06 23:12:39 +00:00
|
|
|
# check file existence and permissions
|
|
|
|
if ((not os.path.exists(self.filename)) or
|
|
|
|
os.name == 'nt' or
|
|
|
|
os.getuid() == os.stat(self.filename)[4]):
|
2013-09-26 20:40:34 +00:00
|
|
|
|
|
|
|
create_dir_atomically(self.config['data'])
|
|
|
|
|
|
|
|
temp = tempfile.NamedTemporaryFile(
|
|
|
|
dir=self.config['data'],
|
2013-05-15 02:58:23 +00:00
|
|
|
delete=False)
|
|
|
|
|
2012-05-06 23:12:39 +00:00
|
|
|
for path, weight in sorted(self.data.items(),
|
2013-05-14 22:34:19 +00:00
|
|
|
key=operator.itemgetter(1),
|
2012-05-06 23:12:39 +00:00
|
|
|
reverse=True):
|
2013-04-13 19:27:59 +00:00
|
|
|
temp.write((unico("%s\t%s\n" % (weight, path)).encode("utf-8")))
|
2012-05-06 23:12:39 +00:00
|
|
|
|
2013-02-25 05:49:45 +00:00
|
|
|
# catching disk errors and skipping save when file handle can't
|
|
|
|
# be closed.
|
2012-05-06 23:12:39 +00:00
|
|
|
try:
|
|
|
|
# http://thunk.org/tytso/blog/2009/03/15/dont-fear-the-fsync/
|
|
|
|
temp.flush()
|
|
|
|
os.fsync(temp)
|
|
|
|
temp.close()
|
|
|
|
except IOError as ex:
|
|
|
|
print("Error saving autojump database (disk full?)" %
|
|
|
|
ex, file=sys.stderr)
|
|
|
|
return
|
|
|
|
|
|
|
|
shutil.move(temp.name, self.filename)
|
|
|
|
try: # backup file
|
|
|
|
import time
|
|
|
|
if (not os.path.exists(self.filename+".bak") or
|
2013-02-25 05:49:45 +00:00
|
|
|
time.time()-os.path.getmtime(self.filename+".bak") \
|
|
|
|
> 86400):
|
2012-05-06 23:12:39 +00:00
|
|
|
shutil.copy(self.filename, self.filename+".bak")
|
|
|
|
except OSError as ex:
|
|
|
|
print("Error while creating backup autojump file. (%s)" %
|
|
|
|
ex, file=sys.stderr)
|
|
|
|
|
2013-07-07 01:23:34 +00:00
|
|
|
def add(self, path, increment=10):
|
|
|
|
"""
|
|
|
|
Increase weight of existing paths or initialize new ones to 10.
|
|
|
|
"""
|
|
|
|
if path == self.config['home']:
|
|
|
|
return
|
|
|
|
|
|
|
|
path = path.rstrip(os.sep)
|
|
|
|
|
|
|
|
if self.data[path]:
|
|
|
|
self.data[path] = math.sqrt((self.data[path]**2) + (increment**2))
|
|
|
|
else:
|
|
|
|
self.data[path] = increment
|
|
|
|
|
|
|
|
self.save()
|
|
|
|
|
|
|
|
def decrease(self, path, increment=15):
|
|
|
|
"""
|
|
|
|
Decrease weight of existing path. Unknown paths are ignored.
|
|
|
|
"""
|
|
|
|
if path == self.config['home']:
|
|
|
|
return
|
|
|
|
|
|
|
|
if self.data[path] < increment:
|
|
|
|
self.data[path] = 0
|
|
|
|
else:
|
|
|
|
self.data[path] -= increment
|
|
|
|
|
|
|
|
self.save()
|
|
|
|
|
|
|
|
def get_weight(self, path):
|
|
|
|
return self.data[path]
|
|
|
|
|
|
|
|
def maintenance(self):
|
|
|
|
"""
|
|
|
|
Decay weights by 10%, periodically remove bottom 10% entries.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
items = self.data.iteritems()
|
|
|
|
except AttributeError:
|
|
|
|
items = self.data.items()
|
|
|
|
|
|
|
|
for path, _ in items:
|
|
|
|
self.data[path] *= 0.9
|
|
|
|
|
|
|
|
if len(self.data) > self.config['max_paths']:
|
|
|
|
remove_cnt = int(0.1 * len(self.data))
|
|
|
|
for path in sorted(self.data, key=self.data.get)[:remove_cnt]:
|
|
|
|
del self.data[path]
|
|
|
|
|
|
|
|
self.save()
|
|
|
|
|
|
|
|
def purge(self):
|
|
|
|
"""
|
|
|
|
Remove non-existent paths.
|
|
|
|
"""
|
|
|
|
removed = []
|
|
|
|
|
|
|
|
for path in list(self.data.keys()):
|
|
|
|
if not os.path.exists(path):
|
|
|
|
removed.append(path)
|
|
|
|
del self.data[path]
|
|
|
|
|
|
|
|
self.save()
|
|
|
|
return removed
|
|
|
|
|
2013-05-14 22:34:19 +00:00
|
|
|
def set_defaults():
|
|
|
|
config = {}
|
2012-05-06 23:12:39 +00:00
|
|
|
|
2013-09-26 20:40:34 +00:00
|
|
|
config['version'] = 'release-v21.7.1'
|
2013-05-14 22:34:19 +00:00
|
|
|
config['max_paths'] = 1000
|
|
|
|
config['separator'] = '__'
|
2013-05-21 15:36:44 +00:00
|
|
|
config['home'] = os.path.expanduser('~')
|
2013-05-14 22:34:19 +00:00
|
|
|
|
|
|
|
config['ignore_case'] = False
|
|
|
|
config['keep_symlinks'] = False
|
|
|
|
config['debug'] = False
|
2013-05-15 02:58:00 +00:00
|
|
|
config['match_cnt'] = 1
|
2012-05-13 03:00:38 +00:00
|
|
|
|
2013-05-14 22:34:19 +00:00
|
|
|
xdg_data = os.environ.get('XDG_DATA_HOME') or \
|
2013-05-15 00:03:08 +00:00
|
|
|
os.path.join(config['home'], '.local', 'share')
|
2013-05-14 22:34:19 +00:00
|
|
|
config['data'] = os.path.join(xdg_data, 'autojump')
|
|
|
|
config['db'] = config['data'] + '/autojump.txt'
|
|
|
|
|
|
|
|
return config
|
|
|
|
|
|
|
|
def parse_env(config):
|
|
|
|
if 'AUTOJUMP_DATA_DIR' in os.environ:
|
|
|
|
config['data'] = os.environ.get('AUTOJUMP_DATA_DIR')
|
|
|
|
config['db'] = config['data'] + '/autojump.txt'
|
|
|
|
|
2013-05-15 00:03:08 +00:00
|
|
|
if config['data'] == config['home']:
|
2013-05-14 22:34:19 +00:00
|
|
|
config['db'] = config['data'] + '/.autojump.txt'
|
|
|
|
|
|
|
|
if 'AUTOJUMP_IGNORE_CASE' in os.environ and \
|
|
|
|
os.environ.get('AUTOJUMP_IGNORE_CASE') == '1':
|
|
|
|
config['ignore_case'] = True
|
|
|
|
|
|
|
|
if 'AUTOJUMP_KEEP_SYMLINKS' in os.environ and \
|
|
|
|
os.environ.get('AUTOJUMP_KEEP_SYMLINKS') == '1':
|
|
|
|
config['keep_symlinks'] = True
|
|
|
|
|
|
|
|
return config
|
|
|
|
|
|
|
|
def parse_arg(config):
|
2013-02-25 05:49:45 +00:00
|
|
|
parser = argparse.ArgumentParser(
|
2013-05-15 01:58:24 +00:00
|
|
|
description='Automatically jump to directory passed as an argument.',
|
2012-05-06 23:41:00 +00:00
|
|
|
epilog="Please see autojump(1) man pages for full documentation.")
|
2013-02-25 05:49:45 +00:00
|
|
|
parser.add_argument(
|
2013-02-25 05:55:29 +00:00
|
|
|
'directory', metavar='DIRECTORY', nargs='*', default='',
|
2012-05-06 23:41:00 +00:00
|
|
|
help='directory to jump to')
|
2013-02-25 05:49:45 +00:00
|
|
|
parser.add_argument(
|
2013-05-15 00:03:08 +00:00
|
|
|
'-a', '--add', metavar='DIRECTORY',
|
|
|
|
help='manually add path to database')
|
|
|
|
parser.add_argument(
|
|
|
|
'-i', '--increase', metavar='WEIGHT', nargs='?', type=int,
|
|
|
|
const=20, default=False,
|
|
|
|
help='manually increase path weight in database')
|
2013-02-25 05:49:45 +00:00
|
|
|
parser.add_argument(
|
2013-02-25 05:55:29 +00:00
|
|
|
'-d', '--decrease', metavar='WEIGHT', nargs='?', type=int,
|
|
|
|
const=15, default=False,
|
2013-02-25 05:45:22 +00:00
|
|
|
help='manually decrease path weight in database')
|
2013-02-25 05:49:45 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'-b', '--bash', action="store_true", default=False,
|
2012-05-06 23:41:00 +00:00
|
|
|
help='enclose directory quotes to prevent errors')
|
2013-02-25 05:49:45 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--complete', action="store_true", default=False,
|
2012-06-23 20:20:27 +00:00
|
|
|
help='used for tab completion')
|
2013-02-25 05:49:45 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'--purge', action="store_true", default=False,
|
2012-05-07 06:50:40 +00:00
|
|
|
help='delete all database entries that no longer exist on system')
|
2013-02-25 05:49:45 +00:00
|
|
|
parser.add_argument(
|
|
|
|
'-s', '--stat', action="store_true", default=False,
|
2012-05-06 23:41:00 +00:00
|
|
|
help='show database entries and their key weights')
|
2013-02-25 05:49:45 +00:00
|
|
|
parser.add_argument(
|
2013-05-14 22:34:19 +00:00
|
|
|
'-v', '--version', action="version", version="%(prog)s " +
|
|
|
|
config['version'], help='show version information and exit')
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
db = Database(config)
|
|
|
|
|
2013-05-15 00:03:08 +00:00
|
|
|
if args.add:
|
|
|
|
db.add(decode(args.add))
|
2013-05-14 22:34:19 +00:00
|
|
|
sys.exit(0)
|
|
|
|
|
2013-05-15 00:03:08 +00:00
|
|
|
if args.increase:
|
|
|
|
print("%.2f:\t old directory weight" % db.get_weight(os.getcwd()))
|
|
|
|
db.add(os.getcwd(), args.increase)
|
|
|
|
print("%.2f:\t new directory weight" % db.get_weight(os.getcwd()))
|
|
|
|
sys.exit(0)
|
2013-05-14 22:34:19 +00:00
|
|
|
|
2013-05-15 00:03:08 +00:00
|
|
|
if args.decrease:
|
|
|
|
print("%.2f:\t old directory weight" % db.get_weight(os.getcwd()))
|
|
|
|
db.decrease(os.getcwd(), args.decrease)
|
|
|
|
print("%.2f:\t new directory weight" % db.get_weight(os.getcwd()))
|
2013-05-14 22:34:19 +00:00
|
|
|
sys.exit(0)
|
|
|
|
|
2013-05-15 00:03:08 +00:00
|
|
|
if args.purge:
|
2012-05-07 06:50:40 +00:00
|
|
|
removed = db.purge()
|
2013-05-14 22:34:19 +00:00
|
|
|
|
|
|
|
if len(removed):
|
2012-05-07 06:50:40 +00:00
|
|
|
for dir in removed:
|
2013-05-15 02:56:15 +00:00
|
|
|
output(dir)
|
2013-05-14 22:34:19 +00:00
|
|
|
|
2012-05-07 06:50:40 +00:00
|
|
|
print("Number of database entries removed: %d" % len(removed))
|
|
|
|
|
2013-05-14 22:34:19 +00:00
|
|
|
sys.exit(0)
|
|
|
|
|
2013-05-15 00:03:08 +00:00
|
|
|
if args.stat:
|
2013-05-14 22:46:28 +00:00
|
|
|
for path, weight in sorted(db.data.items(),
|
|
|
|
key=operator.itemgetter(1))[-100:]:
|
2013-05-15 02:56:15 +00:00
|
|
|
output("%.1f:\t%s" % (weight, path))
|
2013-02-25 06:03:46 +00:00
|
|
|
|
|
|
|
print("________________________________________\n")
|
|
|
|
print("%d:\t total key weight" % sum(db.data.values()))
|
2013-05-14 22:46:28 +00:00
|
|
|
print("%d:\t stored directories" % len(db.data))
|
2013-05-15 00:03:08 +00:00
|
|
|
print("%.2f:\t current directory weight" % db.get_weight(os.getcwd()))
|
2013-05-14 22:34:19 +00:00
|
|
|
|
2013-05-15 00:03:08 +00:00
|
|
|
print("\ndb file: %s" % config['db'])
|
2013-05-14 22:34:19 +00:00
|
|
|
sys.exit(0)
|
|
|
|
|
2013-05-15 02:58:00 +00:00
|
|
|
if args.complete:
|
|
|
|
config['match_cnt'] = 9
|
|
|
|
config['ignore_case'] = True
|
|
|
|
|
2013-05-14 22:34:19 +00:00
|
|
|
config['args'] = args
|
|
|
|
return config
|
2012-05-06 23:41:00 +00:00
|
|
|
|
|
|
|
def decode(text, encoding=None, errors="strict"):
|
2012-05-13 02:31:37 +00:00
|
|
|
"""
|
|
|
|
Decoding step for Python 2 which does not default to unicode.
|
|
|
|
"""
|
2012-05-06 23:12:39 +00:00
|
|
|
if sys.version_info[0] > 2:
|
2012-05-06 23:41:00 +00:00
|
|
|
return text
|
2011-09-12 15:04:37 +00:00
|
|
|
else:
|
|
|
|
if encoding is None:
|
2012-05-06 23:12:39 +00:00
|
|
|
encoding = sys.getfilesystemencoding()
|
2012-05-06 23:41:00 +00:00
|
|
|
return text.decode(encoding, errors)
|
2011-09-12 14:42:40 +00:00
|
|
|
|
2013-05-15 02:56:15 +00:00
|
|
|
def output_quotes(config, text):
|
|
|
|
quotes = ""
|
|
|
|
if config['args'].complete and config['args'].bash:
|
|
|
|
quotes = "'"
|
|
|
|
|
|
|
|
output("%s%s%s" % (quotes, text, quotes))
|
|
|
|
|
|
|
|
def output(text, encoding=None):
|
2012-05-13 02:31:37 +00:00
|
|
|
"""
|
|
|
|
Wrapper for the print function, using the filesystem encoding by default
|
|
|
|
to minimize encoding mismatch problems in directory names.
|
|
|
|
"""
|
2012-05-06 23:12:39 +00:00
|
|
|
if sys.version_info[0] > 2:
|
2013-05-15 02:56:15 +00:00
|
|
|
print(text)
|
2011-09-12 14:42:40 +00:00
|
|
|
else:
|
|
|
|
if encoding is None:
|
2012-05-06 23:12:39 +00:00
|
|
|
encoding = sys.getfilesystemencoding()
|
2013-05-15 02:56:15 +00:00
|
|
|
print(unicode(text).encode(encoding))
|
2011-09-12 14:42:40 +00:00
|
|
|
|
2011-09-12 15:04:37 +00:00
|
|
|
def unico(text):
|
2012-05-13 02:31:37 +00:00
|
|
|
"""
|
|
|
|
If Python 2, convert to a unicode object.
|
|
|
|
"""
|
2012-05-06 23:12:39 +00:00
|
|
|
if sys.version_info[0] > 2:
|
2011-09-12 15:04:37 +00:00
|
|
|
return text
|
|
|
|
else:
|
|
|
|
return unicode(text)
|
|
|
|
|
2012-05-07 01:09:37 +00:00
|
|
|
def match(path, pattern, only_end=False, ignore_case=False):
|
2012-05-13 02:31:37 +00:00
|
|
|
"""
|
|
|
|
Check whether a path matches a particular pattern, and return
|
|
|
|
the remaining part of the string.
|
|
|
|
"""
|
2010-07-21 14:44:43 +00:00
|
|
|
if only_end:
|
2012-05-07 01:09:37 +00:00
|
|
|
match_path = "/".join(path.split('/')[-1-pattern.count('/'):])
|
2010-07-21 14:44:43 +00:00
|
|
|
else:
|
2012-05-07 01:09:37 +00:00
|
|
|
match_path = path
|
|
|
|
|
2010-07-21 14:44:43 +00:00
|
|
|
if ignore_case:
|
2012-05-07 04:10:06 +00:00
|
|
|
match_path = match_path.lower()
|
|
|
|
pattern = pattern.lower()
|
2012-05-07 01:09:37 +00:00
|
|
|
|
2012-05-07 04:10:06 +00:00
|
|
|
find_idx = match_path.find(pattern)
|
2012-05-07 01:09:37 +00:00
|
|
|
# truncate path to avoid matching a pattern multiple times
|
|
|
|
if find_idx != -1:
|
|
|
|
return (True, path)
|
2010-07-21 14:44:43 +00:00
|
|
|
else:
|
2012-05-07 01:09:37 +00:00
|
|
|
return (False, path[find_idx+len(pattern):])
|
2010-07-21 14:44:43 +00:00
|
|
|
|
2013-05-15 02:58:00 +00:00
|
|
|
def find_matches(config, db, patterns, ignore_case=False, fuzzy=False):
|
2012-05-13 02:31:37 +00:00
|
|
|
"""
|
2013-05-14 23:30:00 +00:00
|
|
|
Find paths matching patterns up to max_matches.
|
2012-05-13 02:31:37 +00:00
|
|
|
"""
|
2012-05-07 00:34:03 +00:00
|
|
|
try:
|
2012-12-17 18:35:33 +00:00
|
|
|
current_dir = decode(os.path.realpath(os.curdir))
|
2012-05-07 00:34:03 +00:00
|
|
|
except OSError:
|
|
|
|
current_dir = None
|
|
|
|
|
2013-05-14 23:30:00 +00:00
|
|
|
dirs = sorted(db.data.items(), key=operator.itemgetter(1), reverse=True)
|
2012-05-07 00:34:03 +00:00
|
|
|
results = []
|
2012-05-07 04:10:06 +00:00
|
|
|
|
2013-05-14 23:30:00 +00:00
|
|
|
if ignore_case:
|
|
|
|
patterns = [p.lower() for p in patterns]
|
|
|
|
|
|
|
|
if fuzzy:
|
2012-05-07 04:10:06 +00:00
|
|
|
# create dictionary of end paths to compare against
|
|
|
|
end_dirs = {}
|
|
|
|
for d in dirs:
|
|
|
|
if ignore_case:
|
|
|
|
end = d[0].split('/')[-1].lower()
|
|
|
|
else:
|
|
|
|
end = d[0].split('/')[-1]
|
|
|
|
|
|
|
|
# collisions: ignore lower weight paths
|
2012-12-18 16:14:53 +00:00
|
|
|
if end not in end_dirs:
|
2012-05-07 04:10:06 +00:00
|
|
|
end_dirs[end] = d[0]
|
|
|
|
|
|
|
|
# find the first match (heighest weight)
|
2012-12-18 16:14:53 +00:00
|
|
|
while True:
|
2013-05-14 23:30:00 +00:00
|
|
|
found = difflib.get_close_matches(patterns[-1], end_dirs, n=1, cutoff=.6)
|
2012-12-18 16:14:53 +00:00
|
|
|
if not found:
|
|
|
|
break
|
|
|
|
# avoid jumping to current directory
|
2013-05-14 23:30:00 +00:00
|
|
|
if (os.path.exists(found[0]) or config['debug']) and \
|
2012-12-18 16:14:53 +00:00
|
|
|
current_dir != os.path.realpath(found[0]):
|
|
|
|
break
|
|
|
|
# continue with the last found directory removed
|
|
|
|
del end_dirs[found[0]]
|
|
|
|
|
2012-05-07 04:10:06 +00:00
|
|
|
if found:
|
|
|
|
found = found[0]
|
|
|
|
results.append(end_dirs[found])
|
|
|
|
return results
|
|
|
|
else:
|
|
|
|
return []
|
|
|
|
|
2013-02-14 19:25:41 +00:00
|
|
|
current_dir_match = False
|
2012-05-06 23:41:00 +00:00
|
|
|
for path, _ in dirs:
|
2012-05-07 01:09:37 +00:00
|
|
|
found, tmp = True, path
|
|
|
|
for n, p in enumerate(patterns):
|
|
|
|
# for single/last pattern, only check end of path
|
|
|
|
if n == len(patterns)-1:
|
|
|
|
found, tmp = match(tmp, p, True, ignore_case)
|
|
|
|
else:
|
|
|
|
found, tmp = match(tmp, p, False, ignore_case)
|
|
|
|
if not found: break
|
|
|
|
|
2013-05-14 23:30:00 +00:00
|
|
|
if found and (os.path.exists(path) or config['debug']):
|
2012-12-18 10:32:58 +00:00
|
|
|
# avoid jumping to current directory
|
|
|
|
# (call out to realpath this late to not stat all dirs)
|
Do not decode os.path.realpath / path
`path` is decoded already (coming from `db`) and this caused the
following error:
Traceback (most recent call last):
File "/home/user/.autojump/bin/autojump", line 460, in <module>
if not shell_utility(): sys.exit(1)
File "/home/user/.autojump/bin/autojump", line 429, in shell_utility
results = find_matches(db, patterns, max_matches, False)
File "/home/user/.autojump/bin/autojump", line 374, in find_matches
if current_dir == decode(os.path.realpath(path)) :
File "/home/user/.autojump/bin/autojump", line 277, in decode
return text.decode(encoding, errors)
File "/usr/lib/python2.7/encodings/utf_8.py", line 16, in decode
return codecs.utf_8_decode(input, errors, True)
UnicodeEncodeError: 'ascii' codec can't encode character u'\xb4' in
position 52: ordinal not in range(128)
2012-12-18 10:52:57 +00:00
|
|
|
if current_dir == os.path.realpath(path):
|
2013-02-14 19:25:41 +00:00
|
|
|
current_dir_match = True
|
2012-12-18 10:32:58 +00:00
|
|
|
continue
|
|
|
|
|
2012-05-07 00:34:03 +00:00
|
|
|
if path not in results:
|
|
|
|
results.append(path)
|
2013-05-15 02:58:00 +00:00
|
|
|
|
|
|
|
if len(results) >= config['match_cnt']:
|
2011-09-09 11:04:21 +00:00
|
|
|
break
|
2013-02-14 19:25:41 +00:00
|
|
|
|
|
|
|
# if current directory is the only match, add it to results
|
|
|
|
if len(results) == 0 and current_dir_match:
|
|
|
|
results.append(current_dir)
|
|
|
|
|
2012-05-07 00:34:03 +00:00
|
|
|
return results
|
|
|
|
|
2013-05-14 22:34:19 +00:00
|
|
|
def main():
|
|
|
|
config = parse_arg(parse_env(set_defaults()))
|
2013-05-15 02:58:00 +00:00
|
|
|
sep = config['separator']
|
2013-05-14 23:30:00 +00:00
|
|
|
db = Database(config)
|
2012-04-07 14:14:19 +00:00
|
|
|
|
2013-05-15 01:58:24 +00:00
|
|
|
# checking command line directory arguments
|
2013-05-14 23:30:00 +00:00
|
|
|
if config['args'].directory:
|
2013-05-15 01:58:24 +00:00
|
|
|
patterns = [decode(d) for d in config['args'].directory]
|
2012-04-07 14:14:19 +00:00
|
|
|
else:
|
2013-05-14 23:30:00 +00:00
|
|
|
patterns = [unico('')]
|
2012-04-07 14:14:19 +00:00
|
|
|
|
2012-05-07 00:34:03 +00:00
|
|
|
# check for tab completion
|
2013-05-15 02:58:43 +00:00
|
|
|
tab_choice = None
|
2013-05-15 03:53:07 +00:00
|
|
|
tab_match = re.search(sep+r'([0-9]+)', patterns[-1])
|
2013-05-15 02:58:43 +00:00
|
|
|
|
|
|
|
# user has selected a tab completion entry
|
|
|
|
if tab_match:
|
2013-05-15 03:53:07 +00:00
|
|
|
config['match_cnt'] = 9
|
2012-05-07 00:34:03 +00:00
|
|
|
tab_choice = int(tab_match.group(1))
|
2013-05-15 03:53:07 +00:00
|
|
|
patterns[-1] = re.sub(sep+r'[0-9]+.*', '', patterns[-1])
|
2013-05-15 02:58:43 +00:00
|
|
|
else:
|
2013-05-15 03:53:07 +00:00
|
|
|
tab_match = re.match(r'(.*)'+sep, patterns[-1])
|
2013-05-15 04:00:22 +00:00
|
|
|
# partial tab match, display choices again
|
2012-05-07 00:34:03 +00:00
|
|
|
if tab_match:
|
2013-05-15 03:53:07 +00:00
|
|
|
config['match_cnt'] = 9
|
2012-05-07 00:34:03 +00:00
|
|
|
patterns[-1] = tab_match.group(1)
|
2012-05-06 23:51:18 +00:00
|
|
|
|
2013-05-15 02:58:00 +00:00
|
|
|
results = find_matches(config, db, patterns,
|
|
|
|
ignore_case=config['ignore_case'])
|
2012-05-07 04:30:22 +00:00
|
|
|
|
2012-05-07 00:34:03 +00:00
|
|
|
# if no results, try ignoring case
|
2013-05-15 02:58:00 +00:00
|
|
|
if not results and not config['ignore_case']:
|
|
|
|
results = find_matches(config, db, patterns, ignore_case=True)
|
2012-05-06 23:51:18 +00:00
|
|
|
|
2012-05-07 04:10:06 +00:00
|
|
|
# if no results, try approximate matching
|
|
|
|
if not results:
|
2013-05-15 02:58:00 +00:00
|
|
|
results = find_matches(config, db, patterns, ignore_case=True,
|
2012-12-18 15:03:29 +00:00
|
|
|
fuzzy=True)
|
2012-05-07 04:10:06 +00:00
|
|
|
|
2013-05-15 02:56:15 +00:00
|
|
|
if tab_choice and len(results) > (tab_choice-1):
|
2013-05-15 03:00:44 +00:00
|
|
|
output_quotes(config, results[tab_choice-1])
|
2013-05-14 23:30:00 +00:00
|
|
|
elif len(results) > 1 and config['args'].complete:
|
2013-05-15 02:56:15 +00:00
|
|
|
for n, r in enumerate(results[:9]):
|
2013-05-15 04:00:22 +00:00
|
|
|
output_quotes(config, '%s%s%d%s%s' %
|
|
|
|
(patterns[-1], sep, n+1, sep, r))
|
2012-05-07 00:34:03 +00:00
|
|
|
elif results:
|
2013-05-15 03:00:44 +00:00
|
|
|
output_quotes(config, results[0])
|
2012-05-06 23:51:18 +00:00
|
|
|
else:
|
2013-05-14 23:30:00 +00:00
|
|
|
return 1
|
2012-05-06 23:41:00 +00:00
|
|
|
|
2013-05-15 00:43:43 +00:00
|
|
|
db.maintenance()
|
2012-05-06 23:41:00 +00:00
|
|
|
|
2013-05-14 22:34:19 +00:00
|
|
|
return 0
|
2012-04-07 14:14:19 +00:00
|
|
|
|
2011-01-04 20:00:59 +00:00
|
|
|
if __name__ == "__main__":
|
2013-05-14 22:34:19 +00:00
|
|
|
sys.exit(main())
|