Use sysexits.h for better exit-codes
[mmh] / sbr / utils.c
1 /*
2 ** utils.c -- various utility routines
3 **
4 ** This code is Copyright (c) 2006, by the authors of nmh.  See the
5 ** COPYRIGHT file in the root directory of the nmh distribution for
6 ** complete copyright information.
7 */
8
9 #include <h/mh.h>
10 #include <h/utils.h>
11 #include <stdlib.h>
12 #include <fcntl.h>
13 #include <errno.h>
14 #include <unistd.h>
15 #include <sys/stat.h>
16 #include <sysexits.h>
17
18 /*
19 ** We allocate space for messages (msgs array)
20 ** this number of elements at a time.
21 */
22 #define MAXMSGS 256
23
24 /*
25 ** Safely call malloc
26 */
27 void *
28 mh_xmalloc(size_t size)
29 {
30         void *memory;
31
32         if (size == 0)
33                 adios(EX_SOFTWARE, NULL, "Tried to malloc 0 bytes");
34
35         memory = malloc(size);
36         if (!memory)
37                 adios(EX_OSERR, NULL, "Malloc failed");
38
39         return memory;
40 }
41
42 /*
43 ** Safely call realloc
44 */
45 void *
46 mh_xrealloc(void *ptr, size_t size)
47 {
48         void *memory;
49
50         /* Some non-POSIX realloc()s don't cope with realloc(NULL,sz) */
51         if (!ptr) {
52                 return mh_xmalloc(size);
53         }
54
55         if (size == 0)
56                 adios(EX_SOFTWARE, NULL, "Tried to realloc 0 bytes");
57
58         memory = realloc(ptr, size);
59         if (!memory)
60                 adios(EX_OSERR, NULL, "Realloc failed");
61
62         return memory;
63 }
64
65 /*
66 ** Return the present working directory, if the current directory does not
67 ** exist, or is too long, make / the pwd.
68 */
69 char *
70 pwd(void)
71 {
72         register char *cp;
73         static char curwd[PATH_MAX];
74
75         if (!getcwd(curwd, PATH_MAX)) {
76                 admonish(NULL, "unable to determine working directory");
77                 if (!mypath || !*mypath ||
78                                 (strcpy(curwd, mypath), chdir(curwd)) == -1) {
79                         strcpy(curwd, "/");
80                         chdir(curwd);
81                 }
82                 return curwd;
83         }
84
85         if ((cp = curwd + strlen(curwd) - 1) > curwd && *cp == '/') {
86                 /* strip trailing slash */
87                 *cp = '\0';
88         }
89
90         return curwd;
91 }
92
93 /*
94 ** add   -- If "s1" is NULL, this routine just creates a
95 **       -- copy of "s2" into newly malloc'ed memory.
96 **       -- (use getcpy() instead in this case)
97 **       --
98 **       -- If "s1" is not NULL, then copy the concatenation
99 **       -- of "s1" and "s2" (note the order) into newly
100 **       -- malloc'ed memory.  Then free "s1".
101 */
102 char *
103 add(char *s2, char *s1)
104 {
105         char *cp;
106         size_t len1 = 0, len2 = 0;
107
108         if (s1)
109                 len1 = strlen(s1);
110         if (s2)
111                 len2 = strlen(s2);
112
113         cp = mh_xmalloc(len1 + len2 + 1);
114
115         /* Copy s1 and free it */
116         if (s1) {
117                 memcpy(cp, s1, len1);
118                 free(s1);
119         }
120
121         /* Copy s2 */
122         if (s2)
123                 memcpy(cp + len1, s2, len2);
124
125         /* Now NULL terminate the string */
126         cp[len1 + len2] = '\0';
127
128         return cp;
129 }
130
131
132 /*
133 ** create_folder
134 **     Check to see if a folder exists, if not, prompt the user to create it.
135 */
136 void
137 create_folder(char *folder, int autocreate, void (*done_callback)(int))
138 {
139         struct stat st;
140         extern int errno;
141         char *cp;
142
143         if (stat(folder, &st) == -1) {
144                 if (errno != ENOENT)
145                         adios(EX_IOERR, folder, "error on folder");
146                 if (autocreate == 0) {
147                         /* ask before creating folder */
148                         cp = concat("Create folder \"", folder, "\"? ", NULL);
149                         if (!getanswer(cp))
150                                 done_callback(EX_CANTCREAT);
151                         free(cp);
152                 } else if (autocreate == -1) {
153                         /* do not create, so exit */
154                         done_callback(EX_CANTCREAT);
155                 }
156                 if (!makedir(folder))
157                         adios(EX_CANTCREAT, NULL, "unable to create folder %s", folder);
158         }
159 }
160
161 /*
162 ** num_digits
163 **     Return the number of digits in a nonnegative integer.
164 */
165 int
166 num_digits(int n)
167 {
168         int ndigits = 0;
169
170         /* Sanity check */
171         if (n < 0)
172                 adios(EX_SOFTWARE, NULL, "oops, num_digits called with negative value");
173
174         if (n == 0)
175                 return 1;
176
177         while (n) {
178                 n /= 10;
179                 ndigits++;
180         }
181
182         return ndigits;
183 }
184
185 /*
186 ** Append a message arg to an array of them, resizing it if necessary.
187 ** The function is written to suit the arg parsing code it was extracted
188 ** from, and will probably be changed when the other code is cleaned up.
189 */
190 void
191 app_msgarg(struct msgs_array *msgs, char *cp)
192 {
193         if(msgs->size >= msgs->max)
194                 msgs->msgs = mh_xrealloc(msgs->msgs,
195                                 (msgs->max+=MAXMSGS)*sizeof(*msgs->msgs));
196         msgs->msgs[msgs->size++] = cp;
197 }