Commit 0f737320 authored by captainwong's avatar captainwong

update

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