/* $Id: env-posix.cpp 2981 2007-06-01 16:01:28Z vboxsync $ */ /** @file * innotek Portable Runtime - Environment, Posix. */ /* * Copyright (C) 2006-2007 innotek GmbH * * This file is part of VirtualBox Open Source Edition (OSE), as * available from http://www.virtualbox.org. This file is free software; * you can redistribute it and/or modify it under the terms of the GNU * General Public License as published by the Free Software Foundation, * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE * distribution. VirtualBox OSE is distributed in the hope that it will * be useful, but WITHOUT ANY WARRANTY of any kind. * * If you received this file as part of a commercial VirtualBox * distribution, then only the terms of your commercial VirtualBox * license agreement apply instead of the previous paragraph. */ /******************************************************************************* * Header Files * *******************************************************************************/ #include #include #include #include #include RTDECL(bool) RTEnvExist(const char *pszVar) { return getenv(pszVar) != NULL; } RTDECL(const char *) RTEnvGet(const char *pszVar) { return getenv(pszVar); } RTDECL(int) RTEnvPut(const char *pszVarEqualValue) { /** @todo putenv is a source memory leaks. deal with this on a per system basis. */ if (!putenv((char *)pszVarEqualValue)) return 0; return RTErrConvertFromErrno(errno); } RTDECL(int) RTEnvSet(const char *pszVar, const char *pszValue) { #if defined(_MSC_VER) /* make a local copy and feed it to putenv. */ const size_t cchVar = strlen(pszVar); const size_t cchValue = strlen(pszValue); char *pszTmp = (char *)alloca(cchVar + cchValue + 2 + !*pszValue); memcpy(pszTmp, pszVar, cchVar); pszTmp[cchVar] = '='; if (*pszValue) memcpy(pszTmp + cchVar + 1, pszValue, cchValue + 1); else { pszTmp[cchVar + 1] = ' '; /* wrong, but putenv will remove it otherwise. */ pszTmp[cchVar + 2] = '\0'; } if (!putenv(pszTmp)) return 0; return RTErrConvertFromErrno(errno); #else if (!setenv(pszVar, pszValue, 1)) return VINF_SUCCESS; return RTErrConvertFromErrno(errno); #endif }