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

📄 alias.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:  Helper routines for memory aliases.
*
****************************************************************************/


#include <windows.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <stdio.h>
#include "mem.h"
#include "alias.h"
#ifndef NOUSE3D
    #include "ctl3d.h"
#endif
#include "win1632.h"
#include "ldstr.h"
#include "rcstr.gh"

#define CONST_LEN       15

static AliasHdl         CurHdl;         /* used for dialog box processing */

static AnAlias *FindAlias( AliasHdl hdl, unsigned long id ) {

    AnAlias     *cur;

    cur = hdl->data;
    while( cur != NULL ) {
        if( cur->id == id ) return( cur );
        if( cur->id > id ) break;
        cur = cur->next;
    }
    return( NULL );
}

/*
 * InitAliasHdl - initialize an alias handle before any aliases are
 *                assigned to it
 */

void InitAliasHdl( AliasHdl *hdl, void (*updatefn)(), void *userdata ) {
    *hdl = MemAlloc( sizeof( AliasList ) );
    (*hdl)->data = NULL;
    (*hdl)->userdata = userdata;
    (*hdl)->updatefn = updatefn;
}

/*
 * InsertAlias - insert an alias in the alias list using linear
 *              insertion sort
 */

static void InsertAlias( AliasHdl hdl, AnAlias *alias ) {

    AnAlias     **cur;

    cur = &(hdl->data);
    for( ;; ){
        if( *cur == NULL || (*cur)->id > alias->id ) {
            alias->next = *cur;
            *cur = alias;
            break;
        }
        cur = &( (*cur)->next );
    }
}

/*
 * AddAlias - add an alias to an alias list
 *          - if an alias already exists for this id replace it
 */

void AddAlias( AliasHdl hdl, char *text, unsigned long id ) {

    AnAlias     *cur;
    unsigned    len;

    cur = FindAlias( hdl, id );
    if( cur == NULL ) {
        cur = MemAlloc( sizeof( AnAlias ) );
        cur->id = id;
        InsertAlias( hdl, cur );
        if( hdl->updatefn != NULL ) {
            hdl->updatefn( id, text, NULL, hdl->userdata );
        }
    } else {
        if( hdl->updatefn != NULL ) {
            hdl->updatefn( id, text, cur->name, hdl->userdata );
        }
        MemFree( cur->name );
    }
    len = strlen( text ) + 1;
    cur->name = MemAlloc( len );
    strcpy( cur->name, text );
}

/*
 * FreeAlias - free all memory associated with an alias list.
 *              InitAliasHdl must be called before this handle can be
 *              used again
 */

void FreeAlias( AliasHdl hdl ) {

    AnAlias     *cur;
    AnAlias     *tmp;

    cur = hdl->data;
    while( cur != NULL ) {
        MemFree( cur->name );
        tmp = cur;
        cur = cur->next;
        MemFree( tmp );
    }
    MemFree( hdl );
}

/*
 * LookupAlias - return the string associated with an id or NULL if
 *              no alias exists
 */
char *LookupAlias( AliasHdl hdl, unsigned long id ) {

    AnAlias     *cur;

    cur = FindAlias( hdl, id );
    if( cur == NULL ) return( NULL );
    return( cur->name );
}

static AnAlias *GetIthAlias( AliasHdl hdl, unsigned i ) {

    AnAlias     *ret;

    ret = hdl->data;
    for( ; i > 0; i-- ) ret = ret->next;
    return( ret );
}

static AnAlias *findAliasFromText( AliasHdl hdl, char *alias ) {

    AnAlias     *cur;

    cur = hdl->data;
    while( cur != NULL ) {
        if( !strcmp( alias, cur->name ) ) break;
        cur = cur->next;
    }
    return( cur );
}

BOOL __export FAR PASCAL AliasDlgProc( HWND hwnd, UINT msg,
                                          WPARAM wparam, DWORD lparam )
{
    AnAlias     *cur;
    unsigned    len;
    char        buf[CONST_LEN];
    char        msgbuf[256];
    WORD        sel;
    char        *endptr;
    char        *realend;
    char        *alias;
    long        id;
    WORD        cmd;

    switch( msg ) {
    case WM_INITDIALOG:
        cur = CurHdl->data;
        if( (char *)lparam != NULL ) {
            SetWindowText( hwnd, (char *)lparam );
        }
        SendDlgItemMessage( hwnd, ALIAS_TEXT, EM_LIMITTEXT, 20, 0 );
        while( cur != NULL ) {
            sprintf( buf, "0x%08X", cur->id );
            SendDlgItemMessage( hwnd, ALIAS_ID_LIST, LB_ADDSTRING, 0,
                                    (DWORD) buf );
            cur = cur->next;
        }
        break;
#ifndef NOUSE3D
    case WM_SYSCOLORCHANGE:
        Ctl3dColorChange();
        break;
#endif
    case WM_COMMAND:
        cmd = LOWORD( wparam );
        switch( cmd ) {
            case IDOK:
            case ALIAS_DO_MORE:
                SendDlgItemMessage( hwnd, ALIAS_CUR_ID,
                                WM_GETTEXT, CONST_LEN, (DWORD)buf );
                realend = buf;
                while( *realend != '\0' ) realend++;
                realend--;
                while( isspace( *realend ) ) realend--;
                realend++;
                id = strtol( buf, &endptr, 0 );
                if( endptr != realend || *buf == '\0' ) {
                    RCMessageBox( hwnd, ALIAS_VALUE_MUST_BE_INT,
                                  "", MB_OK );
                    break;
                }
                len = SendDlgItemMessage( hwnd, ALIAS_TEXT,
                                WM_GETTEXTLENGTH, 0, 0 );
                alias = MemAlloc( len + 1 );
                len = SendDlgItemMessage( hwnd, ALIAS_TEXT,
                                WM_GETTEXT, len + 1, (DWORD)alias );
                /* check for spaces */
                endptr = alias;
                while( !isspace( *endptr ) && *endptr != '\0' ) endptr ++;
                realend = endptr;
                while( isspace( *endptr ) ) endptr ++;
                if( *endptr != '\0' ) {
                    RCMessageBox( hwnd, ALIAS_NO_SPACES_ALLOWED, "", MB_OK );
                    MemFree( alias );
                    break;
                }
                realend = '\0'; /* truncate trailing spaces */
                cur = findAliasFromText( CurHdl, alias );
                if( cur == NULL ) {
                    AddAlias( CurHdl, alias, id );
                } else {
                    RCsprintf( msgbuf, ALIAS_NO_DUPLICATES_ALLOWED, alias, (DWORD)cur->id );
                    MessageBox( hwnd, msgbuf, "", MB_OK );
                    MemFree( alias );
                    break;
                }
                MemFree( alias );
                EndDialog( hwnd, cmd );
                break;
            case IDCANCEL:
                EndDialog( hwnd, cmd );
                break;
            case ALIAS_ID_LIST:
                if( GET_WM_COMMAND_CMD( wparam, lparam ) == LBN_SELCHANGE ) {
                    sel = SendDlgItemMessage( hwnd, ALIAS_ID_LIST,
                                    LB_GETCURSEL, 0, 0L );
                    SendDlgItemMessage( hwnd, ALIAS_ID_LIST,
                                    LB_GETTEXT, sel, (DWORD)buf );
                    SendDlgItemMessage( hwnd, ALIAS_CUR_ID, WM_SETTEXT,
                                    0, (DWORD)buf );
                    cur = GetIthAlias( CurHdl, sel );
                    SendDlgItemMessage( hwnd, ALIAS_TEXT, WM_SETTEXT,
                                    0, (DWORD) ( cur->name ) );
                }
                break;
            default:
                return( FALSE );
        }
    default:
        return( FALSE );
    }
    return( TRUE );
}

void Query4Aliases( AliasHdl hdl, HANDLE instance, HWND hwnd, char *title ) {

    FARPROC     fp;
    WORD        ret;

    CurHdl = hdl;
    fp = MakeProcInstance( (FARPROC)AliasDlgProc, instance );
    for( ;; ) {
        ret = DialogBoxParam( instance, "ALIAS_DLG", hwnd, (DLGPROC)fp, (DWORD)title );
        if( ret != ALIAS_DO_MORE ) break;
    }
    FreeProcInstance( fp );
    CurHdl = NULL;
}

void EnumAliases( AliasHdl hdl, void (*enumfn)(), void *userdata ) {
    AnAlias     *cur;

    cur = hdl->data;
    while( cur != NULL ) {
        enumfn( cur->id, cur->name, userdata );
        cur = cur->next;
    }
    enumfn( (DWORD)-1, userdata );
}

⌨️ 快捷键说明

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