1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "stringbuf.h"
#include "rpmbuild.h"
#include "xmlmisc.h"
extern Spec g_pSpec;
void freeStr(char** pszStr)
{
if (*pszStr != NULL)
free(*pszStr);
*pszStr = NULL;
}
char* newStr(const char* szValue,
char** pszStr)
{
freeStr(pszStr);
if (szValue) {
*pszStr = malloc((strlen(szValue)+1)*sizeof(char));
sprintf(*pszStr, "%s", szValue);
}
return *pszStr;
}
char* newStrEx(const char* szValue,
char** pszStr)
{
char* szBuffer = NULL;
int nLen;
if (g_pSpec == NULL)
return newStr(szValue, pszStr);
if (szValue) {
nLen = (strlen(szValue)*2)+1024;
szBuffer = malloc(nLen+1);
sprintf(szBuffer, "%s", szValue);
expandMacros(g_pSpec, g_pSpec->macros, szBuffer, nLen);
freeStr(pszStr);
newStr(szBuffer, pszStr);
free(szBuffer);
}
else
freeStr(pszStr);
return *pszStr;
}
void addMacroEx(char* szName, char** pszVar, int nLevel)
{
if (g_pSpec && g_pSpec->macros)
addMacro(g_pSpec->macros, szName, NULL, newStrEx(*pszVar, pszVar), nLevel);
}
int strToBool(const char* szBool)
{
int nBool = 0;
if (!strcasecmp(szBool, "on"))
nBool = 1;
else if (!strcasecmp(szBool, "off"))
nBool = 0;
else if (!strcasecmp(szBool, "true"))
nBool = 1;
else if (!strcasecmp(szBool, "false"))
nBool = 0;
else if (!strcasecmp(szBool, "yes"))
nBool = 1;
else if (!strcasecmp(szBool, "no"))
nBool = 0;
else if (!strcasecmp(szBool, "1"))
nBool = 1;
else if (!strcasecmp(szBool, "0"))
nBool = 0;
return nBool;
}
StringBuf fileToStrBuf(const char* szFile,
const char* szPrepend)
{
FILE* fIn;
StringBuf pSb = NULL;
StringBuf pTmp;
int nLen;
char szBuffer[1025];
char* szTmp = NULL;
char** szaLines, **szaStart;
if ((szFile) &&
(fIn = fopen(szFile, "r"))) {
pTmp = newStringBuf();
if (szPrepend)
appendLineStringBuf(pTmp, szPrepend);
while (!feof(fIn)) {
nLen = fread(szBuffer, sizeof(char), 1024, fIn);
szBuffer[nLen] = '\0';
appendStringBuf(pTmp, szBuffer);
}
appendLineStringBuf(pTmp, "");
fclose(fIn);
szaStart = splitString(getStringBuf(pTmp), strlen(getStringBuf(pTmp)), '\n');
//newStrEx(getStringBuf(pSb), &szTmp);
//freeStringBuf(pSb);
pSb = newStringBuf();
for (szaLines = szaStart; *szaLines; szaLines++) {
if (!strncmp(*szaLines, "%setup", sizeof("%setup")-1)) {
//doSetupMacro(spec, *sazLines);
}
else if (!strncmp(*szaLines, "%patch", sizeof("%patch")-1)) {
//doPatchMacro(spec, *szaLines);
}
else {
newStrEx(*szaLines, &szTmp);
appendLineStringBuf(pSb, szTmp);
freeStr(&szTmp);
}
}
//appendStringBuf(pSb, szTmp);
//freeStr(&szTmp);
freeSplitString(szaStart);
freeStringBuf(pTmp);
}
return pSb;
}
char* fileToStr(const char* szFile,
const char* szPrepend)
{
StringBuf pSb;
char* szRet = NULL;
if ((pSb = fileToStrBuf(szFile, szPrepend))) {
newStr(getStringBuf(pSb), &szRet);
freeStringBuf(pSb);
}
return szRet;
}
|