blob: 703ee490461319434ebddba318702c85a9c48e60 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2002-2005 Roman Zippel <zippel@linux-m68k.org>
3 * Copyright (C) 2002-2005 Sam Ravnborg <sam@ravnborg.org>
4 *
5 * Released under the terms of the GNU GPL v2.0.
6 */
7
Arnaud Lacombe10a4b272011-06-01 16:00:46 -04008#include <stdarg.h>
Arnaud Lacombe02d95c92011-06-01 16:08:14 -04009#include <stdlib.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <string.h>
11#include "lkc.h"
12
13/* file already present in list? If not add it */
14struct file *file_lookup(const char *name)
15{
16 struct file *file;
Masahiro Yamada523ca582018-02-09 01:19:08 +090017 char *file_name = sym_expand_string_value(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19 for (file = file_list; file; file = file->next) {
Arnaud Lacombec7abe862010-09-04 16:11:26 -040020 if (!strcmp(name, file->name)) {
Masahiro Yamada523ca582018-02-09 01:19:08 +090021 free(file_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 return file;
Arnaud Lacombec7abe862010-09-04 16:11:26 -040023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 }
25
Alan Cox177acf72012-11-06 14:32:08 +000026 file = xmalloc(sizeof(*file));
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 memset(file, 0, sizeof(*file));
Arnaud Lacombec7abe862010-09-04 16:11:26 -040028 file->name = file_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 file->next = file_list;
30 file_list = file;
31 return file;
32}
33
34/* write a dependency file as used by kbuild to track dependencies */
35int file_write_dep(const char *name)
36{
37 struct file *file;
38 FILE *out;
39
40 if (!name)
Sam Ravnborg752625c2005-12-26 23:34:03 +010041 name = ".kconfig.d";
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 out = fopen("..config.tmp", "w");
43 if (!out)
44 return 1;
45 fprintf(out, "deps_config := \\\n");
46 for (file = file_list; file; file = file->next) {
47 if (file->next)
48 fprintf(out, "\t%s \\\n", file->name);
49 else
50 fprintf(out, "\t%s\n", file->name);
51 }
Markus Heidelberg12122f62009-05-18 01:36:54 +020052 fprintf(out, "\n%s: \\\n"
53 "\t$(deps_config)\n\n", conf_get_autoconfig_name());
Roman Zippel93449082008-01-14 04:50:54 +010054
Masahiro Yamada104daea2018-05-28 18:21:40 +090055 env_write_dep(out, conf_get_autoconfig_name());
Roman Zippel93449082008-01-14 04:50:54 +010056
57 fprintf(out, "\n$(deps_config): ;\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 fclose(out);
59 rename("..config.tmp", name);
60 return 0;
61}
62
63
Thomas Weber31a2d312010-02-19 12:43:44 +010064/* Allocate initial growable string */
Linus Torvalds1da177e2005-04-16 15:20:36 -070065struct gstr str_new(void)
66{
67 struct gstr gs;
Alan Cox177acf72012-11-06 14:32:08 +000068 gs.s = xmalloc(sizeof(char) * 64);
Christophe Jaillet107f43a2008-05-18 23:10:24 +020069 gs.len = 64;
Vadim Bendebury (вб)da60fbb2009-12-20 00:29:49 -080070 gs.max_width = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 strcpy(gs.s, "\0");
72 return gs;
73}
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/* Free storage for growable string */
76void str_free(struct gstr *gs)
77{
78 if (gs->s)
79 free(gs->s);
80 gs->s = NULL;
81 gs->len = 0;
82}
83
84/* Append to growable string */
85void str_append(struct gstr *gs, const char *s)
86{
Sam Ravnborga67cb132007-09-19 21:23:09 +020087 size_t l;
88 if (s) {
89 l = strlen(gs->s) + strlen(s) + 1;
90 if (l > gs->len) {
Masahiro Yamadad717f242018-02-09 01:19:07 +090091 gs->s = xrealloc(gs->s, l);
Sam Ravnborga67cb132007-09-19 21:23:09 +020092 gs->len = l;
93 }
94 strcat(gs->s, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070096}
97
98/* Append printf formatted string to growable string */
99void str_printf(struct gstr *gs, const char *fmt, ...)
100{
101 va_list ap;
102 char s[10000]; /* big enough... */
103 va_start(ap, fmt);
104 vsnprintf(s, sizeof(s), fmt, ap);
105 str_append(gs, s);
106 va_end(ap);
107}
108
Matt Mackall4a4efbd2006-01-03 13:27:11 +0100109/* Retrieve value of growable string */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110const char *str_get(struct gstr *gs)
111{
112 return gs->s;
113}
114
Alan Cox177acf72012-11-06 14:32:08 +0000115void *xmalloc(size_t size)
116{
117 void *p = malloc(size);
118 if (p)
119 return p;
120 fprintf(stderr, "Out of memory.\n");
121 exit(1);
122}
123
124void *xcalloc(size_t nmemb, size_t size)
125{
126 void *p = calloc(nmemb, size);
127 if (p)
128 return p;
129 fprintf(stderr, "Out of memory.\n");
130 exit(1);
131}
Masahiro Yamadad717f242018-02-09 01:19:07 +0900132
133void *xrealloc(void *p, size_t size)
134{
135 p = realloc(p, size);
136 if (p)
137 return p;
138 fprintf(stderr, "Out of memory.\n");
139 exit(1);
140}
Masahiro Yamadacd81fc82018-02-17 03:38:31 +0900141
142char *xstrdup(const char *s)
143{
144 char *p;
145
146 p = strdup(s);
147 if (p)
148 return p;
149 fprintf(stderr, "Out of memory.\n");
150 exit(1);
151}
Masahiro Yamada104daea2018-05-28 18:21:40 +0900152
153char *xstrndup(const char *s, size_t n)
154{
155 char *p;
156
157 p = strndup(s, n);
158 if (p)
159 return p;
160 fprintf(stderr, "Out of memory.\n");
161 exit(1);
162}