OSDN Git Service

[update] : Added latest mkinitcpio-archiso
[alterlinux/alterlinux.git] / menuconfig / util.c
1 /*
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
8 #include <stdarg.h>
9 #include <stdlib.h>
10 #include <string.h>
11 #include "lkc.h"
12
13 /* file already present in list? If not add it */
14 struct file *file_lookup(const char *name)
15 {
16         struct file *file;
17         const char *file_name = sym_expand_string_value(name);
18         char *abs_file_name = realpath(file_name, NULL);
19
20         for (file = file_list; file; file = file->next) {
21                 if (!strcmp(name, file->name)) {
22                         free((void *)file_name);
23                         return file;
24                 }
25         }
26
27         file = malloc(sizeof(*file));
28         memset(file, 0, sizeof(*file));
29         file->name = file_name;
30         file->abs_name = abs_file_name;
31         file->next = file_list;
32         file_list = file;
33         return file;
34 }
35
36 /* write a dependency file as used by kbuild to track dependencies */
37 int file_write_dep(const char *name)
38 {
39         struct symbol *sym, *env_sym;
40         struct expr *e;
41         struct file *file;
42         FILE *out;
43
44         if (!name)
45                 name = ".kconfig.d";
46         out = fopen("..config.tmp", "w");
47         if (!out)
48                 return 1;
49         fprintf(out, "deps_config := \\\n");
50         for (file = file_list; file; file = file->next) {
51                 if (file->next)
52                         fprintf(out, "\t%s \\\n", file->name);
53                 else
54                         fprintf(out, "\t%s\n", file->name);
55         }
56         fprintf(out, "\n%s: \\\n"
57                      "\t$(deps_config)\n\n", conf_get_autoconfig_name());
58
59         expr_list_for_each_sym(sym_env_list, e, sym) {
60                 struct property *prop;
61                 const char *value;
62
63                 prop = sym_get_env_prop(sym);
64                 env_sym = prop_get_symbol(prop);
65                 if (!env_sym)
66                         continue;
67                 value = getenv(env_sym->name);
68                 if (!value)
69                         value = "";
70                 fprintf(out, "ifneq \"$(%s)\" \"%s\"\n", env_sym->name, value);
71                 fprintf(out, "%s: FORCE\n", conf_get_autoconfig_name());
72                 fprintf(out, "endif\n");
73         }
74
75         fprintf(out, "\n$(deps_config): ;\n");
76         fclose(out);
77         rename("..config.tmp", name);
78         return 0;
79 }
80
81
82 /* Allocate initial growable string */
83 struct gstr str_new(void)
84 {
85         struct gstr gs;
86         gs.s = malloc(sizeof(char) * 64);
87         gs.len = 64;
88         gs.max_width = 0;
89         strcpy(gs.s, "\0");
90         return gs;
91 }
92
93 /* Allocate and assign growable string */
94 struct gstr str_assign(const char *s)
95 {
96         struct gstr gs;
97         gs.s = strdup(s);
98         gs.len = strlen(s) + 1;
99         gs.max_width = 0;
100         return gs;
101 }
102
103 /* Free storage for growable string */
104 void str_free(struct gstr *gs)
105 {
106         if (gs->s)
107                 free(gs->s);
108         gs->s = NULL;
109         gs->len = 0;
110 }
111
112 /* Append to growable string */
113 void str_append(struct gstr *gs, const char *s)
114 {
115         size_t l;
116         if (s) {
117                 l = strlen(gs->s) + strlen(s) + 1;
118                 if (l > gs->len) {
119                         gs->s   = realloc(gs->s, l);
120                         gs->len = l;
121                 }
122                 strcat(gs->s, s);
123         }
124 }
125
126 /* Append printf formatted string to growable string */
127 void str_printf(struct gstr *gs, const char *fmt, ...)
128 {
129         va_list ap;
130         char s[10000]; /* big enough... */
131         va_start(ap, fmt);
132         vsnprintf(s, sizeof(s), fmt, ap);
133         str_append(gs, s);
134         va_end(ap);
135 }
136
137 /* Retrieve value of growable string */
138 const char *str_get(struct gstr *gs)
139 {
140         return gs->s;
141 }