aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test/ets_SUITE_data/visualize_throughput.html
blob: 27d6849c6095bfeb24d19c9e66fa43ca1fde0a41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
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
156
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
246
247
248
249
250
251
252
253
<!doctype html>
<html lang="en">

<!-- %% -->
<!-- %% %CopyrightBegin% -->
<!-- %% -->
<!-- %% Copyright Ericsson AB and Kjell Winblad 1996-2018. All Rights Reserved. -->
<!-- %% -->
<!-- %% Licensed under the Apache License, Version 2.0 (the "License"); -->
<!-- %% you may not use this file except in compliance with the License. -->
<!-- %% You may obtain a copy of the License at -->
<!-- %% -->
<!-- %%     http://www.apache.org/licenses/LICENSE-2.0 -->
<!-- %% -->
<!-- %% Unless required by applicable law or agreed to in writing, software -->
<!-- %% distributed under the License is distributed on an "AS IS" BASIS, -->
<!-- %% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
<!-- %% See the License for the specific language governing permissions and -->
<!-- %% limitations under the License. -->
<!-- %% -->
<!-- %% %CopyrightEnd% -->
<!-- %% -->
<!-- %% Author: Kjell Winblad -->
<!-- %% -->
  
  <head>
    <meta charset="utf-8">
    <title>ETS Benchmark Result Viewer</title>
  </head>

  <body>
    <div id="insertPlaceholder"></div>
    <h1>ETS Benchmark Result Viewer</h1>
    <p>
      This page generates graphs from data produced by the ETS benchmark which is defined in the function <code>ets_SUITE:throughput_benchmark/0</code> (see "<code>$ERL_TOP/lib/stdlib/test/ets_SUITE.erl</code>").
    </p>
    <p>
      Note that one can paste results from several benchmark runs into the field below. Results from the same scenario but from different benchmark runs will be relabeled and ploted in the same graph automatically. This makes comparisons of different ETS versions easy. 
    </p>
    <p>
      Note also that that lines can be hidden by clicking on the corresponding label.
    </p>
    Paste the generated data in the field below and press the Render button:
    <br>
    <textarea id="dataField" rows="4" cols="50">#bench_data_placeholder</textarea> 
    <br>
    <input type="checkbox" id="barPlot"> Bar Plot
    <br>
    <input type="checkbox" id="sameSpacing" checked> Same X Spacing Between Points
    <br>
    <input type="checkbox" class="showCheck" value="[ordered_set,public]" checked> Show <code>[ordered_set,public]</code>
    <br>
    <input type="checkbox" class="showCheck" value="[ordered_set,public,{write_concurrency,true}]" checked> Show <code>[ordered_set,public,{write_concurrency,true}]</code>
    <br>
    <input type="checkbox" class="showCheck" value="[ordered_set,public,{read_concurrency,true}]" checked> Show <code>[ordered_set,public,{read_concurrency,true}]</code>
    <br>
    <input type="checkbox" class="showCheck" value="[ordered_set,public,{write_concurrency,true},{read_concurrency,true}]" checked> Show <code>[ordered_set,public,{write_concurrency,true},{read_concurrency,true}]</code>
    <br>
    <input type="checkbox" class="showCheck" value="[set,public]" checked> Show <code>[set,public]</code>
    <br>
    <input type="checkbox" class="showCheck" value="[set,public,{write_concurrency,true}]" checked> Show <code>[set,public,{write_concurrency,true}]</code>
    <br>
    <input type="checkbox" class="showCheck" value="[set,public,{read_concurrency,true}]" checked> Show <code>[set,public,{read_concurrency,true}]</code>
    <br>
    <input type="checkbox" class="showCheck" value="[set,public,{write_concurrency,true},{read_concurrency,true}]" checked> Show <code>[set,public,{write_concurrency,true},{read_concurrency,true}]</code>
    <br>
    <button id="renderButton" type="button">Render</button> 
    
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
	    integrity="sha256-3edrmyuQ0w65f8gfBsqowzjJe2iM6n0nKciPUp8y+7E="
	    crossorigin="anonymous"></script>
    <script>
      var loading = false;
      function toggleLoadingScreen(){
          if(loading){
              $("#loading").remove();
              loading = false;
          }else{
              $('<div id="loading">'+
                '<span style="position: fixed; top: 50%;left: 50%;color: white;"><b>Loading...</b></span>'+
                '</div>')
                  .css({position: "fixed",
                        top: 0,
                        left: 0,
                        width: "100%",
                        height: "100%",
                        'background-color': "#000",
                        filter:"alpha(opacity=50)",
                        '-moz-opacity':"0.5",
                        '-khtml-opacity': "0.5",
                        opacity: "0.5",
                        'z-index': "10000"})
                  .appendTo(document.body);
              loading = true;

          }
      }
      //Start loading screen before downloading plotly which is quite large
      toggleLoadingScreen();
    </script>
    <script src="https://cdn.plot.ly/plotly-1.5.0.min.js"></script>    
    <script>
      String.prototype.replaceAll = function(search, replacement) {
          var target = this;
          return target.split(search).join(replacement);
      };
      String.prototype.myTrim = function() {
          var target = this;
          return target.replace(/^\s+|\s+$/g, '');
      };
      function plotGraph(lines, sameSpacing, barPlot, prefix) {
          var xvals = null;
          var data = [];
          while(lines.length > 0 &&
                (lines[0].myTrim() == "" ||
                 lines[0].myTrim().indexOf(";") !== -1)){
              var line = lines.shift().myTrim();
              if(line == "" || line.startsWith("#")){
                  continue;
              } else if(line.startsWith(";")) {
                  xvals = line.split(";")
                  xvals.shift(); // Remove first
                  xvals = $.map(xvals, function (i){
                      if(sameSpacing){
                          return "_"+i.myTrim();
                      }else{
                          return parseInt(i.myTrim(), 10);
                      }
                  });
              }else{
                  line = line.split(";")
                  var label = prefix + line.shift().myTrim();
                  var yvals = $.map(line, function (i){
                      return parseFloat(i.myTrim(), 10);
                  });
                  var trace = {
                      x: xvals,
                      y: yvals,
                      mode: 'lines+markers',
                      name: label
                  };
                  if(barPlot){
                      trace['type'] = "bar";
                  }
                  data.push(trace);
              }
              
          }
          return data;
      }
      function plotGraphs(){
          var insertPlaceholder = $("#insertPlaceholder");
          var sameSpacing = $('#sameSpacing').is(":checked");
          var barPlot = $('#barPlot').is(":checked");
          var lines = $("#dataField").val();
          $('.showCheck').each(function() {
              var item = $(this);
              if(!item.is(":checked")){
                  lines = lines.replaceAll(item.val(), "#"+item.val())
              }
          });
          lines = lines.split("$");
          var nrOfGraphs = 0;
          var scenarioDataMap = {};
          var scenarioNrOfVersionsMap = {};
          var scenarioList = [];
          while(lines.length > 0){
              var line = lines.shift().myTrim();
              if(line == ""){
                  continue;
              } else if(line.startsWith("Scenario:")) {
                  nrOfGraphs = nrOfGraphs + 1;
                  var name = line;
                  if(scenarioDataMap[name] === undefined){
                      scenarioDataMap[name] = [];
                      scenarioNrOfVersionsMap[name] = 0;
                      scenarioList.push(line);
                  }
                  scenarioNrOfVersionsMap[name] = scenarioNrOfVersionsMap[name] + 1;
                  var prefix = undefined;
                  if(scenarioNrOfVersionsMap[name] === 1){
                      prefix = "";
                  }else{
                      prefix = "Ver: " + scenarioNrOfVersionsMap[name] + " ";
                  }
                  scenarioDataMap[name] =
                      scenarioDataMap[name].concat(
                          plotGraph(lines, sameSpacing, barPlot, prefix));
              }
          }
          $.each(scenarioList,
                 function( index, name ) {
                     var nrOfGraphs = index + 1;
                     var data = scenarioDataMap[name];
                     $( "<div class='added' id='graph"+nrOfGraphs+"'>")
                         .insertBefore( insertPlaceholder );
                     $( "<button type='button' class='added' id='fullscreenButton"+nrOfGraphs+"'>Fill screen</button>")
                         .insertBefore( insertPlaceholder );
                     $( "<span class='added'><br><hr><br></span>")
                         .insertBefore( insertPlaceholder );
                     var layout = {
                         title:name,
                         xaxis: {
                             title: '# of Processes'
                         },
                         yaxis: {
                             title: 'Operations/Second'
                         }
                         
                     };
                     
                     $("#fullscreenButton"+nrOfGraphs).click(
                         function(){
                             $('#graph'+nrOfGraphs).replaceWith(
                                 $("<div class='added' id='graph"+nrOfGraphs+"'>"));
                             layout = $.extend({}, layout, {
                                 width:$(window).width()-40,
                                 height:$(window).height()-40
                             });      
                             Plotly.newPlot('graph'+nrOfGraphs,  data, layout);                         
                         });
                     Plotly.newPlot('graph'+nrOfGraphs,  data, layout);

                 });
          
          
      }
    $(document).ready(function(){
        $('#renderButton').click(
            function(){
                toggleLoadingScreen();
                setTimeout(function(){
                    try {                       
                        $( ".added" ).remove();
                        plotGraphs();
                        toggleLoadingScreen();
                    } catch(e){
                        toggleLoadingScreen();
                        console.log(e);
                        alert("Error happened when parsing data.\n" +
                              "See console for more info");
                    }
                }, 10);
            });
        setTimeout(function(){
            $( ".added" ).remove();
            plotGraphs();
            toggleLoadingScreen();
        }, 10);
    });
  </script>
  </body>
</html>