src: mass rename project->package
[nit.git] / src / metrics / nullables_metrics.nit
index 2ea642d..6e9d7ff 100644 (file)
 # Statistics about the usage of nullables
 module nullables_metrics
 
-import modelbuilder
-private import typing
-private import metrics_base
-import frontend
+import metrics_base
+import mclasses_metrics
+import semantize
 
 redef class ToolContext
-       var nullables_metrics_phase = new NullablesMetricsPhase(self, null)
+       var nullables_metrics_phase: Phase = new NullablesMetricsPhase(self, null)
 end
 
 private class NullablesMetricsPhase
@@ -31,10 +30,87 @@ private class NullablesMetricsPhase
        redef fun process_mainmodule(mainmodule, given_mmodules)
        do
                if not toolcontext.opt_nullables.value and not toolcontext.opt_all.value then return
+
+               var csv = toolcontext.opt_csv.value
+               var out = "{toolcontext.opt_dir.value or else "metrics"}/nullables"
+               out.mkdir
+
+               print toolcontext.format_h1("\n# Nullable metrics")
+
+               var metrics = new MetricSet
+               var min_vis = private_visibility
+               metrics.register(new CNBA(mainmodule, min_vis))
+               metrics.register(new CNBNA(mainmodule, min_vis))
+
+               var model = toolcontext.modelbuilder.model
+               var mclasses = new HashSet[MClass]
+               for mpackage in model.mpackages do
+
+                       print toolcontext.format_h2("\n ## package {mpackage}")
+
+                       for mgroup in mpackage.mgroups do
+                               if mgroup.mmodules.is_empty then continue
+                               metrics.clear
+
+                               # Scalar metrics
+                               print toolcontext.format_h3("  `- group {mgroup.full_name}")
+                               var mod_mclasses = new HashSet[MClass]
+                               for mmodule in mgroup.mmodules do mod_mclasses.add_all(mmodule.intro_mclasses)
+                               if mod_mclasses.is_empty then continue
+                               mclasses.add_all(mod_mclasses)
+                               metrics.collect(new HashSet[MClass].from(mod_mclasses))
+                               metrics.to_console(1, not toolcontext.opt_nocolors.value)
+                               if csv then metrics.to_csv.save("{out}/{mgroup}.csv")
+                       end
+               end
+               if not mclasses.is_empty then
+                       metrics.clear
+                       # Global metrics
+                       print toolcontext.format_h2("\n ## global metrics")
+                       metrics.collect(mclasses)
+                       metrics.to_console(1, not toolcontext.opt_nocolors.value)
+                       if csv then metrics.to_csv.save("{out}/summary.csv")
+               end
+
                compute_nullables_metrics(toolcontext.modelbuilder)
        end
 end
 
+# Class Metric: Number of nullables MAttributes
+class CNBNA
+       super MClassMetric
+       super IntMetric
+       redef fun name do return "cnbna"
+       redef fun desc do return "number of accessible nullable attributes (inherited + local)"
+
+       var mainmodule: MModule
+       var min_visibility: MVisibility
+
+       init(mainmodule: MModule, min_visibility: MVisibility) do
+               self.mainmodule = mainmodule
+               self.min_visibility = min_visibility
+       end
+
+       redef fun collect(mclasses) do
+               for mclass in mclasses do
+                       var all = mclass.collect_accessible_mattributes(min_visibility)
+                       for mattr in all do
+                               if mattr.is_nullable then values.inc(mclass)
+                       end
+               end
+       end
+end
+
+redef class MAttribute
+       # Is this attribute nullable for sure?
+       #
+       # This mean that its introduction is declarred with a nullable static type
+       # since attributes are invariant this will work on most cases
+       # attributes with static type anchored with a virtual type are not "nullable for-sure"
+       # because this type can be redefined in subclasses
+       private fun is_nullable: Bool do return intro.static_mtype isa MNullableType
+end
+
 private class NullableSends
        super Visitor
        var modelbuilder: ModelBuilder
@@ -42,6 +118,7 @@ private class NullableSends
 
        var total_sends: Int = 0
        var nullable_sends: Int = 0
+       var nullable_eq_sends: Int = 0
        var buggy_sends: Int = 0
 
        # Get a new visitor on a classef to add type count in `typecount`.
@@ -63,7 +140,12 @@ private class NullableSends
                        end
                        t = t.anchor_to(self.nclassdef.mclassdef.mmodule, self.nclassdef.mclassdef.bound_mtype)
                        if t isa MNullableType then
-                               self.nullable_sends += 1
+                               var p = n.callsite.mproperty
+                               if p.is_null_safe then
+                                       self.nullable_eq_sends += 1
+                               else
+                                       self.nullable_sends += 1
+                               end
                        else if t isa MClassType then
                                # Nothing
                        else
@@ -79,6 +161,7 @@ do
        print "--- Sends on Nullable Receiver ---"
        var total_sends = 0
        var nullable_sends = 0
+       var nullable_eq_sends = 0
        var buggy_sends = 0
 
        # Visit all the source code to collect data
@@ -88,10 +171,12 @@ do
                        visitor.enter_visit(nclassdef)
                        total_sends += visitor.total_sends
                        nullable_sends += visitor.nullable_sends
+                       nullable_eq_sends += visitor.nullable_eq_sends
                        buggy_sends += visitor.buggy_sends
                end
        end
        print "Total number of sends: {total_sends}"
-       print "Number of sends on a nullable receiver: {nullable_sends} ({div(nullable_sends*100,total_sends)}%)"
+       print "Number of sends on a unsafe nullable receiver: {nullable_sends} ({div(nullable_sends*100,total_sends)}%)"
+       print "Number of sends on a safe nullable receiver: {nullable_eq_sends} ({div(nullable_eq_sends*100,total_sends)}%)"
        print "Number of buggy sends (cannot determine the type of the receiver): {buggy_sends} ({div(buggy_sends*100,total_sends)}%)"
 end