3 ## Copyright (C) 2004 NABEYA Kenichi (aka nanami@2ch)
4 ## Copyright (C) 2007-2008 Daigo Moriwaki (daigo at debian dot org)
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 2 of the License, or
9 ## (at your option) any later version.
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ## GNU General Public License for more details.
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, write to the Free Software
18 ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 require 'shogi_server/command'
22 module ShogiServer # for a namespace
32 @last_game_win = false
36 # Idetifier of the player in the rating system
37 attr_accessor :player_id
42 # Password of the player, which does not include a trip
43 attr_accessor :password
45 # Score in the rating sysem
48 # Number of games for win and loss in the rating system
49 attr_accessor :win, :loss
51 # Group in the rating system
52 attr_accessor :rating_group
54 # Last timestamp when the rate was modified
55 attr_accessor :modified_at
57 # Whether win the previous game or not
58 attr_accessor :last_game_win
60 # true for Sente; false for Gote
64 return [%r!_human$!, %r!_human@!].any? do |re|
74 @modified_at || Time.now
80 @modified_at = Time.now
94 simple_name = @name.gsub(/@.*?$/, '')
95 "%s+%s" % [simple_name, @trip[0..8]]
102 # Parses str in the LOGIN command, sets up @player_id and @trip
104 def set_password(str)
105 if str && !str.empty?
106 @password = str.strip
107 @player_id = "%s+%s" % [@name, Digest::MD5.hexdigest(@password)]
109 @player_id = @password = nil
115 class Player < BasicPlayer
116 WRITE_THREAD_WATCH_INTERVAL = 20 # sec
117 def initialize(str, socket, eol=nil)
120 @status = "connected" # game_waiting -> agree_waiting -> start_waiting -> game -> finished
122 @protocol = nil # CSA or x1
123 @eol = eol || "\m" # favorite eol code
126 @mytime = 0 # set in start method also
128 @main_thread = Thread::current
129 @write_queue = ShogiServer::TimeoutQueue.new(WRITE_THREAD_WATCH_INTERVAL)
134 attr_accessor :socket, :status
135 attr_accessor :protocol, :eol, :game, :mytime, :game_name
136 attr_accessor :main_thread
137 attr_reader :socket_buffer
139 def setup_logger(dir)
140 log_file = File.join(dir, "%s.log" % [simple_player_id])
141 @player_logger = Logger.new(log_file, 'daily')
142 @player_logger.formatter = ShogiServer::Formatter.new
143 @player_logger.level = $DEBUG ? Logger::DEBUG : Logger::INFO
144 @player_logger.datetime_format = "%Y-%m-%d %H:%M:%S"
147 def log(level, direction, message)
148 return unless @player_logger
152 str = "IN: %s" % [str]
154 str = "OUT: %s" % [str]
156 str = "UNKNOWN DIRECTION: %s %s" % [direction, str]
160 @player_logger.debug(str)
162 @player_logger.info(str)
164 @player_logger.warn(str)
166 @player_logger.error(str)
168 @player_logger.debug("UNKNOWN LEVEL: %s %s" % [level, str])
170 rescue Exception => ex
171 log_error("#{ex.class}: #{ex.message}\n\t#{ex.backtrace[0]}")
175 log_message(sprintf("user %s killed", @name))
180 Thread::kill(@main_thread) if @main_thread
181 Thread::kill(@write_thread) if @write_thread
185 if (@status != "finished")
187 log_message(sprintf("user %s finish", @name))
189 log_debug("Terminating %s's write thread..." % [@name])
190 if @write_thread && @write_thread.alive?
193 @player_logger.close if @player_logger
196 log_message(sprintf("user %s finish failed", @name))
201 def start_write_thread
202 @write_thread = Thread.start do
204 while !@socket.closed?
206 str = @write_queue.deq
208 log_debug("%s's write thread terminated" % [@name])
212 log_debug("%s's write queue timed out. Try again..." % [@name])
216 if r = select(nil, [@socket], nil, 20)
217 r[1].first.write(str)
218 log(:info, :out, str)
220 log_error("Gave a try to send a message to #{@name}, but it timed out.")
223 rescue Exception => ex
224 log_error("Failed to send a message to #{@name}. #{ex.class}: #{ex.message}\t#{ex.backtrace[0]}")
228 log_error("%s's socket closed." % [@name]) if @socket.closed?
229 log_message("At least %d messages are not sent to the client." %
230 [@write_queue.get_messages.size])
235 # Note that sending a message is included in the giant lock.
238 @write_queue.enq(str)
242 if ["game_waiting", "start_waiting", "agree_waiting", "game"].include?(status)
244 return sprintf("%s %s %s %s +", rated? ? @player_id : @name, @protocol, @status, @game_name)
245 elsif (@sente == false)
246 return sprintf("%s %s %s %s -", rated? ? @player_id : @name, @protocol, @status, @game_name)
247 elsif (@sente == nil)
248 return sprintf("%s %s %s %s *", rated? ? @player_id : @name, @protocol, @status, @game_name)
251 return sprintf("%s %s %s", rated? ? @player_id : @name, @protocol, @status)
255 def run(csa_1st_str=nil)
256 while ( csa_1st_str ||
257 str = gets_safe(@socket, (@socket_buffer.empty? ? Default_Timeout : 1)) )
258 log(:info, :in, str) if str && str.instance_of?(String)
261 if !@write_thread.alive?
262 log_error("%s's write thread is dead. Aborting..." % [@name])
265 if (@game && @game.turn?(self))
266 @socket_buffer << str
267 str = @socket_buffer.shift
269 log_debug("%s (%s)" % [str, @socket_buffer.map {|a| String === a ? a.strip : a }.join(",")])
276 if (@status == "finished")
279 str.chomp! if (str.class == String) # may be strip! ?
281 cmd = ShogiServer::Command.factory(str, self)