With this document it should be clear how to create a new task in the terry format and how to parse it from its components.
Each task is composed by the following components:
- Generator: a program that given a seed generates an input file.
- Validator: a program that given an input file checks that it is valid w.r.t the problem statement.
- Checker: a program that given an input file and an output file, parses them and emits some metadata (e.g. the score, messages, ...).
- Solution: a program that given an input file produces an output file.
- Input file: a text file containing some instances of the task.
- Output file: a text file containing the solution of the instances relative to an input file.
- Seed: an integer value used to produce deterministically an input file.
When a solution has to be tested the following steps will be executed serially:
- A seed
S
is chosen (e.g randomly generating it). - An input file
I
is produced executing the generator providingS
as the first command line argument.I
is the standard output of the generator. A non-zero exit code means generation failed and the evaluation fails. - If the validator is present: run the validator passing
I
to its standard input. A non-zero exit code means invalid input,I
is discarded and the evaluation fails. - The solution is executed:
- During the testing of the task the solution is executed passing
I
to its standard input and capturing the output fileO
from its standard output. A non-zero exit code means solution failed and the evaluation fails. - During the contest, the contestant compiles his solution and runs it however he wants to produce the output file
O
.
- During the testing of the task the solution is executed passing
- The checker is executed passing
I
andO
as command line arguments and it prints the resultsR
to standard output. A non-zero exit code means checker failed and the evaluation fails.R
should be a JSON value following the checker result specification below.
For begin valid a task in terry format should follow this directory structure:
- root task directory: its name should (but it's not enforced) be called as the task name.
managers/
in this directory all the managers (generator, validator and checker) are placed.generator.OS.ARCH
: the executable of the generator.validator.OS.ARCH
: the executable of the validator (optional).checker.OS.ARCH
: the executable of the checker.solution.OS.ARCH
: the executable of the official solution (optional).
solutions/
in this directory all the solutions are placed.- Any solution to be tested during the task development.
statement/
in this directory all the statement-related files are places.statement.md
: the main statement file of the task.- Any other statement related files.
task.yaml
the metadata of the task, following the task metadata specification below.
Additionally any other file can be placed in those and other directories. By convention inside managers/
there may be the source files of the managers (with the same name, but different extensions) and let the build tool create the the .OS.ARCH
files.
In order to allow the contest environment to be run on various architectures without repacking the task, more than a manager can be present, compiled for the various architectures. The .OS.ARCH
extension is used to switch between the various managers.
The value of OS
corresponds to the value of platform.system().lower()
in Python. The value of ARCH
corresponds to the value of platform.machine().lower()
. The most typical combinations of the two are: .linux.x86_64
and .linux.i686
.
The solutions in the solutions/
directory are used only during the development of the task and may not be present during the contest. If the solution in managers
is present it should be compiled by the build tool and will be accessible to the other managers.
The task.yaml
file inside the task root directory should be a YAML file with at least the following fields:
field | required | example | Info |
---|---|---|---|
name |
yes | "poldo" |
The short name of the task (usually all lowercase, without spaces) |
description |
yes | "La dieta di Poldo" |
A longer name of the task (usually title-case) |
max_score |
yes | 42 |
Maximum score obtainable with a 100% correct solution of this task |
submission_timeout |
no | 600 |
If specified, the maximum time (in seconds) to submit a solution for an input |
The contest.yaml
file (actually __users__/{username}.yaml
, where {username}
is what's before the first -
in the admin token) should follow this format:
field | required | example | Info |
---|---|---|---|
duration |
yes | 7200 |
Duration of the contest, in seconds |
name |
no | "Contest For Fun" |
Name of the contest, shown in the navbar and in the homepage |
description |
no | "A nice description" |
A markdown description of the contest, with Mathjax support |
window_duration |
no | 3600 |
If specified the contestants will have this amount of time (in seconds) from the first login |
tasks |
yes | ["task1", "task2"] |
List with the task names, in the correct order |
users |
yes | [ user1, user2 ] |
List with the users in the contest, see the format below |
Each user in the users
list should follow this format:
field | required | example | Info |
---|---|---|---|
token |
yes | "s3cr3t" |
Token that the user use to log in |
name |
yes | "John" |
First name of the user |
surname |
yes | "Doe" |
Last name of the user |
The pack file also contains a yaml section with some public information about the contest. Those information are stored unencrypted and are available to the frontend even without being logged in.
They are used to customize the frontend before the contest is extracted and before the user is logged in. The metadata yaml should follow this format:
field | required | example | Info |
---|---|---|---|
name |
yes | "Contest For Fun" |
Name of the contest, it should be the same as in the contest |
description |
yes | "A not so nice description" |
A markdown description of the contest, with Mathjax support. See note below. |
deletable |
no | true |
If true is specified the contest can be reset from the admin interface, otherwise the server will lock and use only this pack. |
sections |
no | see below | Extra custom pages to include in the frontend. See below. |
Note about description
: it is not required that the description encrypted inside the pack and the one inside the public metadata are the same.
The public one will be shown to the user before they log in and may contain useful information on how to log in (e.g. using SSO, or how to the window works).
After the login only the description inside the pack is shown and can contain information about the tasks.
The sections
metadata should be an array of objects following this format:
field | required | example | Info |
---|---|---|---|
name |
yes | "Extra material" |
The title of the page, shown in the navbar |
url |
yes | "extra-material" |
The url to use for the new page |
page |
yes | "## some content" |
The markdown content of the page, with Mathjax support |
Note about metadata size: using an old version of terry the yaml-serialized metadata cannot be longer than 1024 bytes. The last version of the pack supports up to 4GB metadata files.
The checker should print to its standard output a JSON value with at least the following fields:
score
: a float value from 0.0 to 1.0.validation
: the data visible to the contestant even before submitting the file. It's an object with at least the following fields:cases
: an array with the validation results, i.e. some parsing information about the validity of the output files. The array should have as many items as test cases in the input file, in the same order. Each item should be an object with at least the following fields:status
: the status of the parsing of the test case, a string with one of the following values:"missing"
,"parsed"
or"invalid"
.message
(optional): a textual message showed to the user, even before confirming the submission. It should not contain the outcome of the test case (i.e. its score), since the user may decide to discard the submission and try again using the same input file.
alerts
: a list of messages to show to the contestant, unrelated to any specific test case. Each item should be an object with at least the following fields:severity
: a string with one of the following values:"warning"
message
: the message to show to the contestant.
feedback
: the data visible to the contestant after he confirms the submission. It's an object with at least the following fields:cases
: an array with the actual results of the solution. The array should have as many items as test cases in the input file, in the same order. Each item should be an object with at least the following fields:correct
: a boolean value indicating whether the test cases is completely correct.message
(optional): a string with a message to the contestant about this evaluation.
alerts
: a list of messages to show to the contestant, unrelated to any specific test case. Each item should be an object with at least the following fields:severity
: a string with one of the following values:"warning"
message
: the message to show to the contestant.
The checker should be very resilient to invalid output files submitted by the contestant. To avoid writing every time the parsing code a Python library is available here. Note that it's useful only for the Case #1: ...
output format.