callstats.py 27.9 KB
Newer Older
1 2 3 4 5
#!/usr/bin/env python
# Copyright 2016 the V8 project authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
'''
6
Usage: callstats.py [-h] <command> ...
7 8 9 10 11 12 13 14 15 16 17 18 19

Optional arguments:
  -h, --help  show this help message and exit

Commands:
  run         run chrome with --runtime-call-stats and generate logs
  stats       process logs and print statistics
  json        process logs from several versions and generate JSON
  help        help information

For each command, you can try ./runtime-call-stats.py help command.
'''

20 21 22
# for py2/py3 compatibility
from __future__ import print_function

23 24 25 26 27 28 29 30
import argparse
import json
import os
import re
import shutil
import subprocess
import sys
import tempfile
31
import operator
32 33 34 35 36 37 38

import numpy
import scipy
import scipy.stats
from math import sqrt


39 40 41
MAX_NOF_RETRIES = 5


42 43 44 45 46 47 48 49 50 51
# Run benchmarks.

def print_command(cmd_args):
  def fix_for_printing(arg):
    m = re.match(r'^--([^=]+)=(.*)$', arg)
    if m and (' ' in m.group(2) or m.group(2).startswith('-')):
      arg = "--{}='{}'".format(m.group(1), m.group(2))
    elif ' ' in arg:
      arg = "'{}'".format(arg)
    return arg
52
  print(" ".join(map(fix_for_printing, cmd_args)))
53 54


55
def start_replay_server(args, sites, discard_output=True):
56 57 58
  with tempfile.NamedTemporaryFile(prefix='callstats-inject-', suffix='.js',
                                   mode='wt', delete=False) as f:
    injection = f.name
59
    generate_injection(f, sites, args.refresh)
60 61
  http_port = 4080 + args.port_offset
  https_port = 4443 + args.port_offset
62 63
  cmd_args = [
      args.replay_bin,
64 65
      "--port=%s" % http_port,
      "--ssl_port=%s" % https_port,
66 67 68
      "--no-dns_forwarding",
      "--use_closest_match",
      "--no-diff_unknown_requests",
69
      "--inject_scripts=deterministic.js,{}".format(injection),
70 71
      args.replay_wpr,
  ]
72
  print("=" * 80)
73
  print_command(cmd_args)
74 75 76 77 78
  if discard_output:
    with open(os.devnull, 'w') as null:
      server = subprocess.Popen(cmd_args, stdout=null, stderr=null)
  else:
      server = subprocess.Popen(cmd_args)
79 80
  print("RUNNING REPLAY SERVER: %s with PID=%s" % (args.replay_bin, server.pid))
  print("=" * 80)
81
  return {'process': server, 'injection': injection}
82 83 84


def stop_replay_server(server):
85 86 87 88 89
  print("SHUTTING DOWN REPLAY SERVER %s" % server['process'].pid)
  server['process'].terminate()
  os.remove(server['injection'])


90
def generate_injection(f, sites, refreshes=0):
91
  print("""\
92
(function() {
93 94 95 96
  var s = window.sessionStorage.getItem("refreshCounter");
  var refreshTotal = """, refreshes, """;
  var refreshCounter = s ? parseInt(s) : refreshTotal;
  var refreshId = refreshTotal - refreshCounter;
97 98 99
  if (refreshCounter > 0) {
    window.sessionStorage.setItem("refreshCounter", refreshCounter-1);
  }
100
  function match(url, item) {
101 102 103
    if ('regexp' in item) { return url.match(item.regexp) !== null };
    var url_wanted = item.url;
    /* Allow automatic redirections from http to https. */
104 105 106 107
    if (url_wanted.startsWith("http://") && url.startsWith("https://")) {
      url_wanted = "https://" + url_wanted.substr(7);
    }
    return url.startsWith(url_wanted);
108
  };
109 110
  function onLoad(url) {
    for (var item of sites) {
111
      if (!match(url, item)) continue;
112
      var timeout = 'timeline' in item ? 2000 * item.timeline
113 114 115
                  : 'timeout'  in item ? 1000 * (item.timeout - 3)
                  : 10000;
      console.log("Setting time out of " + timeout + " for: " + url);
116
      window.setTimeout(function() {
117
        console.log("Time is out for: " + url);
118
        var msg = "STATS: (" + refreshId + ") " + url;
119 120
        %GetAndResetRuntimeCallStats(1, msg);
        if (refreshCounter > 0) {
121 122
          console.log(
              "Refresh counter is " + refreshCounter + ", refreshing: " + url);
123 124
          window.location.reload();
        }
125 126 127 128 129
      }, timeout);
      return;
    }
    console.log("Ignoring: " + url);
  };
130 131 132
  var sites =
    """, json.dumps(sites), """;
  onLoad(window.location.href);
133
})();""", file=f)
134

135
def get_chrome_flags(js_flags, user_data_dir, arg_delimiter=""):
136 137 138 139 140
  return [
      "--no-default-browser-check",
      "--no-sandbox",
      "--disable-translate",
      "--enable-benchmarking",
141 142
      "--enable-stats-table",
      "--js-flags={}{}{}".format(arg_delimiter, js_flags, arg_delimiter),
143
      "--no-first-run",
144 145
      "--user-data-dir={}{}{}".format(arg_delimiter, user_data_dir,
                                      arg_delimiter),
146 147
      "--data-path={}{}{}".format(arg_delimiter,
          os.path.join(user_data_dir, 'content-shell-data'), arg_delimiter),
148 149
    ]

150
def get_chrome_replay_flags(args, arg_delimiter=""):
151 152 153
  http_port = 4080 + args.port_offset
  https_port = 4443 + args.port_offset
  return [
154 155 156 157 158
      "--host-resolver-rules=%sMAP *:80 localhost:%s, "  \
                              "MAP *:443 localhost:%s, " \
                              "EXCLUDE localhost%s" % (
                               arg_delimiter, http_port, https_port,
                               arg_delimiter),
159 160 161 162 163 164
      "--ignore-certificate-errors",
      "--disable-seccomp-sandbox",
      "--disable-web-security",
      "--reduce-security-for-testing",
      "--allow-insecure-localhost",
    ]
165 166

def run_site(site, domain, args, timeout=None):
167 168 169
  print("="*80)
  print("RUNNING DOMAIN %s" % domain)
  print("="*80)
170 171
  result_template = "{domain}#{count}.txt" if args.repeat else "{domain}.txt"
  count = 0
172
  if timeout is None: timeout = args.timeout
173 174 175
  if args.replay_wpr:
    timeout *= 1 + args.refresh
    timeout += 1
176
  retries_since_good_run = 0
177 178 179 180 181 182 183
  while count == 0 or args.repeat is not None and count < args.repeat:
    count += 1
    result = result_template.format(domain=domain, count=count)
    retries = 0
    while args.retries is None or retries < args.retries:
      retries += 1
      try:
184 185 186
        if args.user_data_dir:
          user_data_dir = args.user_data_dir
        else:
187
          user_data_dir = tempfile.mkdtemp(prefix="chr_")
188
        js_flags = "--runtime-call-stats"
189
        if args.replay_wpr: js_flags += " --allow-natives-syntax"
190
        if args.js_flags: js_flags += " " + args.js_flags
191
        chrome_flags = get_chrome_flags(js_flags, user_data_dir)
192
        if args.replay_wpr:
193
          chrome_flags += get_chrome_replay_flags(args)
194
        else:
195
          chrome_flags += [ "--single-process", ]
196 197 198 199 200 201
        if args.chrome_flags:
          chrome_flags += args.chrome_flags.split()
        cmd_args = [
            "timeout", str(timeout),
            args.with_chrome
        ] + chrome_flags + [ site ]
202
        print("- " * 40)
203
        print_command(cmd_args)
204
        print("- " * 40)
205
        with open(result, "wt") as f:
206 207
          with open(args.log_stderr or os.devnull, 'at') as err:
            status = subprocess.call(cmd_args, stdout=f, stderr=err)
208 209 210 211 212 213 214 215 216 217
        # 124 means timeout killed chrome, 0 means the user was bored first!
        # If none of these two happened, then chrome apparently crashed, so
        # it must be called again.
        if status != 124 and status != 0:
          print("CHROME CRASHED, REPEATING RUN");
          continue
        # If the stats file is empty, chrome must be called again.
        if os.path.isfile(result) and os.path.getsize(result) > 0:
          if args.print_url:
            with open(result, "at") as f:
218 219
              print(file=f)
              print("URL: {}".format(site), file=f)
220
          retries_since_good_run = 0
221
          break
222 223 224 225
        if retries_since_good_run > MAX_NOF_RETRIES:
          # Abort after too many retries, no point in ever increasing the
          # timeout.
          print("TOO MANY EMPTY RESULTS ABORTING RUN")
226
          return
227 228
        timeout += 2 ** retries_since_good_run
        retries_since_good_run += 1
229 230
        print("EMPTY RESULT, REPEATING RUN ({})".format(
            retries_since_good_run));
231
      finally:
232
        if not args.user_data_dir:
233 234 235 236 237 238 239 240 241 242 243
          shutil.rmtree(user_data_dir)


def read_sites_file(args):
  try:
    sites = []
    try:
      with open(args.sites_file, "rt") as f:
        for item in json.load(f):
          if 'timeout' not in item:
            # This is more-or-less arbitrary.
244
            item['timeout'] = int(1.5 * item['timeline'] + 7)
245 246 247
          if item['timeout'] > args.timeout: item['timeout'] = args.timeout
          sites.append(item)
    except ValueError:
248 249
      args.error("Warning: Could not read sites file as JSON, falling back to "
                 "primitive file")
250 251 252 253 254 255 256 257 258 259 260
      with open(args.sites_file, "rt") as f:
        for line in f:
          line = line.strip()
          if not line or line.startswith('#'): continue
          sites.append({'url': line, 'timeout': args.timeout})
    return sites
  except IOError as e:
    args.error("Cannot read from {}. {}.".format(args.sites_file, e.strerror))
    sys.exit(1)


261
def read_sites(args):
262 263
  # Determine the websites to benchmark.
  if args.sites_file:
264 265 266 267 268 269
    return read_sites_file(args)
  return [{'url': site, 'timeout': args.timeout} for site in args.sites]

def do_run(args):
  sites = read_sites(args)
  replay_server = start_replay_server(args, sites) if args.replay_wpr else None
270 271 272 273 274
  # Disambiguate domains, if needed.
  L = []
  domains = {}
  for item in sites:
    site = item['url']
275 276 277 278 279 280 281 282 283 284 285
    domain = None
    if args.domain:
      domain = args.domain
    elif 'domain' in item:
      domain = item['domain']
    else:
      m = re.match(r'^(https?://)?([^/]+)(/.*)?$', site)
      if not m:
        args.error("Invalid URL {}.".format(site))
        continue
      domain = m.group(2)
286 287 288 289 290 291 292 293 294 295 296 297 298 299
    entry = [site, domain, None, item['timeout']]
    if domain not in domains:
      domains[domain] = entry
    else:
      if not isinstance(domains[domain], int):
        domains[domain][2] = 1
        domains[domain] = 1
      domains[domain] += 1
      entry[2] = domains[domain]
    L.append(entry)
  try:
    # Run them.
    for site, domain, count, timeout in L:
      if count is not None: domain = "{}%{}".format(domain, count)
300
      print((site, domain, timeout))
301 302 303 304 305 306
      run_site(site, domain, args, timeout)
  finally:
    if replay_server:
      stop_replay_server(replay_server)


307 308 309 310 311 312 313 314
def do_run_replay_server(args):
  sites = read_sites(args)
  print("- " * 40)
  print("Available URLs:")
  for site in sites:
    print("    "+site['url'])
  print("- " * 40)
  print("Launch chromium with the following commands for debugging:")
315 316 317 318
  flags = get_chrome_flags("--runtime-call-stats --allow-natives-syntax",
                           "/var/tmp/`date +%s`", '"')
  flags += get_chrome_replay_flags(args, "'")
  print("    $CHROMIUM_DIR/out/Release/chrome " + (" ".join(flags)) + " <URL>")
319
  print("- " * 40)
320
  replay_server = start_replay_server(args, sites, discard_output=False)
321 322 323 324 325 326
  try:
    replay_server['process'].wait()
  finally:
   stop_replay_server(replay_server)


327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
# Calculate statistics.

def statistics(data):
  N = len(data)
  average = numpy.average(data)
  median = numpy.median(data)
  low = numpy.min(data)
  high= numpy.max(data)
  if N > 1:
    # evaluate sample variance by setting delta degrees of freedom (ddof) to
    # 1. The degree used in calculations is N - ddof
    stddev = numpy.std(data, ddof=1)
    # Get the endpoints of the range that contains 95% of the distribution
    t_bounds = scipy.stats.t.interval(0.95, N-1)
    #assert abs(t_bounds[0] + t_bounds[1]) < 1e-6
    # sum mean to the confidence interval
    ci = {
        'abs': t_bounds[1] * stddev / sqrt(N),
        'low': average + t_bounds[0] * stddev / sqrt(N),
        'high': average + t_bounds[1] * stddev / sqrt(N)
    }
  else:
    stddev = 0
    ci = { 'abs': 0, 'low': average, 'high': average }
  if abs(stddev) > 0.0001 and abs(average) > 0.0001:
    ci['perc'] = t_bounds[1] * stddev / sqrt(N) / average * 100
  else:
    ci['perc'] = 0
  return { 'samples': N, 'average': average, 'median': median,
           'stddev': stddev, 'min': low, 'max': high, 'ci': ci }


359 360 361 362 363 364 365 366 367
def add_category_total(entries, groups, category_prefix):
  group_data = { 'time': 0, 'count': 0 }
  for group_name, regexp in groups:
    if not group_name.startswith('Group-' + category_prefix): continue
    group_data['time'] += entries[group_name]['time']
    group_data['count'] += entries[group_name]['count']
  entries['Group-' + category_prefix + '-Total'] = group_data


368 369 370 371
def read_stats(path, domain, args):
  groups = [];
  if args.aggregate:
    groups = [
372
        ('Group-IC', re.compile(".*IC_.*")),
373 374
        ('Group-OptimizeBackground',
         re.compile(".*OptimizeConcurrent.*|RecompileConcurrent.*")),
375 376
        ('Group-Optimize',
         re.compile("StackGuard|.*Optimize.*|.*Deoptimize.*|Recompile.*")),
377
        ('Group-CompileBackground', re.compile("(.*CompileBackground.*)")),
378
        ('Group-Compile', re.compile("(^Compile.*)|(.*_Compile.*)")),
379
        ('Group-ParseBackground', re.compile(".*ParseBackground.*")),
380 381 382
        ('Group-Parse', re.compile(".*Parse.*")),
        ('Group-Callback', re.compile(".*Callback.*")),
        ('Group-API', re.compile(".*API.*")),
383
        ('Group-GC-Custom', re.compile("GC_Custom_.*")),
384
        ('Group-GC-Background', re.compile(".*GC.*BACKGROUND.*")),
385
        ('Group-GC', re.compile("GC_.*|AllocateInTargetSpace")),
386 387
        ('Group-JavaScript', re.compile("JS_Execution")),
        ('Group-Runtime', re.compile(".*"))]
388 389
  with open(path, "rt") as f:
    # Process the whole file and sum repeating entries.
390 391 392
    entries = { 'Sum': {'time': 0, 'count': 0} }
    for group_name, regexp in groups:
      entries[group_name] = { 'time': 0, 'count': 0 }
393 394 395 396 397 398 399 400
    for line in f:
      line = line.strip()
      # Discard headers and footers.
      if not line: continue
      if line.startswith("Runtime Function"): continue
      if line.startswith("===="): continue
      if line.startswith("----"): continue
      if line.startswith("URL:"): continue
401
      if line.startswith("STATS:"): continue
402 403 404 405 406
      # We have a regular line.
      fields = line.split()
      key = fields[0]
      time = float(fields[1].replace("ms", ""))
      count = int(fields[3])
407 408 409
      if key not in entries: entries[key] = { 'time': 0, 'count': 0 }
      entries[key]['time'] += time
      entries[key]['count'] += count
410 411
      # We calculate the sum, if it's not the "total" line.
      if key != "Total":
412 413 414 415 416 417 418
        entries['Sum']['time'] += time
        entries['Sum']['count'] += count
        for group_name, regexp in groups:
          if not regexp.match(key): continue
          entries[group_name]['time'] += time
          entries[group_name]['count'] += count
          break
419
    # Calculate the V8-Total (all groups except Callback)
420
    group_data = { 'time': 0, 'count': 0 }
421 422
    for group_name, regexp in groups:
      if group_name == 'Group-Callback': continue
423 424 425
      group_data['time'] += entries[group_name]['time']
      group_data['count'] += entries[group_name]['count']
    entries['Group-Total-V8'] = group_data
426 427 428 429
    # Calculate the Parse-Total, Compile-Total and Optimize-Total groups
    add_category_total(entries, groups, 'Parse')
    add_category_total(entries, groups, 'Compile')
    add_category_total(entries, groups, 'Optimize')
430
    # Append the sums as single entries to domain.
431
    for key in entries:
432 433 434
      if key not in domain: domain[key] = { 'time_list': [], 'count_list': [] }
      domain[key]['time_list'].append(entries[key]['time'])
      domain[key]['count_list'].append(entries[key]['count'])
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464


def print_stats(S, args):
  # Sort by ascending/descending time average, then by ascending/descending
  # count average, then by ascending name.
  def sort_asc_func(item):
    return (item[1]['time_stat']['average'],
            item[1]['count_stat']['average'],
            item[0])
  def sort_desc_func(item):
    return (-item[1]['time_stat']['average'],
            -item[1]['count_stat']['average'],
            item[0])
  # Sorting order is in the commend-line arguments.
  sort_func = sort_asc_func if args.sort == "asc" else sort_desc_func
  # Possibly limit how many elements to print.
  L = [item for item in sorted(S.items(), key=sort_func)
       if item[0] not in ["Total", "Sum"]]
  N = len(L)
  if args.limit == 0:
    low, high = 0, N
  elif args.sort == "desc":
    low, high = 0, args.limit
  else:
    low, high = N-args.limit, N
  # How to print entries.
  def print_entry(key, value):
    def stats(s, units=""):
      conf = "{:0.1f}({:0.2f}%)".format(s['ci']['abs'], s['ci']['perc'])
      return "{:8.1f}{} +/- {:15s}".format(s['average'], units, conf)
465
    print("{:>50s}  {}  {}".format(
466 467 468
      key,
      stats(value['time_stat'], units="ms"),
      stats(value['count_stat'])
469
    ))
470 471 472
  # Print and calculate partial sums, if necessary.
  for i in range(low, high):
    print_entry(*L[i])
473
    if args.totals and args.limit != 0 and not args.aggregate:
474 475 476 477 478 479 480 481 482 483 484
      if i == low:
        partial = { 'time_list': [0] * len(L[i][1]['time_list']),
                    'count_list': [0] * len(L[i][1]['count_list']) }
      assert len(partial['time_list']) == len(L[i][1]['time_list'])
      assert len(partial['count_list']) == len(L[i][1]['count_list'])
      for j, v in enumerate(L[i][1]['time_list']):
        partial['time_list'][j] += v
      for j, v in enumerate(L[i][1]['count_list']):
        partial['count_list'][j] += v
  # Print totals, if necessary.
  if args.totals:
485
    print('-' * 80)
486
    if args.limit != 0 and not args.aggregate:
487 488 489 490 491 492 493 494
      partial['time_stat'] = statistics(partial['time_list'])
      partial['count_stat'] = statistics(partial['count_list'])
      print_entry("Partial", partial)
    print_entry("Sum", S["Sum"])
    print_entry("Total", S["Total"])


def do_stats(args):
495
  domains = {}
496 497 498 499
  for path in args.logfiles:
    filename = os.path.basename(path)
    m = re.match(r'^([^#]+)(#.*)?$', filename)
    domain = m.group(1)
500 501 502 503 504 505
    if domain not in domains: domains[domain] = {}
    read_stats(path, domains[domain], args)
  if args.aggregate:
    create_total_page_stats(domains, args)
  for i, domain in enumerate(sorted(domains)):
    if len(domains) > 1:
506 507 508
      if i > 0: print()
      print("{}:".format(domain))
      print('=' * 80)
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
    domain_stats = domains[domain]
    for key in domain_stats:
      domain_stats[key]['time_stat'] = \
          statistics(domain_stats[key]['time_list'])
      domain_stats[key]['count_stat'] = \
          statistics(domain_stats[key]['count_list'])
    print_stats(domain_stats, args)


# Create a Total page with all entries summed up.
def create_total_page_stats(domains, args):
  total = {}
  def sum_up(parent, key, other):
    sums = parent[key]
    for i, item in enumerate(other[key]):
      if i >= len(sums):
        sums.extend([0] * (i - len(sums) + 1))
      if item is not None:
        sums[i] += item
528 529 530 531 532 533
  # Exclude adwords and speedometer pages from aggrigate total, since adwords
  # dominates execution time and speedometer is measured elsewhere.
  excluded_domains = ['adwords.google.com', 'speedometer-angular',
                      'speedometer-jquery', 'speedometer-backbone',
                      'speedometer-ember', 'speedometer-vanilla'];
  # Sum up all the entries/metrics from all non-excluded domains
534
  for domain, entries in domains.items():
535 536
    if domain in excluded_domains:
      continue;
537 538 539 540 541 542 543 544 545 546
    for key, domain_stats in entries.items():
      if key not in total:
        total[key] = {}
        total[key]['time_list'] = list(domain_stats['time_list'])
        total[key]['count_list'] = list(domain_stats['count_list'])
      else:
        sum_up(total[key], 'time_list', domain_stats)
        sum_up(total[key], 'count_list', domain_stats)
  # Add a new "Total" page containing the summed up metrics.
  domains['Total'] = total
547

548 549
# Generate Raw JSON file.

550
def _read_logs(args):
551 552 553 554 555 556 557 558 559 560 561 562 563 564
  versions = {}
  for path in args.logdirs:
    if os.path.isdir(path):
      for root, dirs, files in os.walk(path):
        version = os.path.basename(root)
        if version not in versions: versions[version] = {}
        for filename in files:
          if filename.endswith(".txt"):
            m = re.match(r'^([^#]+)(#.*)?\.txt$', filename)
            domain = m.group(1)
            if domain not in versions[version]: versions[version][domain] = {}
            read_stats(os.path.join(root, filename),
                       versions[version][domain], args)

565 566 567 568 569
  return versions

def do_raw_json(args):
  versions = _read_logs(args)

570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
  for version, domains in versions.items():
    if args.aggregate:
      create_total_page_stats(domains, args)
    for domain, entries in domains.items():
      raw_entries = []
      for name, value in entries.items():
        # We don't want the calculated sum in the JSON file.
        if name == "Sum": continue
        raw_entries.append({
          'name': name,
          'duration': value['time_list'],
          'count': value['count_list'],
        })

      domains[domain] = raw_entries

  print(json.dumps(versions, separators=(',', ':')))

588 589 590 591

# Generate JSON file.

def do_json(args):
592 593
  versions = _read_logs(args)

594 595 596 597 598 599
  for version, domains in versions.items():
    if args.aggregate:
      create_total_page_stats(domains, args)
    for domain, entries in domains.items():
      stats = []
      for name, value in entries.items():
600 601 602 603
        # We don't want the calculated sum in the JSON file.
        if name == "Sum": continue
        entry = [name]
        for x in ['time_list', 'count_list']:
604
          s = statistics(entries[name][x])
605 606 607
          entry.append(round(s['average'], 1))
          entry.append(round(s['ci']['abs'], 1))
          entry.append(round(s['ci']['perc'], 2))
608 609
        stats.append(entry)
      domains[domain] = stats
610
  print(json.dumps(versions, separators=(',', ':')))
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626


# Help.

def do_help(parser, subparsers, args):
  if args.help_cmd:
    if args.help_cmd in subparsers:
      subparsers[args.help_cmd].print_help()
    else:
      args.error("Unknown command '{}'".format(args.help_cmd))
  else:
    parser.print_help()


# Main program, parse command line and execute.

627 628 629 630
def coexist(*l):
  given = sum(1 for x in l if x)
  return given == 0 or given == len(l)

631 632 633 634 635 636 637
def main():
  parser = argparse.ArgumentParser()
  subparser_adder = parser.add_subparsers(title="commands", dest="command",
                                          metavar="<command>")
  subparsers = {}
  # Command: run.
  subparsers["run"] = subparser_adder.add_parser(
638
      "run", help="Replay websites and collect runtime stats data.")
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
  subparsers["run"].set_defaults(
      func=do_run, error=subparsers["run"].error)
  subparsers["run"].add_argument(
      "--chrome-flags", type=str, default="",
      help="specify additional chrome flags")
  subparsers["run"].add_argument(
      "--js-flags", type=str, default="",
      help="specify additional V8 flags")
  subparsers["run"].add_argument(
      "-u", "--user-data-dir", type=str, metavar="<path>",
      help="specify user data dir (default is temporary)")
  subparsers["run"].add_argument(
      "-c", "--with-chrome", type=str, metavar="<path>",
      default="/usr/bin/google-chrome",
      help="specify chrome executable to use")
654
  subparsers["run"].add_argument(
655 656 657 658 659 660 661 662
      "-r", "--retries", type=int, metavar="<num>",
      help="specify retries if website is down (default: forever)")
  subparsers["run"].add_argument(
      "--no-url", dest="print_url", action="store_false", default=True,
      help="do not include url in statistics file")
  subparsers["run"].add_argument(
      "--domain", type=str, default="",
      help="specify the output file domain name")
663
  subparsers["run"].add_argument(
664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
      "-n", "--repeat", type=int, metavar="<num>",
      help="specify iterations for each website (default: once)")

  def add_replay_args(subparser):
    subparser.add_argument(
        "-k", "--refresh", type=int, metavar="<num>", default=0,
        help="specify refreshes for each iteration (default: 0)")
    subparser.add_argument(
        "--replay-wpr", type=str, metavar="<path>",
        help="use the specified web page replay (.wpr) archive")
    subparser.add_argument(
        "--replay-bin", type=str, metavar="<path>",
        help="specify the replay.py script typically located in " \
             "$CHROMIUM/src/third_party/webpagereplay/replay.py")
    subparser.add_argument(
        "-f", "--sites-file", type=str, metavar="<path>",
        help="specify file containing benchmark websites")
    subparser.add_argument(
        "-t", "--timeout", type=int, metavar="<seconds>", default=60,
        help="specify seconds before chrome is killed")
    subparser.add_argument(
        "-p", "--port-offset", type=int, metavar="<offset>", default=0,
        help="specify the offset for the replay server's default ports")
    subparser.add_argument(
        "-l", "--log-stderr", type=str, metavar="<path>",
        help="specify where chrome's stderr should go (default: /dev/null)")
    subparser.add_argument(
691
        "--sites", type=str, metavar="<URL>", nargs="*",
692 693 694 695 696 697 698 699 700 701
        help="specify benchmark website")
  add_replay_args(subparsers["run"])

  # Command: replay-server
  subparsers["replay"] = subparser_adder.add_parser(
      "replay", help="Run the replay server for debugging purposes")
  subparsers["replay"].set_defaults(
      func=do_run_replay_server, error=subparsers["replay"].error)
  add_replay_args(subparsers["replay"])

702 703
  # Command: stats.
  subparsers["stats"] = subparser_adder.add_parser(
704
      "stats", help="Analize the results file create by the 'run' command.")
705 706 707 708 709 710 711 712 713 714 715 716 717 718
  subparsers["stats"].set_defaults(
      func=do_stats, error=subparsers["stats"].error)
  subparsers["stats"].add_argument(
      "-l", "--limit", type=int, metavar="<num>", default=0,
      help="limit how many items to print (default: none)")
  subparsers["stats"].add_argument(
      "-s", "--sort", choices=["asc", "desc"], default="asc",
      help="specify sorting order (default: ascending)")
  subparsers["stats"].add_argument(
      "-n", "--no-total", dest="totals", action="store_false", default=True,
      help="do not print totals")
  subparsers["stats"].add_argument(
      "logfiles", type=str, metavar="<logfile>", nargs="*",
      help="specify log files to parse")
719 720
  subparsers["stats"].add_argument(
      "--aggregate", dest="aggregate", action="store_true", default=False,
721
      help="Create aggregated entries. Adds Group-* entries at the toplevel. " \
722
      "Additionally creates a Total page with all entries.")
723

724 725
  # Command: json.
  subparsers["json"] = subparser_adder.add_parser(
726 727
      "json", help="Collect results file created by the 'run' command into" \
          "a single json file.")
728 729 730 731 732
  subparsers["json"].set_defaults(
      func=do_json, error=subparsers["json"].error)
  subparsers["json"].add_argument(
      "logdirs", type=str, metavar="<logdir>", nargs="*",
      help="specify directories with log files to parse")
733 734
  subparsers["json"].add_argument(
      "--aggregate", dest="aggregate", action="store_true", default=False,
735
      help="Create aggregated entries. Adds Group-* entries at the toplevel. " \
736 737 738 739 740 741 742 743 744 745 746 747 748 749
      "Additionally creates a Total page with all entries.")

  # Command: raw-json.
  subparsers["raw-json"] = subparser_adder.add_parser(
      "raw-json", help="Collect raw results from 'run' command into" \
          "a single json file.")
  subparsers["raw-json"].set_defaults(
      func=do_raw_json, error=subparsers["json"].error)
  subparsers["raw-json"].add_argument(
      "logdirs", type=str, metavar="<logdir>", nargs="*",
      help="specify directories with log files to parse")
  subparsers["raw-json"].add_argument(
      "--aggregate", dest="aggregate", action="store_true", default=False,
      help="Create aggregated entries. Adds Group-* entries at the toplevel. " \
750
      "Additionally creates a Total page with all entries.")
751

752 753 754 755 756 757 758 759 760
  # Command: help.
  subparsers["help"] = subparser_adder.add_parser(
      "help", help="help information")
  subparsers["help"].set_defaults(
      func=lambda args: do_help(parser, subparsers, args),
      error=subparsers["help"].error)
  subparsers["help"].add_argument(
      "help_cmd", type=str, metavar="<command>", nargs="?",
      help="command for which to display help")
761

762 763
  # Execute the command.
  args = parser.parse_args()
764 765 766
  setattr(args, 'script_path', os.path.dirname(sys.argv[0]))
  if args.command == "run" and coexist(args.sites_file, args.sites):
    args.error("use either option --sites-file or site URLs")
767
    sys.exit(1)
768 769
  elif args.command == "run" and not coexist(args.replay_wpr, args.replay_bin):
    args.error("options --replay-wpr and --replay-bin must be used together")
770 771 772 773 774 775
    sys.exit(1)
  else:
    args.func(args)

if __name__ == "__main__":
  sys.exit(main())