Exemplo n.º 1
0
 public function ACT_return()
 {
     $server = new BFL_RemoteAccess_Server($this->config->getVar('judge_return_key'));
     $server->bindFunction('writeRecord', array($this, 'writeRecord'));
     $server->listen();
 }
Exemplo n.º 2
0
<?php

define('DEBUG_MODE', true);
require_once 'lib/lib.php';
error_reporting(E_ALL | E_STRICT);
set_error_handler("logErrorHandler", E_ALL | E_STRICT);
$config_check_result = check_config();
$private_key = Config::getInstance()->getVar('private_key');
set_time_limit(0);
ignore_user_abort(true);
if ($config_check_result != '') {
    writelog('Config error');
}
$server = new BFL_RemoteAccess_Server($private_key);
$server->bindFunction('getState', 'action_getState');
$server->bindFunction('judge', 'action_judge');
$server->bindFunction('stopJudge', 'action_stopJudge');
$server->bindFunction('getTestdataVersion', 'action_getTestdataVersion');
$server->bindFunction('updateTestdata', 'action_updateTestdata');
if (!$server->listen()) {
    include 'module/console/console.php';
}
function action_getState()
{
    global $config_check_result;
    if ($config_check_result != '') {
        return 'config error: ' . $config_check_result;
    }
    return 'ready';
}
function action_judge($task)