Return std::unique_ptr member as const ref

Returning raw pointer has a risk that it may be stolen by
std::shared_ptr in accident.
This commit is contained in:
Tatsuhiro Tsujikawa 2013-06-26 23:56:43 +09:00
parent 47402c5f29
commit da7400ef5c
18 changed files with 35 additions and 33 deletions

View file

@ -69,7 +69,7 @@ DefaultBtAnnounce::DefaultBtAnnounce
incomplete_(0), incomplete_(0),
announceList_(bittorrent::getTorrentAttrs(downloadContext)->announceList), announceList_(bittorrent::getTorrentAttrs(downloadContext)->announceList),
option_(option), option_(option),
randomizer_(SimpleRandomizer::getInstance()), randomizer_(SimpleRandomizer::getInstance().get()),
tcpPort_(0) tcpPort_(0)
{} {}

View file

@ -478,8 +478,7 @@ void DefaultPieceStorage::completePiece(const std::shared_ptr<Piece>& piece)
} }
#ifdef ENABLE_BITTORRENT #ifdef ENABLE_BITTORRENT
if(downloadContext_->hasAttribute(CTX_ATTR_BT)) { if(downloadContext_->hasAttribute(CTX_ATTR_BT)) {
auto torrentAttrs = bittorrent::getTorrentAttrs(downloadContext_); if(!bittorrent::getTorrentAttrs(downloadContext_)->metadata.empty()) {
if(!torrentAttrs->metadata.empty()) {
#ifdef __MINGW32__ #ifdef __MINGW32__
// On Windows, if aria2 opens files with GENERIC_WRITE access // On Windows, if aria2 opens files with GENERIC_WRITE access
// right, some programs cannot open them aria2 is seeding. To // right, some programs cannot open them aria2 is seeding. To

View file

@ -156,12 +156,13 @@ void DownloadContext::setAttribute
attrs_[key] = std::move(value); attrs_[key] = std::move(value);
} }
ContextAttribute* DownloadContext::getAttribute(ContextAttributeType key) const std::unique_ptr<ContextAttribute>& DownloadContext::getAttribute
(ContextAttributeType key)
{ {
assert(key < MAX_CTX_ATTR); assert(key < MAX_CTX_ATTR);
const std::unique_ptr<ContextAttribute>& attr = attrs_[key]; const std::unique_ptr<ContextAttribute>& attr = attrs_[key];
if(attr) { if(attr) {
return attr.get(); return attr;
} else { } else {
throw DL_ABORT_EX(fmt("No attribute named %s", throw DL_ABORT_EX(fmt("No attribute named %s",
strContextAttributeType(key))); strContextAttributeType(key)));

View file

@ -206,7 +206,8 @@ public:
void setAttribute void setAttribute
(ContextAttributeType key, std::unique_ptr<ContextAttribute> value); (ContextAttributeType key, std::unique_ptr<ContextAttribute> value);
ContextAttribute* getAttribute(ContextAttributeType key); const std::unique_ptr<ContextAttribute>& getAttribute
(ContextAttributeType key);
bool hasAttribute(ContextAttributeType key) const; bool hasAttribute(ContextAttributeType key) const;

View file

@ -549,14 +549,15 @@ void DownloadEngine::setAuthConfigFactory
authConfigFactory_ = std::move(factory); authConfigFactory_ = std::move(factory);
} }
AuthConfigFactory* DownloadEngine::getAuthConfigFactory() const const std::unique_ptr<AuthConfigFactory>&
DownloadEngine::getAuthConfigFactory() const
{ {
return authConfigFactory_.get(); return authConfigFactory_;
} }
CookieStorage* DownloadEngine::getCookieStorage() const const std::unique_ptr<CookieStorage>& DownloadEngine::getCookieStorage() const
{ {
return cookieStorage_.get(); return cookieStorage_;
} }
void DownloadEngine::setRefreshInterval(int64_t interval) void DownloadEngine::setRefreshInterval(int64_t interval)

View file

@ -302,7 +302,7 @@ public:
uint16_t port, uint16_t port,
const std::string& username); const std::string& username);
CookieStorage* getCookieStorage() const; const std::unique_ptr<CookieStorage>& getCookieStorage() const;
#ifdef ENABLE_BITTORRENT #ifdef ENABLE_BITTORRENT
const std::shared_ptr<BtRegistry>& getBtRegistry() const const std::shared_ptr<BtRegistry>& getBtRegistry() const
@ -333,7 +333,7 @@ public:
void setAuthConfigFactory(std::unique_ptr<AuthConfigFactory> factory); void setAuthConfigFactory(std::unique_ptr<AuthConfigFactory> factory);
AuthConfigFactory* getAuthConfigFactory() const; const std::unique_ptr<AuthConfigFactory>& getAuthConfigFactory() const;
void setRefreshInterval(int64_t interval); void setRefreshInterval(int64_t interval);

View file

@ -98,8 +98,8 @@ createHttpRequest(const std::shared_ptr<Request>& req,
httpRequest->setFileEntry(fileEntry); httpRequest->setFileEntry(fileEntry);
httpRequest->setSegment(segment); httpRequest->setSegment(segment);
httpRequest->addHeader(option->get(PREF_HEADER)); httpRequest->addHeader(option->get(PREF_HEADER));
httpRequest->setCookieStorage(e->getCookieStorage()); httpRequest->setCookieStorage(e->getCookieStorage().get());
httpRequest->setAuthConfigFactory(e->getAuthConfigFactory()); httpRequest->setAuthConfigFactory(e->getAuthConfigFactory().get());
httpRequest->setOption(option.get()); httpRequest->setOption(option.get());
httpRequest->setProxyRequest(proxyRequest); httpRequest->setProxyRequest(proxyRequest);
httpRequest->setAcceptMetalink(rg->getDownloadContext()-> httpRequest->setAcceptMetalink(rg->getDownloadContext()->

View file

@ -52,6 +52,11 @@ RequestGroupEntry::~RequestGroupEntry()
requestGroup_->decreaseNumCommand(); requestGroup_->decreaseNumCommand();
} }
const std::unique_ptr<Command>& RequestGroupEntry::getNextCommand() const
{
return nextCommand_;
}
std::unique_ptr<Command> RequestGroupEntry::popNextCommand() std::unique_ptr<Command> RequestGroupEntry::popNextCommand()
{ {
return std::move(nextCommand_); return std::move(nextCommand_);

View file

@ -60,10 +60,7 @@ public:
return requestGroup_; return requestGroup_;
} }
Command* getNextCommand() const const std::unique_ptr<Command>& getNextCommand() const;
{
return nextCommand_.get();
}
std::unique_ptr<Command> popNextCommand(); std::unique_ptr<Command> popNextCommand();

View file

@ -45,12 +45,12 @@ namespace aria2 {
std::unique_ptr<SimpleRandomizer> SimpleRandomizer::randomizer_; std::unique_ptr<SimpleRandomizer> SimpleRandomizer::randomizer_;
SimpleRandomizer* SimpleRandomizer::getInstance() const std::unique_ptr<SimpleRandomizer>& SimpleRandomizer::getInstance()
{ {
if(!randomizer_) { if(!randomizer_) {
randomizer_.reset(new SimpleRandomizer()); randomizer_.reset(new SimpleRandomizer());
} }
return randomizer_.get(); return randomizer_;
} }
void SimpleRandomizer::init() void SimpleRandomizer::init()

View file

@ -56,7 +56,7 @@ private:
SimpleRandomizer(); SimpleRandomizer();
public: public:
static SimpleRandomizer* getInstance(); static const std::unique_ptr<SimpleRandomizer>& getInstance();
static void init(); static void init();

View file

@ -50,9 +50,9 @@ private:
public: public:
~SingletonHolder() {} ~SingletonHolder() {}
static T* instance() static std::unique_ptr<T>& instance()
{ {
return instance_.get(); return instance_;
} }
static void instance(std::unique_ptr<T> ptr) static void instance(std::unique_ptr<T> ptr)

View file

@ -59,8 +59,7 @@ bool UTMetadataPostDownloadHandler::Criteria::match
const std::shared_ptr<DownloadContext>& dctx = const std::shared_ptr<DownloadContext>& dctx =
requestGroup->getDownloadContext(); requestGroup->getDownloadContext();
if(dctx->hasAttribute(CTX_ATTR_BT)) { if(dctx->hasAttribute(CTX_ATTR_BT)) {
auto attrs = bittorrent::getTorrentAttrs(dctx); if(bittorrent::getTorrentAttrs(dctx)->metadata.empty()) {
if(attrs->metadata.empty()) {
return true; return true;
} }
} }

View file

@ -737,9 +737,8 @@ struct RequestGroupDH : public DownloadHandle {
{ {
#ifdef ENABLE_BITTORRENT #ifdef ENABLE_BITTORRENT
if(group->getDownloadContext()->hasAttribute(CTX_ATTR_BT)) { if(group->getDownloadContext()->hasAttribute(CTX_ATTR_BT)) {
std::shared_ptr<TorrentAttribute> torrentAttrs = return bittorrent::getTorrentAttrs(group->getDownloadContext())
bittorrent::getTorrentAttrs(group->getDownloadContext()); ->infoHash;
return torrentAttrs->infoHash;
} }
#endif // ENABLE_BITTORRENT #endif // ENABLE_BITTORRENT
return A2STR::NIL; return A2STR::NIL;
@ -804,7 +803,7 @@ struct RequestGroupDH : public DownloadHandle {
BtMetaInfoData res; BtMetaInfoData res;
#ifdef ENABLE_BITTORRENT #ifdef ENABLE_BITTORRENT
if(group->getDownloadContext()->hasAttribute(CTX_ATTR_BT)) { if(group->getDownloadContext()->hasAttribute(CTX_ATTR_BT)) {
std::shared_ptr<TorrentAttribute> torrentAttrs = auto torrentAttrs =
bittorrent::getTorrentAttrs(group->getDownloadContext()); bittorrent::getTorrentAttrs(group->getDownloadContext());
res.announceList = torrentAttrs->announceList; res.announceList = torrentAttrs->announceList;
res.comment = torrentAttrs->comment; res.comment = torrentAttrs->comment;

View file

@ -626,7 +626,7 @@ TorrentAttribute* getTorrentAttrs
TorrentAttribute* getTorrentAttrs(DownloadContext* dctx) TorrentAttribute* getTorrentAttrs(DownloadContext* dctx)
{ {
return static_cast<TorrentAttribute*>(dctx->getAttribute(CTX_ATTR_BT)); return static_cast<TorrentAttribute*>(dctx->getAttribute(CTX_ATTR_BT).get());
} }
const unsigned char* getInfoHash const unsigned char* getInfoHash

View file

@ -109,7 +109,7 @@ void loadFromMemory(const std::shared_ptr<ValueBase>& torrent,
const std::string& overrideName = ""); const std::string& overrideName = "");
// Parses BitTorrent Magnet URI and returns // Parses BitTorrent Magnet URI and returns
// std::shared_ptr<TorrentAttribute> which includes infoHash, name and // std::unique_ptr<TorrentAttribute> which includes infoHash, name and
// announceList. If parsing operation failed, an RecoverableException // announceList. If parsing operation failed, an RecoverableException
// will be thrown. infoHash and name are string and announceList is a // will be thrown. infoHash and name are string and announceList is a
// list of list of announce URI. // list of list of announce URI.
@ -149,6 +149,7 @@ void computeFastSet
(std::vector<size_t>& fastSet, const std::string& ipaddr, (std::vector<size_t>& fastSet, const std::string& ipaddr,
size_t numPieces, const unsigned char* infoHash, size_t fastSetSize); size_t numPieces, const unsigned char* infoHash, size_t fastSetSize);
// Make sure that don't recieve return value into std::shared_ptr.
TorrentAttribute* getTorrentAttrs(DownloadContext* dctx); TorrentAttribute* getTorrentAttrs(DownloadContext* dctx);
TorrentAttribute* getTorrentAttrs TorrentAttribute* getTorrentAttrs
(const std::shared_ptr<DownloadContext>& dctx); (const std::shared_ptr<DownloadContext>& dctx);

View file

@ -1506,7 +1506,7 @@ std::vector<std::pair<size_t, std::string> > createIndexPaths(std::istream& i)
namespace { namespace {
void generateRandomDataRandom(unsigned char* data, size_t length) void generateRandomDataRandom(unsigned char* data, size_t length)
{ {
SimpleRandomizer* rd = SimpleRandomizer::getInstance(); const auto& rd = SimpleRandomizer::getInstance();
for(size_t i = 0; i < length; ++i) { for(size_t i = 0; i < length; ++i) {
data[i] = static_cast<unsigned long>(rd->getRandomNumber(256)); data[i] = static_cast<unsigned long>(rd->getRandomNumber(256));
} }

View file

@ -41,7 +41,6 @@ public:
messageFactory_.reset(new WrapExtBtMessageFactory()); messageFactory_.reset(new WrapExtBtMessageFactory());
dispatcher_.reset(new MockBtMessageDispatcher()); dispatcher_.reset(new MockBtMessageDispatcher());
dctx_.reset(new DownloadContext()); dctx_.reset(new DownloadContext());
std::shared_ptr<TorrentAttribute> attrs(new TorrentAttribute());
dctx_->setAttribute(CTX_ATTR_BT, make_unique<TorrentAttribute>()); dctx_->setAttribute(CTX_ATTR_BT, make_unique<TorrentAttribute>());
peer_.reset(new Peer("host", 6880)); peer_.reset(new Peer("host", 6880));
peer_->allocateSessionResource(0, 0); peer_->allocateSessionResource(0, 0);