setenvp.c

来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 202 行

C
202
字号
/****************************************************************************
*
*                            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:  Routines to create/destroy clib copy of OS environment.
*
****************************************************************************/


#include "dll.h"        // needs to be first
#include "variety.h"
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
#if !defined(__UNIX__)
    #include <dos.h>
#endif
#include <env.h>
#include "liballoc.h"
#include <string.h>
#include "filestr.h"
#include "rtdata.h"
#if defined(__OS2__)
    #define INCL_DOSMISC
    #include <wos2.h>
#endif
#if defined(__NT__)
    #include <windows.h>
#endif
#if defined(__WINDOWS__)
    extern char _WCI86FAR * _WCI86FAR __pascal GetDOSEnvironment( void );
#elif defined(__DOS_386__)
    extern char _WCFAR *_Envptr;
#elif !defined(__NETWARE__) && !defined(__LINUX__)
    extern char _WCI86FAR *_Envptr;
#endif

#if !defined(__NETWARE__) && !defined(__LINUX__)
static char *_free_ep;

#if defined(__REAL_MODE__) && defined(__BIG_DATA__)
static void *(_WCI86NEAR allocate)( size_t amt )
{
    void    *ptr;

    #if defined(__OS2_286__)
        if( _osmode == DOS_MODE ) {
            ptr = lib_nmalloc( amt );
            if( (void _WCI86NEAR *)ptr == NULL ) {
                ptr = lib_malloc( amt );
            }
        } else {
            ptr = lib_malloc( amt );
        }
    #else
        ptr = lib_nmalloc( amt );
        if( (void _WCI86NEAR *)ptr == NULL ) {
            ptr = lib_malloc( amt );
        }
    #endif
    return( ptr );
}
#else
#define allocate lib_malloc
#endif
#endif

void __setenvp( void )
{
#if defined(__NETWARE__)
    // no environment support
#elif defined(__LINUX__)
    char    **argep;
    int     count;

    argep = _RWD_environ;
    while ( *argep != NULL )
        argep++;
    count = argep - _RWD_environ;
    argep = lib_malloc( (count + 1) * sizeof(char *) + count * sizeof(char) );
    memcpy( argep, _RWD_environ, (count + 1) * sizeof(char *) );
    _RWD_env_mask = (char *) &argep[ count + 1 ];
    memset( _RWD_env_mask, 0, (count) * sizeof(char) );
    _RWD_environ = argep;
#else
    #if defined(__WINDOWS_386__) || defined(__DOS_386__)
        char        _WCFAR *startp;
        char        _WCFAR *p;
    #else
        char        _WCI86FAR *startp;
        char        _WCI86FAR *p;
    #endif
    char    *ep;
    char    *my_env_mask;
    char    **my_environ;
    int     count;
    size_t  ep_size;
    size_t  env_size;

    /* if we are already initialized, then return */
    if( _RWD_environ != NULL ) return;           /* 10-jun-90 */
    #if defined(__WARP__)
        startp = _Envptr;
    #elif defined(__OS2_286__)
    {
        unsigned short  seg;

        DosGetEnv( (PUSHORT)&seg, (PUSHORT)&count );
        startp = MK_FP( seg, 0 );
    }
    #elif defined(__WINDOWS__)
    {
        unsigned long tmp;

        tmp = (unsigned long)GetDOSEnvironment();
        startp = MK_FP( (unsigned short)(tmp >> 16),
                        (unsigned long) (tmp & 0xFFFF ));
    }
    #elif defined(M_I86)
        startp = MK_FP( *(unsigned short _WCI86FAR *)(MK_FP(_RWD_psp, 0x2c)), 0 );
    #else
        startp = _Envptr;                                   /* 13-mar-91 */
    #endif
    count = 0;
    p = startp;
    while( *p ) {
        while( *++p );
        ++count;
        ++p;
    }
    ep_size = p - startp;
    if( ep_size == 0 ) {
        ep_size = 1;
    }
    ep = (char *)allocate( ep_size );
    if( ep ) {
        env_size = (count + 1) * sizeof(char *) + count * sizeof(char);
        my_environ = (char **)allocate( env_size );
        if( my_environ ) {
            _RWD_environ = my_environ;
            p = startp;
            _free_ep = ep;
            while( *p ) {
                *my_environ++ = ep;
                while( *ep++ = *p++ )
                    ;
            }
            *my_environ++ = NULL;
            _RWD_env_mask = my_env_mask = (char *) my_environ;
            for( ; count; count-- )
                *my_env_mask++ = 0;
        } else {
            lib_free( ep );
        }
    }

    /*** Handle the C_FILE_INFO entry ***/
    #ifdef __USE_POSIX_HANDLE_STRINGS
        __ParsePosixHandleStr();
    #endif
#endif
}

#if !defined(__NETWARE__) && !defined(__LINUX__)

void __freeenvp( void )
{
    clearenv();
    if( _RWD_environ ) {
        lib_free( _RWD_environ );
        _RWD_environ = NULL;
    }
    if( _free_ep ) {
        lib_free( _free_ep );
        _free_ep = NULL;
    }
}

#endif

⌨️ 快捷键说明

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