home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277233_apr_strmatch.h < prev    next >
C/C++ Source or Header  |  2004-02-13  |  3KB  |  81 lines

  1. /* Copyright 2002-2004 The Apache Software Foundation
  2.  *
  3.  * Licensed under the Apache License, Version 2.0 (the "License");
  4.  * you may not use this file except in compliance with the License.
  5.  * You may obtain a copy of the License at
  6.  *
  7.  *     http://www.apache.org/licenses/LICENSE-2.0
  8.  *
  9.  * Unless required by applicable law or agreed to in writing, software
  10.  * distributed under the License is distributed on an "AS IS" BASIS,
  11.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.  * See the License for the specific language governing permissions and
  13.  * limitations under the License.
  14.  */
  15.  
  16. #ifndef APR_STRMATCH_H
  17. #define APR_STRMATCH_H
  18. /**
  19.  * @file apr_strmatch.h
  20.  * @brief APR-UTIL string matching routines
  21.  */
  22.  
  23. #include "apu.h"
  24. #include "apr_pools.h"
  25.  
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29.  
  30. /**
  31.  * @defgroup APR_Util_StrMatch String matching routines
  32.  * @ingroup APR_Util
  33.  * @{
  34.  */
  35.  
  36. /** @see apr_strmatch_pattern */
  37. typedef struct apr_strmatch_pattern apr_strmatch_pattern;
  38.  
  39. /**
  40.  * Precompiled search pattern
  41.  */
  42. struct apr_strmatch_pattern {
  43.     /** Function called to compare */
  44.     const char *(*compare)(const apr_strmatch_pattern *this_pattern,
  45.                            const char *s, apr_size_t slen);
  46.     const char *pattern;    /**< Current pattern */
  47.     apr_size_t length;      /**< Current length */
  48.     void *context;          /**< hook to add precomputed metadata */
  49. };
  50.  
  51. #if defined(DOXYGEN)
  52. /**
  53.  * Search for a precompiled pattern within a string
  54.  * @param pattern The pattern
  55.  * @param s The string in which to search for the pattern
  56.  * @param slen The length of s (excluding null terminator)
  57.  * @return A pointer to the first instance of the pattern in s, or
  58.  *         NULL if not found
  59.  */
  60. APU_DECLARE(const char *) apr_strmatch(const apr_strmatch_pattern *pattern,
  61.                                        const char *s, apr_size_t slen);
  62. #else
  63. #define apr_strmatch(pattern, s, slen) (*((pattern)->compare))((pattern), (s), (slen))
  64. #endif
  65.  
  66. /**
  67.  * Precompile a pattern for matching using the Boyer-Moore-Horspool algorithm
  68.  * @param p The pool from which to allocate the pattern
  69.  * @param s The pattern string
  70.  * @param case_sensitive Whether the matching should be case-sensitive
  71.  * @return a pointer to the compiled pattern, or NULL if compilation fails
  72.  */
  73. APU_DECLARE(const apr_strmatch_pattern *) apr_strmatch_precompile(apr_pool_t *p, const char *s, int case_sensitive);
  74.  
  75. /** @} */
  76. #ifdef __cplusplus
  77. }
  78. #endif
  79.  
  80. #endif    /* !APR_STRMATCH_H */
  81.