blob: 23b3d23317fd1ffd6fd6a841b4bf60f6af3cdde8 [file] [log] [blame]
Martin Rothbe08c1d2024-02-16 09:12:33 -07001// SPDX-License-Identifier: GPL-2.0-only
Patrick Georgi0588d192009-08-12 15:00:51 +00002/*
3 * Copyright (C) 2002-2005 Roman Zippel <zippel@linux-m68k.org>
4 * Copyright (C) 2002-2005 Sam Ravnborg <sam@ravnborg.org>
Patrick Georgi0588d192009-08-12 15:00:51 +00005 */
6
Patrick Georgid5208402014-04-11 20:24:06 +02007#include <stdarg.h>
8#include <stdlib.h>
Patrick Georgi0588d192009-08-12 15:00:51 +00009#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) {
Patrick Georgid5208402014-04-11 20:24:06 +020018 if (!strcmp(name, file->name)) {
Patrick Georgi0588d192009-08-12 15:00:51 +000019 return file;
Patrick Georgid5208402014-04-11 20:24:06 +020020 }
Patrick Georgi0588d192009-08-12 15:00:51 +000021 }
22
Patrick Georgid5208402014-04-11 20:24:06 +020023 file = xmalloc(sizeof(*file));
Patrick Georgi0588d192009-08-12 15:00:51 +000024 memset(file, 0, sizeof(*file));
Patrick Georgi53ea1d42019-11-22 16:55:58 +010025 file->name = xstrdup(name);
Patrick Georgi0588d192009-08-12 15:00:51 +000026 file->next = file_list;
27 file_list = file;
28 return file;
29}
30
Patrick Georgid5208402014-04-11 20:24:06 +020031/* Allocate initial growable string */
Patrick Georgi0588d192009-08-12 15:00:51 +000032struct gstr str_new(void)
33{
34 struct gstr gs;
Patrick Georgid5208402014-04-11 20:24:06 +020035 gs.s = xmalloc(sizeof(char) * 64);
36 gs.len = 64;
37 gs.max_width = 0;
Patrick Georgi0588d192009-08-12 15:00:51 +000038 strcpy(gs.s, "\0");
39 return gs;
40}
41
Patrick Georgi0588d192009-08-12 15:00:51 +000042/* Free storage for growable string */
43void str_free(struct gstr *gs)
44{
Patrick Georgi77612372024-03-13 13:01:21 +010045 free(gs->s);
Patrick Georgi0588d192009-08-12 15:00:51 +000046 gs->s = NULL;
47 gs->len = 0;
48}
49
50/* Append to growable string */
51void str_append(struct gstr *gs, const char *s)
52{
53 size_t l;
54 if (s) {
55 l = strlen(gs->s) + strlen(s) + 1;
56 if (l > gs->len) {
Patrick Georgi53ea1d42019-11-22 16:55:58 +010057 gs->s = xrealloc(gs->s, l);
Patrick Georgi0588d192009-08-12 15:00:51 +000058 gs->len = l;
59 }
60 strcat(gs->s, s);
61 }
62}
63
64/* Append printf formatted string to growable string */
65void str_printf(struct gstr *gs, const char *fmt, ...)
66{
67 va_list ap;
68 char s[10000]; /* big enough... */
69 va_start(ap, fmt);
70 vsnprintf(s, sizeof(s), fmt, ap);
71 str_append(gs, s);
72 va_end(ap);
73}
74
75/* Retrieve value of growable string */
Patrick Georgi7eab8ef2023-11-20 18:03:34 +010076char *str_get(struct gstr *gs)
Patrick Georgi0588d192009-08-12 15:00:51 +000077{
78 return gs->s;
79}
80
Patrick Georgid5208402014-04-11 20:24:06 +020081void *xmalloc(size_t size)
82{
83 void *p = malloc(size);
84 if (p)
85 return p;
86 fprintf(stderr, "Out of memory.\n");
87 exit(1);
88}
89
90void *xcalloc(size_t nmemb, size_t size)
91{
92 void *p = calloc(nmemb, size);
93 if (p)
94 return p;
95 fprintf(stderr, "Out of memory.\n");
96 exit(1);
97}
Patrick Georgi53ea1d42019-11-22 16:55:58 +010098
99void *xrealloc(void *p, size_t size)
100{
101 p = realloc(p, size);
102 if (p)
103 return p;
104 fprintf(stderr, "Out of memory.\n");
105 exit(1);
106}
107
108char *xstrdup(const char *s)
109{
110 char *p;
111
112 p = strdup(s);
113 if (p)
114 return p;
115 fprintf(stderr, "Out of memory.\n");
116 exit(1);
117}
118
119char *xstrndup(const char *s, size_t n)
120{
121 char *p;
122
123 p = strndup(s, n);
124 if (p)
125 return p;
126 fprintf(stderr, "Out of memory.\n");
127 exit(1);
128}