3 Copyright (c) 2006, Arvid Norberg
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions
10 * Redistributions of source code must retain the above copyright
11 notice, this list of conditions and the following disclaimer.
12 * Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in
14 the documentation and/or other materials provided with the distribution.
15 * Neither the name of the author nor the names of its
16 contributors may be used to endorse or promote products derived
17 from this software without specific prior written permission.
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 POSSIBILITY OF SUCH DAMAGE.
33 #include "libtorrent/pch.hpp"
36 #pragma warning(push, 1)
39 #include <boost/shared_ptr.hpp>
40 #include <boost/lexical_cast.hpp>
41 #include <boost/filesystem/fstream.hpp>
42 #include <boost/filesystem/convenience.hpp>
50 #include "libtorrent/extensions/logger.hpp"
51 #include "libtorrent/extensions.hpp"
52 #include "libtorrent/entry.hpp"
53 #include "libtorrent/peer_request.hpp"
54 #include "libtorrent/peer_connection.hpp"
56 namespace libtorrent
{
58 namespace fs
= boost::filesystem
;
63 struct logger_peer_plugin
: peer_plugin
65 logger_peer_plugin(std::string
const& filename
)
67 fs::path
dir(fs::complete("libtorrent_ext_logs"));
68 if (!fs::exists(dir
)) fs::create_directories(dir
);
69 m_file
.open((dir
/ filename
).string().c_str(), std::ios_base::out
| std::ios_base::out
);
72 m_file
<< "*** starting log ***\n";
77 m_file
<< time_now_string() << ": ";
80 // can add entries to the extension handshake
81 virtual void add_handshake(entry
&) {}
83 // called when the extension handshake from the other end is received
84 virtual bool on_extension_handshake(lazy_entry
const& h
)
87 m_file
<< "<== EXTENSION_HANDSHAKE\n" << h
;
91 // returning true from any of the message handlers
92 // indicates that the plugin has handeled the message.
93 // it will break the plugin chain traversing and not let
94 // anyone else handle the message, including the default
97 virtual bool on_choke()
100 m_file
<< "<== CHOKE\n";
105 virtual bool on_unchoke()
108 m_file
<< "<== UNCHOKE\n";
113 virtual bool on_interested()
116 m_file
<< "<== INTERESTED\n";
121 virtual bool on_not_interested()
124 m_file
<< "<== NOT_INTERESTED\n";
129 virtual bool on_have(int index
)
132 m_file
<< "<== HAVE [" << index
<< "]\n";
137 virtual bool on_bitfield(std::vector
<bool> const& bitfield
)
140 m_file
<< "<== BITFIELD\n";
145 virtual bool on_request(peer_request
const& r
)
148 m_file
<< "<== REQUEST [ piece: " << r
.piece
<< " | s: " << r
.start
149 << " | l: " << r
.length
<< " ]\n";
154 virtual bool on_piece(peer_request
const& r
, char const*)
157 m_file
<< "<== PIECE [ piece: " << r
.piece
<< " | s: " << r
.start
158 << " | l: " << r
.length
<< " ]\n";
163 virtual bool on_cancel(peer_request
const& r
)
166 m_file
<< "<== CANCEL [ piece: " << r
.piece
<< " | s: " << r
.start
167 << " | l: " << r
.length
<< " ]\n";
172 // called when an extended message is received. If returning true,
173 // the message is not processed by any other plugin and if false
174 // is returned the next plugin in the chain will receive it to
175 // be able to handle it
176 virtual bool on_extended(int length
177 , int msg
, buffer::const_interval body
)
180 virtual bool on_unknown_message(int length
, int msg
181 , buffer::const_interval body
)
183 if (body
.left() < length
) return false;
185 m_file
<< "<== UNKNOWN [ msg: " << msg
186 << " | l: " << length
<< " ]\n";
191 virtual void on_piece_pass(int index
)
194 m_file
<< "*** HASH PASSED *** [ piece: " << index
<< " ]\n";
198 virtual void on_piece_failed(int index
)
201 m_file
<< "*** HASH FAILED *** [ piece: " << index
<< " ]\n";
206 std::ofstream m_file
;
209 struct logger_plugin
: torrent_plugin
211 virtual boost::shared_ptr
<peer_plugin
> new_connection(
214 return boost::shared_ptr
<peer_plugin
>(new logger_peer_plugin(
215 pc
->remote().address().to_string() + "_"
216 + boost::lexical_cast
<std::string
>(pc
->remote().port()) + ".log"));
225 boost::shared_ptr
<torrent_plugin
> create_logger_plugin(torrent
*)
227 return boost::shared_ptr
<torrent_plugin
>(new logger_plugin());