⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 win32err.cpp

📁 mini http server,可以集成嵌入到程序中,实现简单的web功能
💻 CPP
字号:
/*____________________________________________________________________________*\
 *

 Copyright (c) 1997-2003 John Roy, Holger Zimmermann. All rights reserved.

 These sources, libraries and applications are
 FREE FOR COMMERCIAL AND NON-COMMERCIAL USE
 as long as the following conditions are adhered to.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:

 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer. 

 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in
    the documentation and/or other materials provided with the
    distribution.

 3. The name of the author may not be used to endorse or promote products
    derived from this software without specific prior written permission.

 THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 IN NO EVENT SHALL THE AUTHORS OR ITS CONTRIBUTORS BE LIABLE FOR ANY
 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 OF THE POSSIBILITY OF SUCH DAMAGE.

 *____________________________________________________________________________*|
 *
 * $Source: /cvsroot/pi3web/Pi3Web_200/Source/Platform/Win32Err.cpp,v $
 * $Date: 2003/06/07 10:28:37 $
 *
 Description:
	Translate Win32 Error codes in PI error codes.
\*____________________________________________________________________________*/
//$SourceTop:$

#include "OSConfig.h"

#if defined(CONFIG_OS_WIN32)	/* must be Win32 OS */

#if !defined(NDEBUG)
#	include <iostream.h>
#endif

#include "Platform.h"
#include "PIDefs.h"

#include <windows.h>
#include <lmerr.h>

/*____________________________________________________________________________*\
 *
 Description:
\*____________________________________________________________________________*/

/*____________________________________________________________________________*\
 *
 Function:
 Synopsis:
 Description:
\*____________________________________________________________________________*/
int Platform::OSErrorToPIError()
{
	return Platform::OSErrorToPIError( ::GetLastError() );
}

/*____________________________________________________________________________*\
 *
 Function:
 Synopsis:
 Description:
\*____________________________________________________________________________*/
int Platform::OSErrorToPIError( long lErrorCode )
{
#if !defined(NDEBUG)
	enum { BUF_SIZE = 256 };
	char szMessage[BUF_SIZE];

	HMODULE hModule = NULL; // default to system source
	DWORD dwFormatFlags = FORMAT_MESSAGE_IGNORE_INSERTS | FORMAT_MESSAGE_FROM_SYSTEM;
    /*
    ** If dwLastError is in the network range, load the message source.
    */
    if(lErrorCode >= NERR_BASE && lErrorCode <= MAX_NERR) {
        hModule = LoadLibraryEx(
            TEXT("netmsg.dll"),
            NULL,
            LOAD_LIBRARY_AS_DATAFILE
            );

        if(hModule != NULL)
            dwFormatFlags |= FORMAT_MESSAGE_FROM_HMODULE;
    }

    /*
    ** Call FormatMessage() to allow for message text to be acquired
	** from the system or from the supplied module handle.
    */
    DWORD dwMessageLen = FormatMessage(
        dwFormatFlags,
        hModule, // module to get message from (NULL == system)
        lErrorCode,
        MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // default language
        (LPSTR) &szMessage,
        BUF_SIZE,
        NULL
        );
	szMessage[dwMessageLen] = '\0';

	cout << "System error #" << lErrorCode;
	if ( dwMessageLen )
		{ cout << ": " << szMessage; cout.flush(); }
	else
		{ cout << endl; }
#endif
	switch( lErrorCode )
		{
		case ERROR_PATH_NOT_FOUND:
		case ERROR_FILE_NOT_FOUND:
		case ERROR_MOD_NOT_FOUND:
		case ERROR_FILE_EXISTS:
		case ERROR_DLL_NOT_FOUND:
			return PIAPI_EEXIST;

		case ERROR_FILENAME_EXCED_RANGE:
		case ERROR_INVALID_PARAMETER:
		case ERROR_INVALID_HANDLE:
		case ERROR_FILE_INVALID:
		case ERROR_INVALID_NAME:
		case ERROR_BAD_EXE_FORMAT:
		case ERROR_PROC_NOT_FOUND:
		case ERROR_DIRECTORY:
		case ERROR_NOACCESS:
			return PIAPI_EINVAL;

		case ERROR_ACCESS_DENIED:
		case ERROR_SHARING_VIOLATION:
		case ERROR_NOT_OWNER:
			return PIAPI_EACCES;

		case ERROR_TOO_MANY_OPEN_FILES:
		case ERROR_DISK_FULL:
			return PIAPI_EXHAUSTED;

		default:
#if !defined(NDEBUG)
			cout << "Uncatched Error #" << lErrorCode << endl;
			assert( 0 );
#endif
			return PIAPI_ERROR;
		};
}

#endif	/* CONFIG_OS_WIN32 */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -