rpm  5.2.1
Data Structures | Defines | Typedefs | Functions | Variables
build/parsePreamble.c File Reference

Parse tags in global section from spec file. More...

#include "system.h"
#include <rpmio.h>
#include <rpmiotypes.h>
#include <rpmlog.h>
#include <rpmurl.h>
#include <argv.h>
#include <mire.h>
#include <rpmbuild.h>
#include "debug.h"
Include dependency graph for parsePreamble.c:

Go to the source code of this file.

Data Structures

struct  tokenBits_s
struct  optionalTag
struct  PreambleRec_s

Defines

#define _RPMEVR_INTERNAL
#define _RPMTAG_INTERNAL
#define SINGLE_TOKEN_ONLY

Typedefs

typedef struct tokenBits_stokenBits
typedef struct PreambleRec_sPreambleRec

Functions

static void addOrAppendListEntry (Header h, rpmTag tag, char *line)
static int parseSimplePart (Spec spec, char **Np, rpmParseState *flag)
static int parseYesNo (const char *s)
static int parseBits (const char *s, const tokenBits tokbits, rpmsenseFlags *bp)
static char * findLastChar (char *s)
static int isMemberInEntry (Header h, const char *name, rpmTag tag)
static int checkForValidArchitectures (Spec spec)
static rpmRC checkForRequired (Header h, const char *NVR)
 Check that required tags are present in header.
static rpmRC checkForDuplicates (Header h, const char *NVR)
 Check that no duplicate tags are present in header.
static void fillOutMainPackage (Header h)
static int doIcon (Spec spec, Header h)
spectag stashSt (Spec spec, Header h, rpmTag tag, const char *lang)
 stashSt.
static rpmRC tagValidate (Spec spec, rpmTag tag, const char *value)
static rpmRC handlePreambleTag (Spec spec, Package pkg, rpmTag tag, const char *macro, const char *lang)
static int findPreambleTag (Spec spec, rpmTag *tagp, const char **macro, char *lang)
int parsePreamble (Spec spec, int initialPackage)
 Parse tags from preamble of a spec file.

Variables

static rpmTag copyTagsDuringParse []
static rpmTag requiredTags []
static struct tokenBits_s installScriptBits []
static struct tokenBits_s buildScriptBits []
static struct optionalTag optionalTags []
int noLang
static struct PreambleRec_s preambleList []

Detailed Description

Parse tags in global section from spec file.

Definition in file parsePreamble.c.


Define Documentation

#define _RPMEVR_INTERNAL

Definition at line 15 of file parsePreamble.c.

#define _RPMTAG_INTERNAL

Definition at line 16 of file parsePreamble.c.

#define SINGLE_TOKEN_ONLY
Value:
if (multiToken) { \
    rpmlog(RPMLOG_ERR, _("line %d: Tag takes single token only: %s\n"), \
             spec->lineNum, spec->line); \
    return RPMRC_FAIL; \
}

Definition at line 553 of file parsePreamble.c.

Referenced by handlePreambleTag().


Typedef Documentation

typedef struct PreambleRec_s * PreambleRec
typedef struct tokenBits_s * tokenBits

Function Documentation

static void addOrAppendListEntry ( Header  h,
rpmTag  tag,
char *  line 
) [static]
static rpmRC checkForDuplicates ( Header  h,
const char *  NVR 
) [static]

Check that no duplicate tags are present in header.

Parameters:
hheader
NVRpackage name-version-release
Returns:
RPMRC_OK if OK

Definition at line 332 of file parsePreamble.c.

References _, _free(), alloca(), headerFini(), headerInit(), headerNext(), _HE_s::p, rpmDataType_u::ptr, rpmlog(), RPMLOG_ERR, RPMRC_FAIL, RPMRC_OK, _HE_s::tag, and tagName().

Referenced by parsePreamble().

static rpmRC checkForRequired ( Header  h,
const char *  NVR 
) [static]

Check that required tags are present in header.

Parameters:
hheader
NVRpackage name-version-release
Returns:
RPMRC_OK if OK

Definition at line 308 of file parsePreamble.c.

References _, headerIsEntry(), requiredTags, rpmlog(), RPMLOG_ERR, RPMRC_FAIL, RPMRC_OK, and tagName().

Referenced by parsePreamble().

static int checkForValidArchitectures ( Spec  spec) [static]

Definition at line 271 of file parsePreamble.c.

References _, _free(), isMemberInEntry(), rpmExpand(), rpmlog(), RPMLOG_ERR, RPMRC_FAIL, and Spec_s::sourceHeader.

Referenced by parsePreamble().

static int doIcon ( Spec  spec,
Header  h 
) [static]
static void fillOutMainPackage ( Header  h) [static]
static char* findLastChar ( char *  s) [inline, static]

Definition at line 224 of file parsePreamble.c.

Referenced by handlePreambleTag().

static int findPreambleTag ( Spec  spec,
rpmTag tagp,
const char **  macro,
char *  lang 
) [static]
static rpmRC handlePreambleTag ( Spec  spec,
Package  pkg,
rpmTag  tag,
const char *  macro,
const char *  lang 
) [static]
static int isMemberInEntry ( Header  h,
const char *  name,
rpmTag  tag 
) [static]
static int parseBits ( const char *  s,
const tokenBits  tokbits,
rpmsenseFlags bp 
) [static]

Definition at line 187 of file parsePreamble.c.

References tokenBits_s::bits, tokenBits_s::name, RPMRC_FAIL, RPMRC_OK, xisalpha(), and xisspace().

Referenced by handlePreambleTag().

static int parseSimplePart ( Spec  spec,
char **  Np,
rpmParseState flag 
) [static]

Definition at line 98 of file parsePreamble.c.

References _free(), Spec_s::line, PART_NAME, PART_SUBNAME, and xstrdup().

Referenced by parsePreamble().

static int parseYesNo ( const char *  s) [inline, static]

Definition at line 144 of file parsePreamble.c.

References xstrcasecmp().

Referenced by handlePreambleTag().

static rpmRC tagValidate ( Spec  spec,
rpmTag  tag,
const char *  value 
) [static]

Variable Documentation

struct tokenBits_s buildScriptBits[] [static]
Initial value:
 {
    { "prep",           RPMSENSE_SCRIPT_PREP },
    { "build",          RPMSENSE_SCRIPT_BUILD },
    { "install",        RPMSENSE_SCRIPT_INSTALL },
    { "clean",          RPMSENSE_SCRIPT_CLEAN },
    { "hint",           RPMSENSE_MISSINGOK },
    { NULL, 0 }
}

Definition at line 176 of file parsePreamble.c.

Initial value:
 {
    RPMTAG_EPOCH,
    RPMTAG_VERSION,
    RPMTAG_RELEASE,
    RPMTAG_DISTEPOCH,
    RPMTAG_LICENSE,
    RPMTAG_GROUP,               
    RPMTAG_SUMMARY,             
    RPMTAG_DESCRIPTION,         
    RPMTAG_PACKAGER,
    RPMTAG_DISTRIBUTION,
    RPMTAG_DISTURL,
    RPMTAG_VENDOR,
    RPMTAG_ICON,
    RPMTAG_GIF,
    RPMTAG_XPM,
    RPMTAG_URL,
    RPMTAG_CHANGELOGTIME,
    RPMTAG_CHANGELOGNAME,
    RPMTAG_CHANGELOGTEXT,
    RPMTAG_PREFIXES,
    RPMTAG_DISTTAG,
    RPMTAG_CVSID,
    RPMTAG_VARIANTS,
    RPMTAG_XMAJOR,
    RPMTAG_XMINOR,
    RPMTAG_REPOTAG,
    RPMTAG_KEYWORDS,
    0
}

Definition at line 26 of file parsePreamble.c.

Referenced by parsePreamble().

struct tokenBits_s installScriptBits[] [static]
Initial value:
 {
    { "interp",         RPMSENSE_INTERP },
    { "preun",          RPMSENSE_SCRIPT_PREUN },
    { "pre",            RPMSENSE_SCRIPT_PRE },
    { "postun",         RPMSENSE_SCRIPT_POSTUN },
    { "post",           RPMSENSE_SCRIPT_POST },
    { "rpmlib",         RPMSENSE_RPMLIB },
    { "verify",         RPMSENSE_SCRIPT_VERIFY },
    { "hint",           RPMSENSE_MISSINGOK },
    { NULL, 0 }
}

Definition at line 161 of file parsePreamble.c.

int noLang

Definition at line 61 of file poptBT.c.

struct optionalTag optionalTags[] [static]

Referenced by fillOutMainPackage().

struct PreambleRec_s preambleList[] [static]

Definition at line 935 of file parsePreamble.c.

rpmTag requiredTags[] [static]
Initial value:
 {
    RPMTAG_NAME,
    RPMTAG_VERSION,
    RPMTAG_RELEASE,
    RPMTAG_SUMMARY,
    RPMTAG_GROUP,
    RPMTAG_LICENSE,
    0
}

Definition at line 60 of file parsePreamble.c.

Referenced by checkForRequired().