get.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:8k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: get.c,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:55:26  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*************************************************
  10. *      Perl-Compatible Regular Expressions       *
  11. *************************************************/
  12. /*
  13. This is a library of functions to support regular expressions whose syntax
  14. and semantics are as close as possible to those of the Perl 5 language. See
  15. the file Tech.Notes for some information on the internals.
  16. Written by: Philip Hazel <ph10@cam.ac.uk>
  17.            Copyright (c) 1997-2001 University of Cambridge
  18. -----------------------------------------------------------------------------
  19. Permission is granted to anyone to use this software for any purpose on any
  20. computer system, and to redistribute it freely, subject to the following
  21. restrictions:
  22. 1. This software is distributed in the hope that it will be useful,
  23.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  24.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  25. 2. The origin of this software must not be misrepresented, either by
  26.    explicit claim or by omission.
  27. 3. Altered versions must be plainly marked as such, and must not be
  28.    misrepresented as being the original software.
  29. 4. If PCRE is embedded in any software that is released under the GNU
  30.    General Purpose Licence (GPL), then the terms of that licence shall
  31.    supersede any condition above with which it is incompatible.
  32. -----------------------------------------------------------------------------
  33. */
  34. /* This module contains some convenience functions for extracting substrings
  35. from the subject string after a regex match has succeeded. The original idea
  36. for these functions came from Scott Wimer <scottw@cgibuilder.com>. */
  37. /* Include the internals header, which itself includes Standard C headers plus
  38. the external pcre header. */
  39. #include "pcre_internal.h"
  40. /*************************************************
  41. *      Copy captured string to given buffer      *
  42. *************************************************/
  43. /* This function copies a single captured substring into a given buffer.
  44. Note that we use memcpy() rather than strncpy() in case there are binary zeros
  45. in the string.
  46. Arguments:
  47.   subject        the subject string that was matched
  48.   ovector        pointer to the offsets table
  49.   stringcount    the number of substrings that were captured
  50.                    (i.e. the yield of the pcre_exec call, unless
  51.                    that was zero, in which case it should be 1/3
  52.                    of the offset table size)
  53.   stringnumber   the number of the required substring
  54.   buffer         where to put the substring
  55.   size           the size of the buffer
  56. Returns:         if successful:
  57.                    the length of the copied string, not including the zero
  58.                    that is put on the end; can be zero
  59.                  if not successful:
  60.                    PCRE_ERROR_NOMEMORY (-6) buffer too small
  61.                    PCRE_ERROR_NOSUBSTRING (-7) no such captured substring
  62. */
  63. int
  64. pcre_copy_substring(const char *subject, int *ovector, int stringcount,
  65.                     int stringnumber, char *buffer, int size)
  66. {
  67.     int yield;
  68.     if (stringnumber < 0 || stringnumber >= stringcount)
  69.         return PCRE_ERROR_NOSUBSTRING;
  70.     stringnumber *= 2;
  71.     yield = ovector[stringnumber+1] - ovector[stringnumber];
  72.     if (size < yield + 1) return PCRE_ERROR_NOMEMORY;
  73.     memcpy(buffer, subject + ovector[stringnumber], yield);
  74.     buffer[yield] = 0;
  75.     return yield;
  76. }
  77. /*************************************************
  78. *      Copy all captured strings to new store    *
  79. *************************************************/
  80. /* This function gets one chunk of store and builds a list of pointers and all
  81. of the captured substrings in it. A NULL pointer is put on the end of the list.
  82. Arguments:
  83.   subject        the subject string that was matched
  84.   ovector        pointer to the offsets table
  85.   stringcount    the number of substrings that were captured
  86.                    (i.e. the yield of the pcre_exec call, unless
  87.                    that was zero, in which case it should be 1/3
  88.                    of the offset table size)
  89.   listptr        set to point to the list of pointers
  90. Returns:         if successful: 0
  91.                  if not successful:
  92.                    PCRE_ERROR_NOMEMORY (-6) failed to get store
  93. */
  94. int
  95. pcre_get_substring_list(const char *subject, int *ovector, int stringcount,
  96.                         const char ***listptr)
  97. {
  98.     int i;
  99.     int size = sizeof(char *);
  100.     int double_count = stringcount * 2;
  101.     char **stringlist;
  102.     char *p;
  103.     for (i = 0; i < double_count; i += 2)
  104.         size += sizeof(char *) + ovector[i+1] - ovector[i] + 1;
  105.     stringlist = (char **)(pcre_malloc)(size);
  106.     if (stringlist == NULL) return PCRE_ERROR_NOMEMORY;
  107.     *listptr = (const char **)stringlist;
  108.     p = (char *)(stringlist + stringcount + 1);
  109.     for (i = 0; i < double_count; i += 2)
  110.         {
  111.             int len = ovector[i+1] - ovector[i];
  112.             memcpy(p, subject + ovector[i], len);
  113.             *stringlist++ = p;
  114.             p += len;
  115.             *p++ = 0;
  116.         }
  117.     *stringlist = NULL;
  118.     return 0;
  119. }
  120. /*************************************************
  121. *   Free store obtained by get_substring_list    *
  122. *************************************************/
  123. /* This function exists for the benefit of people calling PCRE from non-C
  124. programs that can call its functions, but not free() or (pcre_free)() directly.
  125. Argument:   the result of a previous pcre_get_substring_list()
  126. Returns:    nothing
  127. */
  128. void
  129. pcre_free_substring_list(const char **pointer)
  130. {
  131.     (pcre_free)((void *)pointer);
  132. }
  133. /*************************************************
  134. *      Copy captured string to new store         *
  135. *************************************************/
  136. /* This function copies a single captured substring into a piece of new
  137. store
  138. Arguments:
  139.   subject        the subject string that was matched
  140.   ovector        pointer to the offsets table
  141.   stringcount    the number of substrings that were captured
  142.                    (i.e. the yield of the pcre_exec call, unless
  143.                    that was zero, in which case it should be 1/3
  144.                    of the offset table size)
  145.   stringnumber   the number of the required substring
  146.   stringptr      where to put a pointer to the substring
  147. Returns:         if successful:
  148.                    the length of the string, not including the zero that
  149.                    is put on the end; can be zero
  150.                  if not successful:
  151.                    PCRE_ERROR_NOMEMORY (-6) failed to get store
  152.                    PCRE_ERROR_NOSUBSTRING (-7) substring not present
  153. */
  154. int
  155. pcre_get_substring(const char *subject, int *ovector, int stringcount,
  156.                    int stringnumber, const char **stringptr)
  157. {
  158.     int yield;
  159.     char *substring;
  160.     if (stringnumber < 0 || stringnumber >= stringcount)
  161.         return PCRE_ERROR_NOSUBSTRING;
  162.     stringnumber *= 2;
  163.     yield = ovector[stringnumber+1] - ovector[stringnumber];
  164.     substring = (char *)(pcre_malloc)(yield + 1);
  165.     if (substring == NULL) return PCRE_ERROR_NOMEMORY;
  166.     memcpy(substring, subject + ovector[stringnumber], yield);
  167.     substring[yield] = 0;
  168.     *stringptr = substring;
  169.     return yield;
  170. }
  171. /*************************************************
  172. *       Free store obtained by get_substring     *
  173. *************************************************/
  174. /* This function exists for the benefit of people calling PCRE from non-C
  175. programs that can call its functions, but not free() or (pcre_free)() directly.
  176. Argument:   the result of a previous pcre_get_substring()
  177. Returns:    nothing
  178. */
  179. void
  180. pcre_free_substring(const char *pointer)
  181. {
  182.     (pcre_free)((void *)pointer);
  183. }
  184. /* End of get.c */