OSDN Git Service

* [shogi-server] - shogi_server/league/floodgate.rb: Improved robustness against...
[shogi-server/shogi-server.git] / mk_game_results
1 #!/usr/bin/ruby1.9.1
2 # $Id$
3 #
4 # Author:: Daigo Moriwaki
5 # Homepage:: http://sourceforge.jp/projects/shogi-server/
6 #
7 #--
8 # Copyright (C) 2009-2012 Daigo Moriwaki <daigo at debian dot org>
9 #
10 # This program is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 2 of the License, or
13 # (at your option) any later version.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write to the Free Software
22 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23 #++
24 #
25 # == Synopsis
26 #
27 # mk_game_results reads CSA files, then outputs a list of game results that
28 # is used by mk_rate to calcurate players ratings.
29 #
30 # == Usage
31 #
32 # ./mk_rate DIR..
33
34 # == PREREQUIRE
35 #
36 # Sample Command lines that isntall prerequires will work on Debian.
37 #
38 # * Ruby 1.9.3 or 1.8.7
39 #
40 #   $ sudo aptitude install ruby1.9.1
41 #
42 # == Run
43 #
44 #   $ ./mk_game_results . > game_results.txt
45 #
46
47 require 'getoptlong'
48
49 # Parse a CSA file. A tab-delimited line format is
50 #   time  state  black_mark  black_id  white_id  white_mark  filepath 
51 # time:: YYYY/MM/DD hh:mm:ss
52 # black_mark:: win lose draw
53 # black_id::   black player's id
54 # white_mark:: win lose draw
55 # white_id::   white player's id
56 # filepath::   absolute file path
57 #
58 # @parameter file an absolute path of a csa file
59 #
60 def grep(file)
61   str = File.open(file).read
62
63   if /^N\+(.*)$/ =~ str then black_name = $1.strip end
64   if /^N\-(.*)$/ =~ str then white_name = $1.strip end
65
66   if /^'summary:(.*)$/ =~ str
67     state, p1, p2 = $1.split(":").map {|a| a.strip}    
68     p1_name, p1_mark = p1.split(" ")
69     p2_name, p2_mark = p2.split(" ")
70     if p1_name == black_name
71       black_name, black_mark = p1_name, p1_mark
72       white_name, white_mark = p2_name, p2_mark
73     elsif p2_name == black_name
74       black_name, black_mark = p2_name, p2_mark
75       white_name, white_mark = p1_name, p1_mark
76     else
77       raise "Never reach!: #{black} #{white} #{p3} #{p2}"
78     end
79   end
80
81   if /^'\$END_TIME:(.*)$/ =~ str
82     time = $1.strip
83   end
84
85   if /^'rating:(.*)$/ =~ str
86     black_id, white_id = $1.split(":").map {|a| a.strip}
87     if black_id && white_id && (black_id != white_id) &&
88        black_mark && white_mark && state && time
89       puts [time, state, black_mark, black_id, white_id, white_mark, file].join("\t")
90     end
91   end
92   $stdout.flush
93 end
94
95 # Show Usage
96 #
97 def usage(io)
98     io.puts <<EOF
99 USAGE: #{$0} [options] DIR...
100   DIR                where CSA files are looked up recursively
101 OPTOINS:
102   --help, -h         show this message
103 EOF
104 end
105
106 # MAIN 
107 #
108 def main
109   $options = Hash::new
110   parser = GetoptLong.new(
111     ["--help", "-h",        GetoptLong::NO_ARGUMENT])
112   parser.quiet = true
113   begin
114     parser.each_option do |name, arg|
115       name.sub!(/^--/, '')
116       $options[name] = arg.dup
117     end
118   rescue
119     usage($stderr)
120     raise parser.error_message
121   end
122   if $options["help"]
123     usage($stdout) 
124     exit 0
125   end
126
127   if ARGV.empty?
128     while line = $stdin.gets do
129       next unless %r!.*\.csa$! =~ line
130       grep File.expand_path(line.strip)
131     end
132   else
133     while dir = ARGV.shift do
134       Dir.glob( File.join(dir, "**", "*.csa") ) {|f| grep(File.expand_path(f))}
135     end
136   end
137 end
138
139 if __FILE__ == $0
140   main
141 end
142
143 # vim: ts=2 sw=2 sts=0