blob: 29585394df71dfb75e3f56fcd1995b593863fc8d [file] [log] [blame]
Masahiro Yamada0c874102018-12-18 21:13:35 +09001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Copyright (C) 2002-2005 Roman Zippel <zippel@linux-m68k.org>
4 * Copyright (C) 2002-2005 Sam Ravnborg <sam@ravnborg.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
Arnaud Lacombe10a4b272011-06-01 16:00:46 -04007#include <stdarg.h>
Arnaud Lacombe02d95c92011-06-01 16:08:14 -04008#include <stdlib.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <string.h>
10#include "lkc.h"
11
12/* file already present in list? If not add it */
13struct file *file_lookup(const char *name)
14{
15 struct file *file;
16
17 for (file = file_list; file; file = file->next) {
Arnaud Lacombec7abe862010-09-04 16:11:26 -040018 if (!strcmp(name, file->name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 return file;
Arnaud Lacombec7abe862010-09-04 16:11:26 -040020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 }
22
Alan Cox177acf72012-11-06 14:32:08 +000023 file = xmalloc(sizeof(*file));
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 memset(file, 0, sizeof(*file));
Masahiro Yamadabb222ce2018-05-28 18:21:41 +090025 file->name = xstrdup(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 file->next = file_list;
27 file_list = file;
28 return file;
29}
30
Thomas Weber31a2d312010-02-19 12:43:44 +010031/* Allocate initial growable string */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032struct gstr str_new(void)
33{
34 struct gstr gs;
Alan Cox177acf72012-11-06 14:32:08 +000035 gs.s = xmalloc(sizeof(char) * 64);
Christophe Jaillet107f43a2008-05-18 23:10:24 +020036 gs.len = 64;
Vadim Bendebury (вб)da60fbb2009-12-20 00:29:49 -080037 gs.max_width = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 strcpy(gs.s, "\0");
39 return gs;
40}
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/* Free storage for growable string */
43void str_free(struct gstr *gs)
44{
45 if (gs->s)
46 free(gs->s);
47 gs->s = NULL;
48 gs->len = 0;
49}
50
51/* Append to growable string */
52void str_append(struct gstr *gs, const char *s)
53{
Sam Ravnborga67cb132007-09-19 21:23:09 +020054 size_t l;
55 if (s) {
56 l = strlen(gs->s) + strlen(s) + 1;
57 if (l > gs->len) {
Masahiro Yamadad717f242018-02-09 01:19:07 +090058 gs->s = xrealloc(gs->s, l);
Sam Ravnborga67cb132007-09-19 21:23:09 +020059 gs->len = l;
60 }
61 strcat(gs->s, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
65/* Append printf formatted string to growable string */
66void str_printf(struct gstr *gs, const char *fmt, ...)
67{
68 va_list ap;
69 char s[10000]; /* big enough... */
70 va_start(ap, fmt);
71 vsnprintf(s, sizeof(s), fmt, ap);
72 str_append(gs, s);
73 va_end(ap);
74}
75
Matt Mackall4a4efbd2006-01-03 13:27:11 +010076/* Retrieve value of growable string */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077const char *str_get(struct gstr *gs)
78{
79 return gs->s;
80}
81
Alan Cox177acf72012-11-06 14:32:08 +000082void *xmalloc(size_t size)
83{
84 void *p = malloc(size);
85 if (p)
86 return p;
87 fprintf(stderr, "Out of memory.\n");
88 exit(1);
89}
90
91void *xcalloc(size_t nmemb, size_t size)
92{
93 void *p = calloc(nmemb, size);
94 if (p)
95 return p;
96 fprintf(stderr, "Out of memory.\n");
97 exit(1);
98}
Masahiro Yamadad717f242018-02-09 01:19:07 +090099
100void *xrealloc(void *p, size_t size)
101{
102 p = realloc(p, size);
103 if (p)
104 return p;
105 fprintf(stderr, "Out of memory.\n");
106 exit(1);
107}
Masahiro Yamadacd81fc82018-02-17 03:38:31 +0900108
109char *xstrdup(const char *s)
110{
111 char *p;
112
113 p = strdup(s);
114 if (p)
115 return p;
116 fprintf(stderr, "Out of memory.\n");
117 exit(1);
118}
Masahiro Yamada104daea2018-05-28 18:21:40 +0900119
120char *xstrndup(const char *s, size_t n)
121{
122 char *p;
123
124 p = strndup(s, n);
125 if (p)
126 return p;
127 fprintf(stderr, "Out of memory.\n");
128 exit(1);
129}