qutebrowser/qutebrowser/utils/completer.py

203 lines
7.4 KiB
Python
Raw Normal View History

2014-06-19 09:04:37 +02:00
# vim: ft=python fileencoding=utf-8 sts=4 sw=4 et:
2014-06-03 12:51:23 +02:00
# Copyright 2014 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
#
# This file is part of qutebrowser.
#
# qutebrowser 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 of the License, or
# (at your option) any later version.
#
# qutebrowser 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 qutebrowser. If not, see <http://www.gnu.org/licenses/>.
"""Completer attached to a CompletionView."""
2014-06-03 13:37:11 +02:00
from PyQt5.QtCore import pyqtSlot, pyqtSignal, QObject
2014-06-03 12:51:23 +02:00
import qutebrowser.config.config as config
import qutebrowser.config.configdata as configdata
import qutebrowser.commands.utils as cmdutils
from qutebrowser.utils.log import completion as logger
from qutebrowser.models.completionfilter import CompletionFilterModel as CFM
from qutebrowser.models.completion import (
CommandCompletionModel, SettingSectionCompletionModel,
SettingOptionCompletionModel, SettingValueCompletionModel)
class Completer(QObject):
"""Completer which manages completions in a CompletionView.
Attributes:
2014-06-03 12:59:50 +02:00
view: The CompletionView associated with this completer.
ignore_change: Whether to ignore the next completion update.
2014-06-03 12:51:23 +02:00
_models: dict of available completion models.
2014-06-03 13:37:11 +02:00
Signals:
change_completed_part: Text which should be substituted for the word
we're currently completing.
arg 0: The text to change to.
arg 1: True if the text should be set
immediately, without continuing
completing the current field.
2014-06-03 12:51:23 +02:00
"""
2014-06-03 13:37:11 +02:00
change_completed_part = pyqtSignal(str, bool)
2014-06-03 12:51:23 +02:00
def __init__(self, view):
super().__init__(view)
2014-06-03 12:59:50 +02:00
self.view = view
self.ignore_change = False
2014-06-03 12:51:23 +02:00
self._models = {
'option': {},
'value': {},
}
self._init_command_completion()
self._init_setting_completions()
def _init_command_completion(self):
"""Initialize the command completion model."""
2014-06-17 07:17:21 +02:00
self._models['command'] = CFM(CommandCompletionModel(self), self)
2014-06-03 12:51:23 +02:00
def _init_setting_completions(self):
"""Initialize setting completion models."""
2014-06-17 07:17:21 +02:00
self._models['section'] = CFM(SettingSectionCompletionModel(self),
self)
2014-06-03 12:51:23 +02:00
self._models['option'] = {}
self._models['value'] = {}
2014-06-04 07:16:48 +02:00
for sectname in configdata.DATA:
model = SettingOptionCompletionModel(sectname, self)
2014-06-17 07:17:21 +02:00
self._models['option'][sectname] = CFM(model, self)
config.instance().changed.connect(model.on_config_changed)
self._models['value'][sectname] = {}
for opt in configdata.DATA[sectname].keys():
model = SettingValueCompletionModel(sectname, opt, self)
2014-06-17 07:17:21 +02:00
self._models['value'][sectname][opt] = CFM(model, self)
config.instance().changed.connect(model.on_config_changed)
2014-06-03 12:51:23 +02:00
def _get_new_completion(self, parts, cursor_part):
"""Get a new completion model.
Args:
parts: The command chunks to get a completion for.
cursor_part: The part the cursor is over currently.
"""
if cursor_part == 0:
# '|' or 'set|'
return self._models['command']
# delegate completion to command
try:
completions = cmdutils.cmd_dict[parts[0]].completion
except KeyError:
# entering an unknown command
return None
if completions is None:
# command without any available completions
return None
2014-06-25 15:42:16 +02:00
dbg_completions = completions[:]
2014-06-03 12:51:23 +02:00
try:
idx = cursor_part - 1
completion_name = completions[idx]
except IndexError:
# More arguments than completions
2014-06-25 15:42:16 +02:00
logger.debug("completions: {}".format(', '.join(dbg_completions)))
2014-06-03 12:51:23 +02:00
return None
2014-06-25 15:42:16 +02:00
dbg_completions[idx] = '*' + dbg_completions[idx] + '*'
logger.debug("completions: {}".format(', '.join(dbg_completions)))
2014-06-03 12:51:23 +02:00
if completion_name == 'option':
section = parts[cursor_part - 1]
model = self._models['option'].get(section)
elif completion_name == 'value':
section = parts[cursor_part - 2]
option = parts[cursor_part - 1]
try:
model = self._models['value'][section][option]
except KeyError:
2014-06-20 23:26:19 +02:00
# No completion model for this section/option.
2014-06-03 12:51:23 +02:00
model = None
else:
model = self._models.get(completion_name)
return model
2014-06-03 12:59:50 +02:00
2014-06-03 13:48:12 +02:00
def selection_changed(self, selected, _deselected):
2014-06-03 13:37:11 +02:00
"""Emit change_completed_part if a new item was selected.
Called from the views selectionChanged method.
Args:
selected: New selection.
2014-06-03 13:48:12 +02:00
_delected: Previous selection.
2014-06-03 13:37:11 +02:00
Emit:
change_completed_part: Emitted when there's data for the new item.
"""
indexes = selected.indexes()
if not indexes:
return
model = self.view.model()
data = model.data(indexes[0])
if data is None:
return
if model.item_count == 1 and config.get('completion',
'quick-complete'):
# If we only have one item, we want to apply it immediately
# and go on to the next part.
self.change_completed_part.emit(data, True)
else:
self.ignore_change = True
self.change_completed_part.emit(data, False)
self.ignore_change = False
2014-06-03 12:59:50 +02:00
@pyqtSlot(str, list, int)
def on_update_completion(self, prefix, parts, cursor_part):
"""Check if completions are available and activate them.
Slot for the textChanged signal of the statusbar command widget.
Args:
text: The new text
cursor_part: The part the cursor is currently over.
"""
if self.ignore_change:
logger.debug("Ignoring completion update")
return
if prefix != ':':
# This is a search or gibberish, so we don't need to complete
# anything (yet)
# FIXME complete searchs
self.view.hide()
return
model = self._get_new_completion(parts, cursor_part)
if model is None:
logger.debug("No completion model for {}.".format(parts))
2014-06-25 15:42:16 +02:00
if model != self.view.model():
2014-06-03 12:59:50 +02:00
self.view.hide()
return
2014-06-25 15:42:16 +02:00
if model != self.view.model():
self.view.set_model(model)
2014-06-03 12:59:50 +02:00
pattern = parts[cursor_part] if parts else ''
self.view.model().pattern = pattern
2014-06-25 15:42:16 +02:00
logger.debug("New completion for {}: {}, with pattern '{}'".format(
parts, model.srcmodel.__class__.__name__, pattern))
2014-06-03 12:59:50 +02:00
if self.view.model().item_count == 0:
self.view.hide()
return
self.view.model().mark_all_items(pattern)
2014-06-03 13:48:12 +02:00
if self.view.enabled:
2014-06-03 12:59:50 +02:00
self.view.show()