Download the PHP package yusufs/grader without Composer
On this page you can find all versions of the php package yusufs/grader. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download yusufs/grader
More information about yusufs/grader
Files in yusufs/grader
Package grader
Short Description Online judge
License MIT
Homepage https://github.com/yusufs/grader
Informations about the package grader
GRADER
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:
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.
After that you have to compile the sandbox program. Compile sandbox.c with this following command:
Note:
- Please note that you must compile the sandbox.c program to
sandbox
filename. 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.
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
example output
Compile code to program
@param filename of script
example output
Save the input
@param content of input
example output
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)
example output
Compare program
used to compare the output of the two programs at once
example 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.