This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Data Structures | |
struct | MacroEntry_s |
struct | MacroContext_s |
Defines | |
#define | RMIL_DEFAULT -15 |
Markers for sources of macros added throughout rpm. | |
#define | RMIL_MACROFILES -13 |
#define | RMIL_RPMRC -11 |
#define | RMIL_CMDLINE -7 |
#define | RMIL_TARBALL -5 |
#define | RMIL_SPEC -3 |
#define | RMIL_OLDSPEC -1 |
#define | RMIL_GLOBAL 0 |
Typedefs | |
typedef MacroEntry_s * | MacroEntry |
typedef MacroContext_s * | MacroContext |
typedef enum rpmCompressedMagic_e | rpmCompressedMagic |
Enumerations | |
enum | rpmCompressedMagic_e { COMPRESSED_NOT = 0, COMPRESSED_OTHER = 1, COMPRESSED_BZIP2 = 2, COMPRESSED_ZIP = 3, COMPRESSED_LZOP = 4, COMPRESSED_LZMA = 5 } |
Functions | |
void | rpmDumpMacroTable (MacroContext mc, FILE *fp) |
Print macros to file stream. | |
int | rpmGlob (const char *patterns, int *argcPtr, const char ***argvPtr) |
Return URL path(s) from a (URL prefixed) pattern glob. | |
int | expandMacros (void *spec, MacroContext mc, char *sbuf, size_t slen) |
Expand macro into buffer. | |
void | addMacro (MacroContext mc, const char *n, const char *o, const char *b, int level) |
Add macro to context. | |
void | delMacro (MacroContext mc, const char *n) |
Delete macro from context. | |
int | rpmDefineMacro (MacroContext mc, const char *macro, int level) |
Define macro in context. | |
void | rpmLoadMacros (MacroContext mc, int level) |
Load macros from specific context into global context. | |
int | rpmLoadMacroFile (MacroContext mc, const char *fn) |
Load macro context from a macro file. | |
void | rpmInitMacros (MacroContext mc, const char *macrofiles) |
Initialize macro context from set of macrofile(s). | |
void | rpmFreeMacros (MacroContext mc) |
Destroy macro context. | |
int | isCompressed (const char *file, rpmCompressedMagic *compressed) |
Return type of compression used in file. | |
char * | rpmExpand (const char *arg,...) |
Return (malloc'ed) concatenated macro expansion(s). | |
char * | rpmCleanPath (char *path) |
Canonicalize file path. | |
const char * | rpmGetPath (const char *path,...) |
Return (malloc'ed) expanded, canonicalized, file path. | |
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. | |
int | rpmExpandNumeric (const char *arg) |
Return macro expansion as a numeric value. | |
Variables | |
MacroContext | rpmGlobalMacroContext |
MacroContext | rpmCLIMacroContext |
const char * | rpmMacrofiles |
List of macro files to read when configuring rpm. |
Definition in file rpmmacro.h.
|
Definition at line 50 of file rpmmacro.h. Referenced by rpmcliAllArgCallback(). |
|
Markers for sources of macros added throughout rpm.
Definition at line 46 of file rpmmacro.h. Referenced by rpmtsOpenSDB(), setDefaults(), setPathDefault(), and setVarDefault(). |
|
Definition at line 54 of file rpmmacro.h. Referenced by expandMacro(). |
|
Definition at line 47 of file rpmmacro.h. Referenced by rpmLoadMacroFile(). |
|
Definition at line 53 of file rpmmacro.h. Referenced by handlePreambleTag(). |
|
Definition at line 48 of file rpmmacro.h. Referenced by doReadRC(), and parseSpec(). |
|
Definition at line 52 of file rpmmacro.h. Referenced by addSource(), doScript(), doSetupMacro(), handlePreambleTag(), and parseSpec(). |
|
Definition at line 51 of file rpmmacro.h. Referenced by buildForTarget(). |
|
The structure used to store the set of macros in a context. |
|
The structure used to store a macro. |
|
|
|
Definition at line 167 of file rpmmacro.h. |
|
Add macro to context.
Definition at line 1888 of file macro.c. References _, expandMacroTable(), findEntry(), MacroContext_s::firstFree, MacroEntry_s::flags, MacroContext_s::macrosAllocated, MacroContext_s::macroTable, pushMacro(), rpmError, rpmGlobalMacroContext, and sortMacroTable(). Referenced by addSource(), buildForTarget(), doDefine(), doReadRC(), doScript(), doSetupMacro(), expandMacro(), grabArgs(), handlePreambleTag(), headerMacrosLoad(), makeGPGSignature(), makePGPSignature(), parseSpec(), rpmLoadMacros(), rpmrc_AddMacro(), rpmtsOpenSDB(), setDefaults(), setPathDefault(), and setVarDefault(). |
|
Delete macro from context.
Definition at line 1927 of file macro.c. References findEntry(), popMacro(), rpmGlobalMacroContext, and sortMacroTable(). Referenced by doScript(), doUndefine(), handlePreambleTag(), headerMacrosUnload(), makeGPGSignature(), makePGPSignature(), parseSpec(), rpmrc_DelMacro(), and rpmtsOpenSDB(). |
|
Expand macro into buffer.
Definition at line 1853 of file macro.c. References _, alloca(), expandMacro(), print_expand_trace, print_macro_trace, rpmError, and rpmGlobalMacroContext. Referenced by addFileToTagAux(), copyNextLine(), processPackageFiles(), rpmExpand(), and rpmGetPath(). |
|
Return type of compression used in file.
Definition at line 2101 of file macro.c. References _, COMPRESSED_BZIP2, COMPRESSED_LZMA, COMPRESSED_LZOP, COMPRESSED_NOT, COMPRESSED_OTHER, COMPRESSED_ZIP, Fclose(), Ferror(), Fopen(), Fread(), Fstrerror(), and rpmError. Referenced by buildForTarget(), doFoo(), doPatch(), and doUntar(). |
|
Canonicalize file path.
Definition at line 2228 of file macro.c. Referenced by db3open(), doLookup(), rpmdbMoveDatabase(), rpmdbRemoveDatabase(), rpmGetPath(), and rpmQueryVerify(). |
|
Define macro in context.
Definition at line 1943 of file macro.c. References alloca(), doDefine(), and rpmGlobalMacroContext. Referenced by rpmcliAllArgCallback(), rpmdbRebuild(), and rpmLoadMacroFile(). |
|
Print macros to file stream.
Definition at line 212 of file macro.c. References MacroContext_s::firstFree, MacroContext_s::macroTable, and rpmGlobalMacroContext. Referenced by expandMacro(). |
|
|
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.
Definition at line 2201 of file macro.c. References _free(), and rpmExpand(). Referenced by build(), checkFiles(), dbiOpen(), genCpioListAndHeader(), main(), parseSpec(), 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(). |
|
Destroy macro context.
Definition at line 2074 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 build(), rpmcliFini(), and rpmspecQuery(). |
|
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.
Definition at line 2350 of file macro.c. References _free(), alloca(), file, rpmGetPath(), URL_IS_DASH, and urlPath(). Referenced by addSource(), db3close(), db3open(), db_init(), doIcon(), doPatch(), doRmSource(), doScript(), doSetupMacro(), doUntar(), handlePreambleTag(), makeTempFile(), prepFetch(), processBinaryFile(), processMetadataFile(), processPackageFiles(), rpmdsNew(), rpmfcGenerateDepends(), and rpmpsmStage(). |
|
Return (malloc'ed) expanded, canonicalized, file path.
Definition at line 2319 of file macro.c. References expandMacros(), rpmCleanPath(), stpcpy(), and xstrdup(). Referenced by addFileToTagAux(), buildForTarget(), db3close(), db3open(), doPatch(), doReadRC(), doUntar(), genCpioListAndHeader(), packageBinaries(), packageSources(), parseFiles(), parseSpec(), processPackageFiles(), rpmdbExportInfo(), rpmdbNew(), rpmdbRebuild(), rpmdbURIPath(), rpmDetectPGPVersion(), rpmdsSysinfo(), rpmGenPath(), rpmGetFilesystemUsage(), rpmInstall(), rpmpsmStage(), rpmQueryVerify(), rpmsxParse(), rpmts_Run(), rpmtsCreate(), rpmtsOpenDB(), rpmtsOpenSDB(), runScript(), and setPathDefault(). |
|
Return URL path(s) from a (URL prefixed) pattern glob.
Definition at line 1710 of file macro.c. References Glob(), Glob_error(), Glob_pattern_p(), setlocale, urlPath(), XpoptParseArgvString(), xrealloc(), and xstrdup(). Referenced by IDTXglob(), processBinaryFile(), rpmgiGlobArgv(), rpmInstall(), and rpmReadPackageManifest(). |
|
Initialize macro context from set of macrofile(s).
Definition at line 2010 of file macro.c. References rpmGlobalMacroContext, and xstrdup(). |
|
Load macro context from a macro file.
Definition at line 1977 of file macro.c. References Fclose(), Ferror(), Fopen(), max_macro_depth, rdcl(), RMIL_MACROFILES, rpmDefineMacro(), and SKIPBLANK. Referenced by expandMacro(). |
|
Load macros from specific context into global context.
Definition at line 1956 of file macro.c. References addMacro(), MacroEntry_s::body, MacroContext_s::firstFree, MacroContext_s::macroTable, MacroEntry_s::name, MacroEntry_s::opts, and rpmGlobalMacroContext. |
|
|
|
|