Merge: src/doc/commands: clean commands hierarchy
[nit.git] / src / model / model_index.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Search things from the Model
16 #
17 # ModelIndex allows you to index mentities then retrieve them by their `name`
18 # or `full_name`.
19 # It offers a set of `find_*` methods that can be used to match queries
20 # against entities name.
21 #
22 # Because each use is different, ModelIndex only provide base raw search services.
23 # All of them return IndexMatches that can be ordered and filtered by the client.
24 #
25 # ## Indexing mentities
26 #
27 # Before searching something from the ModelIndex, you have to index it.
28 # Use the `ModelIndex::index` method to do that:
29 #
30 # ~~~nitish
31 # var index = new ModelIndex
32 # for mentity in model.collect_mentities do
33 # index.index(mentity)
34 # end
35 # ~~~
36 #
37 # ## Search mentities
38 #
39 # You can then run queries on the ModelIndex:
40 #
41 # ~~~nitish
42 # for res in index.find("Array").limit(10) do
43 # print res
44 # end
45 # ~~~
46 #
47 # ## Examples
48 #
49 # Here some examples of how you can use the ModelIndex.
50 #
51 # ### Smart type prediction
52 #
53 # Use ModelIndex to implement a smart prediction system based on the typed prefix:
54 #
55 # ~~~nitish
56 # var index = new ModelIndex
57 # for mentity in model.collect_mentities do
58 # # We don't really care about definitions
59 # if mentity isa MClassDef or mentity isa MPropDef then continue
60 # index.index(mentity)
61 # end
62 #
63 # var typed_prefix = "Arr"
64 # for res in index.find_by_name_prefix(typed_prefix).
65 # uniq. # keep only the best ranked mentity
66 # limit(5). # limit to ten results
67 # sort(new VisibilityComparator, new NameComparator) do # order by visibility then name
68 # print res
69 # end
70 # ~~~
71 #
72 # Will output something like:
73 #
74 # ~~~raw
75 # Array (1)
76 # ArraySet (2)
77 # ArrayMap (3)
78 # ArrayCmp (4)
79 # ArrayMapKeys (5)
80 # ~~~
81 #
82 # ### Method autocompletion
83 #
84 # Find methods from a class full_name:
85 #
86 # ~~~nitish
87 # var class_full_name = "core::Array"
88 # for res in index.find_by_full_name_prefix("{class_full_name}::").
89 # uniq. # keep only the best ranked mentity
90 # sort(new VisibilityComparator). # put private in the bottom of the list
91 # limit(5). # limit to ten results
92 # sort(new FullNameComparator) do # order by lexicographic order
93 # print res
94 # end
95 # ~~~
96 #
97 # Will output something like:
98 #
99 # ~~~raw
100 # * (2)
101 # + (1)
102 # filled_with (5)
103 # from (3)
104 # with_items (4)
105 # ~~~
106 #
107 # ### Name typo detection and suggestion
108 #
109 # Detect unknown names and suggest corrections:
110 #
111 # ~~~nitish
112 # var name = "Zrray"
113 #
114 # if index.find_by_name_prefix(name).is_empty then
115 # printn "`{name}` not found, did you mean: "
116 # printn index.find_by_name_similarity(name).sort(new ScoreComparator).limit(2).join(" or ")
117 # print "?"
118 # end
119 # ~~~
120 #
121 # Will output something like:
122 #
123 # ~~~raw
124 # `Zrray` not found, did you mean: Array (1) or array (1)?
125 # ~~~
126 module model_index
127
128 import model::model_collect
129 import trees::trie
130
131 redef class Model
132
133 # Keep a direct link to mentities by full name to speed up `mentity_from_uri`
134 var mentities_by_full_name: HashMap[String, MEntity] is lazy do
135 var mentities_by_full_name = new HashMap[String, MEntity]
136 for mentity in collect_mentities do
137 mentities_by_full_name[mentity.full_name] = mentity
138 end
139 return mentities_by_full_name
140 end
141
142 # ModelIndex used to perform searches
143 var index: ModelIndex is lazy do
144 var index = new ModelIndex
145 for mentity in collect_mentities do
146 if mentity isa MClassDef or mentity isa MPropDef then continue
147 index.index mentity
148 end
149 return index
150 end
151
152 redef fun mentities_by_name(name, filter) do
153 var res = new Array[MEntity]
154 if index.name_prefixes.has_key(name) then
155 for mentity in index.name_prefixes[name] do
156 if filter == null or filter.accept_mentity(mentity) then
157 res.add mentity
158 end
159 end
160 end
161 return res
162 end
163
164 redef fun mentity_by_full_name(full_name, filter) do
165 if mentities_by_full_name.has_key(full_name) then
166 var mentity = mentities_by_full_name[full_name]
167 if filter == null or filter.accept_mentity(mentity) then return mentity
168 end
169 return null
170 end
171
172 private var score_sorter = new ScoreComparator
173 private var vis_sorter = new VisibilityComparator
174 private var kind_sorter = new MEntityComparator
175 private var name_sorter = new NameComparator
176 private var lname_sorter = new NameLengthComparator
177 private var fname_sorter = new FullNameComparator
178 private var lfname_sorter = new FullNameLengthComparator
179
180 # Search mentities based on a `query` string
181 #
182 # Lookup the index for anything matching `query` and return `limit` results.
183 #
184 # The algorithm used is the following:
185 # 1- lookup by name prefix
186 # 2- lookup by full_name prefix
187 # 3- loopup by levenshtein distance
188 #
189 # At each step if the `limit` is reached, the algorithm stops and returns the results.
190 fun find(query: String, limit: nullable Int, filter: nullable ModelFilter): Array[MEntity] do
191 # Find, lookup by name prefix
192 var matches = index.find_by_name_prefix(query, filter).uniq.
193 sort(lname_sorter, name_sorter, kind_sorter)
194 if limit != null and matches.length >= limit then
195 return matches.limit(limit).rerank.sort(vis_sorter, score_sorter).mentities
196 end
197 matches = matches.rerank.sort(vis_sorter, score_sorter)
198
199 # If limit not reached, lookup by full_name prefix
200 var malus = matches.length
201 var full_matches = new IndexMatches
202 for match in index.find_by_full_name_prefix(query, filter).
203 sort(kind_sorter, lfname_sorter, fname_sorter) do
204 match.score += malus
205 full_matches.add match
206 end
207 matches = matches.uniq
208 if limit != null and matches.length + full_matches.length >= limit then
209 matches.add_all full_matches
210 matches = matches.uniq.limit(limit).rerank.sort(vis_sorter, score_sorter)
211 return matches.mentities
212 end
213
214 # If limit not reached, lookup by similarity
215 malus = matches.length
216 var sim_matches = new IndexMatches
217 for match in index.find_by_similarity(query, filter).sort(score_sorter, kind_sorter, lname_sorter, name_sorter) do
218 match.score += malus
219 sim_matches.add match
220 end
221 matches.add_all sim_matches
222 matches = matches.uniq
223 if limit != null then matches = matches.limit(limit)
224 return matches.rerank.sort(vis_sorter, score_sorter).mentities
225 end
226 end
227
228 # ModelIndex indexes mentities by their name and full name
229 #
230 # It provides methods to find mentities based on a prefix or string similarity.
231 #
232 # ~~~nitish
233 # # Build index
234 # var index = new ModelIndex
235 # for mentity in model.collect_mentities do
236 # if mentity isa MClassDef or mentity isa MPropDef then continue
237 # index.index(mentity)
238 # end
239 #
240 # for e in index.find("Foo").uniq.sort(new ScoreComparator).limit(10) do
241 # print " * {e.score}: {e.mentity.name} ({e.mentity.full_name})"
242 # end
243 # ~~~
244 class ModelIndex
245
246 # List of all indexed mentities.
247 #
248 # Faster than traversing the tries.
249 var mentities = new Array[MEntity]
250
251 # Prefix tree for mentities `name`
252 #
253 # Because multiple mentities can share the same `name`, we use a Trie of
254 # arrays of mentities.
255 #
256 # As for now, we do not index class and property definitions.
257 # TODO add an option.
258 var name_prefixes = new Trie[Array[MEntity]]
259
260 # Prefix tree for mentities `full_name`
261 #
262 # Even if two mentities cannot share the same `full_name`, we use a Trie of
263 # arrays of mentities to be consistent with `name_prefixes`.
264 var full_name_prefixes = new Trie[Array[MEntity]]
265
266 # Index `mentity` by it's `MEntity::name`
267 #
268 # See `name_prefixes`.
269 private fun index_by_name(mentity: MEntity) do
270 var name = mentity.name
271 if not name_prefixes.has_key(name) then
272 name_prefixes[name] = new Array[MEntity]
273 end
274 name_prefixes[name].add mentity
275 end
276
277 # Index `mentity` by its `MEntity::full_name`
278 private fun index_by_full_name(mentity: MEntity) do
279 var name = mentity.full_name
280 if not full_name_prefixes.has_key(name) then
281 full_name_prefixes[name] = new Array[MEntity]
282 end
283 full_name_prefixes[name].add mentity
284 end
285
286 # Index `mentity` so it can be retrieved by a find query
287 #
288 # MEntities are indexed by both name and full_name.
289 fun index(mentity: MEntity) do
290 mentities.add mentity
291 index_by_name mentity
292 index_by_full_name mentity
293 end
294
295 # Translate Trie results to `SearchResult`
296 #
297 # This method is used internally to translate each mentity returned by a prefix
298 # match in a Trie into a SearchResult that can be ranked by score.
299 #
300 # Results from the Trie are returned in a breadth first manner so we get the
301 # matches ordered by prefix.
302 # We preserve that order by giving an incremental score to the `array` items.
303 private fun score_results_incremental(array: Array[Array[MEntity]], filter: nullable ModelFilter): IndexMatches do
304 var results = new IndexMatches
305 var score = 1
306 for mentities in array do
307 for mentity in mentities do
308 if filter != null and not filter.accept_mentity(mentity) then continue
309 results.add new IndexMatch(mentity, score)
310 end
311 score += 1
312 end
313 return results
314 end
315
316 # Find all mentities where `MEntity::name` matches the `prefix`
317 fun find_by_name_prefix(prefix: String, filter: nullable ModelFilter): IndexMatches do
318 return score_results_incremental(name_prefixes.find_by_prefix(prefix), filter)
319 end
320
321 # Find all mentities where `MEntity::full_name` matches the `prefix`
322 fun find_by_full_name_prefix(prefix: String, filter: nullable ModelFilter): IndexMatches do
323 return score_results_incremental(full_name_prefixes.find_by_prefix(prefix), filter)
324 end
325
326 # Rank all mentities by the distance between `MEntity::name` and `name`
327 #
328 # Use the Levenshtein algorithm on all the indexed mentities `name`.
329 # Warning: may not scale to large indexes.
330 fun find_by_name_similarity(name: String, filter: nullable ModelFilter): IndexMatches do
331 var results = new IndexMatches
332 for mentity in mentities do
333 if filter != null and not filter.accept_mentity(mentity) then continue
334 if mentity isa MClassDef or mentity isa MPropDef then continue
335 results.add new IndexMatch(mentity, name.levenshtein_distance(mentity.name))
336 end
337 return results
338 end
339
340 # Rank all mentities by the distance between `MEntity::full_name` and `full_name`
341 #
342 # Use the Levenshtein algorithm on all the indexed mentities `full_name`.
343 # Warning: may not scale to large indexes.
344 fun find_by_full_name_similarity(name: String, filter: nullable ModelFilter): IndexMatches do
345 var results = new IndexMatches
346 for mentity in mentities do
347 if filter != null and not filter.accept_mentity(mentity) then continue
348 if mentity isa MClassDef or mentity isa MPropDef then continue
349 results.add new IndexMatch(mentity, name.levenshtein_distance(mentity.full_name))
350 end
351 return results
352 end
353
354 # Rank all mentities by the distance between `name` and both the mentity name and full name
355 fun find_by_similarity(name: String, filter: nullable ModelFilter): IndexMatches do
356 var results = new IndexMatches
357 for mentity in mentities do
358 if filter != null and not filter.accept_mentity(mentity) then continue
359 if mentity isa MClassDef or mentity isa MPropDef then continue
360 results.add new IndexMatch(mentity, name.levenshtein_distance(mentity.name))
361 results.add new IndexMatch(mentity, name.levenshtein_distance(mentity.full_name))
362 end
363 return results
364 end
365
366 # Find mentities by name trying first by prefix then by similarity
367 fun find_by_name(name: String, filter: nullable ModelFilter): IndexMatches do
368 var results = find_by_name_prefix(name)
369 for mentity in mentities do
370 if filter != null and not filter.accept_mentity(mentity) then continue
371 if mentity isa MClassDef or mentity isa MPropDef then continue
372 results.add new IndexMatch(mentity, name.levenshtein_distance(mentity.name))
373 end
374 return results
375 end
376
377 # Find mentities by full name trying firt by prefix then by similarity
378 fun find_by_full_name(name: String, filter: nullable ModelFilter): IndexMatches do
379 var results = find_by_full_name_prefix(name)
380 for mentity in mentities do
381 if filter != null and not filter.accept_mentity(mentity) then continue
382 if mentity isa MClassDef or mentity isa MPropDef then continue
383 results.add new IndexMatch(mentity, name.levenshtein_distance(mentity.full_name))
384 end
385 return results
386 end
387
388 # Find all mentities that matches `name`
389 #
390 # 1. try by name prefix
391 # 2. add full name prefix matches
392 # 3. try similarity by name
393 # 4. try similarity by full_name
394 fun find(name: String, filter: nullable ModelFilter): IndexMatches do
395 var results = find_by_name_prefix(name, filter)
396
397 for result in find_by_full_name_prefix(name, filter) do
398 results.add result
399 end
400
401 for mentity in mentities do
402 if filter != null and not filter.accept_mentity(mentity) then continue
403 if mentity isa MClassDef or mentity isa MPropDef then continue
404 results.add new IndexMatch(mentity, name.levenshtein_distance(mentity.name))
405 results.add new IndexMatch(mentity, name.levenshtein_distance(mentity.full_name))
406 end
407 return results
408 end
409 end
410
411 # An array of IndexMatch instances returned by the ModelIndex
412 #
413 # Index matches can be sorted, filtered and truncated.
414 #
415 # Thanks to the fluent interface, the index matches can be manipulated in chain
416 # from a model index query:
417 #
418 # ~~~nitish
419 # var res = index.find("Foo").
420 # uniq.
421 # sort(new ScoreComparator, new MEntityComparator).
422 # limit(10).
423 # sort(new VisibilityComparator)
424 # ~~~
425 class IndexMatches
426 super Array[IndexMatch]
427
428 # Create a new ModelMatches from an array of matches
429 #
430 # Elements are copied.
431 init from_matches(matches: Array[IndexMatch]) do self.add_all matches
432
433 # Sort the matches with `comparator` (or a list of comparators)
434 #
435 # Return a new IndexMatches instance with the sorted results.
436 #
437 # When more than one comparator is given, the comparators are applied in a
438 # pipeline where the `n`th comparator is applied only if the `n-1`th comparator
439 # returned 0.
440 fun sort(comparator: ScoreComparator...): IndexMatches do
441 var res = to_a
442 if comparator.length == 1 then
443 comparator.first.sort res
444 else
445 var comparators = new MatchComparators(comparator)
446 comparators.sort res
447 end
448 return new IndexMatches.from_matches(res)
449 end
450
451 # Limit the matches with `limit`
452 #
453 # Return a new IndexMatches instance with only the `limit` first matches.
454 fun limit(limit: Int): IndexMatches do
455 var res = new Array[IndexMatch]
456 for match in self do
457 if res.length >= limit then break
458 res.add match
459 end
460 return new IndexMatches.from_matches(res)
461 end
462
463 # Remove doublons from the matches
464 #
465 # Preverse the lowest score of all the matches for a MEntity.
466 fun uniq: IndexMatches do
467 var scores = new HashMap[MEntity, IndexMatch]
468 var res = new Array[IndexMatch]
469 for match in self do
470 var mentity = match.mentity
471 if scores.has_key(mentity) then
472 var older = scores[mentity]
473 if match.score < older.score then older.score = match.score
474 else
475 scores[mentity] = match
476 res.add match
477 end
478 end
479 return new IndexMatches.from_matches(res)
480 end
481
482 # Reset score of each matches to follow `self` order
483 #
484 # Usefull when you need to apply one sorter over another.
485 fun rerank: IndexMatches do
486 var res = new IndexMatches
487 for match in self do
488 res.add match
489 match.score = res.length
490 end
491 return res
492 end
493
494 # Aggregate the mentities for all the matches
495 #
496 # Preserve the match order.
497 fun mentities: Array[MEntity] do
498 var res = new Array[MEntity]
499 for match in self do res.add match.mentity
500 return res
501 end
502 end
503
504 # An MEntity matched from a ModelIndex
505 #
506 # Each match has a `score`. The score should be seen as the distance of
507 # the match from the query. In other words, the lowest is the score, the more
508 # relevant is the match.
509 class IndexMatch
510 super Comparable
511
512 redef type OTHER: IndexMatch
513
514 # MEntity matches
515 var mentity: MEntity
516
517 # Score allocated by the search method
518 #
519 # A lowest score means a more relevant match.
520 #
521 # Scores values are arbitrary, the meaning of `10` vs `2000` really depends
522 # on the search method producing the match and the comparators used to sort
523 # the matches.
524 # The only universal rule is: low score = relevance.
525 var score: Int is writable
526
527 # By default matches are compared only on their score
528 redef fun <=>(o) do return score <=> o.score
529
530 redef fun to_s do return "{mentity} ({score})"
531 end
532
533 # Compare two matches by their score
534 #
535 # Since the score can be seen as a distance, we want the lowest score first.
536 class ScoreComparator
537 super Comparator
538
539 redef type COMPARED: IndexMatch
540
541 redef fun compare(o1, o2) do return o1.score <=> o2.score
542 end
543
544 # A pipeline of comparators executed in inclusion order
545 #
546 # This class is used internally to agregate the behaviors of multiple comparators.
547 # Use `IndexMatches::sort(comparator...)` instead.
548 private class MatchComparators
549 super ScoreComparator
550
551 # Comparator to use in the array order
552 var comparators: Array[ScoreComparator]
553
554 # Compare with each comparator
555 #
556 # Return the compare value of the first one to return anything else than 0.
557 redef fun compare(o1, o2) do
558 for comparator in comparators do
559 var c = comparator.compare(o1, o2)
560 if c != 0 then return c
561 end
562 return 0
563 end
564 end
565
566 # Compare two matches by their MEntity kind
567 #
568 # Usefull to order the mentities by kind in this order:
569 # packages, groups, modules and classes, properties.
570 class MEntityComparator
571 super ScoreComparator
572
573 # See `MEntity::compare_mentity`
574 redef fun compare(o1, o2) do
575 return o1.mentity.mentity_kind_rank <=> o2.mentity.mentity_kind_rank
576 end
577 end
578
579 # Compare two matches by their MEntity visibility
580 #
581 # We reverse the original order so private is at the end of the list.
582 class VisibilityComparator
583 super ScoreComparator
584
585 redef fun compare(o1, o2) do return o2.mentity.visibility <=> o1.mentity.visibility
586 end
587
588 # Compare two matches by their name in lexicographic order
589 #
590 # Generally, for a same score, we want to put A before Z.
591 class NameComparator
592 super ScoreComparator
593
594 redef fun compare(o1, o2) do return o1.mentity.name <=> o2.mentity.name
595 end
596
597 # Compare two matches by their name length
598 class NameLengthComparator
599 super ScoreComparator
600
601 redef fun compare(o1, o2) do return o1.mentity.name.length <=> o2.mentity.name.length
602 end
603
604 # Compare two matches by their full_name in lexicographic order
605 #
606 # Generally, for a same score, we want to put A before Z.
607 class FullNameComparator
608 super ScoreComparator
609
610 redef fun compare(o1, o2) do return o1.mentity.full_name <=> o2.mentity.full_name
611 end
612
613 # Compare two matches by their full name length
614 class FullNameLengthComparator
615 super ScoreComparator
616
617 redef fun compare(o1, o2) do return o1.mentity.full_name.length <=> o2.mentity.full_name.length
618 end
619
620 redef class MEntity
621
622 # Compare MEntity class kind
623 #
624 # Unknown kind have a virtually high score.
625 private fun mentity_kind_rank: Int do return 10
626 end
627
628 redef class MPackage
629 redef fun mentity_kind_rank do return 1
630 end
631
632 redef class MGroup
633 redef fun mentity_kind_rank do return 2
634 end
635
636 redef class MModule
637 redef fun mentity_kind_rank do return 3
638 end
639
640 redef class MClass
641 redef fun mentity_kind_rank do return 4
642 end
643
644 redef class MClassDef
645 redef fun mentity_kind_rank do return 5
646 end
647
648 redef class MProperty
649 redef fun mentity_kind_rank do return 6
650 end
651
652 redef class MPropDef
653 redef fun mentity_kind_rank do return 7
654 end