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

📄 sharedio.c

📁 开放源码的编译器open watcom 1.6.0版的源代码
💻 C
字号:
/****************************************************************************
*
*                            Open Watcom Project
*
*    Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
*  ========================================================================
*
*    This file contains Original Code and/or Modifications of Original
*    Code as defined in and that are subject to the Sybase Open Watcom
*    Public License version 1.0 (the 'License'). You may not use this file
*    except in compliance with the License. BY USING THIS FILE YOU AGREE TO
*    ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
*    provided with the Original Code and Modifications, and is also
*    available at www.sybase.com/developer/opensource.
*
*    The Original Code and all software distributed under the License are
*    distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
*    EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
*    ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
*    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
*    NON-INFRINGEMENT. Please see the License for the specific language
*    governing rights and limitations under the License.
*
*  ========================================================================
*
* Description:  WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
*               DESCRIBE IT HERE!
*
****************************************************************************/


#include <string.h>
#include "watcom.h"
#include "wresall.h"
#include "pass2.h"
#include "rcmem.h"
#include "errors.h"
#include "param.h"
#include "autodep.h"
#include "reserr.h"
#include "sharedio.h"

#define MAX_OPEN_RESFILES       6

typedef struct {
    int         used;
    WResStatus  status;
    int         errnum;
}ErrFrame;

static ErrFrame         errFromWres;

void closeAResFile( ResFileInfo *res )
/*************************************/
{
    if( res->IsOpen ) {
        ResCloseFile( res->Handle );
        res->IsOpen = FALSE;
    }
    if( res->Dir != NULL ) {
        WResFreeDir( res->Dir );
        res->Dir = NULL;
    }
    RcMemFree( res );
}

int OpenResFiles( ExtraRes *resnames, ResFileInfo **resinfo, int *allopen,
                  ExeType type, char *exename )
/**************************************************************************/
{
    unsigned        rescnt;
    ResFileInfo     *resfile;
    WResID          *res_name;
    WResID          *res_type;
    int             error;
    int             dup_discarded;
    WResTargetOS    target;

    *allopen = TRUE;
    rescnt = 0;
    *resinfo = NULL;

    while( resnames != NULL ) {
        resfile = RcMemMalloc( sizeof( ResFileInfo ) );
        resfile->next = *resinfo;
        *resinfo = resfile;
        resfile->Dir = WResInitDir();
        resfile->name = resnames->name;
        resfile->Handle = ResOpenFileRO( resfile->name );
        if( resfile->Handle == -1 ) {
            RcError( ERR_CANT_OPEN_FILE, resfile->name, LastWresErrStr() );
            resfile->IsOpen = FALSE;
            goto HANDLE_ERROR;
        } else {
            resfile->IsOpen = TRUE;
        }
        error = WResReadDir2( resfile->Handle, resfile->Dir, &dup_discarded,
                                resfile );
        if( error ) {
            switch( LastWresStatus() ) {
            case WRS_BAD_SIG:
                RcError( ERR_INVALID_RES, resfile->name );
                break;
            case WRS_BAD_VERSION:
                RcError( ERR_BAD_RES_VER, resfile->name );
                break;
            default:
                RcError( ERR_READING_RES, resfile->name, LastWresErrStr() );
                break;
            }
            goto HANDLE_ERROR;
        }
        if( rescnt >= MAX_OPEN_RESFILES ) {
            resfile->IsOpen = FALSE;
            ResCloseFile( resfile->Handle );
            resfile->Handle = -1;
            *allopen = FALSE;
        }

        // remove the autodepend resource
        res_name = WResIDFromStr( DEP_LIST_NAME );
        res_type = WResIDFromNum( DEP_LIST_TYPE );
        WResDelResource( resfile->Dir, res_type, res_name );
        WResIDFree( res_name );
        WResIDFree( res_type );

        target = WResGetTargetOS( resfile->Dir );
        switch( type ) {
        case EXE_TYPE_NE_WIN:
            if( target != WRES_OS_WIN16 ) {
                RcError( ERR_NONWIN_RES_TO_WIN_EXE, resfile->name, exename );
                goto HANDLE_ERROR;
            }
            break;
        case EXE_TYPE_NE_OS2:
            // No way to tell MS and IBM resource files apart, and I can't find
            // a good way to figure out if this is a Watcom .res file
            if( target != WRES_OS_WIN16 && target != WRES_OS_OS2 ) {
                RcError( ERR_NONWIN_RES_TO_WIN_EXE, resfile->name, exename );
                goto HANDLE_ERROR;
            }
            break;
        case EXE_TYPE_PE:
            if( target != WRES_OS_WIN32 ) {
                RcError( ERR_NONNT_RES_TO_NT_EXE, resfile->name, exename );
                goto HANDLE_ERROR;
            }
            break;
        case EXE_TYPE_LX:
            // Same problem as with EXE_TYPE_NE_OS2
            if( target != WRES_OS_OS2 && target != WRES_OS_WIN16 ) {
                RcError( ERR_NONOS2_RES_TO_OS2_EXE, resfile->name, exename );
                goto HANDLE_ERROR;
            }
            break;
        default: // EXE_TYPE_UNKNOWN
            break;
        }
        resnames = resnames->next;
        rescnt++;
    }
    return( TRUE );

HANDLE_ERROR:
    CloseResFiles( *resinfo );
    *resinfo = NULL;
    return( FALSE );
}

void CloseResFiles( ResFileInfo *resfiles )
/*******************************************/
{
    ResFileInfo         *res;

    while( resfiles != NULL ) {
        res = resfiles;
        resfiles = res->next;
        closeAResFile( res );
    }
}

void WresRecordError( WResStatus status ) {
    errFromWres.used = TRUE;
    errFromWres.status = status;
    errFromWres.errnum = errno;
}

char *LastWresErrStr( void ) {

    if( errFromWres.used == TRUE ) {
        switch( errFromWres.status ) {
        case WRS_READ_INCOMPLETE:
            return( "Unexpected end of file" );
        default:
            return( strerror( errFromWres.errnum ) );
        }
    } else {
        return( "" );
    }
}

int LastWresErr( void ) {
    if( errFromWres.used == TRUE ) {
        return( errFromWres.errnum );
    }
    return( 0 );
}

int LastWresStatus( void ) {
    if( errFromWres.used == TRUE ) {
        return( errFromWres.status );
    }
    return( 0 );
}

extern void SharedIOInitStatics( void )
/*************************************/
{
    memset( &errFromWres, 0, sizeof( ErrFrame ) );
}

void ReportDupResource( WResID *nameid, WResID *typeid, char *file1,
                           char *file2, int warn )
/*******************************************************************/
{
    char        *type;
    char        *name;
    char        namebuf[20];
    char        typebuf[20];
    unsigned    strbase;

    if( typeid->IsName ) {
        type = WResIDToStr( typeid );
    } else {
        switch( typeid->ID.Num ) {
        case RT_CURSOR:
        case RT_GROUP_CURSOR:
            type = "cursor";
            break;
        case RT_BITMAP:
            type = "bitmap";
            break;
        case RT_ICON:
        case RT_GROUP_ICON:
            type = "icon";
            break;
        case RT_MENU:
            type = "menu";
            break;
        case RT_DIALOG:
            type = "dialog";
            break;
        case RT_FONTDIR:
            type = "font directory";
            break;
        case RT_FONT:
            type = "font";
            break;
        case RT_ACCELERATOR:
            type = "accelerator";
            break;
        case RT_RCDATA:
            type = "rcdata";
            break;
        case RT_VERSIONINFO:
            type = "version info";
            break;
        case RT_MESSAGETABLE:
            type = "message table";
            break;
        case RT_TOOLBAR:
            type = "toolbar";
            break;
        default:
            type = typebuf;
            itoa( typeid->ID.Num, type, 10 );
            break;
        }
    }

    if( nameid->IsName ) {
        name = WResIDToStr( nameid );
    } else {
        name = namebuf;
        itoa( nameid->ID.Num, name, 10 );
    }
    if( !typeid->IsName && typeid->ID.Num == (uint_16)RT_STRING ) {
        strbase = ( nameid->ID.Num - 1 ) * 16;
        if( file1 != NULL && file2 != NULL ) {
            if( warn ) {
                RcWarning( ERR_DUPLICATE_STR_TABLE_FILE,
                                strbase, strbase + 15, file1, file2 );
            } else {
                RcError( ERR_DUPLICATE_STR_TABLE_FILE,
                                strbase, strbase + 15, file1, file2 );
            }
        } else {
            if( warn ) {
                RcWarning( ERR_DUPLICATE_STR_TABLE, strbase, strbase + 15 );
            } else {
                RcError( ERR_DUPLICATE_STR_TABLE, strbase, strbase + 15 );
            }
        }
    } else if( file1 != NULL && file2 != NULL ) {
        if( warn ) {
            RcWarning( ERR_DUPLICATE_RES_FILE, type, name, file1, file2 );
        } else {
            RcError( ERR_DUPLICATE_RES_FILE, type, name, file1, file2 );
        }
    } else {
        if( warn ) {
            RcWarning( ERR_DUPLICATE_RES, type, name );
        } else {
            RcError( ERR_DUPLICATE_RES, type, name );
        }
    }
    if( nameid->IsName ) {
        RcMemFree( name );
    }
    if( typeid->IsName ) {
        RcMemFree( type );
    }
}

⌨️ 快捷键说明

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