mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 05:27:38 +03:00
clang-format
This commit is contained in:
parent
5b4e3361d4
commit
8e07568a9e
11 changed files with 29 additions and 26 deletions
|
@ -92,7 +92,7 @@ std::unique_ptr<Dict> DHTGetPeersReplyMessage::getResponse()
|
||||||
auto compactlen = bittorrent::packcompact(
|
auto compactlen = bittorrent::packcompact(
|
||||||
compact.data(), (*i)->getIPAddress(), (*i)->getPort());
|
compact.data(), (*i)->getIPAddress(), (*i)->getPort());
|
||||||
auto cclen =
|
auto cclen =
|
||||||
static_cast<std::make_unsigned<decltype(clen)>::type>((clen));
|
static_cast<std::make_unsigned<decltype(clen)>::type>((clen));
|
||||||
if (clen >= 0 && compactlen == cclen) {
|
if (clen >= 0 && compactlen == cclen) {
|
||||||
last = std::copy_n((*i)->getID(), DHT_ID_LENGTH, last);
|
last = std::copy_n((*i)->getID(), DHT_ID_LENGTH, last);
|
||||||
last = std::copy_n(std::begin(compact), compactlen, last);
|
last = std::copy_n(std::begin(compact), compactlen, last);
|
||||||
|
@ -134,7 +134,7 @@ std::unique_ptr<Dict> DHTGetPeersReplyMessage::getResponse()
|
||||||
auto compactlen = bittorrent::packcompact(
|
auto compactlen = bittorrent::packcompact(
|
||||||
compact.data(), (*i)->getIPAddress(), (*i)->getPort());
|
compact.data(), (*i)->getIPAddress(), (*i)->getPort());
|
||||||
auto cclen =
|
auto cclen =
|
||||||
static_cast<std::make_unsigned<decltype(clen)>::type>((clen));
|
static_cast<std::make_unsigned<decltype(clen)>::type>((clen));
|
||||||
if (clen > 0 && compactlen == cclen) {
|
if (clen > 0 && compactlen == cclen) {
|
||||||
valuesList->append(String::g(compact.data(), compactlen));
|
valuesList->append(String::g(compact.data(), compactlen));
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
* version. If you delete this exception statement from all source
|
* version. If you delete this exception statement from all source
|
||||||
* files in the program, then also delete it here.
|
* files in the program, then also delete it here.
|
||||||
*/
|
*/
|
||||||
/* copyright --> */
|
/* copyright --> */
|
||||||
|
|
||||||
#include "LpdMessage.h"
|
#include "LpdMessage.h"
|
||||||
#include "Peer.h"
|
#include "Peer.h"
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
* version. If you delete this exception statement from all source
|
* version. If you delete this exception statement from all source
|
||||||
* files in the program, then also delete it here.
|
* files in the program, then also delete it here.
|
||||||
*/
|
*/
|
||||||
/* copyright --> */
|
/* copyright --> */
|
||||||
|
|
||||||
#ifndef D_LPD_MESSAGE_H
|
#ifndef D_LPD_MESSAGE_H
|
||||||
#define D_LPD_MESSAGE_H
|
#define D_LPD_MESSAGE_H
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
* version. If you delete this exception statement from all source
|
* version. If you delete this exception statement from all source
|
||||||
* files in the program, then also delete it here.
|
* files in the program, then also delete it here.
|
||||||
*/
|
*/
|
||||||
/* copyright --> */
|
/* copyright --> */
|
||||||
|
|
||||||
#include "LpdMessageDispatcher.h"
|
#include "LpdMessageDispatcher.h"
|
||||||
#include "SocketCore.h"
|
#include "SocketCore.h"
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
* version. If you delete this exception statement from all source
|
* version. If you delete this exception statement from all source
|
||||||
* files in the program, then also delete it here.
|
* files in the program, then also delete it here.
|
||||||
*/
|
*/
|
||||||
/* copyright --> */
|
/* copyright --> */
|
||||||
|
|
||||||
#ifndef D_LPD_MESSAGE_DISPATCHER_H
|
#ifndef D_LPD_MESSAGE_DISPATCHER_H
|
||||||
#define D_LPD_MESSAGE_DISPATCHER_H
|
#define D_LPD_MESSAGE_DISPATCHER_H
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
* version. If you delete this exception statement from all source
|
* version. If you delete this exception statement from all source
|
||||||
* files in the program, then also delete it here.
|
* files in the program, then also delete it here.
|
||||||
*/
|
*/
|
||||||
/* copyright --> */
|
/* copyright --> */
|
||||||
|
|
||||||
#include "LpdMessageReceiver.h"
|
#include "LpdMessageReceiver.h"
|
||||||
#include "SocketCore.h"
|
#include "SocketCore.h"
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
* version. If you delete this exception statement from all source
|
* version. If you delete this exception statement from all source
|
||||||
* files in the program, then also delete it here.
|
* files in the program, then also delete it here.
|
||||||
*/
|
*/
|
||||||
/* copyright --> */
|
/* copyright --> */
|
||||||
|
|
||||||
#ifndef D_LPD_MESSAGE_RECEIVER_H
|
#ifndef D_LPD_MESSAGE_RECEIVER_H
|
||||||
#define D_LPD_MESSAGE_RECEIVER_H
|
#define D_LPD_MESSAGE_RECEIVER_H
|
||||||
|
|
|
@ -1799,8 +1799,8 @@ std::vector<OptionHandler*> OptionHandlerFactory::createOptionHandlers()
|
||||||
handlers.push_back(op);
|
handlers.push_back(op);
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
OptionHandler* op(new FloatNumberOptionHandler(PREF_SEED_TIME, TEXT_SEED_TIME,
|
OptionHandler* op(new FloatNumberOptionHandler(
|
||||||
NO_DEFAULT_VALUE, 0));
|
PREF_SEED_TIME, TEXT_SEED_TIME, NO_DEFAULT_VALUE, 0));
|
||||||
op->addTag(TAG_BITTORRENT);
|
op->addTag(TAG_BITTORRENT);
|
||||||
op->setInitialOption(true);
|
op->setInitialOption(true);
|
||||||
op->setChangeGlobalOption(true);
|
op->setChangeGlobalOption(true);
|
||||||
|
|
|
@ -793,8 +793,7 @@ void RequestGroup::tryAutoFileRenaming()
|
||||||
// if slash == idx - 1 this means a form of "*/.*", so the file name
|
// if slash == idx - 1 this means a form of "*/.*", so the file name
|
||||||
// starts with a dot, has no extension otherwise, and therefore do not
|
// starts with a dot, has no extension otherwise, and therefore do not
|
||||||
// extract an extension either
|
// extract an extension either
|
||||||
(slash == std::string::npos || slash < idx - 1)
|
(slash == std::string::npos || slash < idx - 1)) {
|
||||||
) {
|
|
||||||
ext = fn.substr(idx);
|
ext = fn.substr(idx);
|
||||||
fn = fn.substr(0, idx);
|
fn = fn.substr(0, idx);
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,8 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual std::shared_ptr<Peer>
|
virtual std::shared_ptr<Peer>
|
||||||
addAndCheckoutPeer(const std::shared_ptr<Peer>& peer, cuid_t cuid) CXX11_OVERRIDE
|
addAndCheckoutPeer(const std::shared_ptr<Peer>& peer,
|
||||||
|
cuid_t cuid) CXX11_OVERRIDE
|
||||||
{
|
{
|
||||||
unusedPeers.push_back(peer);
|
unusedPeers.push_back(peer);
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
|
|
@ -60,7 +60,6 @@ void RequestGroupTest::testTryAutoFileRenaming()
|
||||||
}
|
}
|
||||||
catch (const Exception& ex) {
|
catch (const Exception& ex) {
|
||||||
CPPUNIT_ASSERT_EQUAL(error_code::FILE_ALREADY_EXISTS, ex.getErrorCode());
|
CPPUNIT_ASSERT_EQUAL(error_code::FILE_ALREADY_EXISTS, ex.getErrorCode());
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
option_->put(PREF_AUTO_FILE_RENAMING, "true");
|
option_->put(PREF_AUTO_FILE_RENAMING, "true");
|
||||||
|
@ -69,15 +68,18 @@ void RequestGroupTest::testTryAutoFileRenaming()
|
||||||
|
|
||||||
ctx->getFirstFileEntry()->setPath("/tmp/myfile.txt");
|
ctx->getFirstFileEntry()->setPath("/tmp/myfile.txt");
|
||||||
group.tryAutoFileRenaming();
|
group.tryAutoFileRenaming();
|
||||||
CPPUNIT_ASSERT_EQUAL(std::string("/tmp/myfile.1.txt"), group.getFirstFilePath());
|
CPPUNIT_ASSERT_EQUAL(std::string("/tmp/myfile.1.txt"),
|
||||||
|
group.getFirstFilePath());
|
||||||
|
|
||||||
ctx->getFirstFileEntry()->setPath("/tmp.txt/myfile");
|
ctx->getFirstFileEntry()->setPath("/tmp.txt/myfile");
|
||||||
group.tryAutoFileRenaming();
|
group.tryAutoFileRenaming();
|
||||||
CPPUNIT_ASSERT_EQUAL(std::string("/tmp.txt/myfile.1"), group.getFirstFilePath());
|
CPPUNIT_ASSERT_EQUAL(std::string("/tmp.txt/myfile.1"),
|
||||||
|
group.getFirstFilePath());
|
||||||
|
|
||||||
ctx->getFirstFileEntry()->setPath("/tmp.txt/myfile.txt");
|
ctx->getFirstFileEntry()->setPath("/tmp.txt/myfile.txt");
|
||||||
group.tryAutoFileRenaming();
|
group.tryAutoFileRenaming();
|
||||||
CPPUNIT_ASSERT_EQUAL(std::string("/tmp.txt/myfile.1.txt"), group.getFirstFilePath());
|
CPPUNIT_ASSERT_EQUAL(std::string("/tmp.txt/myfile.1.txt"),
|
||||||
|
group.getFirstFilePath());
|
||||||
|
|
||||||
ctx->getFirstFileEntry()->setPath(".bashrc");
|
ctx->getFirstFileEntry()->setPath(".bashrc");
|
||||||
group.tryAutoFileRenaming();
|
group.tryAutoFileRenaming();
|
||||||
|
@ -89,12 +91,13 @@ void RequestGroupTest::testTryAutoFileRenaming()
|
||||||
|
|
||||||
ctx->getFirstFileEntry()->setPath("/tmp.txt/.bashrc");
|
ctx->getFirstFileEntry()->setPath("/tmp.txt/.bashrc");
|
||||||
group.tryAutoFileRenaming();
|
group.tryAutoFileRenaming();
|
||||||
CPPUNIT_ASSERT_EQUAL(std::string("/tmp.txt/.bashrc.1"), group.getFirstFilePath());
|
CPPUNIT_ASSERT_EQUAL(std::string("/tmp.txt/.bashrc.1"),
|
||||||
|
group.getFirstFilePath());
|
||||||
|
|
||||||
ctx->getFirstFileEntry()->setPath("/tmp.txt/.bashrc.txt");
|
ctx->getFirstFileEntry()->setPath("/tmp.txt/.bashrc.txt");
|
||||||
group.tryAutoFileRenaming();
|
group.tryAutoFileRenaming();
|
||||||
CPPUNIT_ASSERT_EQUAL(std::string("/tmp.txt/.bashrc.1.txt"), group.getFirstFilePath());
|
CPPUNIT_ASSERT_EQUAL(std::string("/tmp.txt/.bashrc.1.txt"),
|
||||||
|
group.getFirstFilePath());
|
||||||
}
|
}
|
||||||
|
|
||||||
void RequestGroupTest::testCreateDownloadResult()
|
void RequestGroupTest::testCreateDownloadResult()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue