Class: ActiveFacts::Metamodel::QueryEvaluator

Inherits:
Object
  • Object
show all
Defined in:
lib/activefacts/query/evaluator.rb

Constant Summary collapse

AFMM =
ActiveFacts::Metamodel

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(query, population = nil) ⇒ QueryEvaluator

Returns a new instance of QueryEvaluator.



6
7
8
9
10
11
12
13
14
15
# File 'lib/activefacts/query/evaluator.rb', line 6

def initialize query, population = nil
  @query = query

  raise "Query must be in the specified model" unless @query

  # In theory a query can span more than one vocabulary. I don't do that!
  @vocabulary = @query.all_variable.to_a.first.object_type.vocabulary

  set_population(population)
end

Instance Attribute Details

#free_variablesObject (readonly)

Returns the value of attribute free_variables.



33
34
35
# File 'lib/activefacts/query/evaluator.rb', line 33

def free_variables
  @free_variables
end

Instance Method Details

#all_variablesObject



29
30
31
# File 'lib/activefacts/query/evaluator.rb', line 29

def all_variables
	@query.all_variable.to_a
end

#conforms_to_plays_and_steps(hypothesis, variable, instance) ⇒ Object



91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# File 'lib/activefacts/query/evaluator.rb', line 91

def conforms_to_plays_and_steps(hypothesis, variable, instance)
	variable.all_play.to_a.map do |play|
	  # No play may fail (be in a step with/out a matching fact)
	  step = play.step

	  # REVISIT: We can skip steps that have been checked in an outer loop
	  # REVISIT: We need to check AlternateSets here.

	  # We cannot check a step that involves an unbound variable.
	  # Allow it for now (there will be nil instead of a matching fact)
	  next if step.all_play.to_a.any? do |other_play|
	    # REVISIT: Unless the step is optional
	    !(hypothesis.has_key?(other_play.variable) || other_play.variable == variable)
	  end

	  # Select all the RoleValues where this instance plays the required role.
	  # REVISIT: We've already selected instances in the correct population.
	  # Did RoleValues have to be further qualified? That might be redundant.
	  role_values = instance.all_role_value.select{|rv| rv.role == play.role }

	  satisfying_fact = nil

	  trace :result, "Trying #{role_values.size} values of #{play.role.object_type.name} to see whether #{instance.verbalise} participates in #{step.fact_type.default_reading} with bound variables #{hypothesis.map{|v,i| "#{v.object_type.name}=>#{i.verbalise}"}*', '}" do

	    role_values.any? do |rv|
 fact = rv.fact
 next false unless fact.population == @population

 # If the step designates an objectification, this fact must be that objectification
 if step.objectification_variable
		next false unless fact.instance && step.objectification_variable.object_type == fact.instance.object_type
		# REVISIT: fact.instance must be saved in the hypothesis under step.objectification_variable
 end

 # Succeed if this fact has all its role_values set to our bound variables
 if fact.all_role_value.all? do |rv|
		  relevant_play = step.all_play.detect{|p| p.role == rv.role}
		  relevant_variable = relevant_play.variable
		  relevant_value = variable == relevant_variable ? instance : hypothesis[relevant_variable]
		  match = relevant_value == rv.instance
		  trace :result, "#{relevant_play.variable.object_type.name} (bound to #{hypothesis[relevant_play.variable].verbalise}) #{match ? 'MATCHES' : 'DOES NOT MATCH'} role value #{rv.instance.verbalise}" if match
		  match
		end	  # of fact.all_role_value.all?
		satisfying_fact = fact
		satisfying_objectification_variable = step.objectification_variable
 end
	    end	# of role_values.any?
	  end   # of trace

	  if satisfying_fact
	    trace :result, "#{instance.verbalise} #{
		satisfying_fact ? 'participates' : 'does not participate'
 } in #{step.is_disallowed ? 'disallowed ' : ''}step over #{step.fact_type.default_reading} "+
 "with bound variables #{hypothesis.map{|v,i| "#{v.object_type.name}=>#{i.verbalise}"}*', '}"
	  end

	  if step.is_disallowed
	    satisfying_fact = !satisfying_fact	# yield true if no fact satisfied the step, as sought
	  end
	  return nil unless satisfying_fact	# This play fails the hypothesis

	  [ play, satisfying_fact ] +
	    Array(step.objectification_variable ? satisfying_fact.instance : nil)
	end   # of all_play
end

#evaluateObject



35
36
37
38
39
40
41
42
43
# File 'lib/activefacts/query/evaluator.rb', line 35

def evaluate
	@result_projection = {}  # A set of {hash of Variable to Instance}
	@free_variables = all_variables
	hypothesis = trivial_bindings @free_variables
	trace :query, "Evaluating query with free variables #{@free_variables.map{|v|v.object_type.name}.inspect} and hypothesis #{hypothesis.inspect}" do
	  query_level(@free_variables, hypothesis)
	end
	@result_projection
end

#find_candidate_sets(variable, bindings) ⇒ Object

This method is an exploration into finding a smaller search space for the given variable. It relies on the values of bindings being Instance objects.



249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
# File 'lib/activefacts/query/evaluator.rb', line 249

def find_candidate_sets variable, bindings
	trace :result, "Looking for a smaller candidate set by traversing from these bound variables: #{bindings.keys.map{|v| (v.object_type.name+v.ordinal.to_s).inspect }*', '}" do
	  # If this variable is connected via a single step to one or more bound variables,
	  # that's probably a better place to search than object_type.all_instance.
	  bindable_plays =
	    variable.all_play.map do |play|
 steps =
		play.all_step_as_output_play.to_a + play.all_step_as_input_play.to_a + [play.step].compact
 trace :result, "Considering steps over #{steps.map{|s|s.fact_type.default_reading.inspect}*', '}"
 bound_steps =
		steps.reject{|s| (s.all_play-[play]).detect{|p|
		  # trace :result, "Rejecting steps over #{s.fact_type.default_reading.inspect} because #{p.variable.object_type.name}#{p.variable.ordinal} is not bound" unless bindings[p.variable]
		  !bindings[p.variable]}
		}
 trace :result, "Bound steps are #{bound_steps.map{|s|s.fact_type.default_reading.inspect}*', '}"
 counterpart_plays =
		bound_steps.map{|s| (s.all_play-[play]) }.flatten.uniq
 trace :result, "bound_steps.size = #{bound_steps.size}, counterpart_plays.size = #{counterpart_plays.size}"

 # Consider only counterpart_plays for bound variables:
 #counterpart_plays.reject!{|cp| !bindings[cp.variable] }

 counterpart_plays
	    end.flatten.uniq

	  trace :result, "Connections of #{variable.object_type.name}#{variable.ordinal}:" do
	    if bindable_plays.empty?
 trace :result, "NONE"
	    else
 # Show the candidate instances here:
 if trace :result
		bindable_plays.each do |pl|
		  # We have bound instances of pl.variable, and the step(s) from this play reach the variable
		  trace :result, "Candidate facts which include this play are" do

bound_instance =
  bindings[pl.variable]	      # This is the instance under consideration
bound_instance.
  all_role_value.select{|rv|	      # Select its RoleValues for roles in this play's step
			pl.all_step.detect{|s| s.fact_type == rv.fact.fact_type }
  }.
  each{|rv|			      # Verbalise other role_values of this fact
			trace :result, "#{rv.fact.verbalise.inspect}"
  }
		  end
		  trace :result, "-> Role of #{pl.variable.object_type.name}#{pl.variable.ordinal} in #{pl.role.fact_type.default_reading}"
		end
 end
	    end
	  end
	end
end

#lookup_instance_by_value(object_type, value) ⇒ Object



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/activefacts/query/evaluator.rb', line 67

def lookup_instance_by_value(object_type, value)
	pi = object_type.is_a?(ActiveFacts::Metamodel::EntityType) && object_type.preferred_identifier

	# A multi-role identifier cannot be satisfied by a single value:
	return nil if pi && pi.role_sequence.all_role_ref.size > 1

	if pi
	  identifying_role = pi.role_sequence.all_role_ref.single.role
	  identifying_instance = lookup_instance_by_value(identifying_role.object_type, value)
	  return nil unless identifying_instance
	  identifying_role_values =
	    identifying_instance.all_role_value.select{|rv| rv.role == identifying_role }
	  raise "Faulty Population has duplicate #{object_type.name} instance #{value}" if identifying_role_values.size > 1
	  identifying_role_value = identifying_role_values[0]
	  return nil unless identifying_role_value	# The value exists, but doesn't identify an existing entity
	  identified_instance =
	    (identifying_role_value.fact.all_role_value.to_a-[identifying_role_values])[0].instance
	else
	  object_type.all_instance.detect do |instance|
	    instance.population == @population and instance.value == value
	  end
	end
end

#query_level(unbound_variables = [], hypothesis = {}) ⇒ Object

of conforms_to_plays_and_steps



157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
# File 'lib/activefacts/query/evaluator.rb', line 157

def query_level unbound_variables = [], hypothesis = {}
  # unbound_variables is an array of the remaining dimensions of the search
  # hypothesis is a hash of Variable to Instance containing the values we think will satisfy the query

  # Choose an unbound variable and test the instances of its object type
  # This is a dumb choice for now. We should choose a variable that's
  # closely connected to a bound variable, to narrow it down.
  variable = unbound_variables[0]
  return unless variable

	# Set candidate_instances to the instances of this variable:
	if hypothesis.has_key?(variable)
	  # REVISIT: I thought we were searching an unbound variable here? When does this happen:
	  candidate_instances = Array(hypothesis[variable])
	else
	  candidate_instances = variable.object_type.all_instance
	  # candidate_instances = find_candidate_sets variable, hypothesis
	end

	population_candidates = candidate_instances.reject do |instance|
	  instance.population != @population        # Wrong population
	end

	trace :result, "Query search through #{population_candidates.size} #{variable.role_name || variable.object_type.name}" do
	  population_candidates.each do |instance|
	    # filter by population:
	    trace :result, "Considering #{instance.verbalise}" do

 # Check whether this instance satisfies the query steps of this play
 played = conforms_to_plays_and_steps(hypothesis, variable, instance)
 unless played
		trace :result, "Does not conform to all steps"
		next
 else
		trace :result, "Conforms to steps #{played.inspect}" unless played.empty?
 end

 # If this variable is the result of an objectification, the objectified fact
 # has role players that might fill some remaining variables:
 implications = {variable => instance}
 if variable.step
		objectification_plays = variable.step.all_play

		# Ensure that the objectified instances don't contradict some bound variable:
		next unless objectification_plays.to_a.all? do |play|
		  objectified_instance = instance.fact.all_role_value.select{|rv| rv.role == play.role}[0].instance
		  trace :result, "objectified instance includes #{play.variable.object_type.name}, checking it conforms" do
if hypothesis[play.variable]
  unless hypothesis[play.variable] == objectified_instance
			trace :result, "Objectified player #{objectified_instance.verbalise.inspect} does not match our hypothesis"
			next false
  end
  true
else
  implications[play.variable] = objectified_instance
  conforms = conforms_to_plays_and_steps(hypothesis, play.variable, objectified_instance)
  trace :result, "Objectified player #{objectified_instance.verbalise.inspect} does not conform to all steps" unless conforms
  conforms
end
		  end
		end
 end

 # Some of the variable's Plays might be matched by objectified facts.
 # Record these values of the objectification variables.
 next unless played.compact.all? do |playing|
		play, fact, objectifying_variable = *playing
		next true unless objectifying_variable
		if i = hypothesis[objectifying_variable] and i != fact.instance
		  trace :result, "Objectification of #{fact.instance.verbalise.inspect} does not match our hypothesis"
		  next false
		end
		implications[objectifying_variable] = fact.instance
 end

 # accept the implications of this variable->instance assignment:
 new_hypothesis = hypothesis.dup.merge(implications)
 remaining_variables = unbound_variables - implications.keys

 new_hypothesis.freeze
 if remaining_variables.empty?
		# This is a complete result set (no unbound variables) so record it:
		@result_projection[new_hypothesis] = true
 end
 query_level(remaining_variables, new_hypothesis)
	    end	  # trace each instance
	  end	# each instance
  end   # trace search through instances
end

#set_population(population) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
# File 'lib/activefacts/query/evaluator.rb', line 17

def set_population population
	if population.is_a?(String) || population == nil
	  @population = @constellation.Population[[[@vocabulary.name], population ||= '']]
	  raise "Population #{population.inspect} does not exist" unless @population
	elsif population.is_a?(AFMM::Population)
    raise "Population #{population.name} is not in the correct vocabulary #{@vocabulary.name}" unless population.vocabulary == @vocabulary
    @population = population
	else
	  raise "Population #{population.inspcct} must be a Population or a Population name"
  end
end

#trivial_bindings(variables) ⇒ Object

From the array of variables, delete those that are already bound and return the hypothesis hash



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/activefacts/query/evaluator.rb', line 46

def trivial_bindings variables
	hypothesis = {}

	variables.each do |var|
	  next if var.value == nil
	  # Look up the instances for this bound variables
	  instance = lookup_instance_by_value(var.object_type, var.value)
	  trace :result, "Binding was #{instance ? '' : 'un'}successful for #{var.object_type.name} #{var.value.inspect}"
	  hypothesis[var] = instance
	end

	hypothesis.each do |v, i|
	  variables.delete(v)
	end

	trace :result, "starting hypothesis: {#{hypothesis.map{|var, instance| [var.object_type.name, instance.verbalise] }*'=>'}}"
	trace :result, "free variables are #{variables.map{|v| v.object_type.name}.inspect}" 

	hypothesis
end