2 # Calculate the penalty which will be assigned to this message
5 # According to eggrdop, the initial penalty is
6 penalty = 1 + self.size/100
7 # on everything but UnderNET where it's
8 # penalty = 2 + self.size/120
10 cmd, pars = self.split($;,2)
11 debug "cmd: #{cmd}, pars: #{pars.inspect}"
14 chan, nick, msg = pars.split
15 chan = chan.split(',')
16 nick = nick.split(',')
20 chan, modes, argument = pars.split
25 extra += modes.split(/\+|-/).size
27 extra += 3 * modes.split(/\+|-/).size
31 extra += 2 * argument.split.size
33 penalty += extra * chan.split.size
36 penalty += 2 unless pars.split.size < 2
37 when :PRIVMSG, :NOTICE
38 dests = pars.split($;,2).first
39 penalty += dests.split(',').size
41 # I'm too lazy to implement this one correctly
43 when :AWAY, :JOIN, :VERSION, :TIME, :TRACE, :WHOIS, :DNS
49 else # Unknown messages
53 debug "Wow, more than 99 secs of penalty!"
57 debug "Wow, less than 2 secs of penalty!"
60 debug "penalty: #{penalty}"
72 # A QueueRing is implemented as an array with elements in the form
73 # [chan, [message1, message2, ...]
74 # Note that the channel +chan+ has no actual bearing with the channels
75 # to which messages will be sent
101 cmess = @storage.assoc(chan)
103 idx = @storage.index(cmess)
105 @storage[idx] = cmess
107 @storage << [chan, [mess]]
113 warning "trying to access empty ring"
117 @last_idx = (@last_idx + 1) % @storage.size
118 mess = @storage[@last_idx][1].first
125 warning "trying to access empty ring"
128 @last_idx = (@last_idx + 1) % @storage.size
129 mess = @storage[@last_idx][1].shift
130 @storage.delete(@storage[@last_idx]) if @storage[@last_idx][1] == []
138 # a MessageQueue is an array of QueueRings
139 # rings have decreasing priority, so messages in ring 0
140 # are more important than messages in ring 1, and so on
141 @rings = Array.new(3) { |i|
145 # ring 0 is special in that if it's not empty, it will
146 # be popped. IOW, ring 0 can starve the other rings
147 # ring 0 is strictly FIFO and is therefore implemented
152 # the other rings are satisfied round-robin
163 def push(mess, chan=nil, cring=0)
166 warning "message #{mess} at ring 0 has channel #{chan}: channel will be ignored" if !chan.nil?
169 error "message #{mess} at ring #{ring} must have a channel" if chan.nil?
170 @rings[ring].push mess, chan
176 return false unless r.empty?
192 warning "trying to access empty ring"
197 mess = @rings[0].first
199 save_ring = @last_ring
200 (@rings.size - 1).times {
201 @last_ring = (@last_ring % (@rings.size - 1)) + 1
202 if !@rings[@last_ring].empty?
203 mess = @rings[@last_ring].next
207 @last_ring = save_ring
209 error "nil message" if mess.nil?
215 warning "trying to access empty ring"
220 return @rings[0].shift
222 (@rings.size - 1).times {
223 @last_ring = (@last_ring % (@rings.size - 1)) + 1
224 if !@rings[@last_ring].empty?
225 return @rings[@last_ring].shift
228 error "nil message" if mess.nil?
234 # wrapped TCPSocket for communication with the server.
235 # emulates a subset of TCPSocket functionality
238 MAX_IRC_SEND_PENALTY = 10
240 # total number of lines sent to the irc server
241 attr_reader :lines_sent
243 # total number of lines received from the irc server
244 attr_reader :lines_received
246 # total number of bytes sent to the irc server
247 attr_reader :bytes_sent
249 # total number of bytes received from the irc server
250 attr_reader :bytes_received
252 # accumulator for the throttle
253 attr_reader :throttle_bytes
255 # delay between lines sent
256 attr_reader :sendq_delay
259 attr_reader :sendq_burst
261 # an optional filter object. we call @filter.in(data) for
262 # all incoming data and @filter.out(data) for all outgoing data
265 # normalized uri of the current server
266 attr_reader :server_uri
268 # default trivial filter class
279 # set filter to identity, not to nil
281 @filter = f || IdentityFilter.new
284 # server_list:: list of servers to connect to
285 # host:: optional local host to bind to (ruby 1.7+ required)
286 # create a new IrcSocket
287 def initialize(server_list, host, sendq_delay=2, sendq_burst=4, opts={})
288 @timer = Timer::Timer.new
292 @server_list = server_list.dup
297 @filter = IdentityFilter.new
301 if opts.kind_of?(Hash) and opts.key?(:ssl)
308 @sendq_delay = sendq_delay.to_f
312 @last_send = Time.new - @sendq_delay
313 @flood_send = Time.new
314 @last_throttle = Time.new
317 @sendq_burst = sendq_burst.to_i
327 # open a TCP connection to the server
330 warning "reconnecting while connected"
333 srv_uri = @server_list[@conn_count % @server_list.size].dup
334 srv_uri = 'irc://' + srv_uri if !(srv_uri =~ /:\/\//)
336 @server_uri = URI.parse(srv_uri)
337 @server_uri.port = 6667 if !@server_uri.port
338 debug "connection attempt \##{@conn_count} (#{@server_uri.host}:#{@server_uri.port})"
342 @sock=TCPSocket.new(@server_uri.host, @server_uri.port, @host)
343 rescue ArgumentError => e
344 error "Your version of ruby does not support binding to a "
345 error "specific local address, please upgrade if you wish "
346 error "to use HOST = foo"
347 error "(this option has been disabled in order to continue)"
348 @sock=TCPSocket.new(@server_uri.host, @server_uri.port)
351 @sock=TCPSocket.new(@server_uri.host, @server_uri.port)
355 ssl_context = OpenSSL::SSL::SSLContext.new()
356 ssl_context.verify_mode = OpenSSL::SSL::VERIFY_NONE
358 @sock = OpenSSL::SSL::SSLSocket.new(@rawsock, ssl_context)
359 @sock.sync_close = true
364 @sendq = MessageQueue.new
367 def sendq_delay=(newfreq)
368 debug "changing sendq frequency to #{newfreq}"
369 @qmutex.synchronize do
370 @sendq_delay = newfreq
380 def sendq_burst=(newburst)
381 @qmutex.synchronize do
382 @sendq_burst = newburst
386 # used to send lines to the remote IRCd by skipping the queue
387 # message: IRC message to send
388 # it should only be used for stuff that *must not* be queued,
389 # i.e. the initial PASS, NICK and USER command
390 # or the final QUIT message
391 def emergency_puts(message)
392 @qmutex.synchronize do
393 # debug "In puts - got mutex"
394 puts_critical(message)
398 def handle_socket_error(string, err)
399 error "#{string} failed: #{err.inspect}"
400 debug err.backtrace.join("\n")
401 # We assume that an error means that there are connection
402 # problems and that we should reconnect, so we
404 raise SocketError.new(err.inspect)
407 # get the next line from the server (blocks)
410 warning "socket get attempted while closed"
414 reply = @filter.in(@sock.gets)
416 reply.strip! if reply
417 debug "RECV: #{reply.inspect}"
420 handle_socket_error(:RECV, e)
424 def queue(msg, chan=nil, ring=0)
426 @qmutex.synchronize do
427 @sendq.push msg, chan, ring
431 # just send it if queueing is disabled
432 self.emergency_puts(msg)
436 # pop a message off the queue, send it
438 @qmutex.synchronize do
446 if (now >= (@last_send + @sendq_delay))
447 debug "resetting @burst"
449 elsif (@burst > @sendq_burst)
450 # nope. can't send anything, come back to us next tick...
451 debug "can't send yet"
455 @flood_send = now if @flood_send < now
456 debug "can send #{@sendq_burst - @burst} lines, there are #{@sendq.size} to send"
457 while !@sendq.empty? and @burst < @sendq_burst and @flood_send - now < MAX_IRC_SEND_PENALTY
458 debug "sending message (#{@flood_send - now} < #{MAX_IRC_SEND_PENALTY})"
459 puts_critical(@sendq.shift, true)
465 error "Spooling failed: #{e.inspect}"
466 error e.backtrace.join("\n")
473 @qmutex.synchronize do
479 warning "Clearing socket while disconnected"
483 # flush the TCPSocket
488 # Wraps Kernel.select on the socket
489 def select(timeout=nil)
490 Kernel.select([@sock], nil, nil, timeout)
493 # shutdown the connection to the server
495 return unless connected?
499 error "error while shutting down: #{err.inspect}"
500 debug err.backtrace.join("\n")
502 @rawsock = nil if @ssl
509 # same as puts, but expects to be called with a mutex held on @qmutex
510 def puts_critical(message, penalty=false)
511 # debug "in puts_critical"
513 debug "SEND: #{message.inspect}"
515 error "SEND attempted on closed socket"
517 @sock.puts(@filter.out(message))
518 @last_send = Time.new
519 @flood_send += message.irc_send_penalty if penalty
524 handle_socket_error(:SEND, e)