Admin/mira.py
author wenzelm
Mon, 23 Jul 2012 12:05:48 +0200
changeset 49458 6f2762eedca0
parent 49205 76b6207eb000
child 49700 9f9b289964dc
permissions -rw-r--r--
updated smlnj settings;
haftmann@41790
     1
"""
haftmann@41790
     2
    Test configuration descriptions for mira.
haftmann@41790
     3
"""
haftmann@41790
     4
haftmann@41790
     5
import os
haftmann@41790
     6
from os import path
haftmann@41790
     7
from glob import glob
haftmann@41790
     8
import subprocess
krauss@43255
     9
from datetime import datetime
haftmann@41790
    10
import re
haftmann@41790
    11
haftmann@41790
    12
import util
krauss@43255
    13
from util import Lazy
haftmann@41790
    14
krauss@43255
    15
from mira.report import Report, Report_Content
krauss@43255
    16
from mira.case import Case
krauss@43255
    17
from mira.tools import tool
krauss@43694
    18
from mira import schedule, misc
krauss@43063
    19
from mira.environment import scheduler
haftmann@47791
    20
from mira import repositories
krauss@43063
    21
haftmann@41790
    22
# build and evaluation tools
haftmann@41790
    23
krauss@43692
    24
default_usedir_options = "$ISABELLE_USEDIR_OPTIONS -d pdf -g true -i true -t true"
haftmann@41790
    25
krauss@43692
    26
def prepare_isabelle_repository(loc_isabelle, loc_contrib, loc_dependency_heaps,
krauss@43692
    27
  usedir_options=default_usedir_options, more_settings=''):
krauss@43692
    28
krauss@43692
    29
    # prepare components
haftmann@41790
    30
    loc_contrib = path.expanduser(loc_contrib)
haftmann@41790
    31
    if not path.exists(loc_contrib):
haftmann@41790
    32
        raise IOError('Bad file: %s' % loc_contrib)
haftmann@41790
    33
    subprocess.check_call(['ln', '-s', loc_contrib, '%s/contrib' % loc_isabelle])
haftmann@41790
    34
krauss@43692
    35
    # provide existing dependencies
haftmann@41790
    36
    if loc_dependency_heaps:
haftmann@41790
    37
        isabelle_path = loc_dependency_heaps + '/$ISABELLE_IDENTIFIER:$ISABELLE_OUTPUT'
haftmann@41790
    38
    else:
haftmann@41790
    39
        isabelle_path = '$ISABELLE_OUTPUT'
haftmann@41790
    40
krauss@43692
    41
    # patch settings
haftmann@41790
    42
    extra_settings = '''
haftmann@41790
    43
ISABELLE_HOME_USER="$ISABELLE_HOME/home_user"
haftmann@41790
    44
ISABELLE_OUTPUT="$ISABELLE_HOME/heaps"
haftmann@41790
    45
ISABELLE_BROWSER_INFO="$ISABELLE_HOME/browser_info"
haftmann@41790
    46
ISABELLE_PATH="%s"
haftmann@41790
    47
krauss@43692
    48
ISABELLE_USEDIR_OPTIONS="%s"
haftmann@48061
    49
krauss@42973
    50
Z3_NON_COMMERCIAL="yes"
haftmann@48061
    51
haftmann@49197
    52
source "${ISABELLE_HOME}/Admin/init_components"
haftmann@49197
    53
krauss@42977
    54
%s
krauss@43692
    55
''' % (isabelle_path, usedir_options, more_settings)
haftmann@41790
    56
haftmann@41790
    57
    writer = open(path.join(loc_isabelle, 'etc', 'settings'), 'a')
haftmann@41790
    58
    writer.write(extra_settings)
haftmann@41790
    59
    writer.close()
haftmann@41790
    60
haftmann@41790
    61
krauss@46035
    62
def isabelle_getenv(isabelle_home, var):
krauss@46035
    63
krauss@46035
    64
    _, out = env.run_process('%s/bin/isabelle' % isabelle_home, 'getenv', var)
krauss@46035
    65
    return out.split('=', 1)[1].strip()
krauss@46035
    66
krauss@46035
    67
haftmann@41790
    68
def extract_isabelle_run_timing(logdata):
haftmann@41790
    69
haftmann@41790
    70
    def to_secs(h, m, s):
haftmann@41790
    71
        return (int(h) * 60 + int(m)) * 60 + int(s)
haftmann@41790
    72
    pat = r'Finished (\S+) \((\d+):(\d+):(\d+) elapsed time, (\d+):(\d+):(\d+) cpu time'
krauss@43057
    73
    pat2 = r'Timing (\S+) \((\d+) threads, (\d+\.\d+)s elapsed time, (\d+\.\d+)s cpu time, (\d+\.\d+)s GC time, factor (\d+\.\d+)\)'
haftmann@41790
    74
    t = dict((name, {'elapsed': to_secs(eh,em,es), 'cpu': to_secs(ch,cm,cs)})
haftmann@41790
    75
             for name, eh, em, es, ch, cm, cs in re.findall(pat, logdata))
krauss@43057
    76
    for name, threads, elapsed, cpu, gc, factor in re.findall(pat2, logdata):
haftmann@41790
    77
haftmann@41790
    78
        if name not in t:
haftmann@41790
    79
            t[name] = {}
haftmann@41790
    80
haftmann@41790
    81
        t[name]['threads'] = int(threads)
haftmann@41790
    82
        t[name]['elapsed_inner'] = elapsed
haftmann@41790
    83
        t[name]['cpu_inner'] = cpu
haftmann@41790
    84
        t[name]['gc'] = gc
krauss@43057
    85
        t[name]['factor'] = factor
haftmann@41790
    86
haftmann@41790
    87
    return t
haftmann@41790
    88
haftmann@41790
    89
haftmann@41790
    90
def extract_isabelle_run_summary(logdata):
haftmann@41790
    91
krauss@42765
    92
    re_error = re.compile(r'^(?:make: )?\*\*\* (.*)$', re.MULTILINE)
haftmann@41790
    93
    summary = '\n'.join(re_error.findall(logdata))
haftmann@41790
    94
    if summary == '':
haftmann@41790
    95
        summary = 'ok'
haftmann@41790
    96
haftmann@41790
    97
    return summary
haftmann@41790
    98
haftmann@41790
    99
krauss@46035
   100
def extract_image_size(isabelle_home):
krauss@46035
   101
    
krauss@46035
   102
    isabelle_output = isabelle_getenv(isabelle_home, 'ISABELLE_OUTPUT')
krauss@46035
   103
    return dict((p, path.getsize(path.join(isabelle_output, p))) for p in os.listdir(isabelle_output) if p != "log")
krauss@46035
   104
krauss@46035
   105
def extract_report_data(isabelle_home, logdata):
krauss@46035
   106
krauss@46035
   107
    return {
krauss@46035
   108
        'timing': extract_isabelle_run_timing(logdata),
krauss@46035
   109
        'image_size': extract_image_size(isabelle_home) }
krauss@46035
   110
krauss@46035
   111
krauss@43255
   112
@tool
krauss@43255
   113
def import_isatest_log(env, conf, logfile):
krauss@43255
   114
krauss@43255
   115
    """Imports isatest log file as a report."""
krauss@43255
   116
krauss@43255
   117
    def the_match(pat, text, name):
krauss@43255
   118
        match = re.search(pat, text)
krauss@43255
   119
        if not match: raise Exception('No match found for ' + name)
krauss@43255
   120
        return match.groups()
krauss@43255
   121
krauss@43255
   122
    def parse_date(d):
krauss@43255
   123
        return datetime.strptime(d, '%a %b %d %H:%M:%S %Z %Y')
krauss@43255
   124
krauss@43255
   125
    log = util.readfile(logfile)
krauss@43255
   126
krauss@43255
   127
    (begin_date, host) = the_match(r'-+ starting test -+ ([^-]*) -+ (\S*)', log, 'start tag')
krauss@43255
   128
    (isabelle_version,) = the_match(r'Isabelle version: ([a-f0-9]{12})', log, 'Isabelle version')
krauss@43255
   129
    (success, end_date) = the_match(r'-+ test (successful|FAILED) -+ ([^-]*) -', log, 'end tag')
krauss@43255
   130
    summary = extract_isabelle_run_summary(log)
krauss@43255
   131
    data = {'timing': extract_isabelle_run_timing(log)}
krauss@43255
   132
    atts = {'log': Lazy.simple(log)}
krauss@43255
   133
krauss@43255
   134
    content = Report_Content(summary, host, parse_date(begin_date),
krauss@43255
   135
      parse_date(end_date), Lazy.simple(data), atts)
krauss@43255
   136
    revision = ('Isabelle', env.repositories.get('Isabelle')[isabelle_version].hex())
krauss@43255
   137
    case = Case(conf, [revision])
krauss@43255
   138
krauss@43255
   139
    env.report_db.put(case, (success == 'successful'), content)
krauss@43255
   140
krauss@43255
   141
krauss@43255
   142
haftmann@41790
   143
def isabelle_usedir(env, isa_path, isabelle_usedir_opts, base_image, dir_name):
haftmann@41790
   144
haftmann@41790
   145
    return env.run_process('%s/bin/isabelle' % isa_path, 'usedir',
haftmann@41790
   146
        isabelle_usedir_opts, base_image, dir_name)
haftmann@41790
   147
haftmann@41790
   148
haftmann@41790
   149
def isabelle_dependency_only(env, case, paths, dep_paths, playground):
haftmann@41790
   150
krauss@42978
   151
    isabelle_home = paths[0]
krauss@42978
   152
    result = path.join(isabelle_home, 'heaps')
haftmann@41790
   153
    os.makedirs(result)
haftmann@41790
   154
    for dep_path in dep_paths:
haftmann@41790
   155
        subprocess.check_call(['cp', '-R'] + glob(dep_path + '/*') + [result])
haftmann@41790
   156
haftmann@41790
   157
    return (True, 'ok', {}, {}, result)
haftmann@41790
   158
haftmann@41790
   159
krauss@43692
   160
def build_isabelle_image(subdir, base, img, env, case, paths, dep_paths, playground,
krauss@43692
   161
  usedir_options=default_usedir_options, more_settings=''):
haftmann@41790
   162
krauss@42978
   163
    isabelle_home = paths[0]
haftmann@41790
   164
    dep_path = dep_paths[0]
krauss@43692
   165
    prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path,
krauss@43692
   166
      usedir_options=usedir_options, more_settings=more_settings)
krauss@42978
   167
    os.chdir(path.join(isabelle_home, 'src', subdir))
haftmann@41790
   168
krauss@42978
   169
    (return_code, log) = isabelle_usedir(env, isabelle_home, '-b', base, img)
haftmann@41790
   170
krauss@42978
   171
    result = path.join(isabelle_home, 'heaps')
krauss@46035
   172
haftmann@41790
   173
    return (return_code == 0, extract_isabelle_run_summary(log),
krauss@46035
   174
      extract_report_data(isabelle_home, log), {'log': log}, result)
haftmann@41790
   175
haftmann@41790
   176
krauss@43692
   177
def isabelle_make(subdir, env, case, paths, dep_paths, playground, usedir_options=default_usedir_options,
krauss@43692
   178
  more_settings='', target='all', keep_results=False):
krauss@42979
   179
krauss@42979
   180
    isabelle_home = paths[0]
krauss@42979
   181
    dep_path = dep_paths[0] if dep_paths else None
krauss@43692
   182
    prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path,
krauss@43692
   183
      usedir_options=usedir_options, more_settings=more_settings)
krauss@42979
   184
    os.chdir(path.join(isabelle_home, subdir))
krauss@42979
   185
krauss@42979
   186
    (return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'make', '-k', target)
krauss@42979
   187
krauss@43011
   188
    result = path.join(isabelle_home, 'heaps') if keep_results else None
krauss@46035
   189
krauss@42979
   190
    return (return_code == 0, extract_isabelle_run_summary(log),
krauss@46035
   191
      extract_report_data(isabelle_home, log), {'log': log}, result)
krauss@42979
   192
krauss@42979
   193
krauss@43692
   194
def isabelle_makeall(env, case, paths, dep_paths, playground, usedir_options=default_usedir_options,
krauss@43692
   195
  more_settings='', target='all', make_options=()):
haftmann@41790
   196
krauss@43694
   197
    if 'lxbroy10' in misc.hostnames():
krauss@43694
   198
        make_options += ('-j', '8')
wenzelm@47071
   199
        usedir_options += " -M 4 -q 2 -i false -d false"
krauss@43694
   200
        more_settings += '''
krauss@43694
   201
ML_PLATFORM="x86_64-linux"
krauss@46028
   202
ML_HOME="/home/polyml/polyml-5.4.1/x86_64-linux"
krauss@43694
   203
ML_SYSTEM="polyml-5.4.1"
wenzelm@47071
   204
ML_OPTIONS="-H 4000 --gcthreads 4"
bulwahn@44191
   205
bulwahn@44191
   206
ISABELLE_GHC="/usr/bin/ghc"
krauss@43694
   207
'''
krauss@43694
   208
krauss@42978
   209
    isabelle_home = paths[0]
krauss@42979
   210
    dep_path = dep_paths[0] if dep_paths else None
krauss@43692
   211
    prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path,
krauss@43692
   212
      usedir_options=usedir_options, more_settings=more_settings)
krauss@42978
   213
    os.chdir(isabelle_home)
haftmann@41790
   214
krauss@42985
   215
    (return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'makeall', '-k', *(make_options + (target,)))
haftmann@41790
   216
haftmann@41790
   217
    return (return_code == 0, extract_isabelle_run_summary(log),
krauss@46035
   218
      extract_report_data(isabelle_home, log), {'log': log}, None)
haftmann@41790
   219
haftmann@41790
   220
krauss@44555
   221
def make_pure(env, case, paths, dep_paths, playground, more_settings=''):
haftmann@41790
   222
krauss@42978
   223
    isabelle_home = paths[0]
krauss@44555
   224
    prepare_isabelle_repository(isabelle_home, env.settings.contrib, '',
krauss@44555
   225
      more_settings=more_settings)
krauss@42978
   226
    os.chdir(path.join(isabelle_home, 'src', 'Pure'))
haftmann@41790
   227
krauss@42978
   228
    (return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'make', 'Pure')
haftmann@41790
   229
krauss@42978
   230
    result = path.join(isabelle_home, 'heaps')
haftmann@41790
   231
    return (return_code == 0, extract_isabelle_run_summary(log),
haftmann@41790
   232
      {'timing': extract_isabelle_run_timing(log)}, {'log': log}, result)
haftmann@41790
   233
krauss@44555
   234
krauss@44555
   235
# Isabelle configurations
krauss@44555
   236
krauss@44555
   237
@configuration(repos = [Isabelle], deps = [])
krauss@44555
   238
def Pure(*args):
krauss@44555
   239
    """Pure image"""
krauss@44555
   240
    return make_pure(*args)
krauss@44555
   241
haftmann@41790
   242
@configuration(repos = [Isabelle], deps = [(Pure, [0])])
haftmann@41790
   243
def HOL(*args):
haftmann@41790
   244
    """HOL image"""
haftmann@41790
   245
    return build_isabelle_image('HOL', 'Pure', 'HOL', *args)
haftmann@41790
   246
haftmann@47794
   247
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@47794
   248
def HOL_Library(*args):
haftmann@47794
   249
    """HOL-Library image"""
haftmann@47794
   250
    return build_isabelle_image('HOL', 'HOL', 'HOL-Library', *args)
haftmann@47794
   251
haftmann@47794
   252
@configuration(repos = [Isabelle], deps = [(Pure, [0])])
haftmann@47794
   253
def ZF(*args):
haftmann@47794
   254
    """ZF image"""
haftmann@47794
   255
    return build_isabelle_image('ZF', 'Pure', 'ZF', *args)
haftmann@47794
   256
haftmann@47794
   257
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@47794
   258
def HOL_HOLCF(*args):
haftmann@47794
   259
    """HOLCF image"""
haftmann@47794
   260
    return build_isabelle_image('HOL/HOLCF', 'HOL', 'HOLCF', *args)
haftmann@47794
   261
bulwahn@48910
   262
settings64='''
bulwahn@48910
   263
ML_PLATFORM=x86_64-linux
bulwahn@48910
   264
ML_HOME="/home/polyml/polyml-5.4.1/x86_64-linux"
bulwahn@48910
   265
ML_SYSTEM="polyml-5.4.1"
bulwahn@48910
   266
'''
bulwahn@48910
   267
bulwahn@48912
   268
@configuration(repos = [Isabelle], deps = [])
bulwahn@48912
   269
def Pure_64(*args):
bulwahn@48912
   270
    """Pure image (64 bit)"""
bulwahn@48912
   271
    return make_pure(*args, more_settings=settings64)
bulwahn@48912
   272
krauss@44555
   273
@configuration(repos = [Isabelle], deps = [(Pure_64, [0])])
krauss@44555
   274
def HOL_64(*args):
krauss@44555
   275
    """HOL image (64 bit)"""
bulwahn@48910
   276
    return build_isabelle_image('HOL', 'Pure', 'HOL', *args, more_settings=settings64)
haftmann@41790
   277
krauss@44555
   278
@configuration(repos = [Isabelle], deps = [(HOL_64, [0])])
krauss@44555
   279
def HOL_HOLCF_64(*args):
krauss@44555
   280
    """HOL-HOLCF image (64 bit)"""
bulwahn@48910
   281
    return build_isabelle_image('HOL/HOLCF', 'HOL', 'HOLCF', *args, more_settings=settings64)
haftmann@41790
   282
krauss@44555
   283
@configuration(repos = [Isabelle], deps = [(HOL_64, [0])])
krauss@44555
   284
def HOL_Nominal_64(*args):
krauss@44555
   285
    """HOL-Nominal image (64 bit)"""
bulwahn@48910
   286
    return build_isabelle_image('HOL/Nominal', 'HOL', 'HOL-Nominal', *args, more_settings=settings64)
krauss@44555
   287
krauss@44555
   288
@configuration(repos = [Isabelle], deps = [(HOL_64, [0])])
krauss@44555
   289
def HOL_Word_64(*args):
krauss@44555
   290
    """HOL-Word image (64 bit)"""
bulwahn@48910
   291
    return build_isabelle_image('HOL/Word', 'HOL', 'HOL-Word', *args, more_settings=settings64)
haftmann@41790
   292
haftmann@41790
   293
@configuration(repos = [Isabelle], deps = [
krauss@44555
   294
    (HOL_64, [0]),
krauss@44555
   295
    (HOL_HOLCF_64, [0]),
krauss@44555
   296
    (HOL_Nominal_64, [0]),
krauss@44555
   297
    (HOL_Word_64, [0])
haftmann@41790
   298
  ])
haftmann@41790
   299
def AFP_images(*args):
krauss@44555
   300
    """Isabelle images needed for the AFP (64 bit)"""
haftmann@41790
   301
    return isabelle_dependency_only(*args)
haftmann@41790
   302
krauss@43693
   303
@configuration(repos = [Isabelle], deps = [])
haftmann@41790
   304
def Isabelle_makeall(*args):
haftmann@41790
   305
    """Isabelle makeall"""
haftmann@41790
   306
    return isabelle_makeall(*args)
haftmann@41790
   307
haftmann@41790
   308
haftmann@47794
   309
# distribution and documentation Build
haftmann@47791
   310
haftmann@47791
   311
@configuration(repos = [Isabelle], deps = [])
haftmann@47791
   312
def Distribution(env, case, paths, dep_paths, playground):
haftmann@47794
   313
    """Build of distribution"""
haftmann@47791
   314
    ## FIXME This is rudimentary; study Admin/CHECKLIST to complete this configuration accordingly
haftmann@47791
   315
    isabelle_home = paths[0]
wenzelm@49205
   316
    (return_code, log) = env.run_process(path.join(isabelle_home, 'Admin', 'Release', 'makedist'),
haftmann@47791
   317
      REPOS = repositories.get(Isabelle).local_path, DISTPREFIX = os.getcwd())
haftmann@47791
   318
    return (return_code == 0, '', ## FIXME might add summary here
haftmann@47791
   319
      {}, {'log': log}, None) ## FIXME might add proper result here
haftmann@47791
   320
haftmann@47794
   321
@configuration(repos = [Isabelle], deps = [
haftmann@47794
   322
    (HOL, [0]),
haftmann@47794
   323
    (HOL_HOLCF, [0]),
haftmann@47794
   324
    (ZF, [0]),
haftmann@47794
   325
    (HOL_Library, [0])
haftmann@47794
   326
  ])
haftmann@47794
   327
def Documentation_images(*args):
haftmann@47794
   328
    """Isabelle images needed to build the documentation"""
haftmann@47794
   329
    return isabelle_dependency_only(*args)
haftmann@47794
   330
haftmann@47794
   331
@configuration(repos = [Isabelle], deps = [(Documentation_images, [0])])
haftmann@47794
   332
def Documentation(env, case, paths, dep_paths, playground):
haftmann@47794
   333
    """Build of documentation"""
haftmann@47794
   334
    isabelle_home = paths[0]
haftmann@47794
   335
    dep_path = dep_paths[0]
haftmann@47794
   336
    prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path,
haftmann@47794
   337
      usedir_options = default_usedir_options)
haftmann@47794
   338
    (return_code, log) = env.run_process(path.join(isabelle_home, 'Admin', 'build', 'doc-src'))
haftmann@47794
   339
    return (return_code == 0, extract_isabelle_run_summary(log),
haftmann@47794
   340
      extract_report_data(isabelle_home, log), {'log': log}, None)
haftmann@47794
   341
haftmann@47791
   342
haftmann@41790
   343
# Mutabelle configurations
haftmann@41790
   344
haftmann@41790
   345
def invoke_mutabelle(theory, env, case, paths, dep_paths, playground):
haftmann@41790
   346
haftmann@41790
   347
    """Mutant testing for counterexample generators in Isabelle"""
haftmann@41790
   348
haftmann@41790
   349
    (loc_isabelle,) = paths
haftmann@41790
   350
    (dep_isabelle,) = dep_paths
bulwahn@43993
   351
    more_settings = '''
bulwahn@43994
   352
ISABELLE_GHC="/usr/bin/ghc"
bulwahn@43993
   353
'''
bulwahn@43993
   354
    prepare_isabelle_repository(loc_isabelle, env.settings.contrib, dep_isabelle,
bulwahn@43993
   355
      more_settings = more_settings)
haftmann@41790
   356
    os.chdir(loc_isabelle)
haftmann@41790
   357
    
haftmann@41790
   358
    (return_code, log) = env.run_process('bin/isabelle',
haftmann@41790
   359
      'mutabelle', '-O', playground, theory)
haftmann@41790
   360
    
haftmann@41790
   361
    try:
haftmann@41790
   362
        mutabelle_log = util.readfile(path.join(playground, 'log'))
haftmann@41790
   363
    except IOError:
haftmann@41790
   364
        mutabelle_log = ''
haftmann@41790
   365
krauss@43343
   366
    mutabelle_data = dict(
krauss@43343
   367
        (tool, {'counterexample': c, 'no_counterexample': n, 'timeout': t, 'error': e})
krauss@43343
   368
        for tool, c, n, t, e in re.findall(r'(\S+)\s+: C: (\d+) N: (\d+) T: (\d+) E: (\d+)', log))
krauss@43343
   369
haftmann@41790
   370
    return (return_code == 0 and mutabelle_log != '', extract_isabelle_run_summary(log),
krauss@43343
   371
      {'mutabelle_results': {theory: mutabelle_data}},
haftmann@42521
   372
      {'log': log, 'mutabelle_log': mutabelle_log}, None)
haftmann@41790
   373
krauss@43789
   374
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   375
def Mutabelle_Relation(*args):
haftmann@41790
   376
    """Mutabelle regression suite on Relation theory"""
haftmann@41790
   377
    return invoke_mutabelle('Relation', *args)
haftmann@41790
   378
krauss@43789
   379
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   380
def Mutabelle_List(*args):
haftmann@41790
   381
    """Mutabelle regression suite on List theory"""
haftmann@41790
   382
    return invoke_mutabelle('List', *args)
haftmann@41790
   383
krauss@43789
   384
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   385
def Mutabelle_Set(*args):
haftmann@41790
   386
    """Mutabelle regression suite on Set theory"""
haftmann@41790
   387
    return invoke_mutabelle('Set', *args)
haftmann@41790
   388
krauss@43789
   389
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   390
def Mutabelle_Map(*args):
haftmann@41790
   391
    """Mutabelle regression suite on Map theory"""
haftmann@41790
   392
    return invoke_mutabelle('Map', *args)
haftmann@41790
   393
krauss@43789
   394
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   395
def Mutabelle_Divides(*args):
haftmann@41790
   396
    """Mutabelle regression suite on Divides theory"""
haftmann@41790
   397
    return invoke_mutabelle('Divides', *args)
haftmann@41790
   398
krauss@43789
   399
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   400
def Mutabelle_MacLaurin(*args):
haftmann@41790
   401
    """Mutabelle regression suite on MacLaurin theory"""
haftmann@41790
   402
    return invoke_mutabelle('MacLaurin', *args)
haftmann@41790
   403
krauss@43789
   404
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   405
def Mutabelle_Fun(*args):
haftmann@41790
   406
    """Mutabelle regression suite on Fun theory"""
haftmann@41790
   407
    return invoke_mutabelle('Fun', *args)
krauss@42910
   408
krauss@43256
   409
mutabelle_confs = 'Mutabelle_Relation Mutabelle_List Mutabelle_Set Mutabelle_Map Mutabelle_Divides Mutabelle_MacLaurin Mutabelle_Fun'.split(' ')
krauss@43256
   410
krauss@43256
   411
@scheduler()
krauss@43256
   412
def mutabelle_scheduler(env):
krauss@43256
   413
    """Scheduler for Mutabelle."""
krauss@43256
   414
    return schedule.age_scheduler(env, 'Isabelle', mutabelle_confs)
krauss@42910
   415
bulwahn@48911
   416
krauss@42910
   417
# Judgement Day configurations
krauss@42910
   418
krauss@42959
   419
judgement_day_provers = ('e', 'spass', 'vampire', 'z3', 'cvc3', 'yices')
krauss@42910
   420
krauss@42910
   421
def judgement_day(base_path, theory, opts, env, case, paths, dep_paths, playground):
krauss@42910
   422
    """Judgement Day regression suite"""
krauss@42910
   423
krauss@42910
   424
    isa = paths[0]
krauss@42910
   425
    dep_path = dep_paths[0]
krauss@42910
   426
krauss@42910
   427
    os.chdir(path.join(playground, '..', base_path)) # Mirabelle requires specific cwd
krauss@42910
   428
    prepare_isabelle_repository(isa, env.settings.contrib, dep_path)
krauss@42910
   429
krauss@42910
   430
    output = {}
krauss@42910
   431
    success_rates = {}
krauss@42910
   432
    some_success = False
krauss@42910
   433
krauss@42910
   434
    for atp in judgement_day_provers:
krauss@42910
   435
krauss@42910
   436
        log_dir = path.join(playground, 'mirabelle_log_' + atp)
krauss@42910
   437
        os.makedirs(log_dir)
krauss@42910
   438
krauss@42910
   439
        cmd = ('%s/bin/isabelle mirabelle -q -O %s sledgehammer[prover=%s,%s] %s.thy'
krauss@42910
   440
               % (isa, log_dir, atp, opts, theory))
krauss@42910
   441
krauss@42910
   442
        os.system(cmd)
krauss@42910
   443
        output[atp] = util.readfile(path.join(log_dir, theory + '.log'))
krauss@42910
   444
krauss@42910
   445
        percentages = list(re.findall(r'Success rate: (\d+)%', output[atp]))
krauss@42910
   446
        if len(percentages) == 2:
krauss@42910
   447
            success_rates[atp] = {
krauss@42910
   448
                'sledgehammer': int(percentages[0]),
krauss@42910
   449
                'metis': int(percentages[1])}
krauss@42910
   450
            if success_rates[atp]['sledgehammer'] > 0:
krauss@42910
   451
                some_success = True
krauss@42910
   452
        else:
krauss@42910
   453
            success_rates[atp] = {}
krauss@42910
   454
krauss@42910
   455
krauss@42910
   456
    data = {'success_rates': success_rates}
krauss@42910
   457
    raw_attachments = dict((atp + "_output", output[atp]) for atp in judgement_day_provers)
krauss@42910
   458
    # FIXME: summary?
krauss@42910
   459
    return (some_success, '', data, raw_attachments, None)
krauss@42910
   460
krauss@42910
   461
krauss@43789
   462
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   463
def JD_NS(*args):
krauss@42910
   464
    """Judgement Day regression suite NS"""
krauss@42910
   465
    return judgement_day('Isabelle/src/HOL/Auth', 'NS_Shared', 'prover_timeout=10', *args)
krauss@42910
   466
krauss@43789
   467
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   468
def JD_FTA(*args):
krauss@42910
   469
    """Judgement Day regression suite FTA"""
krauss@42910
   470
    return judgement_day('Isabelle/src/HOL/Library', 'Fundamental_Theorem_Algebra', 'prover_timeout=10', *args)
krauss@42910
   471
krauss@43789
   472
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   473
def JD_Hoare(*args):
krauss@42910
   474
    """Judgement Day regression suite Hoare"""
krauss@42913
   475
    return judgement_day('Isabelle/src/HOL/IMPP', 'Hoare', 'prover_timeout=10', *args)
krauss@42910
   476
krauss@43789
   477
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   478
def JD_SN(*args):
krauss@42910
   479
    """Judgement Day regression suite SN"""
krauss@42913
   480
    return judgement_day('Isabelle/src/HOL/Proofs/Lambda', 'StrongNorm', 'prover_timeout=10', *args)
krauss@42910
   481
krauss@42980
   482
krauss@43063
   483
JD_confs = 'JD_NS JD_FTA JD_Hoare JD_SN JD_Arrow JD_FFT JD_Jinja JD_QE JD_S2S'.split(' ')
krauss@43063
   484
krauss@43063
   485
@scheduler()
krauss@43068
   486
def judgement_day_scheduler(env):
krauss@43063
   487
    """Scheduler for Judgement Day."""
krauss@43063
   488
    return schedule.age_scheduler(env, 'Isabelle', JD_confs)
krauss@43063
   489
krauss@43063
   490
krauss@42980
   491
# SML/NJ
krauss@42980
   492
krauss@42980
   493
smlnj_settings = '''
krauss@42980
   494
ML_SYSTEM=smlnj
wenzelm@49458
   495
ML_HOME="/home/smlnj/110.74/bin"
wenzelm@49458
   496
ML_OPTIONS="@SMLdebug=/dev/null @SMLalloc=1024"
krauss@42980
   497
ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX")
krauss@42980
   498
'''
krauss@42980
   499
krauss@42980
   500
@configuration(repos = [Isabelle], deps = [])
krauss@42980
   501
def SML_HOL(*args):
krauss@42980
   502
    """HOL image built with SML/NJ"""
krauss@43011
   503
    return isabelle_make('src/HOL', *args, more_settings=smlnj_settings, target='HOL', keep_results=True)
krauss@42980
   504
krauss@42980
   505
@configuration(repos = [Isabelle], deps = [])
krauss@42980
   506
def SML_makeall(*args):
krauss@42980
   507
    """Makeall built with SML/NJ"""
krauss@43002
   508
    return isabelle_makeall(*args, more_settings=smlnj_settings, target='smlnj', make_options=('-j', '3'))
krauss@44765
   509
krauss@44765
   510
krauss@44765
   511
krauss@44765
   512
# Importer
krauss@44765
   513
krauss@44765
   514
@configuration(repos = ['Hollight'], deps = [])
krauss@44765
   515
def Hollight_proof_objects(env, case, paths, dep_paths, playground):
krauss@44765
   516
    """Build proof object bundle from HOL Light"""
krauss@44765
   517
krauss@44765
   518
    hollight_home = paths[0]
krauss@44765
   519
    os.chdir(os.path.join(hollight_home, 'Proofrecording', 'hol_light'))
krauss@44765
   520
krauss@44765
   521
    subprocess.check_call(['make'])
krauss@44768
   522
    (return_code, _) = util.run_process.run_process(
krauss@44765
   523
       '''echo -e '#use "hol.ml";;\n export_saved_proofs None;;' | ocaml''',
krauss@44765
   524
       environment={'HOLPROOFEXPORTDIR': './proofs_extended', 'HOLPROOFOBJECTS': 'EXTENDED'},
krauss@44765
   525
       shell=True)
krauss@44765
   526
    subprocess.check_call('tar -czf proofs_extended.tar.gz proofs_extended'.split(' '))
krauss@44765
   527
    subprocess.check_call(['mv', 'proofs_extended.tar.gz', playground])
krauss@44765
   528
krauss@44765
   529
    return (return_code == 0, '', {}, {}, playground)
krauss@44765
   530
krauss@44765
   531
krauss@44765
   532
@configuration(repos = [Isabelle, 'Hollight'], deps = [(Hollight_proof_objects, [1])])
krauss@44765
   533
def HOL_Generate_HOLLight(env, case, paths, dep_paths, playground):
krauss@44765
   534
    """Generated theories by HOL Light import"""
krauss@44765
   535
krauss@44765
   536
    os.chdir(playground)
krauss@44765
   537
    subprocess.check_call(['tar', '-xzf', path.join(dep_paths[0], 'proofs_extended.tar.gz')])
krauss@44765
   538
    proofs_dir = path.join(playground, 'proofs_extended')
krauss@44765
   539
krauss@44765
   540
    return isabelle_make('src/HOL', env, case, paths, dep_paths, playground,
krauss@44774
   541
      more_settings=('HOL4_PROOFS="%s"' % proofs_dir), target='HOL-Generate-HOLLight')