System.pc2.yaml
Contents
Overview
A system.pc2.yaml file contains information used to specify a contest configuration to PC2. Contest.yaml files are written in YAML and can be loaded into PC2 either by using the --load option (when starting a PC2 Server) or by selecting the Import contest.yaml button on the Import CCS Tab of the PC2 Admin Configure Contest screen.
A contest.yaml file consists of lines containing either colon-separated key:value pairs, or a list of items (called "mappings") starting with a dash. Whitespace (but not allowing tab characters) are used to indicate nested structure.
Contents of contest.yaml
For the current CLICS CCS specification for a contest.yaml file see CLICS contest.yaml
Key | Description |
---|---|
name | Name of contest |
short-name | Short name of contest |
start-time | Date and time in ISO 8601 format (wall-clock time that the contest starts) |
duration | Duration as h:mm:ss (length of contest, in contest time) |
scoreboard-freeze-length | Time before end of contest when scoreboard will be frozen form HH:MM:SS |
Example
# Contest Configuration, version 1.0 # PC^2 Version: Version 9.3 20110918 (Sunday, September 18th 2011 23:51 UTC) Java ver 1.6.0_20 build 2345 Windows XP 5.1 (x86) # Created: 2011-09-18 18:05:40 PDT name: Sample Contest short-name: SampCon elapsed: 0:00:00 remaining: 5:00:00 running: false # Freeze at 1 hour before the end of the contest scoreboard-freeze-length: 1:00:00
PC² specific keys and values
The article CCS Enhancements describes these entries in more detail.
Section | Description |
---|---|
sites | Sequence of mappings for Site information |
accounts | set of accounts to generate (same functionality as Generate Accounts) |
auto judge | Define Auto Judge assignments/settings |
replay | automatic Replay of previous contest feature |
Example
See descriptions in CCS Enhancements for info on these sections
accounts: - account: TEAM site: 1 count: 80 - account: JUDGE site: 1 count: 12 - account: SCOREBOARD site: 1 count: 1
auto-judging: - account: JUDGE site: 1 number: 2 letters: A enabled: yes - account: JUDGE site: 1 number: 4,5,6 letters: B,C,D - account: JUDGE site: 2 number: all letters: B,C,D - account: JUDGE site: 1 number: 1,3 letters: F enabled: no sites: - number: 2 name: 'Site 2' password: site2 IP: localhost port: 51002 - number: 3 name: 'Site 3' password: site3 IP: localhost port: 52002 - number: 4 name: 'Site 4' password: site4 IP: localhost port: 53002 - number: 5 name: 'Site 5' password: site5 IP: localhost port: 54002
Other Values
Other custom values are found in the article CCS Enhancements
Creating system.pc2.yaml
Currently the sections that are typically in systems.pc2.yaml are in the contest.yaml
A contest.yaml, problem.yaml and data files can be saved using either:
- the Export Contest YAML feature
- the Export Contest YAML feature
- or use the Export Contest XML Report
Loading system.pc2.yaml
See Load Contest Configuration article