rpm  4.5
Data Structures | Macros | Typedefs | Functions | Variables
macro.c File Reference
#include "system.h"
#include <stdarg.h>
#include <rpmio_internal.h>
#include <rpmmessages.h>
#include <rpmerr.h>
#include <rpmmacro.h>
#include "debug.h"
Include dependency graph for macro.c:

Go to the source code of this file.

Data Structures

struct  MacroBuf_s
 Macro expansion state. More...
 

Macros

#define isblank(_c)   ((_c) == ' ' || (_c) == '\t')
 
#define iseol(_c)   ((_c) == '\n' || (_c) == '\r')
 
#define STREQ(_t, _f, _fn)   ((_fn) == (sizeof(_t)-1) && !strncmp((_t), (_f), (_fn)))
 
#define SAVECHAR(_mb, _c)   { *(_mb)->t = (_c), (_mb)->t++, (_mb)->nb--; }
 
#define _MAX_MACRO_DEPTH   16
 
#define _PRINT_MACRO_TRACE   0
 
#define _PRINT_EXPAND_TRACE   0
 
#define MACRO_CHUNK_SIZE   16
 
#define SKIPBLANK(_s, _c)
 
#define SKIPNONBLANK(_s, _c)
 
#define COPYNAME(_ne, _s, _c)
 
#define COPYOPTS(_oe, _s, _c)
 
#define POPT_ERROR_NOARG   -10
 
#define POPT_ERROR_BADQUOTE   -15
 
#define POPT_ERROR_MALLOC   -21
 
#define POPT_ARGV_ARRAY_GROW_DELTA   5
 
#define _suffix(_s, _x)   (slen >= sizeof(_x) && !strcmp((_s)+slen-(sizeof(_x)-1), (_x)))
 

Typedefs

typedef struct MacroBuf_sMacroBuf
 

Functions

static int expandMacro (MacroBuf mb)
 The main macro recursion loop. More...
 
static int compareMacroName (const void *ap, const void *bp)
 Compare macro entries by name (qsort/bsearch). More...
 
static void expandMacroTable (MacroContext mc)
 Enlarge macro table. More...
 
static void sortMacroTable (MacroContext mc)
 Sort entries in macro table. More...
 
void rpmDumpMacroTable (MacroContext mc, FILE *fp)
 Print macros to file stream. More...
 
static MacroEntryfindEntry (MacroContext mc, const char *name, size_t namelen)
 Find entry in macro table. More...
 
static char * rdcl (char *buf, size_t size, FD_t fd)
 fgets(3) analogue that reads \ continuations. More...
 
static const char * matchchar (const char *p, char pl, char pr)
 Return text between pl and matching pr characters. More...
 
static void printMacro (MacroBuf mb, const char *s, const char *se)
 Pre-print macro expression to be expanded. More...
 
static void printExpansion (MacroBuf mb, const char *t, const char *te)
 Post-print expanded macro expression. More...
 
static int expandT (MacroBuf mb, const char *f, size_t flen)
 Save source and expand field into target. More...
 
static int expandU (MacroBuf mb, char *u, size_t ulen)
 Save source/target and expand macro in u. More...
 
static int doShellEscape (MacroBuf mb, const char *cmd, size_t clen)
 Expand output of shell command into target buffer. More...
 
static const char * doDefine (MacroBuf mb, const char *se, int level, int expandbody)
 Parse (and execute) new macro definition. More...
 
static const char * doUndefine (MacroContext mc, const char *se)
 Parse (and execute) macro undefinition. More...
 
void delMacroAll (MacroContext mc, const char *n)
 
static const char * doUnglobal (MacroContext mc, const char *se)
 Parse (and execute) macro undefinition. More...
 
static void pushMacro (MacroEntry *mep, const char *n, const char *o, const char *b, int level)
 Push new macro definition onto macro entry stack. More...
 
static void popMacro (MacroEntry *mep)
 Pop macro definition from macro entry stack. More...
 
static void freeArgs (MacroBuf mb)
 Free parsed arguments for parameterized macro. More...
 
static const char * grabArgs (MacroBuf mb, const MacroEntry me, const char *se, const char *lastc)
 Parse arguments (to next new line) for parameterized macro. More...
 
static void doOutput (MacroBuf mb, int waserror, const char *msg, size_t msglen)
 Perform macro message output. More...
 
static void doFoo (MacroBuf mb, int negate, const char *f, size_t fn, const char *g, size_t gn)
 Execute macro primitives. More...
 
static int XpoptDupArgv (int argc, const char **argv, int *argcPtr, const char ***argvPtr)
 
static int XpoptParseArgvString (const char *s, int *argcPtr, const char ***argvPtr)
 
int rpmGlob (const char *patterns, int *argcPtr, const char ***argvPtr)
 Return URL path(s) from a (URL prefixed) pattern glob. More...
 
int expandMacros (void *spec, MacroContext mc, char *sbuf, size_t slen)
 Expand macro into buffer. More...
 
void addMacro (MacroContext mc, const char *n, const char *o, const char *b, int level)
 Add macro to context. More...
 
void delMacro (MacroContext mc, const char *n)
 Delete macro from context. More...
 
int rpmDefineMacro (MacroContext mc, const char *macro, int level)
 Define macro in context. More...
 
void rpmLoadMacros (MacroContext mc, int level)
 Load macros from specific context into global context. More...
 
int rpmLoadMacroFile (MacroContext mc, const char *fn)
 Load macro context from a macro file. More...
 
void rpmInitMacros (MacroContext mc, const char *macrofiles)
 Initialize macro context from set of macrofile(s). More...
 
void rpmFreeMacros (MacroContext mc)
 Destroy macro context. More...
 
int isCompressed (const char *file, rpmCompressedMagic *compressed)
 Return type of compression used in file. More...
 
char * rpmExpand (const char *arg,...)
 Return (malloc'ed) concatenated macro expansion(s). More...
 
int rpmExpandNumeric (const char *arg)
 Return macro expansion as a numeric value. More...
 
char * rpmCleanPath (char *path)
 Canonicalize file path. More...
 
const char * rpmGetPath (const char *path,...)
 Return (malloc'ed) expanded, canonicalized, file path. More...
 
const char * rpmGenPath (const char *urlroot, const char *urlmdir, const char *urlfile)
 Merge 3 args into path, any or all of which may be a url. More...
 

Variables

const char * rpmMacrofiles = MACROFILES
 List of macro files to read when configuring rpm. More...
 
static struct MacroContext_s rpmGlobalMacroContext_s
 
MacroContext rpmGlobalMacroContext = &rpmGlobalMacroContext_s
 
static struct MacroContext_s rpmCLIMacroContext_s
 
MacroContext rpmCLIMacroContext = &rpmCLIMacroContext_s
 
int max_macro_depth = 16
 
int print_macro_trace = 0
 
int print_expand_trace = 0
 
static size_t _macro_BUFSIZ = 4 * BUFSIZ
 
static int _debug = 0
 

Macro Definition Documentation

#define _MAX_MACRO_DEPTH   16

Definition at line 120 of file macro.c.

Referenced by rpmLoadMacroFile().

#define _PRINT_EXPAND_TRACE   0

Definition at line 128 of file macro.c.

#define _PRINT_MACRO_TRACE   0

Definition at line 124 of file macro.c.

#define _suffix (   _s,
  _x 
)    (slen >= sizeof(_x) && !strcmp((_s)+slen-(sizeof(_x)-1), (_x)))
#define COPYNAME (   _ne,
  _s,
  _c 
)
Value:
{ SKIPBLANK(_s,_c); \
/*@-boundswrite@*/ \
while(((_c) = *(_s)) && (xisalnum(_c) || (_c) == '_')) \
*(_ne)++ = *(_s)++; \
*(_ne) = '\0'; \
/*@=boundswrite@*/ \
}

Definition at line 485 of file macro.c.

Referenced by doDefine(), doUndefine(), and doUnglobal().

#define COPYOPTS (   _oe,
  _s,
  _c 
)
Value:
{ /*@-boundswrite@*/ \
while(((_c) = *(_s)) && (_c) != ')') \
*(_oe)++ = *(_s)++; \
*(_oe) = '\0'; \
/*@=boundswrite@*/ \
}

Definition at line 494 of file macro.c.

Referenced by doDefine().

#define isblank (   _c)    ((_c) == ' ' || (_c) == '\t')

Definition at line 10 of file macro.c.

Referenced by doDefine(), doFoo(), expandMacro(), and grabArgs().

#define iseol (   _c)    ((_c) == '\n' || (_c) == '\r')
#define MACRO_CHUNK_SIZE   16

Definition at line 133 of file macro.c.

Referenced by expandMacroTable().

#define POPT_ARGV_ARRAY_GROW_DELTA   5

Definition at line 1680 of file macro.c.

Referenced by XpoptParseArgvString().

#define POPT_ERROR_BADQUOTE   -15

error in paramter quoting

Definition at line 1677 of file macro.c.

Referenced by XpoptParseArgvString().

#define POPT_ERROR_MALLOC   -21

memory allocation failed

Definition at line 1678 of file macro.c.

Referenced by XpoptDupArgv(), and XpoptParseArgvString().

#define POPT_ERROR_NOARG   -10

missing argument

Definition at line 1676 of file macro.c.

Referenced by XpoptDupArgv().

#define SAVECHAR (   _mb,
  _c 
)    { *(_mb)->t = (_c), (_mb)->t++, (_mb)->nb--; }

Definition at line 116 of file macro.c.

Referenced by doShellEscape(), and expandMacro().

#define SKIPBLANK (   _s,
  _c 
)
Value:
/*@-globs@*/ /* FIX: __ctype_b */ \
while (((_c) = *(_s)) && isblank(_c)) \
(_s)++; \
/*@=globs@*/

Definition at line 473 of file macro.c.

Referenced by doDefine(), and rpmLoadMacroFile().

#define SKIPNONBLANK (   _s,
  _c 
)
Value:
/*@-globs@*/ /* FIX: __ctype_b */ \
while (((_c) = *(_s)) && !(isblank(_c) || iseol(_c))) \
(_s)++; \
/*@=globs@*/

Definition at line 479 of file macro.c.

#define STREQ (   _t,
  _f,
  _fn 
)    ((_fn) == (sizeof(_t)-1) && !strncmp((_t), (_f), (_fn)))

Definition at line 14 of file macro.c.

Referenced by doFoo(), and expandMacro().

Typedef Documentation

typedef struct MacroBuf_s * MacroBuf

Function Documentation

void addMacro ( MacroContext  mc,
const char *  n,
const char *  o,
const char *  b,
int  level 
)
static int compareMacroName ( const void *  ap,
const void *  bp 
)
static

Compare macro entries by name (qsort/bsearch).

Parameters
ap1st macro entry
bp2nd macro entry
Returns
result of comparison

Definition at line 154 of file macro.c.

References MacroEntry_s::name.

Referenced by findEntry(), and sortMacroTable().

void delMacro ( MacroContext  mc,
const char *  n 
)

Delete macro from context.

Parameters
mcmacro context (NULL uses global context).
nmacro name

Definition at line 2016 of file macro.c.

References findEntry(), popMacro(), rpmGlobalMacroContext, and sortMacroTable().

Referenced by delMacroAll(), doUndefine(), handlePreambleTag(), headerMacrosUnload(), makeGPGSignature(), makePGPSignature(), parseSpec(), rpmrc_DelMacro(), rpmRebuildTargetVars(), and rpmtsOpenSDB().

void delMacroAll ( MacroContext  mc,
const char *  n 
)

Definition at line 2031 of file macro.c.

References delMacro(), findEntry(), and rpmGlobalMacroContext.

Referenced by doUnglobal().

static const char* doDefine ( MacroBuf  mb,
const char *  se,
int  level,
int  expandbody 
)
static

Parse (and execute) new macro definition.

Parameters
mbmacro expansion state
semacro definition to parse
levelmacro recursion level
expandbodyshould body be expanded?
Returns
address to continue parsing

Definition at line 643 of file macro.c.

References _, _macro_BUFSIZ, addMacro(), alloca(), COPYNAME, COPYOPTS, expandU(), isblank, iseol, matchchar(), MacroBuf_s::mc, RPMERR_BADSPEC, rpmError, SKIPBLANK, and xisalpha().

Referenced by expandMacro(), and rpmDefineMacro().

static void doFoo ( MacroBuf  mb,
int  negate,
const char *  f,
size_t  fn,
const char *  g,
size_t  gn 
)
static

Execute macro primitives.

Parameters
mbmacro expansion state
negateshould logic be inverted?
fbeginning of field f
fnlength of field f
gbeginning of field g
gnlength of field g

Definition at line 1168 of file macro.c.

References _macro_BUFSIZ, alloca(), COMPRESSED_OTHER, expandT(), expandU(), isblank, isCompressed(), rpmIsVerbose, stpcpy(), stpncpy(), STREQ, urlPath(), and xisdigit().

Referenced by expandMacro().

static void doOutput ( MacroBuf  mb,
int  waserror,
const char *  msg,
size_t  msglen 
)
static

Perform macro message output.

Parameters
mbmacro expansion state
waserroruse rpmError()?
msgmessage to ouput
msglenno. of bytes in message

Definition at line 1142 of file macro.c.

References _macro_BUFSIZ, alloca(), expandU(), RPMERR_BADSPEC, and rpmError.

Referenced by expandMacro().

static int doShellEscape ( MacroBuf  mb,
const char *  cmd,
size_t  clen 
)
static

Expand output of shell command into target buffer.

Parameters
mbmacro expansion state
cmdshell command
clenno. bytes in shell command
Returns
result of expansion

Definition at line 603 of file macro.c.

References _macro_BUFSIZ, alloca(), expandU(), iseol, MacroBuf_s::nb, SAVECHAR, and MacroBuf_s::t.

Referenced by expandMacro().

static const char* doUndefine ( MacroContext  mc,
const char *  se 
)
static

Parse (and execute) macro undefinition.

Parameters
mcmacro context
semacro name to undefine
Returns
address to continue parsing

Definition at line 782 of file macro.c.

References _, _macro_BUFSIZ, alloca(), COPYNAME, delMacro(), iseol, RPMERR_BADSPEC, rpmError, and xisalpha().

Referenced by expandMacro().

static const char* doUnglobal ( MacroContext  mc,
const char *  se 
)
static

Parse (and execute) macro undefinition.

Parameters
mcmacro context
semacro name to undefine
Returns
address to continue parsing

Definition at line 818 of file macro.c.

References _, _macro_BUFSIZ, alloca(), COPYNAME, delMacroAll(), iseol, RPMERR_BADSPEC, rpmError, and xisalpha().

Referenced by expandMacro().

static int expandMacro ( MacroBuf  mb)
static
int expandMacros ( void *  spec,
MacroContext  mc,
char *  sbuf,
size_t  slen 
)

Expand macro into buffer.

Deprecated:
Use rpmExpand().
Todo:
Eliminate from API.
Parameters
speccookie (unused)
mcmacro context (NULL uses global context).
Return values
sbufinput macro to expand, output expansion
Parameters
slensize of buffer
Returns
0 on success

Definition at line 1942 of file macro.c.

References _, alloca(), MacroBuf_s::depth, MacroBuf_s::expand_trace, expandMacro(), MacroBuf_s::macro_trace, MacroBuf_s::mc, MacroBuf_s::nb, print_expand_trace, print_macro_trace, RPMERR_BADSPEC, rpmError, rpmGlobalMacroContext, MacroBuf_s::s, MacroBuf_s::spec, and MacroBuf_s::t.

Referenced by addFileToTagAux(), copyNextLine(), processPackageFiles(), rpmExpand(), and rpmGetPath().

static void expandMacroTable ( MacroContext  mc)
static

Enlarge macro table.

Parameters
mcmacro context

Definition at line 175 of file macro.c.

References MacroContext_s::firstFree, MACRO_CHUNK_SIZE, MacroContext_s::macrosAllocated, MacroContext_s::macroTable, xmalloc(), and xrealloc().

Referenced by addMacro().

static int expandT ( MacroBuf  mb,
const char *  f,
size_t  flen 
)
static

Save source and expand field into target.

Parameters
mbmacro expansion state
ffield
flenno. bytes in field
Returns
result of expansion

Definition at line 510 of file macro.c.

References alloca(), expandMacro(), and MacroBuf_s::s.

Referenced by doFoo(), and expandMacro().

static int expandU ( MacroBuf  mb,
char *  u,
size_t  ulen 
)
static

Save source/target and expand macro in u.

Parameters
mbmacro expansion state
uinput macro, output expansion
ulenno. bytes in u buffer
Returns
result of expansion

Definition at line 564 of file macro.c.

References alloca(), expandMacro(), MacroBuf_s::nb, MacroBuf_s::s, and MacroBuf_s::t.

Referenced by doDefine(), doFoo(), doOutput(), doShellEscape(), and grabArgs().

static MacroEntry* findEntry ( MacroContext  mc,
const char *  name,
size_t  namelen 
)
static

Find entry in macro table.

Parameters
mcmacro context
namemacro name
namelenno. of bytes
Returns
address of slot in macro table with name (or NULL)

Definition at line 261 of file macro.c.

References alloca(), compareMacroName(), MacroContext_s::firstFree, MacroContext_s::macroTable, MacroEntry_s::name, and rpmGlobalMacroContext.

Referenced by addMacro(), delMacro(), delMacroAll(), and expandMacro().

static void freeArgs ( MacroBuf  mb)
static

Free parsed arguments for parameterized macro.

Parameters
mbmacro expansion state

Definition at line 934 of file macro.c.

References _, MacroEntry_s::body, MacroBuf_s::depth, MacroContext_s::firstFree, MacroEntry_s::level, MacroContext_s::macroTable, MacroBuf_s::mc, MacroEntry_s::name, popMacro(), RPMERR_BADSPEC, rpmError, sortMacroTable(), and MacroEntry_s::used.

Referenced by expandMacro().

static const char* grabArgs ( MacroBuf  mb,
const MacroEntry  me,
const char *  se,
const char *  lastc 
)
static

Parse arguments (to next new line) for parameterized macro.

Todo:
Use popt rather than getopt to parse args.
Parameters
mbmacro expansion state
memacro entry slot
searguments to parse
lastcstop parsing at lastc
Returns
address to continue parsing

Definition at line 986 of file macro.c.

References _, _macro_BUFSIZ, addMacro(), alloca(), MacroBuf_s::depth, expandU(), isblank, MacroBuf_s::mc, MacroEntry_s::name, MacroEntry_s::opts, RPMERR_BADSPEC, rpmError, and stpcpy().

Referenced by expandMacro().

int isCompressed ( const char *  file,
rpmCompressedMagic compressed 
)

Return type of compression used in file.

Parameters
filename of file
Return values
compressedaddress of compression type
Returns
0 on success, 1 on I/O error

Definition at line 2210 of file macro.c.

References _, COMPRESSED_BZIP2, COMPRESSED_LZMA, COMPRESSED_LZOP, COMPRESSED_NOT, COMPRESSED_OTHER, COMPRESSED_XZ, COMPRESSED_ZIP, Fclose(), Ferror(), Fopen(), Fread(), Fstrerror(), RPMERR_BADSPEC, and rpmError.

Referenced by doFoo(), doPatch(), and doUntar().

static const char* matchchar ( const char *  p,
char  pl,
char  pr 
)
static

Return text between pl and matching pr characters.

Parameters
pstart of text
plleft char, i.e. '[', '(', '{', etc.
prright char, i.e. ']', ')', '}', etc.
Returns
address of last char before pr (or NULL)

Definition at line 366 of file macro.c.

Referenced by doDefine(), and expandMacro().

static void popMacro ( MacroEntry mep)
static

Pop macro definition from macro entry stack.

Parameters
mepaddress of macro entry slot

Definition at line 908 of file macro.c.

References _free(), MacroEntry_s::body, MacroEntry_s::name, MacroEntry_s::opts, and MacroEntry_s::prev.

Referenced by delMacro(), and freeArgs().

static void printExpansion ( MacroBuf  mb,
const char *  t,
const char *  te 
)
static

Post-print expanded macro expression.

Parameters
mbmacro expansion state
tcurrent expansion string result
teend of string

Definition at line 436 of file macro.c.

References _, MacroBuf_s::depth, and iseol.

Referenced by expandMacro().

static void printMacro ( MacroBuf  mb,
const char *  s,
const char *  se 
)
static

Pre-print macro expression to be expanded.

Parameters
mbmacro expansion state
scurrent expansion string
seend of string

Definition at line 392 of file macro.c.

References _, MacroBuf_s::depth, and iseol.

Referenced by expandMacro().

static void pushMacro ( MacroEntry mep,
const char *  n,
const char *  o,
const char *  b,
int  level 
)
static

Push new macro definition onto macro entry stack.

Parameters
mepaddress of macro entry slot
nmacro name
omacro parameters (NULL if none)
bmacro body (NULL becomes "")
levelmacro recursion level

Definition at line 871 of file macro.c.

References _free(), MacroEntry_s::body, MacroEntry_s::flags, MacroEntry_s::level, MacroEntry_s::name, name, MacroEntry_s::opts, MacroEntry_s::prev, MacroEntry_s::used, xmalloc(), and xstrdup().

Referenced by addMacro().

static char* rdcl ( char *  buf,
size_t  size,
FD_t  fd 
)
static

fgets(3) analogue that reads \ continuations.

Last newline always trimmed.

Parameters
bufinput buffer
sizeinbut buffer size (bytes)
fdfile handle
Returns
buffer, or NULL on end-of-file

Definition at line 303 of file macro.c.

References fdGetFILE, and iseol.

Referenced by rpmLoadMacroFile().

char* rpmCleanPath ( char *  path)

Canonicalize file path.

Parameters
pathpath to canonicalize (in-place)
Returns
canonicalized path (malloc'ed)

Definition at line 2350 of file macro.c.

Referenced by db3open(), doLookup(), relocateFileList(), rpmdbMoveDatabase(), rpmdbRemoveDatabase(), rpmGetPath(), rpmioAccess(), and rpmQueryVerify().

int rpmDefineMacro ( MacroContext  mc,
const char *  macro,
int  level 
)

Define macro in context.

Parameters
mcmacro context (NULL uses global context).
macromacro name, options, body
levelmacro recursion level (0 is entry API)
Returns
Todo:
Document.

Definition at line 2044 of file macro.c.

References alloca(), doDefine(), MacroBuf_s::mc, and rpmGlobalMacroContext.

Referenced by rpmcliAllArgCallback(), rpmdbRebuild(), and rpmLoadMacroFile().

void rpmDumpMacroTable ( MacroContext  mc,
FILE *  fp 
)

Print macros to file stream.

Parameters
mcmacro context (NULL uses global context).
fpfile stream (NULL uses stderr).

Definition at line 219 of file macro.c.

References _, MacroEntry_s::body, MacroContext_s::firstFree, MacroEntry_s::level, MacroContext_s::macroTable, MacroEntry_s::name, MacroEntry_s::opts, rpmGlobalMacroContext, and MacroEntry_s::used.

Referenced by expandMacro(), and rpmShowRC().

char* rpmExpand ( const char *  arg,
  ... 
)

Return (malloc'ed) concatenated macro expansion(s).

Parameters
argmacro(s) to expand (NULL terminates list)
Returns
macro expansion (malloc'ed)

Definition at line 2284 of file macro.c.

References _macro_BUFSIZ, expandMacros(), stpcpy(), xmalloc(), xrealloc(), and xstrdup().

Referenced by addChangelog(), archScore(), checkFiles(), checkForValidArchitectures(), checkPassPhrase(), cpio_doio(), dbiTagsInit(), defaultMachine(), doPrimary(), doSetupMacro(), expandMacro(), fillOutMainPackage(), formatValue(), headerMacrosLoad(), headerMacrosUnload(), i18nTag(), ignoreDep(), makeGPGSignature(), makePGPSignature(), Open(), open_dso(), packageBinaries(), parseBuildInstallClean(), parseForRegexLang(), parseForSimple(), parseSpec(), processSourceFiles(), rdToken(), readLine(), Realpath(), rpmcliAllArgCallback(), rpmcliImportPubkeys(), rpmcliQuery(), rpmdbNew(), rpmdbSetIteratorRE(), rpmdsCpuinfo(), rpmdsGetconf(), rpmdsLdconfig(), rpmdsPipe(), rpmdsSysinfo(), rpmExpandNumeric(), rpmfcApply(), rpmfcClassify(), rpmfcExec(), rpmfcExpandAppend(), rpmfcExpandRegexps(), rpmfcGenerateDependsHelper(), rpmGetPassPhrase(), rpmgiNext(), rpmgiOpen(), rpmLookupSignatureType(), rpmMachineScore(), rpmnsParse(), rpmPlatform(), rpmReadConfigFiles(), rpmReadRC(), rpmRollback(), rpmShowRC(), rpmts_IDTXglob(), rpmtsAddInstallElement(), rpmtsAddObsoletes(), rpmtsAddUpgrades(), rpmtsFindPubkey(), rpmtsRollback(), rpmtsSolve(), runInstScript(), runScript(), skipFiles(), statFormat(), unsatisfiedDepend(), urlFind(), and writeRPM().

int rpmExpandNumeric ( const char *  arg)

Return macro expansion as a numeric value.

Boolean values ('Y' or 'y' returns 1, 'N' or 'n' returns 0) are permitted as well. An undefined macro returns 0.

Parameters
argmacro to expand
Returns
numeric value

Definition at line 2323 of file macro.c.

References _free(), and rpmExpand().

Referenced by addChangelog(), checkFiles(), checkPackageDeps(), dbiOpen(), doIcon(), genCpioListAndHeader(), main(), parseSpec(), processPackageFiles(), relocateFileList(), rpmcliQuery(), rpmcliVerify(), rpmdbInit(), rpmdbNew(), rpmdbOpen(), rpmdbRebuild(), rpmdbVerify(), rpmdsELF(), rpmErase(), rpmfcGenerateDepends(), rpmInstall(), rpmLeadVersion(), rpmRollback(), rpmts_Create(), rpmts_init(), rpmtsCreate(), rpmtsOpenSDB(), rpmtsRollback(), rpmtsRun(), skipFiles(), and unsatisfiedDepend().

void rpmFreeMacros ( MacroContext  mc)

Destroy macro context.

Parameters
mcmacro context (NULL uses global context).

Definition at line 2183 of file macro.c.

References _free(), MacroEntry_s::body, MacroContext_s::firstFree, MacroContext_s::macroTable, MacroEntry_s::name, MacroEntry_s::opts, MacroEntry_s::prev, and rpmGlobalMacroContext.

Referenced by main(), rpmcliFini(), and rpmspecQuery().

const char* rpmGenPath ( const char *  urlroot,
const char *  urlmdir,
const char *  urlfile 
)

Merge 3 args into path, any or all of which may be a url.

The leading part of the first URL encountered is used for the result, other URL prefixes are discarded, permitting a primitive form of URL inheiritance.

Parameters
urlrootroot URL (often path to chroot, or NULL)
urlmdirdirectory URL (often a directory, or NULL)
urlfilefile URL (often a file, or NULL)
Returns
expanded, merged, canonicalized path (malloc'ed)

Definition at line 2473 of file macro.c.

References _free(), alloca(), file, rpmGetPath(), URL_IS_DASH, and urlPath().

Referenced by addSource(), checkSpec(), db3close(), db3open(), db_init(), doIcon(), doPatch(), doSetupMacro(), doUntar(), handlePreambleTag(), makeTempFile(), prepFetch(), processBinaryFile(), processMetadataFile(), processPackageFiles(), rpmdsNew(), rpmfcGenerateDepends(), rpmInstall(), rpmInstallSourcePackage(), and rpmpsmStage().

const char* rpmGetPath ( const char *  path,
  ... 
)
int rpmGlob ( const char *  patterns,
int *  argcPtr,
const char ***  argvPtr 
)

Return URL path(s) from a (URL prefixed) pattern glob.

Parameters
patternsglob pattern
Return values
*argcPtrno. of paths
*argvPtrarray of paths (malloc'd contiguous blob)
Returns
0 on success

Definition at line 1798 of file macro.c.

References _free(), Glob(), Glob_error(), Glob_pattern_p(), Globfree(), setlocale, URL_IS_DASH, URL_IS_FTP, URL_IS_HKP, URL_IS_HTTP, URL_IS_HTTPS, URL_IS_PATH, URL_IS_UNKNOWN, urlPath(), xmalloc(), XpoptParseArgvString(), xrealloc(), and xstrdup().

Referenced by IDTXglob(), processBinaryFile(), rpmgiGlobArgv(), rpmInitMacros(), rpmInstall(), and rpmReadPackageManifest().

void rpmInitMacros ( MacroContext  mc,
const char *  macrofiles 
)

Initialize macro context from set of macrofile(s).

Parameters
mcmacro context
macrofilescolon separated list of macro files (NULL does nothing)

Definition at line 2112 of file macro.c.

References _free(), _suffix, RMIL_CMDLINE, rpmGlob(), rpmGlobalMacroContext, rpmLoadMacroFile(), rpmLoadMacros(), xmalloc(), and xstrdup().

Referenced by rpmReadRC().

int rpmLoadMacroFile ( MacroContext  mc,
const char *  fn 
)

Load macro context from a macro file.

Parameters
mc(unused)
fnmacro file name

Definition at line 2078 of file macro.c.

References _macro_BUFSIZ, _MAX_MACRO_DEPTH, alloca(), Fclose(), Ferror(), Fopen(), max_macro_depth, rdcl(), RMIL_MACROFILES, rpmDefineMacro(), and SKIPBLANK.

Referenced by expandMacro(), and rpmInitMacros().

void rpmLoadMacros ( MacroContext  mc,
int  level 
)

Load macros from specific context into global context.

Parameters
mcmacro context (NULL does nothing).
levelmacro recursion level (0 is entry API)

Definition at line 2057 of file macro.c.

References addMacro(), MacroEntry_s::body, MacroContext_s::firstFree, MacroContext_s::macroTable, MacroEntry_s::name, and MacroEntry_s::opts.

Referenced by rpmInitMacros().

static void sortMacroTable ( MacroContext  mc)
static

Sort entries in macro table.

Parameters
mcmacro context

Definition at line 198 of file macro.c.

References compareMacroName(), MacroContext_s::firstFree, and MacroContext_s::macroTable.

Referenced by addMacro(), delMacro(), and freeArgs().

static int XpoptDupArgv ( int  argc,
const char **  argv,
int *  argcPtr,
const char ***  argvPtr 
)
static

< missing argument

< missing argument

< memory allocation failed

Definition at line 1683 of file macro.c.

References POPT_ERROR_MALLOC, and POPT_ERROR_NOARG.

Referenced by XpoptParseArgvString().

static int XpoptParseArgvString ( const char *  s,
int *  argcPtr,
const char ***  argvPtr 
)
static

< memory allocation failed

< error in paramter quoting

< error in paramter quoting

Definition at line 1727 of file macro.c.

References alloca(), POPT_ARGV_ARRAY_GROW_DELTA, POPT_ERROR_BADQUOTE, POPT_ERROR_MALLOC, and XpoptDupArgv().

Referenced by rpmGlob().

Variable Documentation

int _debug = 0
static

Definition at line 1796 of file macro.c.

size_t _macro_BUFSIZ = 4 * BUFSIZ
static
int max_macro_depth = 16

Definition at line 122 of file macro.c.

Referenced by expandMacro(), and rpmLoadMacroFile().

int print_expand_trace = 0

Definition at line 130 of file macro.c.

Referenced by expandMacro(), and expandMacros().

int print_macro_trace = 0

Definition at line 126 of file macro.c.

Referenced by expandMacro(), and expandMacros().

MacroContext rpmCLIMacroContext = &rpmCLIMacroContext_s

Definition at line 95 of file macro.c.

Referenced by rpmcliAllArgCallback(), and rpmcliFini().

struct MacroContext_s rpmCLIMacroContext_s
static

Definition at line 93 of file macro.c.

MacroContext rpmGlobalMacroContext = &rpmGlobalMacroContext_s
struct MacroContext_s rpmGlobalMacroContext_s
static

Definition at line 88 of file macro.c.