check arch only on RPMBUILD_{PREP,BUILD,INSTALL,PACKAGEBINARY}.
[tools/librpm-tizen.git] / build.c
1 #include "system.h"
2 #include "build/rpmbuild.h"
3 #include "build.h"
4
5 int buildplatform(char *arg, int buildAmount, char *passPhrase,
6                  char *buildRoot, int fromTarball, int test, char *cookie);
7
8 int buildplatform(char *arg, int buildAmount, char *passPhrase,
9                  char *buildRoot, int fromTarball, int test, char *cookie)
10 {
11
12     FILE *f;
13     char * specfile;
14     int res = 0;
15     struct stat statbuf;
16     char * specDir;
17     char * tmpSpecFile;
18     char * cmd;
19     char * s;
20     int count, fd;
21     char buf[BUFSIZ];
22     Spec spec = NULL;
23
24     rpmSetTables(RPM_MACHTABLE_BUILDARCH, RPM_MACHTABLE_BUILDOS);
25
26     if (fromTarball) {
27         specDir = alloca(BUFSIZ);
28         strcpy(specDir, "%{_specdir}");
29         /* XXX can't use spec->macros yet */
30         expandMacros(NULL, &globalMacroContext, specDir, BUFSIZ);
31
32         tmpSpecFile = alloca(BUFSIZ);
33         sprintf(tmpSpecFile, "%s/rpm-spec-file-%d", specDir, (int) getpid());
34
35         cmd = alloca(strlen(arg) + 50 + strlen(tmpSpecFile));
36         sprintf(cmd, "gunzip < %s | tar xOvf - Specfile 2>&1 > %s", arg,
37                         tmpSpecFile);
38         if (!(f = popen(cmd, "r"))) {
39             fprintf(stderr, _("Failed to open tar pipe: %s\n"), 
40                         strerror(errno));
41             return 1;
42         }
43         if ((!fgets(buf, sizeof(buf) - 1, f)) || !strchr(buf, '/')) {
44             /* Try again */
45             pclose(f);
46
47             sprintf(cmd, "gunzip < %s | tar xOvf - \\*.spec 2>&1 > %s", arg,
48                     tmpSpecFile);
49             if (!(f = popen(cmd, "r"))) {
50                 fprintf(stderr, _("Failed to open tar pipe: %s\n"), 
51                         strerror(errno));
52                 return 1;
53             }
54             if (!fgets(buf, sizeof(buf) - 1, f)) {
55                 /* Give up */
56                 fprintf(stderr, _("Failed to read spec file from %s\n"), arg);
57                 unlink(tmpSpecFile);
58                 return 1;
59             }
60         }
61         pclose(f);
62
63         cmd = specfile = buf;
64         while (*cmd) {
65             if (*cmd == '/') specfile = cmd + 1;
66             cmd++;
67         }
68
69         cmd = specfile;
70
71         /* remove trailing \n */
72         specfile = cmd + strlen(cmd) - 1;
73         *specfile = '\0';
74
75         specfile = alloca(strlen(specDir) + strlen(cmd) + 5);
76         sprintf(specfile, "%s/%s", specDir, cmd);
77         
78         if (rename(tmpSpecFile, specfile)) {
79             fprintf(stderr, _("Failed to rename %s to %s: %s\n"),
80                     tmpSpecFile, specfile, strerror(errno));
81             unlink(tmpSpecFile);
82             return 1;
83         }
84
85         /* Make the directory which contains the tarball the source 
86            directory for this run */
87
88         if (*arg != '/') {
89             getcwd(buf, BUFSIZ);
90             strcat(buf, "/");
91             strcat(buf, arg);
92         } else 
93             strcpy(buf, arg);
94
95         cmd = buf + strlen(buf) - 1;
96         while (*cmd != '/') cmd--;
97         *cmd = '\0';
98
99         addMacro(&globalMacroContext, "_sourcedir", NULL, buf, RMIL_TARBALL);
100     } else if (arg[0] == '/') {
101         specfile = arg;
102     } else {
103         specfile = alloca(BUFSIZ);
104         getcwd(specfile, BUFSIZ);
105         strcat(specfile, "/");
106         strcat(specfile, arg);
107     }
108
109     stat(specfile, &statbuf);
110     if (! S_ISREG(statbuf.st_mode)) {
111         fprintf(stderr, _("File is not a regular file: %s\n"), specfile);
112         return 1;
113     }
114     
115     if ((fd = open(specfile, O_RDONLY)) < 0) {
116         fprintf(stderr, _("Unable to open spec file: %s\n"), specfile);
117         return 1;
118     }
119     count = read(fd, buf, sizeof(buf) < 128 ? sizeof(buf) : 128);
120     close(fd);
121     s = buf;
122     while(count--) {
123         if (! (isprint(*s) || isspace(*s))) {
124             fprintf(stderr, _("File contains non-printable characters(%c): %s\n"), *s,
125                     specfile);
126             return 1;
127         }
128         s++;
129     }
130
131 #define _anyarch(_f)    \
132 (((_f)&(RPMBUILD_PREP|RPMBUILD_BUILD|RPMBUILD_INSTALL|RPMBUILD_PACKAGEBINARY)) == 0)
133     if (parseSpec(&spec, specfile, buildRoot, 0, passPhrase, cookie,
134         _anyarch(buildAmount))) {
135             return 1;
136     }
137 #undef  _anyarch
138
139     if (buildSpec(spec, buildAmount, test)) {
140         freeSpec(spec);
141         return 1;
142     }
143     
144     if (fromTarball) unlink(specfile);
145
146     freeSpec(spec);
147     
148     return res;
149 }
150
151 int build(char *arg, int buildAmount, char *passPhrase,
152                  char *buildRoot, int fromTarball, int test, char *cookie,
153                  char * rcfile, char * arch, char * os, 
154                  char *buildplatforms)
155 {
156     char *platform, *t;
157     int rc;
158
159     if (buildplatforms == NULL) {
160         rc =  buildplatform(arg, buildAmount, passPhrase, buildRoot,
161                 fromTarball, test, cookie);
162         return rc;
163     }
164
165     /* parse up the build operators */
166
167     printf("building these platforms: %s\n", buildplatforms);
168
169     t = buildplatforms;
170     while((platform = strtok(t, ",")) != NULL) {
171         t = NULL;
172         printf("building %s\n", platform);
173
174         rpmSetVar(RPMVAR_BUILDPLATFORM,platform);
175         rpmReadConfigFiles(rcfile, arch, os, 1, platform);
176         rc = buildplatform(arg, buildAmount, passPhrase, buildRoot,
177             fromTarball, test, cookie);
178         if (rc)
179             return rc;
180     }
181
182     return 0;
183 }