]>
diplodocus.org Git - nmh/blob - sbr/utils.c
3 * utils.c -- various utility routines
7 * This code is Copyright (c) 2006, by the authors of nmh. See the
8 * COPYRIGHT file in the root directory of the nmh distribution for
9 * complete copyright information.
19 * We allocate space for messages (msgs array)
20 * this number of elements at a time.
28 mh_xmalloc(size_t size
)
33 adios(NULL
, "Tried to malloc 0 bytes");
35 memory
= malloc(size
);
37 adios(NULL
, "Malloc failed");
46 mh_xrealloc(void *ptr
, size_t size
)
51 adios(NULL
, "Tried to realloc 0bytes");
53 memory
= realloc(ptr
, size
);
55 adios(NULL
, "Realloc failed");
61 * Return the present working directory, if the current directory does not
62 * exist, or is too long, make / the pwd.
68 static char curwd
[PATH_MAX
];
70 if (!getcwd (curwd
, PATH_MAX
)) {
71 admonish (NULL
, "unable to determine working directory");
72 if (!mypath
|| !*mypath
73 || (strcpy (curwd
, mypath
), chdir (curwd
)) == -1) {
80 if ((cp
= curwd
+ strlen (curwd
) - 1) > curwd
&& *cp
== '/')
87 * add -- If "s1" is NULL, this routine just creates a
88 * -- copy of "s2" into newly malloc'ed memory.
90 * -- If "s1" is not NULL, then copy the concatenation
91 * -- of "s1" and "s2" (note the order) into newly
92 * -- malloc'ed memory. Then free "s1".
95 add (char *s2
, char *s1
)
98 size_t len1
= 0, len2
= 0;
105 cp
= mh_xmalloc (len1
+ len2
+ 1);
107 /* Copy s1 and free it */
109 memcpy (cp
, s1
, len1
);
115 memcpy (cp
+ len1
, s2
, len2
);
117 /* Now NULL terminate the string */
118 cp
[len1
+ len2
] = '\0';
125 * Check to see if a folder exists.
127 int folder_exists(char *folder
)
132 if (stat (folder
, &st
) == -1) {
133 /* The folder either doesn't exist, or we hit an error. Either way
138 /* We can see a folder with the right name */
148 * Check to see if a folder exists, if not, prompt the user to create
151 void create_folder(char *folder
, int autocreate
, void (*done_callback
)(int))
157 if (stat (folder
, &st
) == -1) {
159 adios (folder
, "error on folder");
160 if (autocreate
== 0) {
161 /* ask before creating folder */
162 cp
= concat ("Create folder \"", folder
, "\"? ", NULL
);
166 } else if (autocreate
== -1) {
167 /* do not create, so exit */
170 if (!makedir (folder
))
171 adios (NULL
, "unable to create folder %s", folder
);
177 * Return the number of digits in a nonnegative integer.
186 adios (NULL
, "oops, num_digits called with negative value");
200 * Append a message arg to an array of them, resizing it if necessary.
201 * The function is written to suit the arg parsing code it was extracted
202 * from, and will probably be changed when the other code is cleaned up.
205 app_msgarg(struct msgs_array
*msgs
, char *cp
)
207 if(msgs
->size
>= msgs
->max
)
208 msgs
->msgs
= mh_xrealloc(msgs
->msgs
, (msgs
->max
+=MAXMSGS
)*sizeof(*msgs
->msgs
));
209 msgs
->msgs
[msgs
->size
++] = cp
;
212 /* Open a form or components file */
214 open_form(char **form
, char *def
)
218 if ((in
= open (etcpath (*form
), O_RDONLY
)) == NOTOK
)
219 adios (*form
, "unable to open form file");
221 if ((in
= open (etcpath (def
), O_RDONLY
)) == NOTOK
)
222 adios (def
, "unable to open default components file");