depmaker.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  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. spkg = NULL;
  123. cpkg = NULL;
  124. fpkg = NULL;
  125. /* read Makefile's for all packages */
  126. pkgdir = opendir("package");
  127. while ((pkgdirp = readdir(pkgdir)) != NULL) {
  128. /* skip dotfiles */
  129. if (strncmp(pkgdirp->d_name, ".", 1) > 0) {
  130. if (snprintf(path, MAXPATH, "package/%s/Makefile", pkgdirp->d_name) < 0)
  131. perror("Can not create string variable.");
  132. pkg = fopen(path, "r");
  133. if (pkg == NULL)
  134. continue;
  135. /* transform to uppercase variable name */
  136. pkgvar = strdup(pkgdirp->d_name);
  137. for (i=0; i<(int)strlen(pkgvar); i++) {
  138. if (pkgvar[i] == '+')
  139. pkgvar[i] = 'X';
  140. if (pkgvar[i] == '-')
  141. pkgvar[i] = '_';
  142. pkgvar[i] = toupper(pkgvar[i]);
  143. }
  144. /* exclude manual maintained packages from package/Makefile */
  145. if (
  146. !(strncmp(pkgdirp->d_name, "libpthread", 10) == 0 && strlen(pkgdirp->d_name) == 10) &&
  147. !(strncmp(pkgdirp->d_name, "uclibc++", 8) == 0) &&
  148. !(strncmp(pkgdirp->d_name, "uclibc", 6) == 0) &&
  149. !(strncmp(pkgdirp->d_name, "musl", 4) == 0) &&
  150. !(strncmp(pkgdirp->d_name, "glibc", 5) == 0)) {
  151. /* print result to stdout */
  152. printf("package-$(ADK_COMPILE_%s) += %s\n", pkgvar, pkgdirp->d_name);
  153. }
  154. if ((pkgdeps = malloc(MAXLINE)) != NULL)
  155. memset(pkgdeps, 0, MAXLINE);
  156. else {
  157. perror("Can not allocate memory.");
  158. exit(EXIT_FAILURE);
  159. }
  160. prefix = 0;
  161. /* generate build dependencies */
  162. while (fgets(buf, MAXLINE, pkg) != NULL) {
  163. if ((tmp = malloc(MAXLINE)) != NULL)
  164. memset(tmp, 0 , MAXLINE);
  165. else {
  166. perror("Can not allocate memory.");
  167. exit(EXIT_FAILURE);
  168. }
  169. /* just read variables prefixed with PKG */
  170. if (strncmp(buf, "PKG", 3) == 0) {
  171. string = strstr(buf, "PKG_BUILDDEP:=");
  172. if (string != NULL) {
  173. tmp = parse_line(pkgdirp->d_name, pkgvar, string, 0, 0, 0);
  174. if (tmp != NULL) {
  175. strncat(pkgdeps, tmp, strlen(tmp));
  176. }
  177. }
  178. string = strstr(buf, "PKG_BUILDDEP+=");
  179. if (string != NULL) {
  180. tmp = parse_line(pkgdirp->d_name, pkgvar, string, 0, 0, 0);
  181. if (tmp != NULL)
  182. strncat(pkgdeps, tmp, strlen(tmp));
  183. }
  184. // We need to find the system name here
  185. string = strstr(buf, "PKG_BUILDDEP_");
  186. if (string != NULL) {
  187. check = strstr(buf, ":=");
  188. if (check != NULL) {
  189. stringtmp = strdup(string);
  190. string[strlen(string)-1] = '\0';
  191. key = strtok(string, ":=");
  192. dpkg = strdup(key+13);
  193. tmp = parse_line(pkgdirp->d_name, dpkg, stringtmp, 1, 0, 1);
  194. if (tmp != NULL)
  195. strncat(pkgdeps, tmp, strlen(tmp));
  196. }
  197. }
  198. // We need to find the subpackage name here
  199. string = strstr(buf, "PKG_FLAVOURS_");
  200. if (string != NULL) {
  201. check = strstr(buf, ":=");
  202. if (check != NULL) {
  203. string[strlen(string)-1] = '\0';
  204. key = strtok(string, ":=");
  205. fpkg = strdup(key+13);
  206. }
  207. }
  208. string = strstr(buf, "PKGFB_");
  209. if (string != NULL) {
  210. tmp = parse_line(pkgdirp->d_name, fpkg, string, 1, 0, 0);
  211. if (tmp != NULL)
  212. strncat(pkgdeps, tmp, strlen(tmp));
  213. }
  214. // We need to find the subpackage name here
  215. string = strstr(buf, "PKG_CHOICES_");
  216. if (string != NULL) {
  217. check = strstr(buf, ":=");
  218. if (check != NULL) {
  219. string[strlen(string)-1] = '\0';
  220. key = strtok(string, ":=");
  221. cpkg = strdup(key+12);
  222. }
  223. }
  224. string = strstr(buf, "PKGCB_");
  225. if (string != NULL) {
  226. tmp = parse_line(pkgdirp->d_name, cpkg, string, 1, 0, 0);
  227. if (tmp != NULL)
  228. strncat(pkgdeps, tmp, strlen(tmp));
  229. }
  230. // We need to find the subpackage name here
  231. string = strstr(buf, "PKG_SUBPKGS_");
  232. if (string != NULL) {
  233. check = strstr(buf, ":=");
  234. if (check != NULL) {
  235. string[strlen(string)-1] = '\0';
  236. key = strtok(string, ":=");
  237. spkg = strdup(key+12);
  238. }
  239. }
  240. string = strstr(buf, "PKGSB_");
  241. if (string != NULL) {
  242. tmp = parse_line(pkgdirp->d_name, spkg, string, 1, 1, 0);
  243. if (tmp != NULL) {
  244. strncat(pkgdeps, tmp, strlen(tmp));
  245. }
  246. }
  247. }
  248. free(tmp);
  249. }
  250. if (strlen(pkgdeps) != 0)
  251. printf("%s\n", pkgdeps);
  252. free(pkgdeps);
  253. free(pkgvar);
  254. if (fclose(pkg) != 0)
  255. perror("Closing file stream failed");
  256. }
  257. }
  258. if (closedir(pkgdir) != 0)
  259. perror("Closing directory stream failed");
  260. return(0);
  261. }