nitc/test_model_visitor: check and count fullnames
authorJean Privat <jean@pryen.org>
Sat, 23 Apr 2016 21:23:05 +0000 (17:23 -0400)
committerJean Privat <jean@pryen.org>
Wed, 27 Apr 2016 13:51:03 +0000 (09:51 -0400)
Signed-off-by: Jean Privat <jean@pryen.org>

src/test_model_visitor.nit

index 3569400..b46af5c 100644 (file)
@@ -26,11 +26,25 @@ class TestModelVisitor
 
        redef fun visit(e) do
                cpt.inc(e.class_name)
+
+               if not e isa Model then
+                       var name = e.full_name
+                       var old = names.get_or_null(name)
+                       if old != null then
+                               names[name + "!CONFLICT!" + old.class_name] = old
+                               name = name + "!CONFLICT!" + e.class_name
+                       end
+                       names[name] = e
+               end
+
                e.visit_all(self)
        end
 
        # Counter of visited entities (by classnames)
        var cpt = new Counter[String]
+
+       # Dictionary of full_names
+       var names = new Map[String, MEntity]
 end
 
 # The body of the specific work.
@@ -46,6 +60,7 @@ do
        v.include_fictive = true
        v.enter_visit(model)
        v.cpt.print_elements(10)
+       var names = v.names
 
        print "All entities:"
        v = new TestModelVisitor
@@ -79,4 +94,29 @@ do
        v.enter_visit(model)
        v.cpt.print_elements(10)
 
+       print "\nNames:"
+       print "\n# Classes of entities"
+       var cpt
+       cpt = new Counter[String]
+       for n, e in names do
+               cpt.inc(e.class_name)
+       end
+       cpt.print_summary
+       cpt.print_elements(10)
+
+       print "\n# Name length of entities"
+       cpt = new Counter[String]
+       for n, e in names do
+               cpt[n] = n.length
+       end
+       cpt.print_summary
+       cpt.print_elements(10)
+
+       print "\n# All entities"
+       for n, e in names do
+               var c = ""
+               var d = e.mdoc_or_fallback
+               if d != null and d.content.not_empty then c = d.content.first
+               print "{n}\t{e.class_name}\t{c}"
+       end
 end