summaryrefslogtreecommitdiff
path: root/prolog/common.py
blob: 41377bb2265d189f1c3e38806706aa86395d8c86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# coding=utf-8

import operator
import prolog.engine
from server.hints import Hint, HintSequence

hint_type = {
    'no_hint': HintSequence('no_hint', 4),
    'test_results': Hint('test_results'),
    'syntax_error': Hint('syntax_error'),
}

def hint(program, solved_problems):
    # Check program for syntax errors.
    engine_id, output = prolog.engine.create(code=program)
    if engine_id is not None:
        prolog.engine.destroy(engine_id)
    if 'error' in map(operator.itemgetter(0), output):
        errors_msg = '\n'.join(['{}: {}'.format(m_type, m_text) for m_type, m_text in output])
        return [{'id': 'syntax_error', 'args': {'messages': errors_msg}}]
    return []