yusufs/grader
Composer 安装命令:
composer require yusufs/grader
包简介
Online judge
README 文档
README
This is a library to create an online judge system based on PHP. Now you can easily compile or even run your program from PHP with only one line of code. Do not worry about the risk of damage to the system by malicious programs, because this library uses openjudge/sandbox used in online judge system for ACM/ICPC training. Refer to: https://openjudge.net/Solution/Sandbox and https://github.com/openjudge/sandbox
keyword: open judge, online judge php, laravel online judge
INSTALLATION
You can download a copy or clone from this repository if you want. But, there are easy way to include this library in to your project using Composer. Please include this in require composer.json:
require: {
"yusufs/grader": "1.0"
}
Setting up the library
Before using this library, there are several steps that must be done.
First, install sandbox library. I promise you need this, even at the first you say "WHAT THE HELL ABOUT THIS CONFIGURATION PROCESS". You need this to prevent malicious program damaging your system.
$ cd Yusufs/bashcode/Sandbox/libsandbox
$ ./configure
$ sudo make install
After that you have to compile the sandbox program. Compile sandbox.c with this following command:
gcc sandbox.c -o sandbox -lsandbox
Note:
- Please note that you must compile the sandbox.c program to
sandboxfilename. This is convention. Otherwise, the judge will not be run. - Do not to submit issues to the Sandbox, because it is an additional library from https://github.com/openjudge/sandbox/
Please make this following file is chmod 775
- compile.sh
- diff.sh
- runner.sh
- sandbox
Finishing up!
Don't forget to make storage directory in the root of your project, since this library will save all file in there.
$ mkdir storage
for example if you are using laravel 4.2.* the tree structure will look like this:
- app
- bootstrap
- public
- vendor
- CONTRIBUTING.md
- artisan
- composer.json
- phpunit.xml
- readme.md
- server.md
Now you must have those tree look like this
- app
- bootstrap
- public
- storage
- vendor
- CONTRIBUTING.md
- artisan
- composer.json
- phpunit.xml
- readme.md
- server.md
Done! Now you can use this library
USAGE
Here's the flow:
- you make a file to save your code,
- you compile your code and now it called as 'program' (an executable program),
- you make an input to run your program,
- you run your 'program' with your input,
- you get the detail about status
Here's is the status code:
- PD = Pending
- OK = Okay
- RF = Restricted Function
- ML = Memory Limit Exceed
- OL = Output Limit Exceed
- TL = Time Limit Exceed
- RT = Run Time Error (SIGSEGV, SIGFPE, ...)
- AT = Abnormal Termination
- IE = Internal Error (of sandbox executor)
- BP = Bad Policy (since version 0.3.3 of openjudge/sandbox)
Save the code or script
@param file extension @param code
return Yusufs\Grader::saveScript("c", "YOUR-CODE-HERE");
example output
{
success: true,
message: "File saved!",
detail: {
filename: "script_12031364091415211460.c",
path: "storage/scripts/",
extension: "c"
}
}
Compile code to program
@param filename of script
return Yusufs\Grader::compile("script_12031364091415211460.c");
example output
{
status: true,
message: "Now you can run this program.",
detail: {
reason: "compiled",
time: "3",
time_unit: "ms",
exit_code: "0",
program_path: "storage/scripts/script_12031364091415211460.c"
}
}
Save the input
@param content of input
return Yusufs\Grader::saveInput("PROGRAM-INPUT-HERE");
example output
{
success: true,
message: "File saved!",
detail: {
filename: "input_7204332951415211535.txt",
path: "storage/input/",
extension: "txt"
}
}
Run the program
@param program filename (the same as the script name) @param input filename @param time limit (in seconds) @param memory limit (in kiloBytes)
return Yusufs\Grader::run('script_12031364091415211460.c', 'input_7204332951415211535.txt', 1, 32000);
example output
{
status: true,
message: "You can now evaluate the result.",
detail: {
result: "OK",
cpu: "519",
vsize: "4288",
rss: "356",
cpu_unit: "ms",
vsize_unit: "kB",
rss_unit: "kB",
filename: "1415212611_output_of_input_7204332951415211535.txt",
path: "storage/output/"
}
}
Compare program
used to compare the output of the two programs at once
return Yusufs\Grader::compareProgram('script_7357485711415184458.cpp', 'script_7357485711415184458.cpp', 'input_7080103211415181065.txt', 1, 338592);
example output
{
judge: {
output_file_difference: false,
output_file_similarity: true
},
program1: {
status: true,
message: "You can now evaluate the result.",
detail: {
result: "OK",
cpu: "2",
vsize: "12620",
rss: "1064",
cpu_unit: "ms",
vsize_unit: "kB",
rss_unit: "kB",
filename: "1415212854_output_of_input_7080103211415181065.txt",
path: "storage/output/"
}
},
program2: {
status: true,
message: "You can now evaluate the result.",
detail: {
result: "OK",
cpu: "2",
vsize: "12620",
rss: "1064",
cpu_unit: "ms",
vsize_unit: "kB",
rss_unit: "kB",
filename: "1415212854_output_of_input_7080103211415181065.txt",
path: "storage/output/"
}
}
}
A BACKGROUND
there is no effect without cause - Yusuf Syaifudin, November 6, 2014 01:51AM
This library was made in furtherance of college assignment (TUGAS KHUSUS), where I feel I write code that is less neat, it is difficult to overhaul. "So, why not just make the library?" I thought. For that this library is created.
LICENSE
yusufs/grader 适用场景与选型建议
yusufs/grader 是一款 基于 C 开发的 Composer 扩展包,目前已累计 41 次下载、GitHub Stars 达 3, 最近一次更新时间为 2015 年 03 月 17 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「online judge」 「grader」 「acm judge」 「online judge php」 「laravel judge」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 yusufs/grader 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 yusufs/grader 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 yusufs/grader 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP Client for Sphere Engine
PHP and Laravel HackerRank Code Checker API
Judge handles feature and value toggles/flaggings for Laravel.
Laravel PayMob online payment gateway package
Simple Telegra.ph API PHP Client
Iranian payment gateways handler for laravel applicationss
统计信息
- 总下载量: 41
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-03-17