Replaced $Id$ and $Header$ keywords with $Revision-Id$ Deleted $Log$ keywords and any log messages
58 lines
1.5 KiB
C
58 lines
1.5 KiB
C
/*************************************************************************\
|
|
* Copyright (c) 2009 UChicago Argonne LLC, as Operator of Argonne
|
|
* National Laboratory.
|
|
* EPICS BASE is distributed subject to a Software License Agreement found
|
|
* in file LICENSE that is included with this distribution.
|
|
\*************************************************************************/
|
|
/* $Revision-Id$
|
|
*
|
|
* Macro expansion of environment variables
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#define epicsExportSharedSymbols
|
|
#include "cantProceed.h"
|
|
#include "epicsString.h"
|
|
#include "macLib.h"
|
|
|
|
char * epicsShareAPI
|
|
macEnvExpand(const char *str)
|
|
{
|
|
MAC_HANDLE *handle;
|
|
static char *pairs[] = { "", "environ", NULL, NULL };
|
|
long destCapacity = 128;
|
|
char *dest = NULL;
|
|
int n;
|
|
|
|
if (macCreateHandle(&handle, pairs))
|
|
cantProceed("macEnvExpand: macCreateHandle failed.");
|
|
|
|
do {
|
|
destCapacity *= 2;
|
|
/*
|
|
* Use free/malloc rather than realloc since there's no need to
|
|
* keep the original contents.
|
|
*/
|
|
free(dest);
|
|
dest = mallocMustSucceed(destCapacity, "macEnvExpand");
|
|
n = macExpandString(handle, str, dest, destCapacity);
|
|
} while (n >= (destCapacity - 1));
|
|
|
|
if (n < 0) {
|
|
free(dest);
|
|
dest = NULL;
|
|
} else {
|
|
size_t unused = destCapacity - ++n;
|
|
|
|
if (unused >= 20)
|
|
dest = realloc(dest, n);
|
|
}
|
|
|
|
if (macDeleteHandle(handle))
|
|
cantProceed("macEnvExpand: macDeleteHandle failed.");
|
|
return dest;
|
|
}
|