Comprehensive hwinfo structure concurrency fix.
[gromacs.git] / src / gmxlib / string2.c
blob1b02ff798bed23dd0acb5f2685e83287b345880f
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team,
6 * check out http://www.gromacs.org for more information.
7 * Copyright (c) 2012,2013, by the GROMACS development team, led by
8 * David van der Spoel, Berk Hess, Erik Lindahl, and including many
9 * others, as listed in the AUTHORS file in the top-level source
10 * directory and at http://www.gromacs.org.
12 * GROMACS is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public License
14 * as published by the Free Software Foundation; either version 2.1
15 * of the License, or (at your option) any later version.
17 * GROMACS is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with GROMACS; if not, see
24 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
25 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 * If you want to redistribute modifications to GROMACS, please
28 * consider that scientific software is very special. Version
29 * control is crucial - bugs must be traceable. We will be happy to
30 * consider code for inclusion in the official distribution, but
31 * derived work must not be called official GROMACS. Details are found
32 * in the README & COPYING files - if they are missing, get the
33 * official version at http://www.gromacs.org.
35 * To help us fund GROMACS development, we humbly ask that you cite
36 * the research papers on the package. Check out http://www.gromacs.org.
38 /* This file is completely threadsafe - keep it that way! */
39 #ifdef HAVE_CONFIG_H
40 #include <config.h>
41 #endif
42 #include "visibility.h"
44 #ifdef GMX_CRAY_XT3
45 #undef HAVE_PWD_H
46 #endif
48 #include <stdio.h>
49 #include <ctype.h>
50 #include <stdlib.h>
51 #include <errno.h>
52 #include <sys/types.h>
53 #include <time.h>
55 #ifdef HAVE_SYS_TIME_H
56 #include <sys/time.h>
57 #endif
60 #ifdef HAVE_PWD_H
61 #include <pwd.h>
62 #endif
63 #include <time.h>
64 #include <assert.h>
66 #include "typedefs.h"
67 #include "smalloc.h"
68 #include "gmx_fatal.h"
69 #include "macros.h"
70 #include "string2.h"
71 #include "futil.h"
73 int continuing(char *s)
74 /* strip trailing spaces and if s ends with a CONTINUE remove that too.
75 * returns TRUE if s ends with a CONTINUE, FALSE otherwise.
78 int sl;
79 assert(s);
81 rtrim(s);
82 sl = strlen(s);
83 if ((sl > 0) && (s[sl-1] == CONTINUE))
85 s[sl-1] = 0;
86 return TRUE;
88 else
90 return FALSE;
96 char *fgets2(char *line, int n, FILE *stream)
97 /* This routine reads a string from stream of max length n
98 * and zero terminated, without newlines
99 * line should be long enough (>= n)
102 char *c;
103 if (fgets(line, n, stream) == NULL)
105 return NULL;
107 if ((c = strchr(line, '\n')) != NULL)
109 *c = '\0';
111 else
113 /* A line not ending in a newline can only occur at the end of a file,
114 * or because of n being too small.
115 * Since both cases occur very infrequently, we can check for EOF.
117 if (!gmx_eof(stream))
119 gmx_fatal(FARGS, "An input file contains a line longer than %d characters, while the buffer passed to fgets2 has size %d. The line starts with: '%20.20s'", n, n, line);
122 if ((c = strchr(line, '\r')) != NULL)
124 *c = '\0';
127 return line;
130 void strip_comment (char *line)
132 char *c;
134 if (!line)
136 return;
139 /* search for a comment mark and replace it by a zero */
140 if ((c = strchr(line, COMMENTSIGN)) != NULL)
142 (*c) = 0;
146 void upstring (char *str)
148 int i;
150 for (i = 0; (i < (int)strlen(str)); i++)
152 str[i] = toupper(str[i]);
156 void ltrim (char *str)
158 char *tr;
159 int i, c;
161 if (NULL == str)
163 return;
166 c = 0;
167 while (('\0' != str[c]) && isspace(str[c]))
169 c++;
171 if (c > 0)
173 for (i = c; ('\0' != str[i]); i++)
175 str[i-c] = str[i];
177 str[i-c] = '\0';
181 void rtrim (char *str)
183 int nul;
185 if (NULL == str)
187 return;
190 nul = strlen(str)-1;
191 while ((nul > 0) && ((str[nul] == ' ') || (str[nul] == '\t')) )
193 str[nul] = '\0';
194 nul--;
198 void trim (char *str)
200 ltrim (str);
201 rtrim (str);
204 GMX_LIBGMX_EXPORT
205 char *
206 gmx_ctime_r(const time_t *clock, char *buf, int n)
208 char tmpbuf[STRLEN];
210 #ifdef GMX_NATIVE_WINDOWS
211 /* Windows */
212 ctime_s( tmpbuf, STRLEN, clock );
213 #elif (defined(__sun))
214 /*Solaris*/
215 ctime_r(clock, tmpbuf, n);
216 #else
217 ctime_r(clock, tmpbuf);
218 #endif
219 strncpy(buf, tmpbuf, n-1);
220 buf[n-1] = '\0';
222 return buf;
225 void nice_header (FILE *out, const char *fn)
227 const char *unk = "onbekend";
228 time_t clock;
229 const char *user = unk;
230 int gh;
231 uid_t uid;
232 char buf[256] = "";
233 char timebuf[STRLEN];
234 #ifdef HAVE_PWD_H
235 struct passwd *pw;
236 #endif
238 /* Print a nice header above the file */
239 time(&clock);
240 fprintf (out, "%c\n", COMMENTSIGN);
241 fprintf (out, "%c\tFile '%s' was generated\n", COMMENTSIGN, fn ? fn : unk);
243 #ifdef HAVE_PWD_H
244 uid = getuid();
245 pw = getpwuid(uid);
246 gh = gethostname(buf, 255);
247 user = pw->pw_name;
248 #else
249 uid = 0;
250 gh = -1;
251 #endif
253 gmx_ctime_r(&clock, timebuf, STRLEN);
254 fprintf (out, "%c\tBy user: %s (%d)\n", COMMENTSIGN,
255 user ? user : unk, (int) uid);
256 fprintf(out, "%c\tOn host: %s\n", COMMENTSIGN, (gh == 0) ? buf : unk);
258 fprintf (out, "%c\tAt date: %s", COMMENTSIGN, timebuf);
259 fprintf (out, "%c\n", COMMENTSIGN);
263 int gmx_strcasecmp_min(const char *str1, const char *str2)
265 char ch1, ch2;
271 ch1 = toupper(*(str1++));
273 while ((ch1 == '-') || (ch1 == '_'));
276 ch2 = toupper(*(str2++));
278 while ((ch2 == '-') || (ch2 == '_'));
280 if (ch1 != ch2)
282 return (ch1-ch2);
285 while (ch1);
286 return 0;
289 int gmx_strncasecmp_min(const char *str1, const char *str2, int n)
291 char ch1, ch2;
292 char *stri1, *stri2;
294 stri1 = (char *)str1;
295 stri2 = (char *)str2;
300 ch1 = toupper(*(str1++));
302 while ((ch1 == '-') || (ch1 == '_'));
305 ch2 = toupper(*(str2++));
307 while ((ch2 == '-') || (ch2 == '_'));
309 if (ch1 != ch2)
311 return (ch1-ch2);
314 while (ch1 && (str1-stri1 < n) && (str2-stri2 < n));
315 return 0;
318 int gmx_strcasecmp(const char *str1, const char *str2)
320 char ch1, ch2;
324 ch1 = toupper(*(str1++));
325 ch2 = toupper(*(str2++));
326 if (ch1 != ch2)
328 return (ch1-ch2);
331 while (ch1);
332 return 0;
335 int gmx_strncasecmp(const char *str1, const char *str2, int n)
337 char ch1, ch2;
339 if (n == 0)
341 return 0;
346 ch1 = toupper(*(str1++));
347 ch2 = toupper(*(str2++));
348 if (ch1 != ch2)
350 return (ch1-ch2);
352 n--;
354 while (ch1 && n);
355 return 0;
358 char *gmx_strdup(const char *src)
360 char *dest;
362 snew(dest, strlen(src)+1);
363 strcpy(dest, src);
365 return dest;
368 char *
369 gmx_strndup(const char *src, int n)
371 int len;
372 char *dest;
374 len = strlen(src);
375 if (len > n)
377 len = n;
379 snew(dest, len+1);
380 strncpy(dest, src, len);
381 dest[len] = 0;
382 return dest;
385 /* Magic hash init number for Dan J. Bernsteins algorithm.
386 * Do NOT use any other value unless you really know what you are doing.
388 const unsigned int
389 gmx_string_hash_init = 5381;
392 unsigned int
393 gmx_string_hash_func(const char *s, unsigned int hash_init)
395 int c;
397 while ((c = toupper(*s++)) != '\0')
399 if (isalnum(c))
401 hash_init = ((hash_init << 5) + hash_init) ^ c; /* (hash * 33) xor c */
404 return hash_init;
408 * \param[in] pattern Pattern to match against.
409 * \param[in] str String to match.
410 * \returns 0 on match, GMX_NO_WCMATCH if there is no match.
412 * Matches \p str against \p pattern, which may contain * and ? wildcards.
413 * All other characters are matched literally.
414 * Currently, it is not possible to match literal * or ?.
417 gmx_wcmatch(const char *pattern, const char *str)
419 while (*pattern)
421 if (*pattern == '*')
423 /* Skip multiple wildcards in a sequence */
424 while (*pattern == '*' || *pattern == '?')
426 ++pattern;
427 /* For ?, we need to check that there are characters left
428 * in str. */
429 if (*pattern == '?')
431 if (*str == 0)
433 return GMX_NO_WCMATCH;
435 else
437 ++str;
441 /* If the pattern ends after the star, we have a match */
442 if (*pattern == 0)
444 return 0;
446 /* Match the rest against each possible suffix of str */
447 while (*str)
449 /* Only do the recursive call if the first character
450 * matches. We don't have to worry about wildcards here,
451 * since we have processed them above. */
452 if (*pattern == *str)
454 int rc;
455 /* Match the suffix, and return if a match or an error */
456 rc = gmx_wcmatch(pattern, str);
457 if (rc != GMX_NO_WCMATCH)
459 return rc;
462 ++str;
464 /* If no suffix of str matches, we don't have a match */
465 return GMX_NO_WCMATCH;
467 else if ((*pattern == '?' && *str != 0) || *pattern == *str)
469 ++str;
471 else
473 return GMX_NO_WCMATCH;
475 ++pattern;
477 /* When the pattern runs out, we have a match if the string has ended. */
478 return (*str == 0) ? 0 : GMX_NO_WCMATCH;
481 char *wrap_lines(const char *buf, int line_width, int indent, gmx_bool bIndentFirst)
483 char *b2;
484 int i, i0, i2, j, b2len, lspace = 0, l2space = 0;
485 gmx_bool bFirst, bFitsOnLine;
487 /* characters are copied from buf to b2 with possible spaces changed
488 * into newlines and extra space added for indentation.
489 * i indexes buf (source buffer) and i2 indexes b2 (destination buffer)
490 * i0 points to the beginning of the current line (in buf, source)
491 * lspace and l2space point to the last space on the current line
492 * bFirst is set to prevent indentation of first line
493 * bFitsOnLine says if the first space occurred before line_width, if
494 * that is not the case, we have a word longer than line_width which
495 * will also not fit on the next line, so we might as well keep it on
496 * the current line (where it also won't fit, but looks better)
499 b2 = NULL;
500 b2len = strlen(buf)+1+indent;
501 snew(b2, b2len);
502 i0 = i2 = 0;
503 if (bIndentFirst)
505 for (i2 = 0; (i2 < indent); i2++)
507 b2[i2] = ' ';
510 bFirst = TRUE;
513 l2space = -1;
514 /* find the last space before end of line */
515 for (i = i0; ((i-i0 < line_width) || (l2space == -1)) && (buf[i]); i++)
517 b2[i2++] = buf[i];
518 /* remember the position of a space */
519 if (buf[i] == ' ')
521 lspace = i;
522 l2space = i2-1;
524 /* if we have a newline before the line is full, reset counters */
525 if (buf[i] == '\n' && buf[i+1])
527 i0 = i+1;
528 b2len += indent;
529 srenew(b2, b2len);
530 /* add indentation after the newline */
531 for (j = 0; (j < indent); j++)
533 b2[i2++] = ' ';
537 /* If we are at the last newline, copy it */
538 if (buf[i] == '\n' && !buf[i+1])
540 b2[i2++] = buf[i++];
542 /* if we're not at the end of the string */
543 if (buf[i])
545 /* check if one word does not fit on the line */
546 bFitsOnLine = (i-i0 <= line_width);
547 /* reset line counters to just after the space */
548 i0 = lspace+1;
549 i2 = l2space+1;
550 /* if the words fit on the line, and we're beyond the indentation part */
551 if ( (bFitsOnLine) && (l2space >= indent) )
553 /* start a new line */
554 b2[l2space] = '\n';
555 /* and add indentation */
556 if (indent)
558 if (bFirst)
560 line_width -= indent;
561 bFirst = FALSE;
563 b2len += indent;
564 srenew(b2, b2len);
565 for (j = 0; (j < indent); j++)
567 b2[i2++] = ' ';
569 /* no extra spaces after indent; */
570 while (buf[i0] == ' ')
572 i0++;
578 while (buf[i]);
579 b2[i2] = '\0';
581 return b2;
584 char **split(char sep, char *str)
586 char **ptr = NULL;
587 int n, nn, nptr = 0;
589 if (str == NULL)
591 return NULL;
593 nn = strlen(str);
594 for (n = 0; (n < nn); n++)
596 if (str[n] == sep)
598 nptr++;
601 snew(ptr, nptr+2);
602 nptr = 0;
603 while (*str != '\0')
605 while ((*str != '\0') && (*str == sep))
607 str++;
609 if (*str != '\0')
611 snew(ptr[nptr], 1+strlen(str));
612 n = 0;
613 while ((*str != '\0') && (*str != sep))
615 ptr[nptr][n] = *str;
616 str++;
617 n++;
619 ptr[nptr][n] = '\0';
620 nptr++;
623 ptr[nptr] = NULL;
625 return ptr;
629 gmx_large_int_t
630 str_to_large_int_t(const char *str, char **endptr)
632 int sign = 1;
633 gmx_large_int_t val = 0;
634 char ch;
635 const char *p;
637 p = str;
638 if (p == NULL)
640 *endptr = NULL;
641 return 0;
644 /* Strip off initial white space */
645 while (isspace(*p))
647 p++;
649 /* Conform to ISO C99 - return original pointer if string does not contain a number */
650 if (*str == '\0')
652 *endptr = (char *)str;
655 if (*p == '-')
657 p++;
658 sign *= -1;
661 while ( ((ch = *p) != '\0') && isdigit(ch) )
663 /* Important to add sign here, so we dont overflow in final multiplication */
664 ch = (ch-'0')*sign;
665 val = val*10 + ch;
666 if (ch != val%10)
668 /* Some sort of overflow has occured, set endptr to original string */
669 *endptr = (char *)str;
670 errno = ERANGE;
671 return(0);
673 p++;
676 *endptr = (char *)p;
678 return val;
681 char *gmx_strsep(char **stringp, const char *delim)
683 char *ret;
684 int len = strlen(delim);
685 int i, j = 0;
686 int found = 0;
688 if (!*stringp)
690 return NULL;
692 ret = *stringp;
695 if ( (*stringp)[j] == '\0')
697 found = 1;
698 *stringp = NULL;
699 break;
701 for (i = 0; i < len; i++)
703 if ( (*stringp)[j] == delim[i])
705 (*stringp)[j] = '\0';
706 *stringp = *stringp+j+1;
707 found = 1;
708 break;
711 j++;
713 while (!found);
715 return ret;