Browse Source

new getposts rpc

miguelfreitas
Miguel Freitas 11 years ago
parent
commit
5e68d4e2ae
  1. 5
      libtorrent/include/libtorrent/torrent.hpp
  2. 1
      libtorrent/include/libtorrent/torrent_handle.hpp
  3. 40
      libtorrent/src/torrent.cpp
  4. 26
      libtorrent/src/torrent_handle.cpp
  5. 3
      src/bitcoinrpc.cpp
  6. 1
      src/bitcoinrpc.h
  7. 56
      src/twister.cpp
  8. 2
      twister-test.py

5
libtorrent/include/libtorrent/torrent.hpp

@ -200,6 +200,11 @@ namespace libtorrent @@ -200,6 +200,11 @@ namespace libtorrent
void read_piece(int piece);
void on_disk_read_complete(int ret, disk_io_job const& j, peer_request r, read_piece_struct* rp);
void get_pieces(std::vector<std::string> *pieces, int count, int max_id, int since_id,
mutex *mut, condition_variable *cond, int *reqs);
void on_disk_read_get_piece_complete(int ret, disk_io_job const& j,
std::vector<std::string> *pieces, mutex *mut, condition_variable *cond, int *reqs);
storage_mode_t storage_mode() const { return (storage_mode_t)m_storage_mode; }
storage_interface* get_storage()
{

1
libtorrent/include/libtorrent/torrent_handle.hpp

@ -168,6 +168,7 @@ namespace libtorrent @@ -168,6 +168,7 @@ namespace libtorrent
enum flags_t { overwrite_existing = 1 };
void add_piece(int piece, char const* data, int size, int flags = 0) const;
void read_piece(int piece) const;
void get_pieces(std::vector<std::string> &pieces, int count, int max_id, int since_id) const;
bool have_piece(int piece) const;
void get_full_peer_list(std::vector<peer_list_entry>& v) const;

40
libtorrent/src/torrent.cpp

@ -908,6 +908,46 @@ namespace libtorrent @@ -908,6 +908,46 @@ namespace libtorrent
}
}
void torrent::get_pieces(std::vector<std::string> *pieces, int count, int max_id, int since_id,
mutex *mut, condition_variable *cond, int *reqs)
{
if( !m_picker ) return;
if( max_id < 0 )
max_id = m_picker->last_have();
int piece_size = m_torrent_file->piece_size(0);
for( int i = max_id; i >= 0 && i > since_id && (*reqs) < count; i--) {
if( m_picker->have_piece(i) ) {
(*reqs)++;
peer_request r;
r.piece = i;
r.start = 0;
r.length = piece_size;
filesystem().async_read(r, boost::bind(&torrent::on_disk_read_get_piece_complete
, shared_from_this(), _1, _2, pieces, mut, cond, reqs));
}
}
}
void torrent::on_disk_read_get_piece_complete(int ret, disk_io_job const& j,
std::vector<std::string> *pieces, mutex *mut, condition_variable *cond, int *reqs)
{
TORRENT_ASSERT(m_ses.is_network_thread());
mutex::scoped_lock l(*mut);
//printf("on_disk_read_get_piece_complete ret=%d reqs=%d\n", ret, *reqs);
if (ret > 0) {
pieces->push_back( std::string(j.buffer, ret));
}
(*reqs)--;
if (!(*reqs)) cond->notify_all();
}
void torrent::send_share_mode()
{
#ifndef TORRENT_DISABLE_EXTENSIONS

26
libtorrent/src/torrent_handle.cpp

@ -238,6 +238,16 @@ namespace libtorrent @@ -238,6 +238,16 @@ namespace libtorrent
t.reset(); \
do { ses.cond.wait(l); } while(!done); }
#define TORRENT_SYNC_CALL7(x, a1, a2, a3, a4, a5, a6, a7) \
boost::shared_ptr<torrent> t = m_torrent.lock(); \
if (t) { \
bool done = false; \
session_impl& ses = t->session(); \
mutex::scoped_lock l(ses.mut); \
ses.m_io_service.dispatch(boost::bind(&fun_wrap, &done, &ses.cond, &ses.mut, boost::function<void(void)>(boost::bind(&torrent:: x, t, a1, a2, a3, a4, a5, a6, a7)))); \
t.reset(); \
do { ses.cond.wait(l); } while(!done); }
#define TORRENT_SYNC_CALL_RET(type, def, x) \
boost::shared_ptr<torrent> t = m_torrent.lock(); \
if (!t) return def; \
@ -813,6 +823,22 @@ namespace libtorrent @@ -813,6 +823,22 @@ namespace libtorrent
TORRENT_ASYNC_CALL1(read_piece, piece);
}
void torrent_handle::get_pieces(std::vector<std::string> &pieces, int count, int max_id, int since_id) const
{
INVARIANT_CHECK;
libtorrent::mutex mut;
libtorrent::condition_variable cond;
int reqs = 0;
TORRENT_SYNC_CALL7(get_pieces, &pieces, count, max_id, since_id, &mut, &cond, &reqs);
mutex::scoped_lock l2(mut);
while( reqs > 0 ) {
cond.wait(l2);
}
}
bool torrent_handle::have_piece(int piece) const
{
INVARIANT_CHECK;

3
src/bitcoinrpc.cpp

@ -240,6 +240,7 @@ static const CRPCCommand vRPCCommands[] = @@ -240,6 +240,7 @@ static const CRPCCommand vRPCCommands[] =
{ "newpostmsg", &newpostmsg, false, true },
{ "newdirectmsg", &newdirectmsg, false, true },
{ "newrtmsg", &newrtmsg, false, true },
{ "getposts", &getposts, false, true },
};
CRPCTable::CRPCTable()
@ -1184,6 +1185,8 @@ Array RPCConvertValues(const std::string &strMethod, const std::vector<std::stri @@ -1184,6 +1185,8 @@ Array RPCConvertValues(const std::string &strMethod, const std::vector<std::stri
if (strMethod == "newdirectmsg" && n > 1) ConvertTo<boost::int64_t>(params[1]);
if (strMethod == "newrtmsg" && n > 1) ConvertTo<boost::int64_t>(params[1]);
if (strMethod == "newrtmsg" && n > 2) ConvertTo<Object>(params[2]);
if (strMethod == "getposts" && n > 0) ConvertTo<boost::int64_t>(params[0]);
if (strMethod == "getposts" && n > 1) ConvertTo<Array>(params[1]);
return params;
}

1
src/bitcoinrpc.h

@ -197,5 +197,6 @@ extern json_spirit::Value dhtget(const json_spirit::Array& params, bool fHelp); @@ -197,5 +197,6 @@ extern json_spirit::Value dhtget(const json_spirit::Array& params, bool fHelp);
extern json_spirit::Value newpostmsg(const json_spirit::Array& params, bool fHelp);
extern json_spirit::Value newdirectmsg(const json_spirit::Array& params, bool fHelp);
extern json_spirit::Value newrtmsg(const json_spirit::Array& params, bool fHelp);
extern json_spirit::Value getposts(const json_spirit::Array& params, bool fHelp);
#endif

56
src/twister.cpp

@ -1082,3 +1082,59 @@ Value newrtmsg(const Array& params, bool fHelp) @@ -1082,3 +1082,59 @@ Value newrtmsg(const Array& params, bool fHelp)
return entryToJson(v);
}
Value getposts(const Array& params, bool fHelp)
{
if (fHelp || (params.size() != 2))
throw runtime_error(
"getposts <count> [{\"username\":username,\"max_id\":max_id,\"since_id\":since_id},...]\n"
"get posts from users\n"
"max_id and since_id may be omited or -1");
int count = params[0].get_int();
Array users = params[1].get_array();
std::multimap<int64,entry> postsByTime;
for( unsigned int u = 0; u < users.size(); u++ ) {
Object user = users[u].get_obj();
string strUsername;
int max_id = -1;
int since_id = -1;
for (Object::const_iterator i = user.begin(); i != user.end(); ++i) {
if( i->name_ == "username" ) strUsername = i->value_.get_str();
if( i->name_ == "max_id" ) max_id = i->value_.get_int();
if( i->name_ == "since_id" ) since_id = i->value_.get_int();
}
if( strUsername.size() && m_userTorrent.count(strUsername) &&
m_userTorrent[strUsername].is_valid() ){
std::vector<std::string> pieces;
m_userTorrent[strUsername].get_pieces(pieces, count, max_id, since_id);
BOOST_FOREACH(string const& piece, pieces) {
lazy_entry v;
int pos;
error_code ec;
if (lazy_bdecode(piece.data(), piece.data()+piece.size(), v, ec, &pos) == 0) {
lazy_entry const* post = v.dict_find_dict("userpost");
int64 time = post->dict_find_int_value("time",-1);
entry vEntry;
vEntry = v;
postsByTime.insert( pair<int64,entry>(time, vEntry) );
}
}
}
}
Array ret;
std::multimap<int64,entry>::reverse_iterator rit;
for (rit=postsByTime.rbegin(); rit!=postsByTime.rend() && (int)ret.size() < count; ++rit) {
ret.push_back( entryToJson(rit->second) );
}
return ret;
}

2
twister-test.py

@ -35,6 +35,6 @@ if cmd == "cmd": @@ -35,6 +35,6 @@ if cmd == "cmd":
sys.exit(-1)
parms = ""
for i in xrange(3,len(sys.argv)):
parms += ' "' + sys.argv[i] + '"'
parms += " '" + sys.argv[i] + "'"
os.system( twister + rpccfg + parms )

Loading…
Cancel
Save