Skip to content

Commit 3772c11

Browse files
author
guoxiaodong
committed
Update yasio to 4.2.3
1 parent deac616 commit 3772c11

File tree

9 files changed

+34
-41
lines changed

9 files changed

+34
-41
lines changed

NativeLibs/yasio/yasio/bindings/lua/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set(target_name plainlua)
22

3-
get_filename_component(LUA_SRC_PATH ../../../thirdparty/lua ABSOLUTE)
3+
get_filename_component(LUA_SRC_PATH ../../../3rdparty/lua ABSOLUTE)
44
message(STATUS "LUA_SRC_PATH=${LUA_SRC_PATH}")
55

66
file(GLOB LUA_SRC_FILES

NativeLibs/yasio/yasio/bindings/yasio_ni.cpp

+6-24
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ SOFTWARE.
3232
#include <array>
3333
#include <string.h>
3434
#include "yasio/yasio.hpp"
35+
#include "yasio/split.hpp"
3536

3637
#if defined(_WINDLL)
3738
# define YASIO_NI_API __declspec(dllexport)
@@ -45,25 +46,6 @@ using namespace yasio;
4546

4647
namespace
4748
{
48-
template <typename _CStr, typename _Fn>
49-
inline void fast_split(_CStr s, size_t slen, typename std::remove_pointer<_CStr>::type delim, _Fn func)
50-
{
51-
auto _Start = s; // the start of every string
52-
auto _Ptr = s; // source string iterator
53-
auto _End = s + slen;
54-
while ((_Ptr = strchr(_Ptr, delim)))
55-
{
56-
if (_Start < _Ptr)
57-
if (func(_Start, _Ptr))
58-
return;
59-
_Start = _Ptr + 1;
60-
++_Ptr;
61-
}
62-
if (_Start < _End)
63-
{
64-
func(_Start, _End);
65-
}
66-
}
6749
inline int svtoi(cxx17::string_view& sv) { return !sv.empty() ? atoi(sv.data()) : 0; }
6850
inline const char* svtoa(cxx17::string_view& sv) { return !sv.empty() ? sv.data() : ""; }
6951
} // namespace
@@ -154,7 +136,7 @@ YASIO_NI_API void yasio_set_resolv_fn(void* service_ptr, int(YASIO_INTEROP_DECL*
154136
YASIO_NI_API void yasio_set_option(void* service_ptr, int opt, const char* pszArgs)
155137
{
156138
auto service = reinterpret_cast<io_service*>(service_ptr);
157-
if (!service)
139+
if (!service || !pszArgs || !*pszArgs)
158140
return;
159141

160142
// process one arg
@@ -174,10 +156,10 @@ YASIO_NI_API void yasio_set_option(void* service_ptr, int opt, const char* pszAr
174156
std::string strArgs = pszArgs;
175157
std::array<cxx17::string_view, YASIO_MAX_OPTION_ARGC> args;
176158
int argc = 0;
177-
fast_split(&strArgs.front(), strArgs.length(), ';', [&](char* s, char* e) {
178-
*e = '\0'; // to c style string
179-
args[argc] = cxx17::string_view(s, e - s);
180-
return (++argc == YASIO_MAX_OPTION_ARGC);
159+
yasio::split_if(&strArgs.front(), ';', [&](char* s, char* e) {
160+
*e = '\0'; // to c style string
161+
args[argc++] = cxx17::string_view(s, e - s);
162+
return (argc < YASIO_MAX_OPTION_ARGC);
181163
});
182164

183165
switch (opt)

NativeLibs/yasio/yasio/config.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ SOFTWARE.
205205
/*
206206
** The yasio version macros
207207
*/
208-
#define YASIO_VERSION_NUM 0x040201
208+
#define YASIO_VERSION_NUM 0x040203
209209

210210
/*
211211
** The macros used by io_service.

NativeLibs/yasio/yasio/io_service.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,10 @@ struct yasio_kcp_options {
7676
auto __msg = ::yasio::strfmt(127, "[yasio][%lld]" format "\n", ::yasio::clock<system_clock_t>(), ##__VA_ARGS__); \
7777
if (__cprint) \
7878
__cprint(level, __msg.c_str()); \
79-
else \
79+
else { \
80+
__msg.back() = '\0'; \
8081
YASIO_LOG_TAG("", "%s", __msg.c_str()); \
82+
} \
8183
} while (false)
8284
// clang-format on
8385

@@ -2258,7 +2260,7 @@ void io_service::set_option_internal(int opt, va_list ap) // lgtm [cpp/poorly-do
22582260
channel->uparams_.no_bswap = va_arg(ap, int);
22592261
break;
22602262
}
2261-
case YOPT_C_LFBFD_FN: {
2263+
case YOPT_C_UNPACK_FN: {
22622264
auto channel = channel_at(static_cast<size_t>(va_arg(ap, int)));
22632265
if (channel)
22642266
channel->decode_len_ = *va_arg(ap, decode_len_fn_t*);

NativeLibs/yasio/yasio/io_service.hpp

+5-6
Original file line numberDiff line numberDiff line change
@@ -301,21 +301,19 @@ enum
301301
YOPT_B_SOCKOPT = 201,
302302
};
303303

304-
// channel masks: only for internal use, not for user
304+
// channel masks and kinds
305305
enum
306306
{
307+
// masks: only for internal use, not for user
307308
YCM_CLIENT = 1,
308309
YCM_SERVER = 1 << 1,
309310
YCM_TCP = 1 << 2,
310311
YCM_UDP = 1 << 3,
311312
YCM_KCP = 1 << 4,
312313
YCM_SSL = 1 << 5,
313314
YCM_UDS = 1 << 6, // IPC: posix domain socket
314-
};
315315

316-
// channel kinds: for user to call io_service::open
317-
enum
318-
{
316+
// kinds
319317
YCK_TCP_CLIENT = YCM_TCP | YCM_CLIENT,
320318
YCK_TCP_SERVER = YCM_TCP | YCM_SERVER,
321319
YCK_UDP_CLIENT = YCM_UDP | YCM_CLIENT,
@@ -849,6 +847,7 @@ class YASIO_API io_transport_udp : public io_transport {
849847
#if defined(YASIO_ENABLE_KCP)
850848
class io_transport_kcp : public io_transport_udp {
851849
friend class io_service;
850+
852851
public:
853852
YASIO__DECL io_transport_kcp(io_channel* ctx, xxsocket_ptr&& s);
854853
YASIO__DECL ~io_transport_kcp();
@@ -862,7 +861,7 @@ class io_transport_kcp : public io_transport_udp {
862861
YASIO__DECL bool do_write(highp_time_t& wait_duration) override;
863862

864863
YASIO__DECL int handle_input(char* buf, int len, int& error, highp_time_t& wait_duration) override;
865-
864+
866865
int interval() const { return kcp_->interval * std::milli::den; }
867866

868867
sbyte_buffer rawbuf_; // the low level raw buffer

NativeLibs/yasio/yasio/logging.hpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ SOFTWARE.
3030
#include "yasio/strfmt.hpp"
3131

3232
#if defined(__EMSCRIPTEN__)
33-
# define YASIO_LOG_TAG(tag, format, ...) printf((tag format "\n"), ##__VA_ARGS__)
33+
# include <stdio.h>
34+
# include <unistd.h>
35+
inline void yasio__print(std::string&& message) { ::write(::fileno(stdout), message.c_str(), message.size()); }
36+
# define YASIO_LOG_TAG(tag, format, ...) yasio__print(::yasio::strfmt(127, (tag format), ##__VA_ARGS__))
3437
#elif defined(_WIN32)
3538
# define YASIO_LOG_TAG(tag, format, ...) OutputDebugStringA(::yasio::strfmt(127, (tag format "\n"), ##__VA_ARGS__).c_str())
3639
#elif defined(ANDROID) || defined(__ANDROID__)

NativeLibs/yasio/yasio/obstream.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class dynamic_buffer_span {
149149
using implementation_type = _Cont;
150150
using size_type = typename _Cont::size_type;
151151
implementation_type& get_implementation() { return *this->outs_; }
152-
const implementation_type& get_implementation() const { return *this->impl_; }
152+
const implementation_type& get_implementation() const { return *this->outs_; }
153153

154154
dynamic_buffer_span(_Cont* outs) : outs_(outs) {}
155155

NativeLibs/yasio/yasio/type_traits.hpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,16 @@ SOFTWARE.
2727
*/
2828

2929
#pragma once
30+
31+
#include <cstddef>
3032
#include <type_traits>
33+
#include "yasio/sz.hpp"
3134

3235
namespace yasio
3336
{
3437
template <typename _Ty>
3538
struct aligned_storage_size {
36-
static const size_t value = sizeof(typename std::aligned_storage<sizeof(_Ty)>::type);
39+
static const size_t value = YASIO_SZ_ALIGN(sizeof(_Ty), sizeof(std::max_align_t));
3740
};
3841
template <typename _Ty>
3942
struct is_aligned_storage {

NativeLibs/yasio/yasio/xxsocket.cpp

+8-4
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,7 @@ int xxsocket::xpconnect_n(const char* hostname, u_short port, const std::chrono:
128128
else if (flags & ipsv_ipv6)
129129
{
130130
xxsocket::resolve_i([&](const addrinfo* ai6) { return 0 == (error = pconnect_n(ip::endpoint{ai6}, wtimeout, local_port)); }, hostname, port,
131-
AF_INET6,
132-
AI_V4MAPPED);
131+
AF_INET6, AI_V4MAPPED);
133132
}
134133
break;
135134
case AF_INET6:
@@ -231,7 +230,8 @@ bool xxsocket::popen(int af, int type, int protocol)
231230
return ok;
232231
}
233232

234-
int xxsocket::paccept(socket_native_type& new_sock) {
233+
int xxsocket::paccept(socket_native_type& new_sock)
234+
{
235235
for (;;)
236236
{
237237
// Accept the waiting connection.
@@ -986,7 +986,7 @@ const char* xxsocket::strerror(int error)
986986
#else
987987
return ::strerror(error);
988988
#endif
989-
}
989+
}
990990
return YASIO_NO_ERROR;
991991
}
992992

@@ -1035,7 +1035,11 @@ struct ws2_32_gc {
10351035
~ws2_32_gc(void) { WSACleanup(); }
10361036
};
10371037

1038+
# pragma warning(push)
1039+
# pragma warning(disable : 4073)
1040+
# pragma init_seg(lib)
10381041
ws2_32_gc __ws32_lib_gc;
1042+
# pragma warning(pop)
10391043
} // namespace
10401044
#endif
10411045

0 commit comments

Comments
 (0)