/usr/share/pyshared/pyke/question_base.py is in python-pyke 1.1.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | # $Id: question_base.py 081917d30609 2010-03-05 mtnyogi $
# coding=utf-8
#
# Copyright © 2008 Bruce Frederiksen
#
# 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.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
import contextlib
from pyke import unique
from pyke import knowledge_base
class question_base(knowledge_base.knowledge_base):
r'''
Each instance keeps track of a related set of questions.
'''
def __init__(self, name):
r'''
This is only used by the compiler, so only creates an instance
suitable for pickling.
Specifically, this means that the self.engine is just set to None
and the instance is not registered with any engine.
'''
super(question_base, self).__init__(None, name, register=False)
def add_question(self, question):
name = question.name
if name in self.entity_lists:
raise AssertionError("question_base %s: duplicate question, %s" %
(self.name, name))
self.entity_lists[name] = question
question.set_knowledge_base(self)
def get_ask_module(self):
if hasattr(self, 'ask_module'): return self.ask_module
return self.engine.get_ask_module()
class question(knowledge_base.knowledge_entity_list):
r'''
This represents one question in a question_base. It takes care of
lookup parameters and caching and delegates the work of actually
asking the user a question to the user_question object by calling its
'ask' method passing the format parameters.
'''
not_found = unique.unique('question.not_found')
def __init__(self, name, params, answer_param, user_question):
super(question, self).__init__(name)
self.params = tuple(params)
self.answer_param = answer_param
try:
self.answer_param_position = list(params).index(answer_param)
except ValueError:
raise ValueError("question %s: answer parameter, %s, "
"not in params list: %s" % (answer_param, params))
self.input_param_positions = \
tuple(filter(lambda i: i != self.answer_param_position,
range(len(self.params))))
self.user_question = user_question
self.cache = {}
def __repr__(self):
return "<question %s(%s): $%s = %s>" % \
(self.name, ', '.join('$' + p for p in self.params),
self.answer_param, repr(self.user_question))
def set_knowledge_base(self, question_base):
self.knowledge_base = question_base
self.user_question.set_question_base(question_base)
def lookup(self, bindings, pat_context, patterns):
input_params = tuple((self.params[i],
unicode(patterns[i].as_data(pat_context)))
for i in self.input_param_positions)
format_params = dict(input_params)
ans = self.cache.get(input_params, self.not_found)
if ans is self.not_found:
ans = self.cache[input_params] = \
self.user_question.ask(format_params)
def gen():
mark = bindings.mark(True)
end_done = False
try:
if patterns[self.answer_param_position] \
.match_data(bindings, pat_context, ans):
bindings.end_save_all_undo()
end_done = True
yield
finally:
if not end_done: bindings.end_save_all_undo()
bindings.undo_to_mark(mark)
return contextlib.closing(gen())
def reset(self):
self.cache.clear()
|