| author | wenzelm | 
| Tue, 20 Aug 2019 18:01:57 +0200 | |
| changeset 70594 | 64b5514c33b1 | 
| parent 69832 | b614e3e4146a | 
| child 71601 | 97ccf48c2f0c | 
| permissions | -rw-r--r-- | 
| 65477 | 1  | 
/* Title: Pure/ML/ml_statistics.scala  | 
| 50685 | 2  | 
Author: Makarius  | 
3  | 
||
4  | 
ML runtime statistics.  | 
|
5  | 
*/  | 
|
6  | 
||
7  | 
package isabelle  | 
|
8  | 
||
9  | 
||
| 65858 | 10  | 
import scala.annotation.tailrec  | 
| 51432 | 11  | 
import scala.collection.mutable  | 
| 
50688
 
f02864682307
some support for ML statistics content interpretation;
 
wenzelm 
parents: 
50685 
diff
changeset
 | 
12  | 
import scala.collection.immutable.{SortedSet, SortedMap}
 | 
| 50691 | 13  | 
import scala.swing.{Frame, Component}
 | 
| 
50688
 
f02864682307
some support for ML statistics content interpretation;
 
wenzelm 
parents: 
50685 
diff
changeset
 | 
14  | 
|
| 50689 | 15  | 
import org.jfree.data.xy.{XYSeries, XYSeriesCollection}
 | 
16  | 
import org.jfree.chart.{JFreeChart, ChartPanel, ChartFactory}
 | 
|
17  | 
import org.jfree.chart.plot.PlotOrientation  | 
|
18  | 
||
| 
50688
 
f02864682307
some support for ML statistics content interpretation;
 
wenzelm 
parents: 
50685 
diff
changeset
 | 
19  | 
|
| 50685 | 20  | 
object ML_Statistics  | 
21  | 
{
 | 
|
| 
65855
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
22  | 
/* properties */  | 
| 50690 | 23  | 
|
| 
65855
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
24  | 
  val Now = new Properties.Double("now")
 | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
25  | 
def now(props: Properties.T): Double = Now.unapply(props).get  | 
| 
50697
 
82e9178e6a98
improved Monitor_Dockable, based on ML_Statistics operations;
 
wenzelm 
parents: 
50691 
diff
changeset
 | 
26  | 
|
| 50690 | 27  | 
|
| 69832 | 28  | 
/* memory fields (mega bytes) */  | 
29  | 
||
30  | 
def mem_print(x: Long): Option[String] =  | 
|
31  | 
if (x == 0L) None else Some(x.toString + " M")  | 
|
32  | 
||
33  | 
def mem_scale(x: Long): Long = x / 1024 / 1024  | 
|
| 50690 | 34  | 
|
| 69832 | 35  | 
def mem_field_scale(name: String, x: Double): Double =  | 
36  | 
if (heap_fields._2.contains(name) || program_fields._2.contains(name))  | 
|
37  | 
mem_scale(x.toLong).toDouble  | 
|
38  | 
else x  | 
|
39  | 
||
40  | 
val CODE_SIZE = "size_code"  | 
|
41  | 
val STACK_SIZE = "size_stacks"  | 
|
| 65858 | 42  | 
val HEAP_SIZE = "size_heap"  | 
43  | 
||
| 65866 | 44  | 
|
45  | 
/* standard fields */  | 
|
46  | 
||
| 65864 | 47  | 
type Fields = (String, List[String])  | 
| 65051 | 48  | 
|
49  | 
val tasks_fields: Fields =  | 
|
| 
60610
 
f52b4b0c10c4
improved scheduling for urgent tasks, using farm of replacement threads (may lead to factor 2 overloading, but CPUs are usually hyperthreaded);
 
wenzelm 
parents: 
57869 
diff
changeset
 | 
50  | 
    ("Future tasks",
 | 
| 68129 | 51  | 
      List("tasks_ready", "tasks_pending", "tasks_running", "tasks_passive",
 | 
52  | 
"tasks_urgent", "tasks_total"))  | 
|
| 57869 | 53  | 
|
| 65051 | 54  | 
val workers_fields: Fields =  | 
| 57869 | 55  | 
    ("Worker threads", List("workers_total", "workers_active", "workers_waiting"))
 | 
56  | 
||
| 65051 | 57  | 
val GC_fields: Fields =  | 
| 
69822
 
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
 
wenzelm 
parents: 
68129 
diff
changeset
 | 
58  | 
    ("GCs", List("partial_GCs", "full_GCs", "share_passes"))
 | 
| 50690 | 59  | 
|
| 65051 | 60  | 
val heap_fields: Fields =  | 
| 65858 | 61  | 
    ("Heap", List(HEAP_SIZE, "size_allocation", "size_allocation_free",
 | 
| 50690 | 62  | 
"size_heap_free_last_full_GC", "size_heap_free_last_GC"))  | 
63  | 
||
| 
69822
 
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
 
wenzelm 
parents: 
68129 
diff
changeset
 | 
64  | 
val program_fields: Fields =  | 
| 
 
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
 
wenzelm 
parents: 
68129 
diff
changeset
 | 
65  | 
    ("Program", List("size_code", "size_stacks"))
 | 
| 
 
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
 
wenzelm 
parents: 
68129 
diff
changeset
 | 
66  | 
|
| 65051 | 67  | 
val threads_fields: Fields =  | 
| 50690 | 68  | 
    ("Threads", List("threads_total", "threads_in_ML", "threads_wait_condvar",
 | 
69  | 
"threads_wait_IO", "threads_wait_mutex", "threads_wait_signal"))  | 
|
70  | 
||
| 65051 | 71  | 
val time_fields: Fields =  | 
| 
69822
 
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
 
wenzelm 
parents: 
68129 
diff
changeset
 | 
72  | 
    ("Time", List("time_elapsed", "time_elapsed_GC", "time_CPU", "time_GC"))
 | 
| 51432 | 73  | 
|
| 65051 | 74  | 
val speed_fields: Fields =  | 
75  | 
    ("Speed", List("speed_CPU", "speed_GC"))
 | 
|
| 50690 | 76  | 
|
| 
69822
 
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
 
wenzelm 
parents: 
68129 
diff
changeset
 | 
77  | 
  private val time_speed = Map("time_CPU" -> "speed_CPU", "time_GC" -> "speed_GC")
 | 
| 
 
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
 
wenzelm 
parents: 
68129 
diff
changeset
 | 
78  | 
|
| 65053 | 79  | 
|
80  | 
val all_fields: List[Fields] =  | 
|
| 
69822
 
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
 
wenzelm 
parents: 
68129 
diff
changeset
 | 
81  | 
List(tasks_fields, workers_fields, GC_fields, heap_fields, program_fields, threads_fields,  | 
| 57869 | 82  | 
time_fields, speed_fields)  | 
| 65053 | 83  | 
|
84  | 
val main_fields: List[Fields] =  | 
|
85  | 
List(tasks_fields, workers_fields, heap_fields)  | 
|
| 
65855
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
86  | 
|
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
87  | 
|
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
88  | 
/* content interpretation */  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
89  | 
|
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
90  | 
final case class Entry(time: Double, data: Map[String, Double])  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
91  | 
  {
 | 
| 65858 | 92  | 
def get(field: String): Double = data.getOrElse(field, 0.0)  | 
| 
65855
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
93  | 
}  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
94  | 
|
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
95  | 
val empty: ML_Statistics = apply(Nil)  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
96  | 
|
| 
67760
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
97  | 
def apply(ml_statistics: List[Properties.T], heading: String = "",  | 
| 
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
98  | 
domain: String => Boolean = (key: String) => true): ML_Statistics =  | 
| 
65855
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
99  | 
  {
 | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
100  | 
require(ml_statistics.forall(props => Now.unapply(props).isDefined))  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
101  | 
|
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
102  | 
val time_start = if (ml_statistics.isEmpty) 0.0 else now(ml_statistics.head)  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
103  | 
val duration = if (ml_statistics.isEmpty) 0.0 else now(ml_statistics.last) - time_start  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
104  | 
|
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
105  | 
val fields =  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
106  | 
SortedSet.empty[String] ++  | 
| 
67760
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
107  | 
        (for {
 | 
| 
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
108  | 
props <- ml_statistics.iterator  | 
| 
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
109  | 
(x, _) <- props.iterator  | 
| 
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
110  | 
if x != Now.name && domain(x) } yield x)  | 
| 
65855
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
111  | 
|
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
112  | 
val content =  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
113  | 
    {
 | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
114  | 
var last_edge = Map.empty[String, (Double, Double, Double)]  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
115  | 
val result = new mutable.ListBuffer[ML_Statistics.Entry]  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
116  | 
      for (props <- ml_statistics) {
 | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
117  | 
val time = now(props) - time_start  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
118  | 
require(time >= 0.0)  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
119  | 
|
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
120  | 
// rising edges -- relative speed  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
121  | 
val speeds =  | 
| 
67760
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
122  | 
          (for {
 | 
| 
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
123  | 
(key, value) <- props.iterator  | 
| 
69822
 
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
 
wenzelm 
parents: 
68129 
diff
changeset
 | 
124  | 
key1 <- time_speed.get(key)  | 
| 
 
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
 
wenzelm 
parents: 
68129 
diff
changeset
 | 
125  | 
if domain(key1)  | 
| 
 
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
 
wenzelm 
parents: 
68129 
diff
changeset
 | 
126  | 
          } yield {
 | 
| 
 
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
 
wenzelm 
parents: 
68129 
diff
changeset
 | 
127  | 
val (x0, y0, s0) = last_edge.getOrElse(key, (0.0, 0.0, 0.0))  | 
| 
65855
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
128  | 
|
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
129  | 
val x1 = time  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
130  | 
val y1 = java.lang.Double.parseDouble(value)  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
131  | 
val s1 = if (x1 == x0) 0.0 else (y1 - y0) / (x1 - x0)  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
132  | 
|
| 
67760
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
133  | 
            if (y1 > y0) {
 | 
| 
69822
 
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
 
wenzelm 
parents: 
68129 
diff
changeset
 | 
134  | 
last_edge += (key -> (x1, y1, s1))  | 
| 
 
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
 
wenzelm 
parents: 
68129 
diff
changeset
 | 
135  | 
(key1, s1.toString)  | 
| 
67760
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
136  | 
}  | 
| 
69822
 
8c587dd44f51
updated to polyml-5.8-20190220 (pre-release of Poly/ML 5.8);
 
wenzelm 
parents: 
68129 
diff
changeset
 | 
137  | 
else (key1, s0.toString)  | 
| 
67760
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
138  | 
}).toList  | 
| 
65855
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
139  | 
|
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
140  | 
val data =  | 
| 
67760
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
141  | 
SortedMap.empty[String, Double] ++  | 
| 
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
142  | 
            (for {
 | 
| 
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
143  | 
(x, y) <- props.iterator ++ speeds.iterator  | 
| 
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
144  | 
if x != Now.name && domain(x)  | 
| 
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
145  | 
z = java.lang.Double.parseDouble(y) if z != 0.0  | 
| 69832 | 146  | 
            } yield { (x.intern, mem_field_scale(x, z)) })
 | 
| 65866 | 147  | 
|
| 
65855
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
148  | 
result += ML_Statistics.Entry(time, data)  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
149  | 
}  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
150  | 
result.toList  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
151  | 
}  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
152  | 
|
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
153  | 
new ML_Statistics(heading, fields, content, time_start, duration)  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
154  | 
}  | 
| 50685 | 155  | 
}  | 
| 
50688
 
f02864682307
some support for ML statistics content interpretation;
 
wenzelm 
parents: 
50685 
diff
changeset
 | 
156  | 
|
| 
65855
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
157  | 
final class ML_Statistics private(  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
158  | 
val heading: String,  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
159  | 
val fields: Set[String],  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
160  | 
val content: List[ML_Statistics.Entry],  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
161  | 
val time_start: Double,  | 
| 
 
33b3e76114f8
store processed content instead of somewhat bulky properties;
 
wenzelm 
parents: 
65854 
diff
changeset
 | 
162  | 
val duration: Double)  | 
| 
50688
 
f02864682307
some support for ML statistics content interpretation;
 
wenzelm 
parents: 
50685 
diff
changeset
 | 
163  | 
{
 | 
| 65858 | 164  | 
/* content */  | 
165  | 
||
166  | 
def maximum(field: String): Double =  | 
|
167  | 
    (0.0 /: content)({ case (m, e) => m max e.get(field) })
 | 
|
168  | 
||
169  | 
def average(field: String): Double =  | 
|
170  | 
  {
 | 
|
171  | 
@tailrec def sum(t0: Double, list: List[ML_Statistics.Entry], acc: Double): Double =  | 
|
172  | 
      list match {
 | 
|
173  | 
case Nil => acc  | 
|
174  | 
case e :: es =>  | 
|
175  | 
val t = e.time  | 
|
176  | 
sum(t, es, (t - t0) * e.get(field) + acc)  | 
|
177  | 
}  | 
|
178  | 
    content match {
 | 
|
179  | 
case Nil => 0.0  | 
|
180  | 
case List(e) => e.get(field)  | 
|
181  | 
case e :: es => sum(e.time, es, 0.0) / duration  | 
|
182  | 
}  | 
|
183  | 
}  | 
|
184  | 
||
| 50689 | 185  | 
|
186  | 
/* charts */  | 
|
187  | 
||
| 65864 | 188  | 
def update_data(data: XYSeriesCollection, selected_fields: List[String])  | 
| 50689 | 189  | 
  {
 | 
| 
50697
 
82e9178e6a98
improved Monitor_Dockable, based on ML_Statistics operations;
 
wenzelm 
parents: 
50691 
diff
changeset
 | 
190  | 
data.removeAllSeries  | 
| 69832 | 191  | 
    for (field <- selected_fields) {
 | 
192  | 
val series = new XYSeries(field)  | 
|
| 
67760
 
553d9ad7d679
more compact ML_Statistics, to make build_status work with less than 2GB heap;
 
wenzelm 
parents: 
65866 
diff
changeset
 | 
193  | 
content.foreach(entry => series.add(entry.time, entry.get(field)))  | 
| 50689 | 194  | 
data.addSeries(series)  | 
195  | 
}  | 
|
| 
50697
 
82e9178e6a98
improved Monitor_Dockable, based on ML_Statistics operations;
 
wenzelm 
parents: 
50691 
diff
changeset
 | 
196  | 
}  | 
| 
 
82e9178e6a98
improved Monitor_Dockable, based on ML_Statistics operations;
 
wenzelm 
parents: 
50691 
diff
changeset
 | 
197  | 
|
| 65864 | 198  | 
def chart(title: String, selected_fields: List[String]): JFreeChart =  | 
| 
50697
 
82e9178e6a98
improved Monitor_Dockable, based on ML_Statistics operations;
 
wenzelm 
parents: 
50691 
diff
changeset
 | 
199  | 
  {
 | 
| 
 
82e9178e6a98
improved Monitor_Dockable, based on ML_Statistics operations;
 
wenzelm 
parents: 
50691 
diff
changeset
 | 
200  | 
val data = new XYSeriesCollection  | 
| 
 
82e9178e6a98
improved Monitor_Dockable, based on ML_Statistics operations;
 
wenzelm 
parents: 
50691 
diff
changeset
 | 
201  | 
update_data(data, selected_fields)  | 
| 50689 | 202  | 
|
203  | 
ChartFactory.createXYLineChart(title, "time", "value", data,  | 
|
204  | 
PlotOrientation.VERTICAL, true, true, true)  | 
|
205  | 
}  | 
|
206  | 
||
| 65051 | 207  | 
def chart(fields: ML_Statistics.Fields): JFreeChart =  | 
208  | 
chart(fields._1, fields._2)  | 
|
| 50691 | 209  | 
|
| 65053 | 210  | 
def show_frames(fields: List[ML_Statistics.Fields] = ML_Statistics.main_fields): Unit =  | 
| 65051 | 211  | 
fields.map(chart(_)).foreach(c =>  | 
| 
57612
 
990ffb84489b
clarified module name: facilitate alternative GUI frameworks;
 
wenzelm 
parents: 
53189 
diff
changeset
 | 
212  | 
      GUI_Thread.later {
 | 
| 50854 | 213  | 
        new Frame {
 | 
| 
51615
 
072a7249e1ac
separate module "GUI", to keep this out of the way of generic Isabelle_System operations, notably for non-Isabelle/jEdit applications;
 
wenzelm 
parents: 
51432 
diff
changeset
 | 
214  | 
iconImage = GUI.isabelle_image()  | 
| 65851 | 215  | 
title = heading  | 
| 50854 | 216  | 
contents = Component.wrap(new ChartPanel(c))  | 
217  | 
visible = true  | 
|
218  | 
}  | 
|
| 
50697
 
82e9178e6a98
improved Monitor_Dockable, based on ML_Statistics operations;
 
wenzelm 
parents: 
50691 
diff
changeset
 | 
219  | 
})  | 
| 
50688
 
f02864682307
some support for ML statistics content interpretation;
 
wenzelm 
parents: 
50685 
diff
changeset
 | 
220  | 
}  |