This file is indexed.

/usr/games/tourney-manager is in tourney-manager 20070820-4.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
#!/usr/bin/perl
# $Id: tourney.pl 430 2007-08-19 19:47:12Z holger $
#
# Copyright (C) 2005-2007 Holger Ruckdeschel <holger@hoicher.de>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#

use warnings;
use strict;

use File::Basename;
use File::Glob ':glob';
use Getopt::Std;
use Term::ReadLine;

# Added for debian distr by ok@xynyx.de
use lib '/usr/share/tourney-manager/';
use Tourney;
use Crosstable;

###############################################################################

my $verbose = 0;
my $debug = 0;

###############################################################################
# Parse command line
###############################################################################

my %opts;
getopts('Vvd', \%opts);


if (defined($opts{V})) {
	Tourney::print_version();
	exit(0);
}

if (defined($opts{v})) {
	$verbose = 1;
	$Tourney::verbose = 1;
}

if (defined($opts{d})) {
	$debug = 1;
	$Tourney::debug = 1;
}

###############################################################################

$SIG{'INT'} = 'IGNORE';

my $quit = 0;


my %commands = (
	help =>		\&cmd_help,
	quit =>		\&cmd_quit,
	tourney =>	\&cmd_tourney,
	clear =>	\&cmd_clear,
	create =>	\&cmd_create,
	update =>	\&cmd_update,
	print =>	\&cmd_print,
	start =>	\&cmd_start,
	stop =>		\&cmd_stop,
	crosstable =>	\&cmd_crosstable,
	replay =>	\&cmd_replay,
);

my %command_help = (
	###
	help =>		"display help about commands\n",
	###
	quit =>		"quits tourney manager\n",
	###
	tourney =>	<<EOF
switch tourney

Usage: tourney <name>

Switches to tourney '<name>'.
EOF
	,
	###
	clear =>	<<EOF
clear state of current tourney

Removes the state of the current tourney.
Additionally, the arguments '+pgns' and/or '+logs' may be given, which will
remove also the PGN and/or log files of the tourney.
EOF
	,
	###
	create =>	"initialize tourney, create tourney state\n",
	###
	update =>	"re-read configuration file, update tourney\n",
	###
	print =>	"display current tourney state\n",
	###
	start =>	"starts tourney\n",
	###
	stop =>		<<EOF
interrupts tourney

'stop' interrupts the tourney immediately after the current game.
'stop turn' interrupts the tourney after the current turn as finished.
EOF
	,
	###
	crosstable =>	"print current crosstable of tourney\n",
	###
	replay =>	<<EOF
replay single game or whole match

Usage: replay <matchnr>			Replay whole match
       replay <matchnr> <gamenr>	Replay single game
EOF
	,
	###
);


sub shell {
	print(<<EOF
Type 'help' for a list of available commands.
Type 'help <command>' for detailed help about a specific command.

EOF
	) if (-t STDIN);

	if (defined($ARGV[0])) {
		$Tourney::tourney_name = $ARGV[0];
	}

	my $readline;
	if (-t STDIN) {
		$readline = new Term::ReadLine($0);
	}

	while (!$quit) {
		my $prompt;
		if ($Tourney::runner_running) {
			$prompt = "$Tourney::tourney_name [running]> ";
		} elsif (Tourney::is_locked()) {
			$prompt = "$Tourney::tourney_name [locked]> ";
		} else {		
			$prompt = "$Tourney::tourney_name> ";
		}

		my $input;		
		if (-t STDIN) {
			$input = $readline->readline($prompt);
		} else {
			$input = <STDIN>;
		}
		
		if (!$input) {
			if (! -t STDIN) {
				$quit = 1;
			}
			next;
		}

		chomp($input);
		process_command($input);
	}
}

sub process_command {
	my ($input) = @_;

	if (!$input) {
		return;
	}

	my @args = split(/[ \t]+/, $input);
		
	if (defined($commands{$args[0]})) {
		&{$commands{$args[0]}}(@args);
	} else {
		print("Unknown command: $args[0]\n");
	}
}

print_version();
print("\n");
shell();
exit(0);

######################################################################

sub cmd_help {
	if ($_[1]) {
		if (defined($command_help{$_[1]})) {
			print("$_[1] -- $command_help{$_[1]}");
		} else {
			print("No help available for command '$_[1]'.\n");
		}
	} else {
		print_version();
		print("\n");

		my @c = sort(keys(%commands));
		print("Available commands: @c\n");
	}
}

sub cmd_quit {
	if ($Tourney::runner_running) {
		print("Runner thread still running. Use 'stop' first.\n");
		return;
	}

	$quit = 1;
}

sub cmd_tourney {
	if ($Tourney::runner_running) {
		print("Runner thread still running. Use 'stop' first.\n");
		return;
	}
	
	if (defined($_[1])) {
		$Tourney::tourney_name = $_[1];
	}

	print("Current tourney: $Tourney::tourney_name\n");
}

sub cmd_clear {
	my $args = {};
	while (defined($_[1])) {
		if ($_[1] eq '+logs') {
			$args->{delete_logs} = 1;
		} elsif ($_[1] eq '+pgns') {
			$args->{delete_pgns} = 1;
		}
		shift;
	}			
		
	clear_tourney($args);
}

sub cmd_create {
	create_tourney();
}

sub cmd_update {
	update_tourney();
}

sub cmd_print {
	print_tourney();
}
	
sub cmd_start {
	my $nr_threads = 1;
	if (defined($_[1])) {
		$nr_threads = $_[1];
	}

	if (start_tourney($nr_threads)) {
		# Wait a bit, so that thread's output will not disturb
		# our input prompt too much.
		sleep(2);
	}
}

sub cmd_stop {
	shift(@_);
	stop_tourney(@_);
}

sub cmd_crosstable {
	# TODO Perhaps this should also go into Tourney.pm.
	my @pgnfiles = bsd_glob($Tourney::tourney_name . ".match-*-*.pgn");
	Crosstable::print({ pgnfiles => \@pgnfiles });
}

sub cmd_replay {
	if (!defined($_[1])) {
		print("This command requires at least on argument.\n");
		return;
	} elsif ($_[1] !~ /^\d+$/) {
		print("Illegal argument: $_[1]\n");
		return;
	} elsif (defined($_[2]) && $_[2] !~ /^\d+$/) {
		print("Illegal argument: $_[2]\n");
		return;
	}
		
	Tourney::replay_game($_[1], $_[2]);
}