PHP Класс judge_base, moodle-local_onlinejudge

Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
$language language id without judge id
$task object of the task

Открытые методы

Метод Описание
__construct ( $task )
get_compiler_info ( string $language ) : compiler Return the infomation of the compiler of specified language
get_languages ( ) Return an array of programming languages supported by this judge
is_available ( ) : true Whether the judge is avaliable
judge ( ) : updated Judge the current task
parse_options ( $options, &$task ) : throw Put options into task

Защищенные методы

Метод Описание
convert_to_utf8 ( $string ) If string is not encoded in UTF-8, convert it into utf-8 charset
create_temp_files ( ) : array Save files of current task to a temp directory
diff ( ) Compare the stdout of program and the output of testcase

Описание методов

__construct() публичный Метод

public __construct ( $task )

convert_to_utf8() защищенный Метод

If string is not encoded in UTF-8, convert it into utf-8 charset
protected convert_to_utf8 ( $string )

create_temp_files() защищенный Метод

Save files of current task to a temp directory
protected create_temp_files ( ) : array
Результат array of the full path of saved files

diff() защищенный Метод

Compare the stdout of program and the output of testcase
protected diff ( )

get_compiler_info() статический публичный Метод

Return the infomation of the compiler of specified language
static public get_compiler_info ( string $language ) : compiler
$language string ID of the language
Результат compiler information or null

get_languages() статический публичный Метод

The array key must be the language's ID, such as c_sandbox, python_ideone. The array value must be a human-readable name of the language, such as 'C (local)', 'Python (ideone.com)'
static public get_languages ( )

is_available() статический публичный Метод

Whether the judge is avaliable
static public is_available ( ) : true
Результат true for yes, false for no

judge() публичный Метод

Judge the current task
public judge ( ) : updated
Результат updated task or false

parse_options() статический публичный Метод

Put options into task
static public parse_options ( $options, &$task ) : throw
Результат throw exceptions on error

Описание свойств

$language защищенное свойство

language id without judge id
protected $language

$task защищенное свойство

object of the task
protected $task