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

📄 wrstr.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 <windows.h>
#include <string.h>
#include "wrglbl.h"
#include "wresall.h"
#include "wrmem.h"
#include "wrstrdup.h"
#include "wrnamoor.h"
#include "wrutil.h"
#include "wrstr.h"

/****************************************************************************/
/* external function prototypes                                             */
/****************************************************************************/

/****************************************************************************/
/* macro definitions                                                        */
/****************************************************************************/

/****************************************************************************/
/* type definitions                                                         */
/****************************************************************************/

/****************************************************************************/
/* static function prototypes                                               */
/****************************************************************************/

/****************************************************************************/
/* static variables                                                         */
/****************************************************************************/

static int getUniStringLength( WResIDName *id, int is32bit )
{
    char        *str;
    int         len;

    if( is32bit ) {
        str = WRWResIDNameToStr( id );
        if( str != NULL ) {
            len = 0;
            WRmbcs2unicode( str, NULL, &len );
            WRMemFree( str );
        } else {
            len = 2;
        }
    } else {
        len = 1;
        if( id != NULL ) {
            len += id->NumChars;
        }
    }

    return( len );
}

static int WRCalcStringBlockSize( StringTableBlock *block, int is32bit )
{
    int         size;
    int         i;

    size = 0;

    if( block ) {
        for( i=0; i<STRTABLE_STRS_PER_BLOCK; i++ ) {
            size += getUniStringLength( block->String[i], is32bit );
        }
    }

    return( size );
}

static char *copyNULLWResIDNameToData( char *data, int is32bit )
{
    if( is32bit ) {
        *((uint_16 *)data) = (uint_16)0;
        data = ((char *)data + sizeof(uint_16) );
    } else {
        *((uint_8 *)data) = (uint_8)0;
        data = ((char *)data + sizeof(uint_8) );
    }

    return( data );
}

static char *copyWResIDNameToData( char *data, WResIDName *name, int is32bit )
{
    char        *str;
    char        *new_str;
    int         len;

    if( name == NULL ) {
        return( copyNULLWResIDNameToData( data, is32bit ) );
    }

    if( is32bit ) {
        new_str = NULL;
        str = WRWResIDNameToStr( name );
        if( str ) {
            WRmbcs2unicode( str, &new_str, &len );
            WRMemFree( str );
        }

        if( new_str == NULL ) {
            return( copyNULLWResIDNameToData( data, is32bit ) );
        }

        // write the length of the string
        *((uint_16 *)data) = (uint_16)( len / 2 - 1 );
        data += sizeof(uint_16);

        // write the string
        data = WRCopyString( data, new_str, len - 2 );

        WRMemFree( new_str );
    } else {
        // write the length of the string
        *((uint_8 *)data) = name->NumChars;
        data += sizeof(uint_8);

        // write the string
        data = WRCopyString( data, &name->Name[ 0 ], name->NumChars );
    }

    return( data );
}

static int WRInitDataFromBlock( StringTableBlock *block, void *data,
                                int size, int is32bit )
{
    int         i;
    int         dsize;
    void        *orig_data;

    if( block ) {
        orig_data = data;
        for( i=0; i<STRTABLE_STRS_PER_BLOCK; i++ ) {
            data = copyWResIDNameToData( (char *)data, block->String[i], is32bit );
        }
        dsize = (char *)data - (char *)orig_data;
    }

    return( dsize == size );
}

int WR_EXPORT WRIsBlockEmpty( StringTableBlock *block )
{
    int         i;

    if ( block ) {
        for( i=0; i<STRTABLE_STRS_PER_BLOCK; i++ ) {
            if( block->String[i] != NULL ) {
                return( FALSE );
            }
        }
    }

    return ( TRUE );
}

int WR_EXPORT WRMakeDataFromStringBlock( StringTableBlock *block, void **data,
                                         int *size, int is32bit )
{
    if( data && size ) {
        *size = WRCalcStringBlockSize( block, is32bit );
        if( *size ) {
            *data = WRMemAlloc( *size );
            if( *data ) {
                if( WRInitDataFromBlock( block, *data, *size, is32bit ) ) {
                    return( TRUE );
                } else {
                    WRMemFree ( *data );
                    *data = NULL;
                    *size = 0;
                }
            } else {
                *size = 0;
            }
        } else {
            *data = NULL;
        }
    }

    return( FALSE );
}

int WR_EXPORT WRMakeStringBlockFromData( StringTableBlock *block, void *data,
                                         int size, int is32bit )
{
    char        *text;
    char        *uni_str;
    char        *str;
    int         str_len;
    int         dsize;
    int         i;
    int         tlen;

    if( !data || !size || !block ) {
        return( FALSE );
    }

    i = 0;
    dsize = size;

    while( ( i < STRTABLE_STRS_PER_BLOCK ) && ( dsize > 0 ) ) {
        text = (char *)data;
        if( is32bit ) {
            tlen = (int) *((uint_16 *)text);
            tlen *= 2;
            text += sizeof(uint_16);
            dsize -= ( tlen + sizeof(uint_16) );
        } else {
            tlen = (int) *((uint_8 *)text);
            text += sizeof(uint_8);
            dsize -= ( tlen + sizeof(uint_8) );
        }
        if( tlen ) {
            if( is32bit ) {
                str = NULL;
                str_len = 0;
                uni_str = (char *)WRMemAlloc( tlen + 2 );
                if( uni_str ) {
                    memcpy( uni_str, text, tlen );
                    uni_str[ tlen ] = '\0';
                    uni_str[ tlen+1 ] = '\0';
                    WRunicode2mbcs( uni_str, &str, &str_len );
                    WRMemFree( uni_str );
                }
            } else {
                str_len = tlen + 1;
                str = WRMemAlloc( str_len );
                memcpy( str, text, tlen );
                str[ tlen ] = '\0';
            }

            if( str == NULL ) {
                return( FALSE );
            }

            block->String[i] = WResIDNameFromStr( str );
            if( block->String[i] == NULL ) {
                return( FALSE );
            }

            text += tlen;
        } else {
            block->String[i] = NULL;
        }
        data = text;
        i++;
    }

    return( dsize >= 0 );
}

// copy strings in b2 into b1
int WR_EXPORT WRMergeStringBlock( StringTableBlock *b1, StringTableBlock *b2,
                                  int replace )
{
    int         i;
    int         size;

    if( !b1 || !b2 ) {
        return( FALSE );
    }

    for( i=0; i<STRTABLE_STRS_PER_BLOCK; i++ ) {
        if( b2->String[i] == NULL ) {
            continue;
        }
        if( b1->String[i] != NULL ) {
            if( !replace ) {
                continue;
            }
            WRMemFree( b1->String[i] );
            b1->String[i] = NULL;
        }
        size = b2->String[i]->NumChars;
        b1->String[i] = WRMemAlloc( size + sizeof(uint_8) );
        if( b1->String[i] == NULL ) {
            return( FALSE );
        }
        memcpy( b1->String[i]->Name, b2->String[i]->Name, size );
        b1->String[i]->NumChars = size;
    }

    return( TRUE );
}

int WR_EXPORT WRMergeStringData( void **s1, int *sz1, void *s2, int sz2,
                                 int is32bit, int replace )
{
    StringTableBlock    b1;
    StringTableBlock    b2;
    void                *new_data;
    int                 new_size;
    int                 ok;

    ok = ( s1 && *s1 && s2 && sz1 && *sz1 && sz2 );

    if( ok ) {
        ResInitStringTableBlock( &b1 );
        ResInitStringTableBlock( &b2 );
        ok = WRMakeStringBlockFromData( &b1, *s1, *sz1, is32bit );
    }

    if( ok ) {
        ok = WRMakeStringBlockFromData( &b2, s2, sz2, is32bit );
    }

    if( ok ) {
        ok = WRMergeStringBlock( &b1, &b2, replace );
    }

    if( ok ) {
        new_data = NULL;
        new_size = 0;
        ok = WRMakeDataFromStringBlock( &b1, &new_data, &new_size, is32bit );
    }

    if( ok )  {
        WRMemFree( *s1 );
        *s1  = new_data;
        *sz1 = new_size;
    }

    ResFreeStringTableBlock( &b1 );
    ResFreeStringTableBlock( &b2 );

    return( ok );
}

⌨️ 快捷键说明

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