Commit 318529d8 authored by captainwong's avatar captainwong

update

parent b4c5f6ca
This diff is collapsed.
#pragma once #pragma once
namespace jlib
inline wchar_t* FormatWSAError(int errornumber)
{ {
switch (errornumber) { inline wchar_t* FormatWSAError(int errornumber)
case WSANOTINITIALISED: {
return L"A successful WSAStartup call must occur before using this function. "; switch (errornumber) {
break; case WSANOTINITIALISED:
case WSAENETDOWN: return L"A successful WSAStartup call must occur before using this function. ";
return L"The network subsystem has failed. "; break;
break; case WSAENETDOWN:
case WSAEACCES: return L"The network subsystem has failed. ";
return L"The requested address is a broadcast address, but the appropriate flag was not set. Call setsockopt with the SO_BROADCAST parameter to allow the use of the broadcast address. "; break;
break; case WSAEACCES:
case WSAEINVAL: return L"The requested address is a broadcast address, but the appropriate flag was not set. Call setsockopt with the SO_BROADCAST parameter to allow the use of the broadcast address. ";
return L"An unknown flag was specified, or MSG_OOB was specified for a socket with SO_OOBINLINE enabled. "; break;
break; case WSAEINVAL:
case WSAEINTR: return L"An unknown flag was specified, or MSG_OOB was specified for a socket with SO_OOBINLINE enabled. ";
return L"A blocking Windows Sockets 1.1 call was canceled through WSACancelBlockingCall. "; break;
break; case WSAEINTR:
case WSAEINPROGRESS: return L"A blocking Windows Sockets 1.1 call was canceled through WSACancelBlockingCall. ";
return L"A blocking Windows Sockets 1.1 call is in progress, or the service provider is still processing a callback function. "; break;
break; case WSAEINPROGRESS:
case WSAEFAULT: return L"A blocking Windows Sockets 1.1 call is in progress, or the service provider is still processing a callback function. ";
return L"The buf or to parameters are not part of the user address space, or the tolen parameter is too small. "; break;
break; case WSAEFAULT:
case WSAENETRESET: return L"The buf or to parameters are not part of the user address space, or the tolen parameter is too small. ";
return L"The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress. "; break;
break; case WSAENETRESET:
case WSAENOBUFS: return L"The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress. ";
return L"No buffer space is available. "; break;
break; case WSAENOBUFS:
case WSAENOTCONN: return L"No buffer space is available. ";
return L"The socket is not connected (connection-oriented sockets only. "; break;
break; case WSAENOTCONN:
case WSAENOTSOCK: return L"The socket is not connected (connection-oriented sockets only. ";
return L"The descriptor is not a socket. "; break;
break; case WSAENOTSOCK:
case WSAEOPNOTSUPP: return L"The descriptor is not a socket. ";
return L"MSG_OOB was specified, but the socket is not stream-style such as type SOCK_STREAM, OOB data is not supported in the communication domain associated with this socket, or the socket is unidirectional and supports only receive operations. "; break;
break; case WSAEOPNOTSUPP:
case WSAESHUTDOWN: return L"MSG_OOB was specified, but the socket is not stream-style such as type SOCK_STREAM, OOB data is not supported in the communication domain associated with this socket, or the socket is unidirectional and supports only receive operations. ";
return L"The socket has been shut down; it is not possible to sendto on a socket after shutdown has been invoked with how set to SD_SEND or SD_BOTH. "; break;
break; case WSAESHUTDOWN:
case WSAEWOULDBLOCK: return L"The socket has been shut down; it is not possible to sendto on a socket after shutdown has been invoked with how set to SD_SEND or SD_BOTH. ";
return L"The socket is marked as nonblocking and the requested operation would block. "; break;
break; case WSAEWOULDBLOCK:
case WSAEMSGSIZE: return L"The socket is marked as nonblocking and the requested operation would block. ";
return L"The socket is message oriented, and the message is larger than the maximum supported by the underlying transport. "; break;
break; case WSAEMSGSIZE:
case WSAEHOSTUNREACH: return L"The socket is message oriented, and the message is larger than the maximum supported by the underlying transport. ";
return L"The remote host cannot be reached from this host at this time. "; break;
break; case WSAEHOSTUNREACH:
case WSAECONNABORTED: return L"The remote host cannot be reached from this host at this time. ";
return L"The virtual circuit was terminated due to a time-out or other failure. The application should close the socket as it is no longer usable. "; break;
break; case WSAECONNABORTED:
case WSAECONNRESET: return L"The virtual circuit was terminated due to a time-out or other failure. The application should close the socket as it is no longer usable. ";
return L"The virtual circuit was reset by the remote side executing a hard or abortive close. For UPD sockets, the remote host was unable to deliver a previously sent UDP datagram and responded with a \"Port Unreachable\" ICMP packet. The application should close the socket as it is no longer usable. "; break;
break; case WSAECONNRESET:
case WSAEADDRNOTAVAIL: return L"The virtual circuit was reset by the remote side executing a hard or abortive close. For UPD sockets, the remote host was unable to deliver a previously sent UDP datagram and responded with a \"Port Unreachable\" ICMP packet. The application should close the socket as it is no longer usable. ";
return L"The remote address is not a valid address, for example, ADDR_ANY. "; break;
break; case WSAEADDRNOTAVAIL:
case WSAEAFNOSUPPORT: return L"The remote address is not a valid address, for example, ADDR_ANY. ";
return L"Addresses in the specified family cannot be used with this socket. "; break;
break; case WSAEAFNOSUPPORT:
case WSAEDESTADDRREQ: return L"Addresses in the specified family cannot be used with this socket. ";
return L"A destination address is required. "; break;
break; case WSAEDESTADDRREQ:
case WSAENETUNREACH: return L"A destination address is required. ";
return L"The network cannot be reached from this host at this time. "; break;
break; case WSAENETUNREACH:
case WSAETIMEDOUT: return L"The network cannot be reached from this host at this time. ";
return L"The connection has been dropped, because of a network failure or because the system on the other end went down without notice. "; break;
break; case WSAETIMEDOUT:
default:{ return L"The connection has been dropped, because of a network failure or because the system on the other end went down without notice. ";
static wchar_t buf[1024] = { 0 }; break;
swprintf_s(buf, L"Unknown socket error %d.", errornumber); default:{
return buf; static wchar_t buf[1024] = { 0 };
}break; swprintf_s(buf, L"Unknown socket error %d.", errornumber);
return buf;
}break;
}
} }
}
\ No newline at end of file };
...@@ -6,26 +6,27 @@ ...@@ -6,26 +6,27 @@
#include "mtverify.h" #include "mtverify.h"
#include "FileOper.h" #include "FileOper.h"
#include "Log.h" #include "Log.h"
#define LOG CLog::WriteLog #include "MyWSAError.h"
#define LOGA CLog::WriteLogA #include "observer_macro.h"
#define LOGW CLog::WriteLogW
#define LOGB(b, l) CLog::Dump(b, l) namespace jlib {
#define LOGASC(b, l) CLog::DumpAsc(b, l) #define JLOG CLog::WriteLog
#define JLOGA CLog::WriteLogA
#define JLOGW CLog::WriteLogW
#define JLOGB(b, l) CLog::Dump(b, l)
#define JLOGASC(b, l) CLog::DumpAsc(b, l)
class LogFunction { class LogFunction {
private: private:
const char* _func_name; const char* _func_name;
public: public:
LogFunction(const char* func_name) : _func_name(func_name) { LOGA("%s in\n", _func_name); } LogFunction(const char* func_name) : _func_name(func_name) { JLOGA("%s in\n", _func_name); }
~LogFunction() { LOGA("%s out\n", _func_name); } ~LogFunction() { JLOGA("%s out\n", _func_name); }
}; };
#define LOG_FUNCTION(func_name) LogFunction _log_function_object(func_name); #define LOG_FUNCTION(func_name) LogFunction _log_function_object(func_name);
#define AUTO_LOG_FUNCTION LOG_FUNCTION(__FUNCTION__) #define AUTO_LOG_FUNCTION LOG_FUNCTION(__FUNCTION__)
#include "MyWSAError.h"
#include "observer_macro.h"
#define NAMESPACE_END }; #define NAMESPACE_END };
#define DECLARE_UNCOPYABLE(classname) \ #define DECLARE_UNCOPYABLE(classname) \
...@@ -105,3 +106,5 @@ public: \ ...@@ -105,3 +106,5 @@ public: \
#define INITIALIZE_STRING(val) { val = new wchar_t[1]; val[0] = 0; } #define INITIALIZE_STRING(val) { val = new wchar_t[1]; val[0] = 0; }
};
#pragma once
namespace jlib {
// place this macro in your class's header file, in your class's definition // place this macro in your class's header file, in your class's definition
#define DECLARE_OBSERVER(callback, param_type) \ #define DECLARE_OBSERVER(callback, param_type) \
protected: \ protected: \
...@@ -70,7 +72,7 @@ void class_name::NotifyObservers(_param_type param) \ ...@@ -70,7 +72,7 @@ void class_name::NotifyObservers(_param_type param) \
_observerList.clear(); \ _observerList.clear(); \
} }
};
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment