replace typedef with using. replace NULL with nullptr. cleanup page_aligned_allocator

This commit is contained in:
arvidn 2018-03-22 17:01:38 +01:00 committed by Arvid Norberg
parent 7a477cd938
commit 9df4d4b7f8
47 changed files with 170 additions and 174 deletions

View File

@ -243,7 +243,7 @@ void bind_alert()
{
using boost::noncopyable;
typedef return_value_policy<return_by_value> by_value;
using by_value = return_value_policy<return_by_value>;
{
scope alert_scope = class_<alert, noncopyable >("alert", no_init)

View File

@ -65,11 +65,11 @@ namespace
struct FileIter
{
typedef lt::file_entry value_type;
typedef lt::file_entry reference;
typedef lt::file_entry* pointer;
typedef int difference_type;
typedef std::forward_iterator_tag iterator_category;
using value_type = lt::file_entry;
using reference = lt::file_entry;
using pointer = lt::file_entry*;
using difference_type = int;
using iterator_category = std::forward_iterator_tag;
FileIter(file_storage const& fs, file_index_t i) : m_fs(&fs), m_i(i) {}
FileIter(FileIter const&) = default;

View File

@ -211,6 +211,7 @@ def looks_like_variable(line):
if line.startswith(','): return False
if line.startswith(':'): return False
if line.startswith('typedef'): return False
if line.startswith('using'): return False
if ' = ' in line: return True
if line.endswith(';'): return True
return False

View File

@ -91,9 +91,9 @@ network primitives
There are a few typedefs in the ``libtorrent`` namespace which pulls
in network types from the ``boost::asio`` namespace. These are::
typedef boost::asio::ip::address address;
typedef boost::asio::ip::address_v4 address_v4;
typedef boost::asio::ip::address_v6 address_v6;
using address = boost::asio::ip::address;
using address_v4 = boost::asio::ip::address_v4;
using address_v6 = boost::asio::ip::address_v6;
using boost::asio::ip::tcp;
using boost::asio::ip::udp;

View File

@ -1,8 +1,8 @@
/*
* Copyright 2001-2004 Unicode, Inc.
*
*
* Disclaimer
*
*
* This source code is provided as is by Unicode, Inc. No claims are
* made as to fitness for any particular purpose. No warranties of any
* kind are expressed or implied. The recipient agrees to determine
@ -10,9 +10,9 @@
* purchased on magnetic or optical media from Unicode, Inc., the
* sole remedy for any claim will be exchange of defective media
* within 90 days of receipt.
*
*
* Limitations on Rights to Redistribute This Code
*
*
* Unicode, Inc. hereby grants the right to freely use the information
* supplied in this file in the creation of products supporting the
* Unicode Standard, and to make copies of this file in any form
@ -33,7 +33,7 @@
Each routine converts the text between *sourceStart and sourceEnd,
putting the result into the buffer between *targetStart and
targetEnd. Note: the end pointers are *after* the last item: e.g.
targetEnd. Note: the end pointers are *after* the last item: e.g.
*(sourceEnd - 1) is the last item.
The return result indicates whether the conversion was successful,
@ -71,7 +71,7 @@
sequence is malformed. When "sourceIllegal" is returned, the source
value will point to the illegal value that caused the problem. E.g.,
in UTF-8 when a sequence is malformed, it points to the start of the
malformed sequence.
malformed sequence.
Author: Mark E. Davis, 1994.
Rev History: Rick McGowan, fixes & updates May 2001.
@ -81,12 +81,12 @@
#include "libtorrent/config.hpp"
#include <cstdint>
typedef std::uint32_t UTF32;
typedef std::uint16_t UTF16;
typedef std::uint8_t UTF8;
using UTF32 = std::uint32_t;
using UTF16 = std::uint16_t;
using UTF8 = std::uint8_t;
extern "C" {
typedef unsigned char Boolean; /* 0 or 1 */
using Boolean = unsigned char; /* 0 or 1 */
/* Some fundamental constants */
#define UNI_REPLACEMENT_CHAR UTF32(0x0000FFFD)
@ -95,12 +95,12 @@ typedef unsigned char Boolean; /* 0 or 1 */
#define UNI_MAX_UTF32 UTF32(0x7FFFFFFF)
#define UNI_MAX_LEGAL_UTF32 UTF32(0x0010FFFF)
typedef enum {
conversionOK, /* conversion successful */
sourceExhausted, /* partial character in source, but hit end */
targetExhausted, /* insuff. room in target for conversion */
sourceIllegal /* source sequence is illegal/malformed */
} ConversionResult;
enum ConversionResult {
conversionOK, /* conversion successful */
sourceExhausted, /* partial character in source, but hit end */
targetExhausted, /* insuff. room in target for conversion */
sourceIllegal /* source sequence is illegal/malformed */
};
typedef enum {
strictConversion = 0,
@ -108,38 +108,36 @@ typedef enum {
} ConversionFlags;
TORRENT_EXTRA_EXPORT ConversionResult ConvertUTF8toUTF16 (
const UTF8** sourceStart, const UTF8* sourceEnd,
UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags);
const UTF8** sourceStart, const UTF8* sourceEnd,
UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags);
TORRENT_EXTRA_EXPORT ConversionResult ConvertUTF16toUTF8 (
const UTF16** sourceStart, const UTF16* sourceEnd,
UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags);
const UTF16** sourceStart, const UTF16* sourceEnd,
UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags);
TORRENT_EXTRA_EXPORT ConversionResult ConvertUTF8toUTF32 (
const UTF8** sourceStart, const UTF8* sourceEnd,
UTF32** targetStart, UTF32* targetEnd, ConversionFlags flags);
const UTF8** sourceStart, const UTF8* sourceEnd,
UTF32** targetStart, UTF32* targetEnd, ConversionFlags flags);
TORRENT_EXTRA_EXPORT ConversionResult ConvertUTF32toUTF8 (
const UTF32** sourceStart, const UTF32* sourceEnd,
UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags);
const UTF32** sourceStart, const UTF32* sourceEnd,
UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags);
TORRENT_EXTRA_EXPORT ConversionResult ConvertUTF16toUTF32 (
const UTF16** sourceStart, const UTF16* sourceEnd,
UTF32** targetStart, UTF32* targetEnd, ConversionFlags flags);
const UTF16** sourceStart, const UTF16* sourceEnd,
UTF32** targetStart, UTF32* targetEnd, ConversionFlags flags);
TORRENT_EXTRA_EXPORT ConversionResult ConvertUTF32toUTF16 (
const UTF32** sourceStart, const UTF32* sourceEnd,
UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags);
const UTF32** sourceStart, const UTF32* sourceEnd,
UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags);
TORRENT_EXTRA_EXPORT Boolean isLegalUTF8Sequence(const UTF8 *source,
const UTF8 *sourceEnd);
const UTF8 *sourceEnd);
TORRENT_EXTRA_EXPORT Boolean isLegalUTF8(const UTF8 *source, int length);
extern const char trailingBytesForUTF8[256];
extern const UTF32 offsetsFromUTF8[6];
#ifdef __cplusplus
}
#endif
/* --------------------------------------------------------------------- */

View File

@ -281,8 +281,17 @@ namespace libtorrent {
private:
aux::allocation_slot m_name_idx;
#ifndef TORRENT_NO_DEPRECATE
#if defined __clang__ && __clang_major__ > 9
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wshadow-field"
#endif
public:
std::string TORRENT_DEPRECATED_MEMBER name;
#if defined __clang__ && __clang_major__ > 9
#pragma clang diagnostic pop
#endif
#endif
};

View File

@ -40,17 +40,11 @@ namespace libtorrent {
TORRENT_EXTRA_EXPORT int page_size();
struct TORRENT_EXTRA_EXPORT page_aligned_allocator
{
typedef int size_type;
typedef std::ptrdiff_t difference_type;
static char* malloc(size_type bytes);
static void free(char* block);
TORRENT_EXTRA_EXPORT char* page_malloc(std::size_t bytes);
TORRENT_EXTRA_EXPORT void page_free(char* block);
#ifdef TORRENT_DEBUG_BUFFERS
static bool in_use(char const* block);
TORRENT_EXTRA_EXPORT bool page_in_use(char const* block);
#endif
};
}

View File

@ -151,7 +151,7 @@ namespace boost { namespace system {
namespace libtorrent {
typedef boost::system::error_code error_code;
using error_code = boost::system::error_code;
TORRENT_EXTRA_EXPORT char const* parse_int(char const* start
, char const* end, char delimiter, std::int64_t& val

View File

@ -164,11 +164,11 @@ namespace libtorrent {
{
friend struct bitfield;
typedef bool value_type;
typedef ptrdiff_t difference_type;
typedef bool const* pointer;
typedef bool& reference;
typedef std::forward_iterator_tag iterator_category;
using value_type = bool;
using difference_type = ptrdiff_t;
using pointer = bool const*;
using reference = bool&;
using iterator_category = std::forward_iterator_tag;
bool operator*() { return (*buf & aux::host_to_network(bit)) != 0; }
const_iterator& operator++() { inc(); return *this; }

View File

@ -57,8 +57,8 @@ namespace libtorrent {
TORRENT_EXTRA_EXPORT bool supports_ipv6();
address ensure_v6(address const& a);
typedef std::function<void(udp::endpoint const& from
, span<char const> buffer)> receive_handler_t;
using receive_handler_t = std::function<void(udp::endpoint const& from
, span<char const> buffer)>;
class TORRENT_EXTRA_EXPORT broadcast_socket
{

View File

@ -46,9 +46,9 @@ POSSIBILITY OF SUCH DAMAGE.
namespace libtorrent {
#if defined TORRENT_BUILD_SIMULATOR
typedef sim::asio::high_resolution_timer deadline_timer;
using deadline_timer = sim::asio::high_resolution_timer;
#else
typedef boost::asio::high_resolution_timer deadline_timer;
using deadline_timer = boost::asio::high_resolution_timer;
#endif
}

View File

@ -95,7 +95,7 @@ namespace aux {
bool need_readback;
};
typedef tailqueue<disk_io_job> jobqueue_t;
using jobqueue_t = tailqueue<disk_io_job>;
// this struct holds a number of statistics counters
// relevant for the disk io thread and disk cache.

View File

@ -66,12 +66,12 @@ struct resolver_interface;
constexpr int default_max_bottled_buffer_size = 2 * 1024 * 1024;
typedef std::function<void(error_code const&
, http_parser const&, span<char const> data, http_connection&)> http_handler;
using http_handler = std::function<void(error_code const&
, http_parser const&, span<char const> data, http_connection&)>;
typedef std::function<void(http_connection&)> http_connect_handler;
using http_connect_handler = std::function<void(http_connection&)>;
typedef std::function<void(http_connection&, std::vector<tcp::endpoint>&)> http_filter_handler;
using http_filter_handler = std::function<void(http_connection&, std::vector<tcp::endpoint>&)>;
// when bottled, the last two arguments to the handler
// will always be 0

View File

@ -183,7 +183,7 @@ public:
char const* session_id() const { return m_session_id.c_str(); }
std::string const& local_endpoint() const { return m_i2p_local_endpoint; }
typedef std::function<void(error_code const&, char const*)> name_lookup_handler;
using name_lookup_handler = std::function<void(error_code const&, char const*)>;
void async_name_lookup(char const* name, name_lookup_handler handler);
private:

View File

@ -51,7 +51,7 @@ class node;
struct find_data : traversal_algorithm
{
typedef std::function<void(std::vector<std::pair<node_entry, std::string>> const&)> nodes_callback;
using nodes_callback = std::function<void(std::vector<std::pair<node_entry, std::string>> const&)>;
find_data(node& dht_node, node_id const& target
, nodes_callback const& ncallback);

View File

@ -43,7 +43,7 @@ namespace libtorrent { namespace dht {
class get_item : public find_data
{
public:
typedef std::function<void(item const&, bool)> data_callback;
using data_callback = std::function<void(item const&, bool)>;
void got_data(bdecode_node const& v,
public_key const& pk,

View File

@ -39,7 +39,7 @@ namespace libtorrent { namespace dht {
struct get_peers : find_data
{
typedef std::function<void(std::vector<tcp::endpoint> const&)> data_callback;
using data_callback = std::function<void(std::vector<tcp::endpoint> const&)>;
void got_peers(std::vector<tcp::endpoint> const& peers);

View File

@ -47,7 +47,7 @@ class node;
struct put_data: traversal_algorithm
{
typedef std::function<void(item const&, int)> put_callback;
using put_callback = std::function<void(item const&, int)>;
put_data(node& node, put_callback const& callback);

View File

@ -41,7 +41,7 @@ namespace libtorrent { namespace dht {
class bootstrap : public get_peers
{
public:
typedef get_peers::nodes_callback done_callback;
using done_callback = get_peers::nodes_callback;
bootstrap(node& dht_node, node_id const& target
, done_callback const& callback);

View File

@ -59,7 +59,7 @@ namespace libtorrent { namespace dht {
struct dht_settings;
struct dht_logger;
typedef aux::vector<node_entry> bucket_t;
using bucket_t = aux::vector<node_entry>;
struct routing_table_node
{
@ -161,7 +161,7 @@ public:
void add_router_node(udp::endpoint const& router);
// iterates over the router nodes added
typedef std::set<udp::endpoint>::const_iterator router_iterator;
using router_iterator = std::set<udp::endpoint>::const_iterator;
router_iterator begin() const { return m_router_nodes.begin(); }
router_iterator end() const { return m_router_nodes.end(); }

View File

@ -47,10 +47,10 @@ public:
using handler_type = std::function<void(error_code const&)>;
typedef tcp::socket next_layer_type;
typedef tcp::socket::lowest_layer_type lowest_layer_type;
typedef tcp::socket::endpoint_type endpoint_type;
typedef tcp::socket::protocol_type protocol_type;
using next_layer_type = tcp::socket;
using lowest_layer_type = tcp::socket::lowest_layer_type;
using endpoint_type = tcp::socket::endpoint_type;
using protocol_type = tcp::socket::protocol_type;
explicit proxy_base(io_service& io_service);
~proxy_base();
@ -64,7 +64,7 @@ public:
}
#if BOOST_VERSION >= 106600
typedef tcp::socket::executor_type executor_type;
using executor_type = tcp::socket::executor_type;
executor_type get_executor() { return m_sock.get_executor(); }
#endif

View File

@ -74,13 +74,13 @@ public:
{
}
typedef typename boost::asio::ssl::stream<Stream> sock_type;
typedef typename sock_type::next_layer_type next_layer_type;
typedef typename Stream::lowest_layer_type lowest_layer_type;
typedef typename Stream::endpoint_type endpoint_type;
typedef typename Stream::protocol_type protocol_type;
using sock_type = typename boost::asio::ssl::stream<Stream>;
using next_layer_type = typename sock_type::next_layer_type;
using lowest_layer_type = typename Stream::lowest_layer_type;
using endpoint_type = typename Stream::endpoint_type;
using protocol_type = typename Stream::protocol_type;
#if BOOST_VERSION >= 106600
typedef typename sock_type::executor_type executor_type;
using executor_type = typename sock_type::executor_type;
executor_type get_executor() { return m_sock.get_executor(); }
#endif

View File

@ -77,7 +77,7 @@ namespace libtorrent {
// http seed spec. by John Hoffman
enum type_t { url_seed, http_seed };
typedef std::vector<std::pair<std::string, std::string>> headers_t;
using headers_t = std::vector<std::pair<std::string, std::string>>;
web_seed_entry(std::string const& url_, type_t type_
, std::string const& auth_ = std::string()
@ -351,8 +351,8 @@ namespace libtorrent {
#ifndef TORRENT_NO_DEPRECATE
// deprecated in 1.0. Use the variants that take an index instead
// internal_file_entry is no longer exposed in the API
typedef file_storage::iterator file_iterator;
typedef file_storage::reverse_iterator reverse_file_iterator;
using file_iterator = file_storage::iterator;
using reverse_file_iterator = file_storage::reverse_iterator;
// This class will need some explanation. First of all, to get a list of
// all files in the torrent, you can use ``begin_files()``,

View File

@ -336,14 +336,14 @@ namespace libtorrent {
{
public:
typedef std::function<void(aux::listen_socket_handle const&
using send_fun_t = std::function<void(aux::listen_socket_handle const&
, udp::endpoint const&
, span<char const>
, error_code&, udp_send_flags_t)> send_fun_t;
typedef std::function<void(aux::listen_socket_handle const&
, error_code&, udp_send_flags_t)>;
using send_fun_hostname_t = std::function<void(aux::listen_socket_handle const&
, char const*, int
, span<char const>
, error_code&, udp_send_flags_t)> send_fun_hostname_t;
, error_code&, udp_send_flags_t)>;
tracker_manager(send_fun_t const& send_fun
, send_fun_hostname_t const& send_fun_hostname

View File

@ -111,8 +111,8 @@ namespace libtorrent {
return local_endpoint(ec);
}
typedef udp::socket::receive_buffer_size receive_buffer_size;
typedef udp::socket::send_buffer_size send_buffer_size;
using receive_buffer_size = udp::socket::receive_buffer_size;
using send_buffer_size = udp::socket::send_buffer_size;
template <class SocketOption>
void get_option(SocketOption const& opt, error_code& ec)

View File

@ -141,7 +141,7 @@ namespace libtorrent {
incoming_utp_callback_t m_cb;
// replace with a hash-map
typedef std::multimap<std::uint16_t, utp_socket_impl*> socket_map_t;
using socket_map_t = std::multimap<std::uint16_t, utp_socket_impl*>;
socket_map_t m_utp_sockets;
using socket_vector_t = std::vector<utp_socket_impl*>;

View File

@ -98,12 +98,12 @@ namespace libtorrent {
char m_storage[sizeof(T)];
};
typedef big_endian_int<std::uint64_t> be_uint64;
typedef big_endian_int<std::uint32_t> be_uint32;
typedef big_endian_int<std::uint16_t> be_uint16;
typedef big_endian_int<std::int64_t> be_int64;
typedef big_endian_int<std::int32_t> be_int32;
typedef big_endian_int<std::int16_t> be_int16;
using be_uint64 = big_endian_int<std::uint64_t>;
using be_uint32 = big_endian_int<std::uint32_t>;
using be_uint16 = big_endian_int<std::uint16_t>;
using be_int64 = big_endian_int<std::int64_t>;
using be_int32 = big_endian_int<std::int32_t>;
using be_int16 = big_endian_int<std::int16_t>;
/*
uTP header from BEP 29
@ -188,7 +188,7 @@ struct TORRENT_EXTRA_EXPORT utp_stream
using protocol_type = tcp::socket::protocol_type;
#if BOOST_VERSION >= 106600
typedef tcp::socket::executor_type executor_type;
using executor_type = tcp::socket::executor_type;
executor_type get_executor() { return m_io_service.get_executor(); }
#endif

View File

@ -93,7 +93,7 @@ namespace libtorrent {
return s;
}
char* page_aligned_allocator::malloc(page_aligned_allocator::size_type bytes)
char* page_malloc(std::size_t bytes)
{
TORRENT_ASSERT(bytes > 0);
// just sanity check (this needs to be pretty high
@ -147,7 +147,7 @@ namespace libtorrent {
#endif // TORRENT_DEBUG_BUFFERS
}
void page_aligned_allocator::free(char* block)
void page_free(char* block)
{
if (block == nullptr) return;
@ -187,7 +187,7 @@ namespace libtorrent {
}
#ifdef TORRENT_DEBUG_BUFFERS
bool page_aligned_allocator::in_use(char const* block)
bool page_in_use(char const* block)
{
const int page = page_size();
alloc_header const* h = reinterpret_cast<alloc_header const*>(block - page);

View File

@ -138,7 +138,7 @@ namespace libtorrent {
#if TORRENT_USE_INVARIANT_CHECKS
return m_buffers_in_use.count(buffer) == 1;
#elif defined TORRENT_DEBUG_BUFFERS
return page_aligned_allocator::in_use(buffer);
return page_in_use(buffer);
#else
TORRENT_UNUSED(buffer);
return true;
@ -227,7 +227,7 @@ namespace libtorrent {
TORRENT_ASSERT(l.owns_lock());
TORRENT_UNUSED(l);
char* ret = page_aligned_allocator::malloc(default_block_size);
char* ret = page_malloc(default_block_size);
if (ret == nullptr)
{
@ -375,7 +375,7 @@ namespace libtorrent {
TORRENT_ASSERT(l.owns_lock());
TORRENT_UNUSED(l);
page_aligned_allocator::free(buf);
page_free(buf);
--m_in_use;
}

View File

@ -1059,7 +1059,7 @@ constexpr disk_job_flags_t disk_interface::cache_hit;
namespace {
typedef status_t (disk_io_thread::*disk_io_fun_t)(disk_io_job* j, jobqueue_t& completed_jobs);
using disk_io_fun_t = status_t (disk_io_thread::*)(disk_io_job*, jobqueue_t&);
// this is a jump-table for disk I/O jobs
std::array<disk_io_fun_t, 15> const job_functions =

View File

@ -506,7 +506,7 @@ int _System __libsocket_sysctl(int* mib, u_int namelen, void *oldp, size_t *oldl
{
if (family == AF_INET)
{
typedef boost::asio::ip::address_v4::bytes_type bytes_t;
using bytes_t = boost::asio::ip::address_v4::bytes_type;
bytes_t b;
std::memset(&b[0], 0xff, b.size());
for (int i = int(sizeof(bytes_t)) / 8 - 1; i > 0; --i)
@ -524,7 +524,7 @@ int _System __libsocket_sysctl(int* mib, u_int namelen, void *oldp, size_t *oldl
#if TORRENT_USE_IPV6
else if (family == AF_INET6)
{
typedef boost::asio::ip::address_v6::bytes_type bytes_t;
using bytes_t = boost::asio::ip::address_v6::bytes_type;
bytes_t b;
std::memset(&b[0], 0xff, b.size());
for (int i = int(sizeof(bytes_t)) / 8 - 1; i > 0; --i)
@ -709,7 +709,7 @@ int _System __libsocket_sysctl(int* mib, u_int namelen, void *oldp, size_t *oldl
#elif TORRENT_USE_GETADAPTERSADDRESSES
#if _WIN32_WINNT >= 0x0501
typedef ULONG (WINAPI *GetAdaptersAddresses_t)(ULONG,ULONG,PVOID,PIP_ADAPTER_ADDRESSES,PULONG);
using GetAdaptersAddresses_t = ULONG (WINAPI *)(ULONG,ULONG,PVOID,PIP_ADAPTER_ADDRESSES,PULONG);
// Get GetAdaptersAddresses() pointer
auto GetAdaptersAddresses =
aux::get_library_procedure<aux::iphlpapi, GetAdaptersAddresses_t>("GetAdaptersAddresses");
@ -1031,7 +1031,7 @@ int _System __libsocket_sysctl(int* mib, u_int namelen, void *oldp, size_t *oldl
/*
move this to enum_net_interfaces
// Get GetAdaptersInfo() pointer
typedef DWORD (WINAPI *GetAdaptersInfo_t)(PIP_ADAPTER_INFO, PULONG);
using GetAdaptersInfo_t = DWORD (WINAPI*)(PIP_ADAPTER_INFO, PULONG);
GetAdaptersInfo_t GetAdaptersInfo = get_library_procedure<iphlpapi, GetAdaptersInfo_t>("GetAdaptersInfo");
if (GetAdaptersInfo == nullptr)
{
@ -1079,8 +1079,9 @@ int _System __libsocket_sysctl(int* mib, u_int namelen, void *oldp, size_t *oldl
free(adapter_info);
*/
typedef DWORD (WINAPI *GetIfEntry_t)(PMIB_IFROW pIfRow);
auto GetIfEntry = aux::get_library_procedure<aux::iphlpapi, GetIfEntry_t>("GetIfEntry");
using GetIfEntry_t = DWORD (WINAPI *)(PMIB_IFROW pIfRow);
auto GetIfEntry = aux::get_library_procedure<aux::iphlpapi, GetIfEntry_t>(
"GetIfEntry");
if (GetIfEntry == nullptr)
{
@ -1089,9 +1090,9 @@ int _System __libsocket_sysctl(int* mib, u_int namelen, void *oldp, size_t *oldl
}
#if _WIN32_WINNT >= 0x0600
typedef DWORD (WINAPI *GetIpForwardTable2_t)(
using GetIpForwardTable2_t = DWORD (WINAPI *)(
ADDRESS_FAMILY, PMIB_IPFORWARD_TABLE2*);
typedef void (WINAPI *FreeMibTable_t)(PVOID Memory);
using FreeMibTable_t = void (WINAPI *)(PVOID Memory);
auto GetIpForwardTable2 = aux::get_library_procedure<aux::iphlpapi, GetIpForwardTable2_t>("GetIpForwardTable2");
auto FreeMibTable = aux::get_library_procedure<aux::iphlpapi, FreeMibTable_t>("FreeMibTable");
@ -1126,7 +1127,7 @@ int _System __libsocket_sysctl(int* mib, u_int namelen, void *oldp, size_t *oldl
#endif
// Get GetIpForwardTable() pointer
typedef DWORD (WINAPI *GetIpForwardTable_t)(PMIB_IPFORWARDTABLE pIpForwardTable,PULONG pdwSize,BOOL bOrder);
using GetIpForwardTable_t = DWORD (WINAPI*)(PMIB_IPFORWARDTABLE pIpForwardTable,PULONG pdwSize,BOOL bOrder);
auto GetIpForwardTable = aux::get_library_procedure<aux::iphlpapi, GetIpForwardTable_t>("GetIpForwardTable");
if (GetIpForwardTable == nullptr)

View File

@ -1047,23 +1047,14 @@ namespace {
#ifdef TORRENT_WINDOWS
bool get_manage_volume_privs()
{
typedef BOOL (WINAPI *OpenProcessToken_t)(
HANDLE ProcessHandle,
DWORD DesiredAccess,
PHANDLE TokenHandle);
using OpenProcessToken_t = BOOL (WINAPI*)(
HANDLE, DWORD, PHANDLE);
typedef BOOL (WINAPI *LookupPrivilegeValue_t)(
LPCSTR lpSystemName,
LPCSTR lpName,
PLUID lpLuid);
using LookupPrivilegeValue_t = BOOL (WINAPI*)(
LPCSTR, LPCSTR, PLUID);
typedef BOOL (WINAPI *AdjustTokenPrivileges_t)(
HANDLE TokenHandle,
BOOL DisableAllPrivileges,
PTOKEN_PRIVILEGES NewState,
DWORD BufferLength,
PTOKEN_PRIVILEGES PreviousState,
PDWORD ReturnLength);
using AdjustTokenPrivileges_t = BOOL (WINAPI*)(
HANDLE, BOOL, PTOKEN_PRIVILEGES, DWORD, PTOKEN_PRIVILEGES, PDWORD);
auto OpenProcessToken =
aux::get_library_procedure<aux::advapi32, OpenProcessToken_t>("OpenProcessToken");
@ -1101,7 +1092,7 @@ namespace {
void set_file_valid_data(HANDLE f, std::int64_t size)
{
typedef BOOL (WINAPI *SetFileValidData_t)(HANDLE, LONGLONG);
using SetFileValidData_t = BOOL (WINAPI*)(HANDLE, LONGLONG);
auto SetFileValidData =
aux::get_library_procedure<aux::kernel32, SetFileValidData_t>("SetFileValidData");

View File

@ -55,7 +55,7 @@ namespace libtorrent {
{
// file prio is only supported on vista and up
// so load the functions dynamically
typedef enum {
enum FILE_INFO_BY_HANDLE_CLASS_LOCAL {
FileBasicInfo,
FileStandardInfo,
FileNameInfo,
@ -71,22 +71,24 @@ namespace libtorrent {
FileIoPriorityHintInfo,
FileRemoteProtocolInfo,
MaximumFileInfoByHandleClass
} FILE_INFO_BY_HANDLE_CLASS_LOCAL;
};
typedef enum {
enum PRIORITY_HINT_LOCAL {
IoPriorityHintVeryLow = 0,
IoPriorityHintLow,
IoPriorityHintNormal,
MaximumIoPriorityHintType
} PRIORITY_HINT_LOCAL;
};
typedef struct {
struct FILE_IO_PRIORITY_HINT_INFO_LOCAL {
PRIORITY_HINT_LOCAL PriorityHint;
} FILE_IO_PRIORITY_HINT_INFO_LOCAL;
};
typedef BOOL (WINAPI *SetFileInformationByHandle_t)(HANDLE hFile, FILE_INFO_BY_HANDLE_CLASS_LOCAL FileInformationClass, LPVOID lpFileInformation, DWORD dwBufferSize);
using SetFileInformationByHandle_t = BOOL (WINAPI *)(HANDLE
, FILE_INFO_BY_HANDLE_CLASS_LOCAL, LPVOID, DWORD);
auto SetFileInformationByHandle =
aux::get_library_procedure<aux::kernel32, SetFileInformationByHandle_t>("SetFileInformationByHandle");
aux::get_library_procedure<aux::kernel32, SetFileInformationByHandle_t>(
"SetFileInformationByHandle");
if (SetFileInformationByHandle == nullptr) return;

View File

@ -3452,10 +3452,10 @@ get_out:
m_pad_blocks.insert(block);
// if we mark and entire piece as a pad file, we need to also
// consder that piece as "had" and increment some counters
typedef std::set<piece_block>::iterator iter;
iter begin = m_pad_blocks.lower_bound(piece_block(block.piece_index, 0));
using iter = std::set<piece_block>::const_iterator;
iter const begin = m_pad_blocks.lower_bound(piece_block(block.piece_index, 0));
int const blocks = blocks_in_piece(block.piece_index);
iter end = m_pad_blocks.upper_bound(piece_block(block.piece_index, blocks));
iter const end = m_pad_blocks.upper_bound(piece_block(block.piece_index, blocks));
if (std::distance(begin, end) == blocks)
{
// the entire piece is a pad file

View File

@ -449,7 +449,7 @@ constexpr int CLOSE_FILE_INTERVAL = 0;
void run_all_updates(aux::session_impl& ses)
{
typedef void (aux::session_impl::*fun_t)();
using fun_t = void (aux::session_impl::*)();
for (int i = 0; i < settings_pack::num_string_settings; ++i)
{
fun_t const& f = str_settings[i].fun;
@ -516,7 +516,7 @@ constexpr int CLOSE_FILE_INTERVAL = 0;
void apply_pack(settings_pack const* pack, aux::session_settings& sett
, aux::session_impl* ses)
{
typedef void (aux::session_impl::*fun_t)();
using fun_t = void (aux::session_impl::*)();
std::vector<fun_t> callbacks;
for (auto const& p : pack->m_strings)

View File

@ -19,13 +19,13 @@ changelog at the end of the file.
#include <boost/detail/endian.hpp> // for BIG_ENDIAN and LITTLE_ENDIAN macros
#include "libtorrent/aux_/disable_warnings_pop.hpp"
typedef std::uint32_t u32;
typedef std::uint8_t u8;
namespace libtorrent {
namespace {
using u32 = std::uint32_t;
using u8 = std::uint8_t;
union CHAR64LONG16
{
u8 c[64];

View File

@ -160,7 +160,7 @@ static int sha512_compress(sha512_ctx *md, unsigned char *buf)
@return 0 if successful
*/
int SHA512_init(sha512_ctx* md) {
if (md == NULL) return 1;
if (md == nullptr) return 1;
md->curlen = 0;
md->length = 0;
@ -188,8 +188,8 @@ int SHA512_update(sha512_ctx* md, std::uint8_t const* in, std::size_t inlen)
std::size_t n;
std::size_t i;
int err;
if (md == NULL) return 1;
if (in == NULL) return 1;
if (md == nullptr) return 1;
if (in == nullptr) return 1;
if (md->curlen > sizeof(md->buf)) {
return 1;
}
@ -234,8 +234,8 @@ int SHA512_final(std::uint8_t* out, sha512_ctx* md)
{
int i;
if (md == NULL) return 1;
if (out == NULL) return 1;
if (md == nullptr) return 1;
if (out == nullptr) return 1;
if (md->curlen >= sizeof(md->buf)) {
return 1;

View File

@ -196,7 +196,7 @@ namespace aux {
void socket_type::destruct()
{
typedef tcp::socket tcp_socket;
using tcp_socket = tcp::socket;
switch (m_type)
{
case 0: break;

View File

@ -320,7 +320,7 @@ void wait_for_listen(lt::session& ses, char const* name)
alert const* a = nullptr;
do
{
listen_done = print_alerts(ses, name, true, true, [&listen_done](lt::alert const* al)
listen_done = print_alerts(ses, name, true, true, [](lt::alert const* al)
{ return alert_cast<listen_failed_alert>(al) || alert_cast<listen_succeeded_alert>(al); }
, false);
if (listen_done) break;
@ -338,7 +338,7 @@ void wait_for_downloading(lt::session& ses, char const* name)
do
{
downloading_done = print_alerts(ses, name, true, true
, [&downloading_done](lt::alert const* al)
, [](lt::alert const* al)
{
state_changed_alert const* sc = alert_cast<state_changed_alert>(al);
return sc && sc->state == torrent_status::downloading;
@ -391,9 +391,9 @@ void print_ses_rate(float const time
}
#ifdef _WIN32
typedef DWORD pid_type;
using pid_type = DWORD;
#else
typedef pid_t pid_type;
using pid_type = pid_t;
#endif
namespace {

View File

@ -75,7 +75,7 @@ int EXPORT print_failures();
int EXPORT test_counter();
void EXPORT reset_output();
typedef void (*unit_test_fun_t)();
using unit_test_fun_t = void (*)();
struct unit_test_t
{
@ -100,7 +100,7 @@ extern int _g_test_idx;
t.name = __FILE__ "." #test_name; \
t.num_failures = 0; \
t.run = false; \
t.output = NULL; \
t.output = nullptr; \
_g_num_unit_tests++; \
} \
} BOOST_PP_CAT(_static_registrar_, test_name); \

View File

@ -113,7 +113,7 @@ void peer_connection::start()
}
typedef std::vector<std::shared_ptr<peer_connection>> connections_t;
using connections_t = std::vector<std::shared_ptr<peer_connection>>;
void do_change_rate(bandwidth_channel& t1, bandwidth_channel& t2, int limit)
{

View File

@ -212,7 +212,7 @@ TORRENT_TEST(chained_buffer)
// there are no buffers, we should not be able to allocate
// an appendix in an existing buffer
TEST_EQUAL(b.allocate_appendix(1), 0);
TEST_EQUAL(b.allocate_appendix(1), static_cast<char*>(nullptr));
char* b1 = allocate_buffer(512);
std::memcpy(b1, data_test, 6);

View File

@ -184,7 +184,7 @@ void run_suite(std::string const& protocol
if (ps.type != settings_pack::none)
ps.port = aux::numeric_cast<std::uint16_t>(start_proxy(ps.type));
typedef boost::optional<error_code> err;
using err = boost::optional<error_code>;
char url[256];
std::snprintf(url, sizeof(url), "%s://127.0.0.1:%d/", protocol.c_str(), port);

View File

@ -239,7 +239,7 @@ TORRENT_TEST(http_parser)
TEST_CHECK(parser.header("content-type") == "text/plain");
TEST_CHECK(atoi(parser.header("content-length").c_str()) == 20);
TEST_CHECK(parser.chunked_encoding());
typedef std::pair<std::int64_t, std::int64_t> chunk_range;
using chunk_range = std::pair<std::int64_t, std::int64_t>;
std::vector<chunk_range> cmp;
cmp.push_back(chunk_range(96, 100));
cmp.push_back(chunk_range(106, 122));

View File

@ -183,7 +183,7 @@ std::shared_ptr<piece_picker> setup_picker(
int const idx = static_cast<int>(i);
if (priority[idx] == 0) break;
download_priority_t const prio((priority[idx] - '0') & 0xff);
assert(prio >= dont_download);
TEST_CHECK(prio >= dont_download);
p->set_piece_priority(i, prio);
TEST_CHECK(p->piece_priority(i) == prio);
@ -2067,10 +2067,10 @@ TORRENT_TEST(mark_as_pad_whole_piece_seeding)
TEST_CHECK(!p->is_seeding());
p->mark_as_finished({piece_index_t{1}, 0}, NULL);
p->mark_as_finished({piece_index_t{1}, 1}, NULL);
p->mark_as_finished({piece_index_t{1}, 2}, NULL);
p->mark_as_finished({piece_index_t{1}, 3}, NULL);
p->mark_as_finished({piece_index_t{1}, 0}, nullptr);
p->mark_as_finished({piece_index_t{1}, 1}, nullptr);
p->mark_as_finished({piece_index_t{1}, 2}, nullptr);
p->mark_as_finished({piece_index_t{1}, 3}, nullptr);
TEST_CHECK(!p->is_seeding());
p->piece_passed(piece_index_t{1});

View File

@ -91,8 +91,8 @@ void test_remove_torrent(remove_flags_t const remove_options
wait_for_listen(ses2, "ses2");
// test using piece sizes smaller than 16kB
std::tie(tor1, tor2, ignore) = setup_transfer(&ses1, &ses2, 0
, true, false, true, "_remove", 8 * 1024, &t, false, 0);
std::tie(tor1, tor2, ignore) = setup_transfer(&ses1, &ses2, nullptr
, true, false, true, "_remove", 8 * 1024, &t, false, nullptr);
if (test == partial_download)
{

View File

@ -76,7 +76,7 @@ int main(int argc, char* argv[])
FILE* reads_elev_file = std::fopen("reads_elevator.log", "w+");
typedef std::map<std::uint32_t, file_op> op_map;
using op_map = std::map<std::uint32_t, file_op>;
op_map outstanding_ops;
std::uint64_t first_timestamp = 0;