123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516 |
- /*!
- * \file strings.c
- *
- * \brief GIS Library - string/chring movement functions
- *
- * \todo merge interesting functions from ../datetime/scan.c here
- *
- * (C) 1999-2008 by the GRASS Development Team
- *
- * This program is free software under the GNU General Public
- * License (>=v2). Read the file COPYING that comes with GRASS
- * for details.
- *
- * \author Dave Gerdes (USACERL), Michael Shapiro (USACERL), Amit
- * Parghi (USACERL), Bernhard Reiter (Intevation GmbH, Germany) and
- * many others
- */
- #include <string.h>
- #include <stdlib.h>
- #include <ctype.h>
- #include <sys/types.h>
- #include <grass/gis.h>
- #ifndef NULL
- #define NULL 0
- #endif
- static char *G_strend(const char *S)
- {
- while (*S)
- S++;
- return (char *)S;
- }
- /*!
- * \brief Copies characters from the string F into the string T.
- *
- * This function has undefined results if the strings overlap.
- *
- * \param[out] T target string
- * \param[in] F source string
- *
- * \return pointer to T
- */
- char *G_strcpy(char *T, const char *F)
- {
- char *d = T;
- while ((*d++ = *F++)) ;
- return (T);
- }
- /*!
- * \brief Copies characters from the string F into the string T.
- *
- * Copies just the first n characters from the string F. At the end
- * the null terminator is written into the string T.
- *
- * \param[out] T target string
- * \param[in] F source string
- * \param[in] n number of characters to copy
- *
- * \return T value
- */
- char *G_chrcpy(char *T, const char *F, int n)
- {
- char *d = T;
- while (n--)
- *d++ = *F++;
- *d = '\0';
- return (T);
- }
- /*!
- * \brief This function is similar to G_chrcpy() but always copies at least
- * n characters into the string T.
- *
- * If the length of F is more than n, then copies just the first n
- * characters. At the end the null terminator is written into the
- * string T.
- *
- * \param[out] T target string
- * \param[in] F source string
- * \param[in] n number of characters to copy
- *
- * \return T value
- */
- char *G_strncpy(char *T, const char *F, int n)
- {
- char *d = T;
- while (n-- && *F)
- *d++ = *F++;
- *d = '\0';
- return (T);
- }
- /*!
- * \brief Copies characters from the string F (not including the
- * terminating null character) into the string T.
- *
- * \param[out] T target string
- * \param[in] F source string
- *
- * \return T value
- */
- char *G_strmov(char *T, const char *F)
- {
- char *d = T;
- while (*F)
- *d++ = *F++;
- return (T);
- }
- /*!
- * \brief This copies characters from the string F (exactly n
- * characters) into the string T.
- *
- * The terminating null character is not explicitly written into the
- * string T.
- *
- * \param[out] T target string
- * \param[in] F source string
- * \param[in] n number of characters to copy
- *
- * \return T value
- */
- char *G_chrmov(char *T, const char *F, int n)
- {
- char *d = T;
- while (n--)
- *d++ = *F++;
- return (T);
- }
- /*!
- * \brief This copies characters from the string F into the string T.
- *
- * This function is similar to G_strcpy(), except that the
- * characters from F are concatenated or appended to the end of
- * T, instead of overwriting it. That is, the first character from
- * F overwrites the null character marking the end of T.
- *
- * \param[out] T target string
- * \param[in] F source string
- *
- * \return T value
- */
- char *G_strcat(char *T, const char *F)
- {
- G_strcpy(G_strend(T), F);
- return (T);
- }
- /*!
- * \brief This function is like G_strcat() except that not more than n
- * characters from F are appended to the end of T.
- *
- * This function is similar to G_strcpy(), except that the
- * characters from F are concatenated or appended to the end of
- * T, instead of overwriting it. That is, the first character from
- * F overwrites the null character marking the end of T.
- *
- * \param[out] T target string
- * \param[in] F source string
- * \param[in] n number of character to copy
- *
- * \return T value
- */
- char *G_chrcat(char *T, const char *F, int n)
- {
- G_chrcpy(G_strend(T), F, n);
- return (T);
- }
- /*!
- * \brief String compare ignoring case (upper or lower)
- *
- * Returning a value that has the same sign as the difference between
- * the first differing pair of characters
- *
- * \param[in] x first string to compare
- * \param[in] y second string to compare
- *
- * \return 0 the two strings are equal
- * \return -1, 1
- */
- int G_strcasecmp(const char *x, const char *y)
- {
- int xx, yy;
- if (!x)
- return y ? -1 : 0;
- if (!y)
- return x ? 1 : 0;
- while (*x && *y) {
- xx = *x++;
- yy = *y++;
- if (xx >= 'A' && xx <= 'Z')
- xx = xx + 'a' - 'A';
- if (yy >= 'A' && yy <= 'Z')
- yy = yy + 'a' - 'A';
- if (xx < yy)
- return -1;
- if (xx > yy)
- return 1;
- }
- if (*x)
- return 1;
- if (*y)
- return -1;
- return 0;
- }
- /*!
- * \brief Finds the first occurrence of the character C in the
- * null-terminated string beginning at mainString
- *
- * \param[in] mainString string where to find sub-string
- * \param[in] subString sub-string
- *
- * \return a pointer to the first occurrence of subString in
- * mainString
- * \return NULL if no occurrences are found
- */
- char *G_strstr(const char *mainString, const char *subString)
- {
- const char *p;
- const char *q;
- int length;
- p = subString;
- q = mainString;
- length = strlen(subString);
- do {
- while (*q != '\0' && *q != *p) { /* match 1st subString char */
- q++;
- }
- } while (*q != '\0' && strncmp(p, q, length) != 0 && q++);
- /* Short-circuit evaluation is your friend */
- if (*q == '\0') { /* ran off end of mainString */
- return NULL;
- }
- else {
- return (char *)q;
- }
- }
- /*!
- * \brief Copies the null-terminated string into a newly
- * allocated string. The string is allocated using G_malloc().
- *
- * \param[in] string the string to duplicate
- *
- * \return pointer to a string that is a duplicate of the string
- * given to G_strdup().
- * \return NULL if unable to allocate the required space
- */
- char *G_strdup(const char *string)
- {
- char *p;
- p = G_malloc(strlen(string) + 1);
- if (p != NULL) {
- strcpy(p, string);
- }
- return p;
- }
- /*!
- * \brief Replace all occurencies of character in string bug with new
- *
- * \param[in,out] bug base string
- * \param[in] character character to replace
- * \param[in] new new character
- *
- * \return bug string
- */
- char *G_strchg(char *bug, char character, char new)
- {
- char *help = bug;
- while (*help) {
- if (*help == character)
- *help = new;
- help++;
- }
- return bug;
- }
- /*!
- * \brief Replace all occurencies of old_str in buffer with new_str
- *
- * Code example:
- * \code
- * char *name;
- * name = G_str_replace ( inbuf, ".exe", "" );
- * ...
- * G_free (name);
- * \endcode
- *
- * \param[in,out] buffer main string
- * \param[in] old_str string to replace
- * \param[in] new_str new string
- *
- * \return the newly allocated string, input buffer is unchanged
- */
- char *G_str_replace(char *buffer, const char *old_str, const char *new_str)
- {
- char *B, *R;
- const char *N;
- char *replace;
- int count, len;
- /* Make sure old_str and new_str are not NULL */
- if (old_str == NULL || new_str == NULL)
- return G_strdup(buffer);
- /* Make sure buffer is not NULL */
- if (buffer == NULL)
- return NULL;
- /* Make sure old_str occurs */
- B = strstr(buffer, old_str);
- if (B == NULL)
- /* return NULL; */
- return G_strdup(buffer);
- if (strlen(new_str) > strlen(old_str)) {
- /* Count occurences of old_str */
- count = 0;
- len = strlen(old_str);
- B = buffer;
- while (B != NULL && *B != '\0') {
- B = G_strstr(B, old_str);
- if (B != NULL) {
- B += len;
- count++;
- }
- }
- len = count * (strlen(new_str) - strlen(old_str))
- + strlen(buffer);
- }
- else
- len = strlen(buffer);
- /* Allocate new replacement */
- replace = G_malloc(len + 1);
- if (replace == NULL)
- return NULL;
- /* Replace old_str with new_str */
- B = buffer;
- R = replace;
- len = strlen(old_str);
- while (*B != '\0') {
- if (*B == old_str[0] && strncmp(B, old_str, len) == 0) {
- N = new_str;
- while (*N != '\0')
- *R++ = *N++;
- B += len;
- }
- else {
- *R++ = *B++;
- }
- }
- *R = '\0';
- return replace;
- }
- /*!
- * \brief Removes all leading and trailing white space from string.
- *
- * \param[in,out] buf buffer to be worked on
- *
- * \return 0
- */
- int G_strip(char *buf)
- {
- register char *a, *b;
- /* remove leading white space */
- for (a = b = buf; *a == ' ' || *a == '\t'; a++) ;
- if (a != b)
- while ((*b++ = *a++)) ;
- /* remove trailing white space */
- for (a = buf; *a; a++) ;
- if (a != buf) {
- for (a--; *a == ' ' || *a == '\t'; a--) ;
- a++;
- *a = 0;
- }
- return 0;
- }
- /*!
- * \brief Chop leading and trailing white spaces:
- * \verbatim space, \f, \n, \r, \t, \v \endverbatim
- *
- * modified copy of G_squeeze(); RB March 2000 <Radim.Blazek@dhv.cz>
- *
- * \param line buffer to be worked on
- *
- * \return pointer to string
- */
- char *G_chop(char *line)
- {
- register char *f = line, *t = line;
- while (isspace(*f)) /* go to first non white-space char */
- f++;
- if (!*f) { /* no more chars in string */
- *t = '\0';
- return (line);
- }
- for (t = line; *t; t++) /* go to end */
- ;
- while (isspace(*--t)) ;
- *++t = '\0'; /* remove trailing white-spaces */
- t = line;
- while (*f) /* copy */
- *t++ = *f++;
- *t = '\0';
- return (line);
- }
- /*!
- * \brief Convert string to upper case
- *
- * \param[in,out] str pointer to string
- */
- void G_str_to_upper(char *str)
- {
- int i = 0;
- if (!str)
- return;
- while (str[i]) {
- str[i] = toupper(str[i]);
- i++;
- }
- }
- /*!
- * \brief Convert string to lower case
- *
- * \param[in,out] str pointer to string
- */
- void G_str_to_lower(char *str)
- {
- int i = 0;
- if (!str)
- return;
- while (str[i]) {
- str[i] = tolower(str[i]);
- i++;
- }
- }
- /*!
- * \brief Make string SQL compliant
- *
- * \param[in,out] str pointer to string
- *
- * \return number of changed characters
- */
- int G_str_to_sql(char *str)
- {
- int count;
- char *c;
- count = 0;
- if (!str)
- return 0;
- c = str;
- while (*c) {
- *c = toascii(*c);
- if (!(*c >= 'A' && *c <= 'Z') && !(*c >= 'a' && *c <= 'z') &&
- !(*c >= '0' && *c <= '9')) {
- *c = '_';
- count++;
- }
- c++;
- }
- c = str;
- if (!(*c >= 'A' && *c <= 'Z') && !(*c >= 'a' && *c <= 'z')) {
- *c = 'x';
- count++;
- }
- return count;
- }
|