Commit 0f737320 authored by captainwong's avatar captainwong

update

parent c180f138
// FileOper.h: interface for the CFileOper class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_FILEOPER_H__25D4B209_DAC6_4D93_98B2_692621E5508F__INCLUDED_)
#define AFX_FILEOPER_H__25D4B209_DAC6_4D93_98B2_692621E5508F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <stdio.h>
#include <Shlobj.h>
static int CALLBACK BrowseCallbackProc(HWND hwnd,UINT uMsg,LPARAM lParam,LPARAM lpData)
{
switch(uMsg)
{
case BFFM_INITIALIZED: //初始化消息
::SendMessage(hwnd,BFFM_SETSELECTION,TRUE,lpData);
break;
case BFFM_SELCHANGED: //选择路径变化,
{
TCHAR curr[MAX_PATH];
SHGetPathFromIDList((LPCITEMIDLIST)lParam,curr);
::SendMessage(hwnd,BFFM_SETSTATUSTEXT,0,(LPARAM)curr);
}
break;
default:
break;
}
return 0;
}
class CFileOper
{
public:
// 弹出文件夹选择对话框,并返回选定的文件夹路径
static BOOL BrowseGetPath(CString &path, HWND hWnd){
TCHAR szPath[MAX_PATH] = {0};
BROWSEINFO bi;
memset(&bi, 0, sizeof(bi));
bi.hwndOwner = hWnd;
bi.ulFlags = BIF_RETURNONLYFSDIRS | BIF_STATUSTEXT;
bi.lpszTitle = _T("select folder");
bi.lpfn = BrowseCallbackProc;
bi.lParam = (LONG)(LPCTSTR)path;
LPITEMIDLIST idl = SHBrowseForFolder(&bi);
if(idl == NULL)
return FALSE;
SHGetPathFromIDList(idl, szPath);
path.Format(_T("%s"), szPath);
return TRUE;
}
// 删除该路径下所有文件与文件夹
static BOOL DeleteFolderAndAllSubFolder_Files(LPCTSTR folderPath){
system("echo delete old folder and sub files...\n");
//CString cmd = _T("");
char cmd[64] = {0};
#if defined(_UNICODE) || defined(UNICODE)
char *path = Utf16ToAnsi(folderPath);
sprintf_s(cmd, "rd /s /q \"%s\"", path);
SAFEDELETEARR(path);
#else
sprintf_s(cmd, "rd /s /q \"%s\"", folderPath);
#endif
BOOL ret = system(cmd) == 0;
sprintf_s(cmd, "echo delete %s\n", ret ? "success" : "failed");
system(cmd);
return ret;
}
// 获取文件大小
static long GetFileSize(const CString& path){
FILE *p = NULL;
#if defined(_UNICODE) || defined(UNICODE)
char *cpath = Utf16ToAnsi(path);
fopen_s(&p, cpath, "r");
if(p == NULL)
{
SAFEDELETEARR(cpath);
return 0;
}
SAFEDELETEARR(cpath);
#else
fopen_s(&p, path, "r");
if(p == NULL)
return 0;
#endif
fseek(p, 0, SEEK_END);
long len = ftell(p);
fclose(p);
return len;
}
// 获取路径中最右的文件夹名称,如D:\A\B,返回B
static CString GetCurFolderFromFullPath(CString strpath){
int pos = -1;
pos = strpath.ReverseFind(_T('\\'));
if(pos != -1)
return strpath.Right(strpath.GetLength() - pos - 1);
return _T("");
}
// 复制文件夹到目的,并弹出文件夹复制对话框
static BOOL CopyFolder(CString dstFolder, CString srcFolder, HWND hWnd){
TCHAR szDst[MAX_PATH], szSrc[MAX_PATH];
ZeroMemory(szDst, MAX_PATH);
ZeroMemory(szSrc, MAX_PATH);
lstrcpy(szDst, dstFolder);
lstrcpy(szSrc, srcFolder);
SHFILEOPSTRUCT lpFile;
lpFile.hwnd = hWnd;
lpFile.wFunc = FO_COPY;
lpFile.pFrom = szSrc;
lpFile.pTo = szDst;
lpFile.fFlags = FOF_ALLOWUNDO;
lpFile.fAnyOperationsAborted = FALSE;
lpFile.hNameMappings = NULL;
lpFile.lpszProgressTitle = NULL;
int ret = SHFileOperation(&lpFile);
return ret == 0 && lpFile.fAnyOperationsAborted == FALSE;
}
// 判断指定路径是否存在(文件夹)
static BOOL IsFolderExists(LPCTSTR lpszFolderPath){
return FindFirstFileExists(lpszFolderPath, FILE_ATTRIBUTE_DIRECTORY);
}
// 判断指定路径是否存在(文件或文件夹)
static BOOL PathExists(LPCTSTR lpszPath){
return FindFirstFileExists(lpszPath, FALSE);
}
// 更改文件名后缀名
static CString ChangeFileExt(const CString& srcFilePath, const CString& dstExt){
CString dstFilePath = srcFilePath;
int pos = srcFilePath.ReverseFind(_T('.'));
if(pos != -1){
dstFilePath = srcFilePath.Left(pos + 1);
dstFilePath += dstExt;
}
return dstFilePath;
}
// 从文件路径中获取文件标题,如D:\AAA.TXT或者AAA.TXT,返回AAA
static CString GetFileTitle(const CString& fileName){
CString title = _T("");
int pos = -1;
pos = fileName.FindOneOf(_T("\\"));
CString name = fileName;
if(pos > 0)
name = GetFileNameFromPathName(fileName);
pos = name.ReverseFind(_T('.'));
if(pos != -1)
title = name.Left(pos);
return title;
}
// 从文件路径中获取文件后缀名,如D:\AAA.TXT,返回TXT
static CString GetFileExt(const CString& filePath){
CString ext = _T("");
int pos = filePath.ReverseFind(_T('.'));
if(pos != -1){
ext = filePath.Right(filePath.GetLength() - pos - 1);
ext.MakeUpper();
}
return ext;
}
// 从文件路径中获取文件名,如D:\AAA.TXT,返回AAA.TXT
static CString GetFileNameFromPathName(const CString& filePathName){
CString fileName = _T("");
int pos = filePathName.ReverseFind(_T('\\'));
if(pos != -1) {
fileName = filePathName.Right(filePathName.GetLength() - pos - 1);
}
return fileName;
}
// 寻找目录(该路径不能以 \ 结尾)下所有指定后缀名(不支持*.*)的文件,并将结果保存在CStringList中,
static int FindFilesInFolder(LPCTSTR lpszFolder, LPCTSTR lpszFilter, CStringList &dstList){
if(lstrlen(lpszFolder) == 0)
return 0;
int nNums = 0;
CFileFind filefind;
CString path, filter;
filter.Format(_T("%s\\%s"), lpszFolder, lpszFilter);
BOOL bFound = filefind.FindFile(filter);
while(bFound){
bFound = filefind.FindNextFile();
if(filefind.IsDots())
continue;
if(!filefind.IsDirectory()){
path = filefind.GetFilePath();
dstList.AddTail(path);
nNums++;
}
}
filefind.Close();
return nNums;
}
// 将目录下符合 *n.* 的文件(n代表数字)重命名为 *00n.*的形式,将n格式化为3位数
static BOOL RenameFile03d(LPCTSTR lpszFilePath){
CString fileName = lpszFilePath;
CString tittle, num, ext, newFileName;
int pos;
pos = fileName.ReverseFind(_T('.'));
if(pos == -1) return FALSE;
tittle = fileName.Left(pos);
ext = fileName.Right(fileName.GetLength() - pos);
int i = 0, posNum = 0, numnums = 0;
TCHAR ch;
bool bNumCharFound = false;
for(i = tittle.GetLength()-1, posNum = i+1; i > 0; i--){
ch = tittle.GetAt(i);
if(ch > _T('0') && ch < _T('9')){
if(posNum != i+1)
break;
posNum = i;
numnums++;
bNumCharFound = true;
}
}
if(!bNumCharFound) return FALSE;
num = tittle.Right(numnums);
tittle = tittle.Left(posNum);
int nums = _ttoi(num.GetBuffer(num.GetLength()));
num.ReleaseBuffer();
num.Format(_T("%03d"), nums);
tittle += num;
newFileName.Format(_T("%s%s"), tittle, ext);
LPCTSTR szOldName = fileName.GetBuffer(fileName.GetLength());
fileName.ReleaseBuffer();
LPCTSTR szNewName = newFileName.GetBuffer(newFileName.GetLength());
newFileName.ReleaseBuffer();
MoveFile(szOldName, szNewName);
TRACE(_T("movefile %s to %s \n"), fileName, newFileName);
return TRUE;
}
// 删除所有该目录路径下指定后缀名的文件
static DWORD DeleteFilesInFolder(LPCTSTR lpszFolder, LPCTSTR lpszFilter){
DWORD dwDeletedFileNums = 0;
CFileFind find;
BOOL bfoundone = FALSE;
CString filter = _T("");
filter.Format(_T("%s\\%s"), lpszFolder, lpszFilter);
BOOL bFound = find.FindFile(filter);
TRACE(_T("CFileOper::DeleteFilesInFolder find path %s\n"), filter);
CString filepath = _T("");
while(bFound){
bFound = find.FindNextFile();
if(find.IsDots())
continue;
if(!find.IsDirectory()){
filepath = find.GetFilePath();
if(DeleteFile(filepath.GetBuffer(filepath.GetLength()))){
CString trace;trace.Format(_T("CFileOper::DeleteFilesInFolder delete file %s \n"),
find.GetFilePath());
TRACE(trace);
bfoundone = TRUE;
dwDeletedFileNums++;
}
}
}
if(!bfoundone)
TRACE(_T("CFileOper::DeleteFilesInFolder no file deleted\n"));
find.Close();
return dwDeletedFileNums;
}
private:
CFileOper();
virtual ~CFileOper();
protected:
static BOOL FindFirstFileExists(LPCTSTR lspzPath, DWORD dwFilter){
TCHAR realPath[MAX_PATH] = {0};
if(_tcsclen(lspzPath) > MAX_PATH)
GetShortPathName(lspzPath, realPath, MAX_PATH);
else
_tcscpy_s(realPath, lspzPath);
WIN32_FIND_DATA fd;
HANDLE hFind = FindFirstFile(realPath, &fd);
BOOL bFilter = (FALSE == dwFilter) ? TRUE : fd.dwFileAttributes & dwFilter;
BOOL RetValue = ((hFind != INVALID_HANDLE_VALUE) && bFilter) ? TRUE : FALSE;
FindClose(hFind);
return RetValue;
}
};
#endif // !defined(AFX_FILEOPER_H__25D4B209_DAC6_4D93_98B2_692621E5508F__INCLUDED_)
// FileOper.h: interface for the CFileOper class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_FILEOPER_H__25D4B209_DAC6_4D93_98B2_692621E5508F__INCLUDED_)
#define AFX_FILEOPER_H__25D4B209_DAC6_4D93_98B2_692621E5508F__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <stdio.h>
#include <shellapi.h>
#include <Shlobj.h>
static int CALLBACK BrowseCallbackProc(HWND hwnd,UINT uMsg,LPARAM lParam,LPARAM lpData)
{
switch(uMsg)
{
case BFFM_INITIALIZED: //初始化消息
::SendMessage(hwnd,BFFM_SETSELECTION,TRUE,lpData);
break;
case BFFM_SELCHANGED: //选择路径变化,
{
TCHAR curr[MAX_PATH];
SHGetPathFromIDList((LPCITEMIDLIST)lParam,curr);
::SendMessage(hwnd,BFFM_SETSTATUSTEXT,0,(LPARAM)curr);
}
break;
default:
break;
}
return 0;
}
class CFileOper
{
public:
// 弹出文件夹选择对话框,并返回选定的文件夹路径
static BOOL BrowseGetPath(CString &path, HWND hWnd){
TCHAR szPath[MAX_PATH] = {0};
BROWSEINFO bi;
memset(&bi, 0, sizeof(bi));
bi.hwndOwner = hWnd;
bi.ulFlags = BIF_RETURNONLYFSDIRS | BIF_STATUSTEXT;
bi.lpszTitle = _T("select folder");
bi.lpfn = BrowseCallbackProc;
bi.lParam = (LONG)(LPCTSTR)path;
LPITEMIDLIST idl = SHBrowseForFolder(&bi);
if(idl == NULL)
return FALSE;
SHGetPathFromIDList(idl, szPath);
path.Format(_T("%s"), szPath);
return TRUE;
}
// 删除该路径下所有文件与文件夹
static BOOL DeleteFolderAndAllSubFolder_Files(LPCTSTR folderPath){
system("echo delete old folder and sub files...\n");
//CString cmd = _T("");
char cmd[64] = {0};
#if defined(_UNICODE) || defined(UNICODE)
char *path = Utf16ToAnsi(folderPath);
sprintf_s(cmd, "rd /s /q \"%s\"", path);
SAFEDELETEARR(path);
#else
sprintf_s(cmd, "rd /s /q \"%s\"", folderPath);
#endif
BOOL ret = system(cmd) == 0;
sprintf_s(cmd, "echo delete %s\n", ret ? "success" : "failed");
system(cmd);
return ret;
}
// 获取文件大小
static long GetFileSize(const CString& path){
FILE *p = NULL;
#if defined(_UNICODE) || defined(UNICODE)
char *cpath = Utf16ToAnsi(path);
fopen_s(&p, cpath, "r");
if(p == NULL)
{
SAFEDELETEARR(cpath);
return 0;
}
SAFEDELETEARR(cpath);
#else
fopen_s(&p, path, "r");
if(p == NULL)
return 0;
#endif
fseek(p, 0, SEEK_END);
long len = ftell(p);
fclose(p);
return len;
}
// 获取路径中最右的文件夹名称,如D:\A\B,返回B
static CString GetCurFolderFromFullPath(CString strpath){
int pos = -1;
pos = strpath.ReverseFind(_T('\\'));
if(pos != -1)
return strpath.Right(strpath.GetLength() - pos - 1);
return _T("");
}
// 复制文件夹到目的,并弹出文件夹复制对话框
static BOOL CopyFolder(CString dstFolder, CString srcFolder, HWND hWnd){
TCHAR szDst[MAX_PATH], szSrc[MAX_PATH];
ZeroMemory(szDst, MAX_PATH);
ZeroMemory(szSrc, MAX_PATH);
lstrcpy(szDst, dstFolder);
lstrcpy(szSrc, srcFolder);
SHFILEOPSTRUCT lpFile;
lpFile.hwnd = hWnd;
lpFile.wFunc = FO_COPY;
lpFile.pFrom = szSrc;
lpFile.pTo = szDst;
lpFile.fFlags = FOF_ALLOWUNDO;
lpFile.fAnyOperationsAborted = FALSE;
lpFile.hNameMappings = NULL;
lpFile.lpszProgressTitle = NULL;
int ret = SHFileOperation(&lpFile);
return ret == 0 && lpFile.fAnyOperationsAborted == FALSE;
}
// 判断指定路径是否存在(文件夹)
static BOOL IsFolderExists(LPCTSTR lpszFolderPath){
return FindFirstFileExists(lpszFolderPath, FILE_ATTRIBUTE_DIRECTORY);
}
// 判断指定路径是否存在(文件或文件夹)
static BOOL PathExists(LPCTSTR lpszPath){
return FindFirstFileExists(lpszPath, FALSE);
}
// 更改文件名后缀名
static CString ChangeFileExt(const CString& srcFilePath, const CString& dstExt){
CString dstFilePath = srcFilePath;
int pos = srcFilePath.ReverseFind(_T('.'));
if(pos != -1){
dstFilePath = srcFilePath.Left(pos + 1);
dstFilePath += dstExt;
}
return dstFilePath;
}
// 从文件路径中获取文件标题,如D:\AAA.TXT或者AAA.TXT,返回AAA
static CString GetFileTitle(const CString& fileName){
CString title = _T("");
int pos = -1;
pos = fileName.FindOneOf(_T("\\"));
CString name = fileName;
if(pos > 0)
name = GetFileNameFromPathName(fileName);
pos = name.ReverseFind(_T('.'));
if(pos != -1)
title = name.Left(pos);
return title;
}
// 从文件路径中获取文件后缀名,如D:\AAA.TXT,返回TXT
static CString GetFileExt(const CString& filePath){
CString ext = _T("");
int pos = filePath.ReverseFind(_T('.'));
if(pos != -1){
ext = filePath.Right(filePath.GetLength() - pos - 1);
ext.MakeUpper();
}
return ext;
}
// 从文件路径中获取文件名,如D:\AAA.TXT,返回AAA.TXT
static CString GetFileNameFromPathName(const CString& filePathName){
CString fileName = _T("");
int pos = filePathName.ReverseFind(_T('\\'));
if(pos != -1) {
fileName = filePathName.Right(filePathName.GetLength() - pos - 1);
}
return fileName;
}
// 寻找目录(该路径不能以 \ 结尾)下所有指定后缀名(不支持*.*)的文件,并将结果保存在CStringList中,
static int FindFilesInFolder(LPCTSTR lpszFolder, LPCTSTR lpszFilter, CStringList &dstList){
if(lstrlen(lpszFolder) == 0)
return 0;
int nNums = 0;
CFileFind filefind;
CString path, filter;
filter.Format(_T("%s\\%s"), lpszFolder, lpszFilter);
BOOL bFound = filefind.FindFile(filter);
while(bFound){
bFound = filefind.FindNextFile();
if(filefind.IsDots())
continue;
if(!filefind.IsDirectory()){
path = filefind.GetFilePath();
dstList.AddTail(path);
nNums++;
}
}
filefind.Close();
return nNums;
}
// 将目录下符合 *n.* 的文件(n代表数字)重命名为 *00n.*的形式,将n格式化为3位数
static BOOL RenameFile03d(LPCTSTR lpszFilePath){
CString fileName = lpszFilePath;
CString tittle, num, ext, newFileName;
int pos;
pos = fileName.ReverseFind(_T('.'));
if(pos == -1) return FALSE;
tittle = fileName.Left(pos);
ext = fileName.Right(fileName.GetLength() - pos);
int i = 0, posNum = 0, numnums = 0;
TCHAR ch;
bool bNumCharFound = false;
for(i = tittle.GetLength()-1, posNum = i+1; i > 0; i--){
ch = tittle.GetAt(i);
if(ch > _T('0') && ch < _T('9')){
if(posNum != i+1)
break;
posNum = i;
numnums++;
bNumCharFound = true;
}
}
if(!bNumCharFound) return FALSE;
num = tittle.Right(numnums);
tittle = tittle.Left(posNum);
int nums = _ttoi(num.GetBuffer(num.GetLength()));
num.ReleaseBuffer();
num.Format(_T("%03d"), nums);
tittle += num;
newFileName.Format(_T("%s%s"), tittle, ext);
LPCTSTR szOldName = fileName.GetBuffer(fileName.GetLength());
fileName.ReleaseBuffer();
LPCTSTR szNewName = newFileName.GetBuffer(newFileName.GetLength());
newFileName.ReleaseBuffer();
MoveFile(szOldName, szNewName);
TRACE(_T("movefile %s to %s \n"), fileName, newFileName);
return TRUE;
}
// 删除所有该目录路径下指定后缀名的文件
static DWORD DeleteFilesInFolder(LPCTSTR lpszFolder, LPCTSTR lpszFilter){
DWORD dwDeletedFileNums = 0;
CFileFind find;
BOOL bfoundone = FALSE;
CString filter = _T("");
filter.Format(_T("%s\\%s"), lpszFolder, lpszFilter);
BOOL bFound = find.FindFile(filter);
TRACE(_T("CFileOper::DeleteFilesInFolder find path %s\n"), filter);
CString filepath = _T("");
while(bFound){
bFound = find.FindNextFile();
if(find.IsDots())
continue;
if(!find.IsDirectory()){
filepath = find.GetFilePath();
if(DeleteFile(filepath.GetBuffer(filepath.GetLength()))){
CString trace;trace.Format(_T("CFileOper::DeleteFilesInFolder delete file %s \n"),
find.GetFilePath());
TRACE(trace);
bfoundone = TRUE;
dwDeletedFileNums++;
}
}
}
if(!bfoundone)
TRACE(_T("CFileOper::DeleteFilesInFolder no file deleted\n"));
find.Close();
return dwDeletedFileNums;
}
private:
CFileOper();
virtual ~CFileOper();
protected:
static BOOL FindFirstFileExists(LPCTSTR lspzPath, DWORD dwFilter){
TCHAR realPath[MAX_PATH] = {0};
if(_tcsclen(lspzPath) > MAX_PATH)
GetShortPathName(lspzPath, realPath, MAX_PATH);
else
_tcscpy_s(realPath, lspzPath);
WIN32_FIND_DATA fd;
HANDLE hFind = FindFirstFile(realPath, &fd);
BOOL bFilter = (FALSE == dwFilter) ? TRUE : fd.dwFileAttributes & dwFilter;
BOOL RetValue = ((hFind != INVALID_HANDLE_VALUE) && bFilter) ? TRUE : FALSE;
FindClose(hFind);
return RetValue;
}
};
#endif // !defined(AFX_FILEOPER_H__25D4B209_DAC6_4D93_98B2_692621E5508F__INCLUDED_)
......@@ -64,7 +64,7 @@ public:
return ::TryEnterCriticalSection(&m_cs);
}
const LPCRITICAL_SECTION GetObject() { return &m_cs; }
LPCRITICAL_SECTION GetLockObject() { return &m_cs; }
private:
CRITICAL_SECTION m_cs;
//BOOL bNullInit;
......
#pragma once
inline wchar_t* FormatWSAError(int errornumber)
{
switch (errornumber) {
case WSANOTINITIALISED:
return L"A successful WSAStartup call must occur before using this function. ";
break;
case WSAENETDOWN:
return L"The network subsystem has failed. ";
break;
case WSAEACCES:
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;
case WSAEINVAL:
return L"An unknown flag was specified, or MSG_OOB was specified for a socket with SO_OOBINLINE enabled. ";
break;
case WSAEINTR:
return L"A blocking Windows Sockets 1.1 call was canceled through WSACancelBlockingCall. ";
break;
case WSAEINPROGRESS:
return L"A blocking Windows Sockets 1.1 call is in progress, or the service provider is still processing a callback function. ";
break;
case WSAEFAULT:
return L"The buf or to parameters are not part of the user address space, or the tolen parameter is too small. ";
break;
case WSAENETRESET:
return L"The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress. ";
break;
case WSAENOBUFS:
return L"No buffer space is available. ";
break;
case WSAENOTCONN:
return L"The socket is not connected (connection-oriented sockets only. ";
break;
case WSAENOTSOCK:
return L"The descriptor is not a socket. ";
break;
case WSAEOPNOTSUPP:
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;
case WSAESHUTDOWN:
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;
case WSAEWOULDBLOCK:
return L"The socket is marked as nonblocking and the requested operation would block. ";
break;
case WSAEMSGSIZE:
return L"The socket is message oriented, and the message is larger than the maximum supported by the underlying transport. ";
break;
case WSAEHOSTUNREACH:
return L"The remote host cannot be reached from this host at this time. ";
break;
case WSAECONNABORTED:
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;
case WSAECONNRESET:
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;
case WSAEADDRNOTAVAIL:
return L"The remote address is not a valid address, for example, ADDR_ANY. ";
break;
case WSAEAFNOSUPPORT:
return L"Addresses in the specified family cannot be used with this socket. ";
break;
case WSAEDESTADDRREQ:
return L"A destination address is required. ";
break;
case WSAENETUNREACH:
return L"The network cannot be reached from this host at this time. ";
break;
case WSAETIMEDOUT:
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;
default:
return L"Unknown socket error.";
break;
}
#pragma once
inline wchar_t* FormatWSAError(int errornumber)
{
switch (errornumber) {
case WSANOTINITIALISED:
return L"A successful WSAStartup call must occur before using this function. ";
break;
case WSAENETDOWN:
return L"The network subsystem has failed. ";
break;
case WSAEACCES:
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;
case WSAEINVAL:
return L"An unknown flag was specified, or MSG_OOB was specified for a socket with SO_OOBINLINE enabled. ";
break;
case WSAEINTR:
return L"A blocking Windows Sockets 1.1 call was canceled through WSACancelBlockingCall. ";
break;
case WSAEINPROGRESS:
return L"A blocking Windows Sockets 1.1 call is in progress, or the service provider is still processing a callback function. ";
break;
case WSAEFAULT:
return L"The buf or to parameters are not part of the user address space, or the tolen parameter is too small. ";
break;
case WSAENETRESET:
return L"The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress. ";
break;
case WSAENOBUFS:
return L"No buffer space is available. ";
break;
case WSAENOTCONN:
return L"The socket is not connected (connection-oriented sockets only. ";
break;
case WSAENOTSOCK:
return L"The descriptor is not a socket. ";
break;
case WSAEOPNOTSUPP:
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;
case WSAESHUTDOWN:
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;
case WSAEWOULDBLOCK:
return L"The socket is marked as nonblocking and the requested operation would block. ";
break;
case WSAEMSGSIZE:
return L"The socket is message oriented, and the message is larger than the maximum supported by the underlying transport. ";
break;
case WSAEHOSTUNREACH:
return L"The remote host cannot be reached from this host at this time. ";
break;
case WSAECONNABORTED:
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;
case WSAECONNRESET:
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;
case WSAEADDRNOTAVAIL:
return L"The remote address is not a valid address, for example, ADDR_ANY. ";
break;
case WSAEAFNOSUPPORT:
return L"Addresses in the specified family cannot be used with this socket. ";
break;
case WSAEDESTADDRREQ:
return L"A destination address is required. ";
break;
case WSAENETUNREACH:
return L"The network cannot be reached from this host at this time. ";
break;
case WSAETIMEDOUT:
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;
default:{
static wchar_t buf[1024] = { 0 };
swprintf_s(buf, L"Unknown socket error %d.", errornumber);
return buf;
}break;
}
}
\ 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