mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
In preparation for enabling queries over flexattrs, this is a new path that lets queries avoid generating SQLite expressions altogether. Any query that can be completely evaluated in SQLite will be, but when it can't, we now fall back to running the entire query in Python by selecting everything from the database and running the `match` predicate. To begin with, this mechanism replaces RegisteredFieldQueries, which previously used Python callbacks for evaluation. Now they just indicate that they're slow queries and the query system falls back automatically. This has the great upside that it lets use implement arbitrarily complex queries without shoehorning everything into SQLite when that (a) is way too complicated and (b) doesn't buy us much performance anyway. The obvious drawback is that any code dealing with queries now has to handle two cases (slow and fast). In the future, we could optimize this further by combing fast and slow query styles. For example, if you want to match with a substring *and* a regular expression, we can do a first pass in SQLite and apply the regex predicate on the results. Avoided for now because premature optimization, etc., etc. Next step: implement flexattr matches as slow queries.
45 lines
1.4 KiB
Python
45 lines
1.4 KiB
Python
# This file is part of beets.
|
|
# Copyright 2013, Philippe Mongeau.
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
# a copy of this software and associated documentation files (the
|
|
# "Software"), to deal in the Software without restriction, including
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
# the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
"""Provides a fuzzy matching query.
|
|
"""
|
|
|
|
from beets.plugins import BeetsPlugin
|
|
from beets.library import FieldQuery
|
|
import beets
|
|
import difflib
|
|
|
|
|
|
class FuzzyQuery(FieldQuery):
|
|
@classmethod
|
|
def value_match(self, pattern, val):
|
|
# smartcase
|
|
if pattern.islower():
|
|
val = val.lower()
|
|
queryMatcher = difflib.SequenceMatcher(None, pattern, val)
|
|
threshold = beets.config['fuzzy']['threshold'].as_number()
|
|
return queryMatcher.quick_ratio() >= threshold
|
|
|
|
|
|
class FuzzyPlugin(BeetsPlugin):
|
|
def __init__(self):
|
|
super(FuzzyPlugin, self).__init__()
|
|
self.config.add({
|
|
'prefix': '~',
|
|
'threshold': 0.7,
|
|
})
|
|
|
|
def queries(self):
|
|
prefix = beets.config['fuzzy']['prefix'].get(basestring)
|
|
return {prefix: FuzzyQuery}
|