depmaker.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. /*
  2. * depmaker - create package/Depends.mk for OpenADK buildsystem
  3. *
  4. * Copyright (C) 2010-2014 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 check_symbol(char *symbol) {
  29. FILE *config;
  30. char buf[MAXLINE];
  31. char *sym;
  32. int ret;
  33. if ((sym = malloc(strlen(symbol) + 2)) != NULL)
  34. memset(sym, 0, strlen(symbol) + 2);
  35. else {
  36. perror("Can not allocate memory.");
  37. exit(EXIT_FAILURE);
  38. }
  39. strncat(sym, symbol, strlen(symbol));
  40. strncat(sym, "=", 1);
  41. if ((config = fopen(".config", "r")) == NULL) {
  42. perror("Can not open file \".config\".");
  43. exit(EXIT_FAILURE);
  44. }
  45. ret = 1;
  46. while (fgets(buf, MAXLINE, config) != NULL) {
  47. if (strncmp(buf, sym, strlen(sym)) == 0)
  48. ret = 0;
  49. }
  50. free(sym);
  51. if (fclose(config) != 0)
  52. perror("Closing file stream failed");
  53. return(ret);
  54. }
  55. /*@null@*/
  56. static char *parse_line(char *package, char *pkgvar, char *string, int checksym, int pprefix, int system) {
  57. char *key, *value, *dep, *key_sym, *pkgdeps;
  58. char temp[MAXLINE];
  59. string[strlen(string)-1] = '\0';
  60. if ((key = strtok(string, ":=")) == NULL) {
  61. perror("Can not get key from string.");
  62. exit(EXIT_FAILURE);
  63. }
  64. if (checksym == 1) {
  65. /* extract symbol */
  66. if ((key_sym = malloc(MAXLINE)) != NULL)
  67. memset(key_sym, 0, MAXLINE);
  68. else {
  69. perror("Can not allocate memory.");
  70. exit(EXIT_FAILURE);
  71. }
  72. if (system == 0) {
  73. if (pprefix == 0) {
  74. if (snprintf(key_sym, MAXLINE, "ADK_PACKAGE_%s_", pkgvar) < 0)
  75. perror("Can not create string variable.");
  76. } else {
  77. if (snprintf(key_sym, MAXLINE, "ADK_PACKAGE_") < 0)
  78. perror("Can not create string variable.");
  79. }
  80. strncat(key_sym, key+6, strlen(key)-6);
  81. } else {
  82. if (snprintf(key_sym, MAXLINE, "ADK_TARGET_SYSTEM_%s", pkgvar) < 0)
  83. perror("Can not create string variable.");
  84. }
  85. if (check_symbol(key_sym) != 0) {
  86. free(key_sym);
  87. return(NULL);
  88. }
  89. free(key_sym);
  90. }
  91. if ((pkgdeps = malloc(MAXLINE)) != NULL)
  92. memset(pkgdeps, 0, MAXLINE);
  93. else {
  94. perror("Can not allocate memory.");
  95. exit(EXIT_FAILURE);
  96. }
  97. value = strtok(NULL, "=\t");
  98. dep = strtok(value, " ");
  99. while (dep != NULL) {
  100. if (prefix == 0) {
  101. prefix = 1;
  102. if (snprintf(temp, MAXLINE, "%s-compile: %s-compile", package, dep) < 0)
  103. perror("Can not create string variable.");
  104. } else {
  105. if (snprintf(temp, MAXLINE, " %s-compile", dep) < 0)
  106. perror("Can not create string variable.");
  107. }
  108. strncat(pkgdeps, temp, strlen(temp));
  109. dep = strtok(NULL, " ");
  110. }
  111. return(pkgdeps);
  112. }
  113. int main() {
  114. DIR *pkgdir;
  115. struct dirent *pkgdirp;
  116. FILE *pkg;
  117. char buf[MAXLINE];
  118. char path[MAXPATH];
  119. char *string, *pkgvar, *pkgdeps, *tmp, *fpkg, *cpkg, *spkg, *key, *check, *dpkg;
  120. char *stringtmp;
  121. int i;
  122. /* read Makefile's for all packages */
  123. pkgdir = opendir("package");
  124. while ((pkgdirp = readdir(pkgdir)) != NULL) {
  125. /* skip dotfiles */
  126. if (strncmp(pkgdirp->d_name, ".", 1) > 0) {
  127. if (snprintf(path, MAXPATH, "package/%s/Makefile", pkgdirp->d_name) < 0)
  128. perror("Can not create string variable.");
  129. pkg = fopen(path, "r");
  130. if (pkg == NULL)
  131. continue;
  132. /* transform to uppercase variable name */
  133. pkgvar = strdup(pkgdirp->d_name);
  134. for (i=0; i<(int)strlen(pkgvar); i++) {
  135. if (pkgvar[i] == '+')
  136. pkgvar[i] = 'X';
  137. if (pkgvar[i] == '-')
  138. pkgvar[i] = '_';
  139. pkgvar[i] = toupper(pkgvar[i]);
  140. }
  141. /* exclude manual maintained packages from package/Makefile */
  142. if (!(strncmp(pkgdirp->d_name, "eglibc", 6) == 0) &&
  143. !(strncmp(pkgdirp->d_name, "libc", 4) == 0 && strlen(pkgdirp->d_name) == 4) &&
  144. !(strncmp(pkgdirp->d_name, "libpthread", 10) == 0 && strlen(pkgdirp->d_name) == 10) &&
  145. !(strncmp(pkgdirp->d_name, "uclibc++", 8) == 0) &&
  146. !(strncmp(pkgdirp->d_name, "uclibc", 6) == 0) &&
  147. !(strncmp(pkgdirp->d_name, "musl", 4) == 0) &&
  148. !(strncmp(pkgdirp->d_name, "glibc", 5) == 0)) {
  149. /* print result to stdout */
  150. printf("package-$(ADK_COMPILE_%s) += %s\n", pkgvar, pkgdirp->d_name);
  151. }
  152. if ((pkgdeps = malloc(MAXLINE)) != NULL)
  153. memset(pkgdeps, 0, MAXLINE);
  154. else {
  155. perror("Can not allocate memory.");
  156. exit(EXIT_FAILURE);
  157. }
  158. prefix = 0;
  159. /* generate build dependencies */
  160. while (fgets(buf, MAXLINE, pkg) != NULL) {
  161. if ((tmp = malloc(MAXLINE)) != NULL)
  162. memset(tmp, 0 , MAXLINE);
  163. else {
  164. perror("Can not allocate memory.");
  165. exit(EXIT_FAILURE);
  166. }
  167. /* just read variables prefixed with PKG */
  168. if (strncmp(buf, "PKG", 3) == 0) {
  169. string = strstr(buf, "PKG_BUILDDEP:=");
  170. if (string != NULL) {
  171. tmp = parse_line(pkgdirp->d_name, pkgvar, string, 0, 0, 0);
  172. if (tmp != NULL) {
  173. strncat(pkgdeps, tmp, strlen(tmp));
  174. }
  175. }
  176. string = strstr(buf, "PKG_BUILDDEP+=");
  177. if (string != NULL) {
  178. tmp = parse_line(pkgdirp->d_name, pkgvar, string, 0, 0, 0);
  179. if (tmp != NULL)
  180. strncat(pkgdeps, tmp, strlen(tmp));
  181. }
  182. // We need to find the system name here
  183. string = strstr(buf, "PKG_BUILDDEP_");
  184. if (string != NULL) {
  185. check = strstr(buf, ":=");
  186. if (check != NULL) {
  187. stringtmp = strdup(string);
  188. string[strlen(string)-1] = '\0';
  189. key = strtok(string, ":=");
  190. dpkg = strdup(key+13);
  191. tmp = parse_line(pkgdirp->d_name, dpkg, stringtmp, 1, 0, 1);
  192. if (tmp != NULL)
  193. strncat(pkgdeps, tmp, strlen(tmp));
  194. }
  195. }
  196. // We need to find the subpackage name here
  197. string = strstr(buf, "PKG_FLAVOURS_");
  198. if (string != NULL) {
  199. check = strstr(buf, ":=");
  200. if (check != NULL) {
  201. string[strlen(string)-1] = '\0';
  202. key = strtok(string, ":=");
  203. fpkg = strdup(key+13);
  204. }
  205. }
  206. string = strstr(buf, "PKGFB_");
  207. if (string != NULL) {
  208. tmp = parse_line(pkgdirp->d_name, fpkg, string, 1, 0, 0);
  209. if (tmp != NULL)
  210. strncat(pkgdeps, tmp, strlen(tmp));
  211. }
  212. // We need to find the subpackage name here
  213. string = strstr(buf, "PKG_CHOICES_");
  214. if (string != NULL) {
  215. check = strstr(buf, ":=");
  216. if (check != NULL) {
  217. string[strlen(string)-1] = '\0';
  218. key = strtok(string, ":=");
  219. cpkg = strdup(key+12);
  220. }
  221. }
  222. string = strstr(buf, "PKGCB_");
  223. if (string != NULL) {
  224. tmp = parse_line(pkgdirp->d_name, cpkg, string, 1, 0, 0);
  225. if (tmp != NULL)
  226. strncat(pkgdeps, tmp, strlen(tmp));
  227. }
  228. // We need to find the subpackage name here
  229. string = strstr(buf, "PKG_SUBPKGS_");
  230. if (string != NULL) {
  231. check = strstr(buf, ":=");
  232. if (check != NULL) {
  233. string[strlen(string)-1] = '\0';
  234. key = strtok(string, ":=");
  235. spkg = strdup(key+12);
  236. }
  237. }
  238. string = strstr(buf, "PKGSB_");
  239. if (string != NULL) {
  240. tmp = parse_line(pkgdirp->d_name, spkg, string, 1, 1, 0);
  241. if (tmp != NULL) {
  242. strncat(pkgdeps, tmp, strlen(tmp));
  243. }
  244. }
  245. }
  246. free(tmp);
  247. }
  248. if (strlen(pkgdeps) != 0)
  249. printf("%s\n", pkgdeps);
  250. free(pkgdeps);
  251. free(pkgvar);
  252. if (fclose(pkg) != 0)
  253. perror("Closing file stream failed");
  254. }
  255. }
  256. if (closedir(pkgdir) != 0)
  257. perror("Closing directory stream failed");
  258. return(0);
  259. }