depmaker.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. /*
  2. * depmaker - create package/Depends.mk for OpenADK buildsystem
  3. *
  4. * Copyright (C) 2010-2015 Waldemar Brodkorb <wbx@openadk.org>
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include <ctype.h>
  20. #include <dirent.h>
  21. #include <stdlib.h>
  22. #include <stdio.h>
  23. #include <string.h>
  24. #include <sys/types.h>
  25. #define MAXLINE 1024
  26. #define MAXPATH 128
  27. static int prefix = 0;
  28. static int hprefix = 0;
  29. static int check_symbol(char *symbol) {
  30. FILE *config;
  31. char buf[MAXLINE];
  32. char *sym;
  33. int ret;
  34. if ((sym = malloc(strlen(symbol) + 2)) != NULL)
  35. memset(sym, 0, strlen(symbol) + 2);
  36. else {
  37. perror("Can not allocate memory.");
  38. exit(EXIT_FAILURE);
  39. }
  40. strncat(sym, symbol, strlen(symbol));
  41. strncat(sym, "=", 1);
  42. if ((config = fopen(".config", "r")) == NULL) {
  43. perror("Can not open file \".config\".");
  44. exit(EXIT_FAILURE);
  45. }
  46. ret = 1;
  47. while (fgets(buf, MAXLINE, config) != NULL) {
  48. if (strncmp(buf, sym, strlen(sym)) == 0)
  49. ret = 0;
  50. }
  51. free(sym);
  52. if (fclose(config) != 0)
  53. perror("Closing file stream failed");
  54. return(ret);
  55. }
  56. /*@null@*/
  57. static char *parse_line(char *package, char *pkgvar, char *string, int checksym, int pprefix, int system, int *prefixp) {
  58. char *key, *value, *dep, *key_sym, *pkgdeps, *depvar;
  59. char temp[MAXLINE];
  60. int i;
  61. string[strlen(string)-1] = '\0';
  62. if ((key = strtok(string, ":=")) == NULL) {
  63. perror("Can not get key from string.");
  64. exit(EXIT_FAILURE);
  65. }
  66. if (checksym == 1) {
  67. /* extract symbol */
  68. if ((key_sym = malloc(MAXLINE)) != NULL)
  69. memset(key_sym, 0, MAXLINE);
  70. else {
  71. perror("Can not allocate memory.");
  72. exit(EXIT_FAILURE);
  73. }
  74. switch(system) {
  75. case 0:
  76. if (pprefix == 0) {
  77. if (snprintf(key_sym, MAXLINE, "ADK_PACKAGE_%s_", pkgvar) < 0)
  78. perror("Can not create string variable.");
  79. } else {
  80. if (snprintf(key_sym, MAXLINE, "ADK_PACKAGE_") < 0)
  81. perror("Can not create string variable.");
  82. }
  83. strncat(key_sym, key+6, strlen(key)-6);
  84. break;
  85. case 1:
  86. if (snprintf(key_sym, MAXLINE, "ADK_TARGET_SYSTEM_%s", pkgvar) < 0)
  87. perror("Can not create string variable.");
  88. break;
  89. case 2:
  90. if (snprintf(key_sym, MAXLINE, "ADK_TARGET_LIB_%s", pkgvar) < 0)
  91. perror("Can not create string variable.");
  92. break;
  93. }
  94. if (check_symbol(key_sym) != 0) {
  95. free(key_sym);
  96. return(NULL);
  97. }
  98. free(key_sym);
  99. }
  100. if ((pkgdeps = malloc(MAXLINE)) != NULL)
  101. memset(pkgdeps, 0, MAXLINE);
  102. else {
  103. perror("Can not allocate memory.");
  104. exit(EXIT_FAILURE);
  105. }
  106. value = strtok(NULL, "=\t");
  107. dep = strtok(value, " ");
  108. while (dep != NULL) {
  109. /* check only for optional host tools, if they are required to build */
  110. if (checksym == 2) {
  111. if ((depvar = malloc(MAXLINE)) != NULL)
  112. memset(depvar, 0, MAXLINE);
  113. else {
  114. perror("Can not allocate memory.");
  115. exit(EXIT_FAILURE);
  116. }
  117. strncat(depvar, dep, strlen(dep)-5);
  118. if ((strncmp(depvar, "bc", 2) == 0) ||
  119. (strncmp(depvar, "file", 4) == 0) ||
  120. (strncmp(depvar, "gawk", 4) == 0) ||
  121. (strncmp(depvar, "grep", 4) == 0) ||
  122. (strncmp(depvar, "patch", 5) == 0) ||
  123. (strncmp(depvar, "sed", 3) == 0) ||
  124. (strncmp(depvar, "xz", 2) == 0)) {
  125. /* transform to uppercase variable name */
  126. for (i=0; i<(int)strlen(depvar); i++) {
  127. if (depvar[i] == '+')
  128. depvar[i] = 'X';
  129. if (depvar[i] == '-')
  130. depvar[i] = '_';
  131. depvar[i] = toupper(depvar[i]);
  132. }
  133. /* extract symbol */
  134. if ((key_sym = malloc(MAXLINE)) != NULL)
  135. memset(key_sym, 0, MAXLINE);
  136. else {
  137. perror("Can not allocate memory.");
  138. exit(EXIT_FAILURE);
  139. }
  140. if (snprintf(key_sym, MAXLINE, "ADK_HOST_BUILD_%s", depvar) < 0)
  141. perror("Can not create string variable.");
  142. if (check_symbol(key_sym) != 0) {
  143. free(key_sym);
  144. free(depvar);
  145. return(NULL);
  146. }
  147. free(key_sym);
  148. free(depvar);
  149. }
  150. }
  151. if (*prefixp == 0) {
  152. *prefixp = 1;
  153. if (snprintf(temp, MAXLINE, "%s-compile: %s-compile", package, dep) < 0)
  154. perror("Can not create string variable.");
  155. } else {
  156. if (snprintf(temp, MAXLINE, " %s-compile", dep) < 0)
  157. perror("Can not create string variable.");
  158. }
  159. strncat(pkgdeps, temp, strlen(temp));
  160. dep = strtok(NULL, " ");
  161. }
  162. return(pkgdeps);
  163. }
  164. int main() {
  165. DIR *pkgdir;
  166. struct dirent *pkgdirp;
  167. FILE *pkg;
  168. char buf[MAXLINE];
  169. char path[MAXPATH];
  170. char *string, *pkgvar, *pkgdeps, *hpkgdeps = NULL, *tmp, *fpkg, *cpkg, *spkg, *key, *check, *dpkg;
  171. char *stringtmp;
  172. int i;
  173. spkg = NULL;
  174. cpkg = NULL;
  175. fpkg = NULL;
  176. /* read Makefile's for all packages */
  177. pkgdir = opendir("package");
  178. while ((pkgdirp = readdir(pkgdir)) != NULL) {
  179. /* skip dotfiles */
  180. if (strncmp(pkgdirp->d_name, ".", 1) > 0) {
  181. if (snprintf(path, MAXPATH, "package/%s/Makefile", pkgdirp->d_name) < 0)
  182. perror("Can not create string variable.");
  183. pkg = fopen(path, "r");
  184. if (pkg == NULL)
  185. continue;
  186. /* transform to uppercase variable name */
  187. pkgvar = strdup(pkgdirp->d_name);
  188. for (i=0; i<(int)strlen(pkgvar); i++) {
  189. if (pkgvar[i] == '+')
  190. pkgvar[i] = 'X';
  191. if (pkgvar[i] == '-')
  192. pkgvar[i] = '_';
  193. pkgvar[i] = toupper(pkgvar[i]);
  194. }
  195. /* exclude manual maintained packages from package/Makefile */
  196. if (
  197. !(strncmp(pkgdirp->d_name, "libpthread", 10) == 0 && strlen(pkgdirp->d_name) == 10) &&
  198. !(strncmp(pkgdirp->d_name, "uclibc-ng", 9) == 0) &&
  199. !(strncmp(pkgdirp->d_name, "musl", 4) == 0) &&
  200. !(strncmp(pkgdirp->d_name, "glibc", 5) == 0)) {
  201. /* print result to stdout */
  202. printf("package-$(ADK_COMPILE_%s) += %s\n", pkgvar, pkgdirp->d_name);
  203. printf("hostpackage-$(ADK_HOST_BUILD_%s) += %s\n", pkgvar, pkgdirp->d_name);
  204. }
  205. if ((pkgdeps = malloc(MAXLINE)) != NULL)
  206. memset(pkgdeps, 0, MAXLINE);
  207. else {
  208. perror("Can not allocate memory.");
  209. exit(EXIT_FAILURE);
  210. }
  211. prefix = 0;
  212. hprefix = 0;
  213. /* generate build dependencies */
  214. while (fgets(buf, MAXLINE, pkg) != NULL) {
  215. if ((tmp = malloc(MAXLINE)) != NULL)
  216. memset(tmp, 0 , MAXLINE);
  217. else {
  218. perror("Can not allocate memory.");
  219. exit(EXIT_FAILURE);
  220. }
  221. /* just read variables prefixed with PKG */
  222. if (strncmp(buf, "PKG", 3) == 0) {
  223. string = strstr(buf, "PKG_BUILDDEP:=");
  224. if (string != NULL) {
  225. tmp = parse_line(pkgdirp->d_name, pkgvar, string, 0, 0, 0, &prefix);
  226. if (tmp != NULL) {
  227. strncat(pkgdeps, tmp, strlen(tmp));
  228. }
  229. }
  230. string = strstr(buf, "PKG_BUILDDEP+=");
  231. if (string != NULL) {
  232. tmp = parse_line(pkgdirp->d_name, pkgvar, string, 0, 0, 0, &prefix);
  233. if (tmp != NULL)
  234. strncat(pkgdeps, tmp, strlen(tmp));
  235. }
  236. // We need to find the system or libc name here
  237. string = strstr(buf, "PKG_BUILDDEP_");
  238. if (string != NULL) {
  239. check = strstr(buf, ":=");
  240. if (check != NULL) {
  241. stringtmp = strdup(string);
  242. string[strlen(string)-1] = '\0';
  243. key = strtok(string, ":=");
  244. dpkg = strdup(key+13);
  245. if (strncmp("UCLIBC_NG", dpkg, 9) == 0) {
  246. tmp = parse_line(pkgdirp->d_name, dpkg, stringtmp, 1, 0, 2, &prefix);
  247. } else if (strncmp("MUSL", dpkg, 4) == 0) {
  248. tmp = parse_line(pkgdirp->d_name, dpkg, stringtmp, 1, 0, 2, &prefix);
  249. } else {
  250. tmp = parse_line(pkgdirp->d_name, dpkg, stringtmp, 1, 0, 1, &prefix);
  251. }
  252. if (tmp != NULL)
  253. strncat(pkgdeps, tmp, strlen(tmp));
  254. }
  255. }
  256. // We need to find the subpackage name here
  257. string = strstr(buf, "PKG_FLAVOURS_");
  258. if (string != NULL) {
  259. check = strstr(buf, ":=");
  260. if (check != NULL) {
  261. string[strlen(string)-1] = '\0';
  262. key = strtok(string, ":=");
  263. fpkg = strdup(key+13);
  264. }
  265. }
  266. string = strstr(buf, "PKGFB_");
  267. if (string != NULL) {
  268. tmp = parse_line(pkgdirp->d_name, fpkg, string, 1, 0, 0, &prefix);
  269. if (tmp != NULL)
  270. strncat(pkgdeps, tmp, strlen(tmp));
  271. }
  272. // We need to find the subpackage name here
  273. string = strstr(buf, "PKG_CHOICES_");
  274. if (string != NULL) {
  275. check = strstr(buf, ":=");
  276. if (check != NULL) {
  277. string[strlen(string)-1] = '\0';
  278. key = strtok(string, ":=");
  279. cpkg = strdup(key+12);
  280. }
  281. }
  282. string = strstr(buf, "PKGCB_");
  283. if (string != NULL) {
  284. tmp = parse_line(pkgdirp->d_name, cpkg, string, 1, 0, 0, &prefix);
  285. if (tmp != NULL)
  286. strncat(pkgdeps, tmp, strlen(tmp));
  287. }
  288. // We need to find the subpackage name here
  289. string = strstr(buf, "PKG_SUBPKGS_");
  290. if (string != NULL) {
  291. check = strstr(buf, ":=");
  292. if (check != NULL) {
  293. string[strlen(string)-1] = '\0';
  294. key = strtok(string, ":=");
  295. spkg = strdup(key+12);
  296. }
  297. }
  298. string = strstr(buf, "PKGSB_");
  299. if (string != NULL) {
  300. tmp = parse_line(pkgdirp->d_name, spkg, string, 1, 1, 0, &prefix);
  301. if (tmp != NULL) {
  302. strncat(pkgdeps, tmp, strlen(tmp));
  303. }
  304. }
  305. } else if (strncmp(buf, "HOST_BUILDDEP", 13) == 0) {
  306. asprintf(&string, "%s-host", pkgdirp->d_name);
  307. // check retval; string for NULL
  308. tmp = parse_line(string, NULL, buf, 2, 0, 0, &hprefix);
  309. if (tmp && *tmp) {
  310. asprintf(&string, "%s%s",
  311. hpkgdeps ? hpkgdeps : "",
  312. tmp);
  313. free(hpkgdeps);
  314. hpkgdeps = string;
  315. }
  316. }
  317. free(tmp);
  318. }
  319. if (strlen(pkgdeps) != 0)
  320. printf("%s\n", pkgdeps);
  321. if (hpkgdeps && *hpkgdeps)
  322. printf("%s\n", hpkgdeps);
  323. free(hpkgdeps);
  324. hpkgdeps = NULL;
  325. free(pkgdeps);
  326. free(pkgvar);
  327. if (fclose(pkg) != 0)
  328. perror("Closing file stream failed");
  329. }
  330. }
  331. if (closedir(pkgdir) != 0)
  332. perror("Closing directory stream failed");
  333. return(0);
  334. }