1 /* utils.c -- various utility routines
3 * This code is Copyright (c) 2006, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
10 #include <h/signals.h>
15 #include "read_line.h"
17 extern char *mhdocdir
;
19 /* plurals gives the letter ess to indicate a plural noun, or an empty
20 * string as plurals+1 for the singular noun. Used by the PLURALS
22 const char plurals
[] = "s";
25 * We allocate space for messages (msgs array)
26 * this number of elements at a time.
30 /* Call malloc(3), exiting on NULL return. */
32 mh_xmalloc(size_t size
)
37 size
= 1; /* Some mallocs don't like 0. */
40 die("malloc failed, size wanted: %zu", size
);
45 /* Call realloc(3), exiting on NULL return. */
47 mh_xrealloc(void *ptr
, size_t size
)
51 /* Copy POSIX behaviour, coping with non-POSIX systems. */
54 return mh_xmalloc(1); /* Get a unique pointer. */
57 return mh_xmalloc(size
);
59 new = realloc(ptr
, size
);
61 die("realloc failed, size wanted: %zu", size
);
66 /* Call calloc(3), exiting on NULL return. */
68 mh_xcalloc(size_t nelem
, size_t elsize
)
72 if (!nelem
|| !elsize
)
73 return mh_xmalloc(1); /* Get a unique pointer. */
75 p
= calloc(nelem
, elsize
);
77 die("calloc failed, size wanted: %zu * %zu", nelem
, elsize
);
82 /* Duplicate a NUL-terminated string, exit on failure. */
84 mh_xstrdup(const char *src
)
89 n
= strlen(src
) + 1; /* Ignore possibility of overflow. */
97 * Return the present working directory, if the current directory does not
98 * exist, or is too long, make / the pwd.
104 static char curwd
[PATH_MAX
];
106 if (!getcwd (curwd
, PATH_MAX
)) {
107 inform("unable to determine working directory, continuing...");
108 if (!mypath
|| !*mypath
109 || (strcpy (curwd
, mypath
), chdir (curwd
)) == -1) {
111 if (chdir (curwd
) < 0) {
112 advise (curwd
, "chdir");
118 if ((cp
= curwd
+ strlen (curwd
) - 1) > curwd
&& *cp
== '/')
124 /* add returns a newly malloc'd string, exiting on failure. The order
125 * of the parameters is unusual. A NULL parameter is treated as an
126 * empty string. s1 is free'd. Use mh_xstrdup(s) rather than add(s,
127 * NULL), with FENDNULL() if s might be NULL.
129 * add(NULL, NULL) -> ""
130 * add(NULL, "foo") -> "foo"
131 * add("bar", NULL) -> "bar"
132 * add("bar", "foo") -> "foobar"
135 add (const char *s2
, char *s1
)
138 size_t len1
= 0, len2
= 0;
145 cp
= mh_xmalloc (len1
+ len2
+ 1);
147 /* Copy s1 and free it */
149 memcpy (cp
, s1
, len1
);
155 memcpy (cp
+ len1
, s2
, len2
);
157 /* Now NULL terminate the string */
158 cp
[len1
+ len2
] = '\0';
165 * Append an item to a comma separated list
168 addlist (char *list
, const char *item
)
171 list
= add (", ", list
);
173 return add (item
, list
);
178 * Check to see if a folder exists.
181 folder_exists(const char *folder
)
185 return stat(folder
, &st
) != -1;
190 * Check to see if a folder exists, if not, prompt the user to create
194 create_folder(char *folder
, int autocreate
, void (*done_callback
)(int))
200 if (stat (folder
, &st
) == -1) {
202 adios (folder
, "error on folder");
203 if (autocreate
== 0) {
204 /* ask before creating folder */
205 cp
= concat ("Create folder \"", folder
, "\"? ", NULL
);
206 if (!read_yes_or_no_if_tty (cp
))
209 } else if (autocreate
== -1) {
210 /* do not create, so exit */
213 if (!makedir (folder
))
214 die("unable to create folder %s", folder
);
220 * Return the number of digits in a nonnegative integer.
229 die("oops, num_digits called with negative value");
243 * Append a message arg to an array of them, resizing it if necessary.
244 * Really a simple vector-of-(char *) maintenance routine.
247 app_msgarg(struct msgs_array
*msgs
, char *cp
)
249 if(msgs
->size
>= msgs
->max
) {
250 msgs
->max
+= MAXMSGS
;
251 msgs
->msgs
= mh_xrealloc(msgs
->msgs
,
252 msgs
->max
* sizeof(*msgs
->msgs
));
254 msgs
->msgs
[msgs
->size
++] = cp
;
258 * Append a message number to an array of them, resizing it if necessary.
259 * Like app_msgarg, but with a vector-of-ints instead.
263 app_msgnum(struct msgnum_array
*msgs
, int msgnum
)
265 if (msgs
->size
>= msgs
->max
) {
266 msgs
->max
+= MAXMSGS
;
267 msgs
->msgnums
= mh_xrealloc(msgs
->msgnums
,
268 msgs
->max
* sizeof(*msgs
->msgnums
));
270 msgs
->msgnums
[msgs
->size
++] = msgnum
;
275 * Finds first occurrence of str in buf. buf is not a C string but a
276 * byte array of length buflen. str is a null-terminated C string.
277 * find_str() does not modify buf but passes back a non-const char *
278 * pointer so that the caller can modify it.
281 find_str (const char buf
[], size_t buflen
, const char *str
)
283 const size_t len
= strlen (str
);
286 for (i
= 0; i
+ len
<= buflen
; ++i
, ++buf
) {
287 if (! memcmp (buf
, str
, len
)) return (char *) buf
;
295 * Finds last occurrence of str in buf. buf is not a C string but a
296 * byte array of length buflen. str is a null-terminated C string.
297 * find_str() does not modify buf but passes back a non-const char *
298 * pointer so that the caller can modify it.
301 rfind_str (const char buf
[], size_t buflen
, const char *str
)
303 const size_t len
= strlen (str
);
306 for (i
= 0, buf
+= buflen
- len
; i
+ len
<= buflen
; ++i
, --buf
) {
307 if (! memcmp (buf
, str
, len
)) return (char *) buf
;
314 /* POSIX doesn't have strcasestr() so emulate it. */
316 nmh_strcasestr (const char *s1
, const char *s2
)
318 const size_t len
= strlen (s2
);
320 if (isupper ((unsigned char) s2
[0]) || islower ((unsigned char)s2
[0])) {
322 first
[0] = (char) toupper ((unsigned char) s2
[0]);
323 first
[1] = (char) tolower ((unsigned char) s2
[0]);
326 for (s1
= strpbrk (s1
, first
); s1
; s1
= strpbrk (++s1
, first
)) {
327 if (! strncasecmp (s1
, s2
, len
)) return (char *) s1
;
330 for (s1
= strchr (s1
, s2
[0]); s1
; s1
= strchr (++s1
, s2
[0])) {
331 if (! strncasecmp (s1
, s2
, len
)) return (char *) s1
;
339 /* truncpy copies at most size - 1 chars from non-NULL src to non-NULL,
340 * non-overlapping, dst, and ensures dst is NUL terminated. If size is
341 * zero then it aborts as dst cannot be NUL terminated.
343 * It's to be used when truncation is intended and correct, e.g.
344 * reporting a possibly very long external string back to the user. One
345 * of its advantages over strncpy(3) is it doesn't pad in the common
346 * case of no truncation. */
348 trunccpy(char *dst
, const char *src
, size_t size
)
351 inform("trunccpy: zero-length destination: \"%.20s\"",
356 if (strnlen(src
, size
) < size
) {
359 memcpy(dst
, src
, size
- 1);
360 dst
[size
- 1] = '\0';
365 /* has_prefix returns true if non-NULL s starts with non-NULL prefix. */
367 has_prefix(const char *s
, const char *prefix
)
369 while (*s
&& *s
== *prefix
) {
374 return *prefix
== '\0';
378 /* has_suffix returns true if non-NULL s ends with non-NULL suffix. */
380 has_suffix(const char *s
, const char *suffix
)
385 lsuf
= strlen(suffix
);
387 return lsuf
<= ls
&& !strcmp(s
+ ls
- lsuf
, suffix
);
391 /* has_suffix_c returns true if non-NULL string s ends with a c before the
392 * terminating NUL. */
394 has_suffix_c(const char *s
, int c
)
396 return *s
&& s
[strlen(s
) - 1] == c
;
400 /* trim_suffix_c deletes c from the end of non-NULL string s if it's
401 * present, shortening s by 1. Only one instance of c is removed. */
403 trim_suffix_c(char *s
, int c
)
414 /* to_lower runs all of s through tolower(3). */
420 for (b
= (unsigned char *)s
; (*b
= tolower(*b
)); b
++)
425 /* to_upper runs all of s through toupper(3). */
431 for (b
= (unsigned char *)s
; (*b
= toupper(*b
)); b
++)
437 nmh_init(const char *argv0
, bool read_context
, bool check_version
)
442 invo_name
= r1bindex ((char *) argv0
, '/');
444 if (setup_signal_handlers()) {
445 admonish("sigaction", "unable to set up signal handlers");
448 /* POSIX atexit() does not define any error conditions. */
449 if (atexit(remove_registered_files_atexit
)) {
450 admonish("atexit", "unable to register atexit function");
453 /* Read context, if supposed to. */
459 bool allow_version_check
= true;
460 bool check_older_version
= false;
461 if (!check_version
||
462 ((cp
= context_find ("Welcome")) && strcasecmp (cp
, "disable") == 0)) {
463 allow_version_check
= false;
464 } else if ((cp
= getenv ("MHCONTEXT")) != NULL
&& *cp
!= '\0') {
465 /* Context file comes from $MHCONTEXT, so only print the message
466 if the context file has an older version. If it does, or if it
467 doesn't have a version at all, update the version. */
468 check_older_version
= true;
471 /* Check to see if the user is running a different (or older, if
472 specified) version of nmh than they had run before, and notify them
474 if (allow_version_check
&& isatty (fileno (stdin
)) &&
475 isatty (fileno (stdout
)) && isatty (fileno (stderr
))) {
476 if (nmh_version_changed (check_older_version
)) {
477 printf ("==================================================="
478 "=====================\n");
479 printf ("Welcome to nmh version %s\n\n", VERSION
);
480 printf ("See the release notes in %s/NEWS\n\n",
482 print_intro (stdout
, 1);
483 printf ("\nThis message will not be repeated until "
484 "nmh is next updated.\n");
485 printf ("==================================================="
486 "=====================\n\n");
488 fputs ("Press enter to continue: ", stdout
);
494 if ((status
= context_foil(NULL
)) != OK
) {
495 advise("", "failed to create minimal profile/context");
499 /* Allow the user to set a locale in their profile. Otherwise, use the
500 "" string to pull it from their environment, see setlocale(3). */
501 if ((locale
= context_find ("locale")) == NULL
) {
505 if (! setlocale (LC_ALL
, locale
)) {
506 inform("setlocale failed, check your LC_ALL, LC_CTYPE, and LANG "
507 "environment variables, continuing...");
515 * Check stored version, and return 1 if out-of-date or non-existent.
516 * Because the output of "mhparam version" is prefixed with "nmh-",
517 * use that prefix here.
520 nmh_version_changed (int older
)
522 const char *const context_version
= context_find("Version");
525 /* Convert the version strings to floats and compare them. This will
526 break for versions with multiple decimal points, etc. */
527 const float current_version
= strtof (VERSION
, NULL
);
528 const float old_version
=
529 context_version
&& has_prefix(context_version
, "nmh-")
530 ? strtof (context_version
+ 4, NULL
)
533 if (context_version
== NULL
|| old_version
< current_version
) {
534 context_replace ("Version", "nmh-" VERSION
);
537 return old_version
< current_version
;
540 if (context_version
== NULL
|| strcmp(context_version
, "nmh-" VERSION
) != 0) {
541 context_replace ("Version", "nmh-" VERSION
);
549 /* contains8bit returns true if any byte from start onwards fails
550 * isascii(3), i.e. is outside [0, 0x7f]. If start is NULL it returns
551 * false. Bytes are examined until a NUL byte, or, if end is not NULL,
552 * whilst start is before end. */
554 contains8bit(const char *start
, const char *end
)
564 while (p
< end
&& (c
= (*p
++)))
565 if (!isascii((unsigned char)c
))
569 if (!isascii((unsigned char)c
))
578 * See if input has any 8-bit bytes.
581 scan_input (int fd
, int *eightbit
)
587 lseek(fd
, 0, SEEK_SET
);
589 while ((state
= read (fd
, buf
, sizeof buf
)) > 0) {
590 if (contains8bit (buf
, buf
+ state
)) {
596 return state
== NOTOK
? NOTOK
: OK
;
601 * Convert an int to a char string.
606 return m_strn(value
, 0);
611 * Convert an int to a char string, of limited width if > 0.
614 /* SIZE(n) includes NUL. n must just be digits, not an equation. */
615 #define SIZE(n) (sizeof STR(n))
618 m_strn(int value
, unsigned int width
)
620 /* Need to include space for negative sign. But don't use INT_MIN
621 because it could be a macro that would fool SIZE(n). */
622 static char buffer
[SIZE(-INT_MAX
)];
623 const int num_chars
= snprintf(buffer
, sizeof buffer
, "%d", value
);
625 return num_chars
> 0 && (width
== 0 || (unsigned int) num_chars
<= width
)