Class: Cinch::DCC::Outgoing::Send
- Inherits:
-
Object
- Object
- Cinch::DCC::Outgoing::Send
- Defined in:
- lib/cinch/dcc/outgoing/send.rb
Overview
DCC SEND is a protocol for transferring files, usually found in IRC. While the handshake, i.e. the details of the file transfer, are transferred over IRC, the actual file transfer happens directly between two clients. As such it doesn’t put stress on the IRC server.
Cinch allows sending files by either using User#dcc_send, which takes care of all parameters as well as setting up resume support, or by creating instances of this class directly. The latter will only be useful to people working on the Cinch code itself.
User#dcc_send expects an object to send as well as optionaly a file name, which is sent to the receiver as a suggestion where to save the file. If no file name is provided, the method will use the object’s ‘#path` method to determine it.
Any object that implements DCCableObject can be sent, but sending files will probably be the most common case.
If you’re behind a NAT it is necessary to explicitly set the external IP using the dcc.own_ip option.
Instance Method Summary collapse
-
#initialize(opts = {}) ⇒ Send
constructor
A new instance of Send.
-
#listen ⇒ void
Listen for an incoming connection.
-
#port ⇒ Fixnum
The port used for the socket.
-
#seek(pos) ⇒ void
private
Seek to ‘pos` in the data.
-
#send_handshake ⇒ void
Send the handshake to the user.
-
#start_server ⇒ void
Start the server.
Constructor Details
#initialize(opts = {}) ⇒ Send
Returns a new instance of Send.
46 47 48 |
# File 'lib/cinch/dcc/outgoing/send.rb', line 46 def initialize(opts = {}) @receiver, @filename, @io, @own_ip = opts.values_at(:receiver, :filename, :io, :own_ip) end |
Instance Method Details
#listen ⇒ void
This method blocks.
This method returns an undefined value.
Listen for an incoming connection.
This starts listening for an incoming connection to the server started by #start_server. After a client successfully connected, the server socket will be closed and the file transferred to the client.
77 78 79 80 81 82 83 84 85 86 |
# File 'lib/cinch/dcc/outgoing/send.rb', line 77 def listen fd = nil Timeout.timeout(30) do fd, _ = @socket.accept end send_data(fd) fd.close ensure @socket.close end |
#port ⇒ Fixnum
Returns The port used for the socket.
98 99 100 |
# File 'lib/cinch/dcc/outgoing/send.rb', line 98 def port @port ||= @socket.addr[1] end |
#seek(pos) ⇒ void
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
This method returns an undefined value.
Seek to ‘pos` in the data.
93 94 95 |
# File 'lib/cinch/dcc/outgoing/send.rb', line 93 def seek(pos) @io.seek(pos) end |
#send_handshake ⇒ void
This method returns an undefined value.
Send the handshake to the user.
61 62 63 64 |
# File 'lib/cinch/dcc/outgoing/send.rb', line 61 def send_handshake handshake = "\001DCC SEND %s %d %d %d\001" % [@filename, IPAddr.new(@own_ip).to_i, port, @io.size] @receiver.send(handshake) end |
#start_server ⇒ void
This method returns an undefined value.
Start the server
53 54 55 56 |
# File 'lib/cinch/dcc/outgoing/send.rb', line 53 def start_server @socket = TCPServer.new(0) @socket.listen(1) end |