2013-10-14 21:09:13 +00:00
|
|
|
|
2013-10-16 22:32:32 +00:00
|
|
|
'''
|
|
|
|
searx is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
searx 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 Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with searx. If not, see < http://www.gnu.org/licenses/ >.
|
|
|
|
|
|
|
|
(C) 2013- by Adam Tauber, <asciimoo@gmail.com>
|
|
|
|
'''
|
|
|
|
|
2013-10-14 21:09:13 +00:00
|
|
|
from os.path import realpath, dirname, splitext, join
|
2014-02-05 19:24:31 +00:00
|
|
|
import sys
|
2013-10-14 21:09:13 +00:00
|
|
|
from imp import load_source
|
2014-01-21 23:17:49 +00:00
|
|
|
from flask.ext.babel import gettext
|
2014-07-07 11:59:27 +00:00
|
|
|
from operator import itemgetter
|
2014-02-05 19:24:31 +00:00
|
|
|
from searx import settings
|
2013-10-14 21:09:13 +00:00
|
|
|
|
|
|
|
engine_dir = dirname(realpath(__file__))
|
2013-10-23 21:54:46 +00:00
|
|
|
|
2013-10-15 17:11:43 +00:00
|
|
|
engines = {}
|
2013-10-14 21:09:13 +00:00
|
|
|
|
2013-10-17 19:06:28 +00:00
|
|
|
categories = {'general': []}
|
|
|
|
|
2014-01-31 14:45:18 +00:00
|
|
|
engine_shortcuts = {}
|
|
|
|
|
2014-01-19 21:59:01 +00:00
|
|
|
|
2013-10-23 21:54:46 +00:00
|
|
|
def load_module(filename):
|
2013-10-19 17:01:06 +00:00
|
|
|
modname = splitext(filename)[0]
|
2013-10-23 21:54:46 +00:00
|
|
|
if modname in sys.modules:
|
|
|
|
del sys.modules[modname]
|
2013-10-14 21:09:13 +00:00
|
|
|
filepath = join(engine_dir, filename)
|
2013-10-23 21:54:46 +00:00
|
|
|
module = load_source(modname, filepath)
|
|
|
|
module.name = modname
|
|
|
|
return module
|
|
|
|
|
2013-10-26 16:44:58 +00:00
|
|
|
|
2014-12-13 18:26:40 +00:00
|
|
|
def load_engine(engine_data):
|
2014-01-18 23:17:02 +00:00
|
|
|
engine_name = engine_data['engine']
|
2014-01-19 21:59:01 +00:00
|
|
|
engine = load_module(engine_name + '.py')
|
2014-01-31 03:35:23 +00:00
|
|
|
|
2013-10-23 21:54:46 +00:00
|
|
|
for param_name in engine_data:
|
|
|
|
if param_name == 'engine':
|
|
|
|
continue
|
|
|
|
if param_name == 'categories':
|
2014-01-18 23:17:02 +00:00
|
|
|
if engine_data['categories'] == 'none':
|
2013-11-04 20:46:23 +00:00
|
|
|
engine.categories = []
|
|
|
|
else:
|
2014-01-19 21:59:01 +00:00
|
|
|
engine.categories = map(
|
|
|
|
str.strip, engine_data['categories'].split(','))
|
2013-10-23 21:54:46 +00:00
|
|
|
continue
|
2014-01-18 23:17:02 +00:00
|
|
|
setattr(engine, param_name, engine_data[param_name])
|
2014-01-31 14:45:18 +00:00
|
|
|
|
|
|
|
if not hasattr(engine, 'paging'):
|
|
|
|
engine.paging = False
|
|
|
|
|
2014-03-08 12:59:50 +00:00
|
|
|
if not hasattr(engine, 'categories'):
|
|
|
|
engine.categories = ['general']
|
|
|
|
|
2014-01-31 14:45:18 +00:00
|
|
|
if not hasattr(engine, 'language_support'):
|
2014-10-19 10:41:04 +00:00
|
|
|
# engine.language_support = False
|
2014-01-31 14:45:18 +00:00
|
|
|
engine.language_support = True
|
|
|
|
|
2014-02-13 16:08:22 +00:00
|
|
|
if not hasattr(engine, 'timeout'):
|
2014-10-19 10:41:04 +00:00
|
|
|
# engine.language_support = False
|
2014-02-13 16:08:22 +00:00
|
|
|
engine.timeout = settings['server']['request_timeout']
|
|
|
|
|
|
|
|
if not hasattr(engine, 'shortcut'):
|
2014-10-19 10:41:04 +00:00
|
|
|
# engine.shortcut = '''
|
2014-01-31 14:45:18 +00:00
|
|
|
engine.shortcut = ''
|
|
|
|
|
|
|
|
# checking required variables
|
2013-10-25 21:41:14 +00:00
|
|
|
for engine_attr in dir(engine):
|
|
|
|
if engine_attr.startswith('_'):
|
|
|
|
continue
|
2014-01-20 01:31:20 +00:00
|
|
|
if getattr(engine, engine_attr) is None:
|
2014-12-29 20:31:04 +00:00
|
|
|
print('[E] Engine config error: Missing attribute "{0}.{1}"'
|
2014-12-20 11:17:03 +00:00
|
|
|
.format(engine.name, engine_attr))
|
2013-10-25 21:41:14 +00:00
|
|
|
sys.exit(1)
|
2014-01-31 14:45:18 +00:00
|
|
|
|
2014-01-19 21:59:01 +00:00
|
|
|
engine.stats = {
|
|
|
|
'result_count': 0,
|
|
|
|
'search_count': 0,
|
|
|
|
'page_load_time': 0,
|
|
|
|
'score_count': 0,
|
|
|
|
'errors': 0
|
|
|
|
}
|
2014-01-31 14:45:18 +00:00
|
|
|
|
2013-10-23 21:54:46 +00:00
|
|
|
if hasattr(engine, 'categories'):
|
2013-10-17 19:06:28 +00:00
|
|
|
for category_name in engine.categories:
|
|
|
|
categories.setdefault(category_name, []).append(engine)
|
2013-10-23 21:54:46 +00:00
|
|
|
else:
|
|
|
|
categories['general'].append(engine)
|
2013-10-15 16:19:06 +00:00
|
|
|
|
2014-01-31 14:45:18 +00:00
|
|
|
if engine.shortcut:
|
|
|
|
# TODO check duplications
|
2014-12-20 11:17:03 +00:00
|
|
|
if engine.shortcut in engine_shortcuts:
|
2014-12-29 20:31:04 +00:00
|
|
|
print('[E] Engine config error: ambigious shortcut: {0}'
|
2014-12-20 11:17:03 +00:00
|
|
|
.format(engine.shortcut))
|
|
|
|
sys.exit(1)
|
2014-01-31 14:45:18 +00:00
|
|
|
engine_shortcuts[engine.shortcut] = engine.name
|
2014-12-13 18:26:40 +00:00
|
|
|
return engine
|
2014-01-31 14:45:18 +00:00
|
|
|
|
2014-01-19 21:59:01 +00:00
|
|
|
|
2013-10-26 23:02:28 +00:00
|
|
|
def get_engines_stats():
|
2014-01-05 22:13:53 +00:00
|
|
|
# TODO refactor
|
2013-10-27 00:50:24 +00:00
|
|
|
pageloads = []
|
|
|
|
results = []
|
2013-10-27 13:21:23 +00:00
|
|
|
scores = []
|
2013-10-27 19:45:21 +00:00
|
|
|
errors = []
|
2014-01-05 22:13:53 +00:00
|
|
|
scores_per_result = []
|
2013-10-26 23:02:28 +00:00
|
|
|
|
2014-01-19 21:59:01 +00:00
|
|
|
max_pageload = max_results = max_score = max_errors = max_score_per_result = 0 # noqa
|
2013-10-26 23:02:28 +00:00
|
|
|
for engine in engines.values():
|
|
|
|
if engine.stats['search_count'] == 0:
|
|
|
|
continue
|
2014-01-19 21:59:01 +00:00
|
|
|
results_num = \
|
|
|
|
engine.stats['result_count'] / float(engine.stats['search_count'])
|
|
|
|
load_times = engine.stats['page_load_time'] / float(engine.stats['search_count']) # noqa
|
2013-10-27 13:21:23 +00:00
|
|
|
if results_num:
|
2014-01-19 21:59:01 +00:00
|
|
|
score = engine.stats['score_count'] / float(engine.stats['search_count']) # noqa
|
2014-01-05 22:13:53 +00:00
|
|
|
score_per_result = score / results_num
|
2013-10-27 13:21:23 +00:00
|
|
|
else:
|
2014-01-05 22:13:53 +00:00
|
|
|
score = score_per_result = 0.0
|
2013-10-27 00:50:24 +00:00
|
|
|
max_results = max(results_num, max_results)
|
|
|
|
max_pageload = max(load_times, max_pageload)
|
2013-10-27 13:21:23 +00:00
|
|
|
max_score = max(score, max_score)
|
2014-01-05 22:13:53 +00:00
|
|
|
max_score_per_result = max(score_per_result, max_score_per_result)
|
2013-10-27 19:45:21 +00:00
|
|
|
max_errors = max(max_errors, engine.stats['errors'])
|
2013-10-27 00:50:24 +00:00
|
|
|
pageloads.append({'avg': load_times, 'name': engine.name})
|
|
|
|
results.append({'avg': results_num, 'name': engine.name})
|
2013-10-27 13:21:23 +00:00
|
|
|
scores.append({'avg': score, 'name': engine.name})
|
2013-10-27 19:45:21 +00:00
|
|
|
errors.append({'avg': engine.stats['errors'], 'name': engine.name})
|
2014-01-19 21:59:01 +00:00
|
|
|
scores_per_result.append({
|
|
|
|
'avg': score_per_result,
|
|
|
|
'name': engine.name
|
|
|
|
})
|
2013-10-27 00:50:24 +00:00
|
|
|
|
|
|
|
for engine in pageloads:
|
2014-10-01 17:16:34 +00:00
|
|
|
if max_pageload:
|
|
|
|
engine['percentage'] = int(engine['avg'] / max_pageload * 100)
|
|
|
|
else:
|
|
|
|
engine['percentage'] = 0
|
2013-10-27 00:50:24 +00:00
|
|
|
|
|
|
|
for engine in results:
|
2014-10-01 17:16:34 +00:00
|
|
|
if max_results:
|
|
|
|
engine['percentage'] = int(engine['avg'] / max_results * 100)
|
|
|
|
else:
|
|
|
|
engine['percentage'] = 0
|
2013-10-27 00:50:24 +00:00
|
|
|
|
2013-10-27 13:21:23 +00:00
|
|
|
for engine in scores:
|
2014-10-01 17:16:34 +00:00
|
|
|
if max_score:
|
|
|
|
engine['percentage'] = int(engine['avg'] / max_score * 100)
|
|
|
|
else:
|
|
|
|
engine['percentage'] = 0
|
2013-10-27 13:21:23 +00:00
|
|
|
|
2014-01-05 22:13:53 +00:00
|
|
|
for engine in scores_per_result:
|
2014-10-01 17:16:34 +00:00
|
|
|
if max_score_per_result:
|
2014-10-19 10:41:04 +00:00
|
|
|
engine['percentage'] = int(engine['avg']
|
|
|
|
/ max_score_per_result * 100)
|
2014-10-01 17:16:34 +00:00
|
|
|
else:
|
|
|
|
engine['percentage'] = 0
|
2014-01-05 22:13:53 +00:00
|
|
|
|
2013-10-27 19:45:21 +00:00
|
|
|
for engine in errors:
|
|
|
|
if max_errors:
|
2014-01-19 21:59:01 +00:00
|
|
|
engine['percentage'] = int(float(engine['avg']) / max_errors * 100)
|
2013-10-27 19:45:21 +00:00
|
|
|
else:
|
|
|
|
engine['percentage'] = 0
|
|
|
|
|
2014-01-19 21:59:01 +00:00
|
|
|
return [
|
|
|
|
(
|
2014-01-21 23:17:49 +00:00
|
|
|
gettext('Page loads (sec)'),
|
|
|
|
sorted(pageloads, key=itemgetter('avg'))
|
|
|
|
),
|
|
|
|
(
|
|
|
|
gettext('Number of results'),
|
2014-01-19 21:59:01 +00:00
|
|
|
sorted(results, key=itemgetter('avg'), reverse=True)
|
|
|
|
),
|
|
|
|
(
|
2014-01-21 23:17:49 +00:00
|
|
|
gettext('Scores'),
|
|
|
|
sorted(scores, key=itemgetter('avg'), reverse=True)
|
|
|
|
),
|
|
|
|
(
|
|
|
|
gettext('Scores per result'),
|
2014-01-19 21:59:01 +00:00
|
|
|
sorted(scores_per_result, key=itemgetter('avg'), reverse=True)
|
|
|
|
),
|
2014-01-21 23:17:49 +00:00
|
|
|
(
|
|
|
|
gettext('Errors'),
|
|
|
|
sorted(errors, key=itemgetter('avg'), reverse=True)
|
|
|
|
),
|
2014-01-19 21:59:01 +00:00
|
|
|
]
|
2014-12-13 18:26:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
if 'engines' not in settings or not settings['engines']:
|
|
|
|
print '[E] Error no engines found. Edit your settings.yml'
|
|
|
|
exit(2)
|
|
|
|
|
|
|
|
for engine_data in settings['engines']:
|
|
|
|
engine = load_engine(engine_data)
|
|
|
|
engines[engine.name] = engine
|