home *** CD-ROM | disk | FTP | other *** search
/ Programming with VisualAge for Java / IBMVJAVA.ISO / icswinnt / httpdw32.z / shexp.h < prev    next >
C/C++ Source or Header  |  1997-03-12  |  3KB  |  96 lines

  1. /*
  2.  * Copyright (c) 1994, 1995.  Netscape Communications Corporation.  All
  3.  * rights reserved.
  4.  *
  5.  * Use of this software is governed by the terms of the license agreement for
  6.  * the Netscape Communications or Netscape Comemrce Server between the
  7.  * parties.
  8.  */
  9.  
  10.  
  11. /* ------------------------------------------------------------------------ */
  12.  
  13.  
  14. /*
  15.  * shexp.h: Defines and prototypes for shell exp. match routines
  16.  *
  17.  *
  18.  * This routine will match a string with a shell expression. The expressions
  19.  * accepted are based loosely on the expressions accepted by zsh.
  20.  *
  21.  * o * matches anything
  22.  * o ? matches one character
  23.  * o \ will escape a special character
  24.  * o $ matches the end of the string
  25.  * o [abc] matches one occurence of a, b, or c. The only character that needs
  26.  *         to be escaped in this is ], all others are not special.
  27.  * o [a-z] matches any character between a and z
  28.  * o [^az] matches any character except a or z
  29.  * o ~ followed by another shell expression will remove any pattern
  30.  *     matching the shell expression from the match list
  31.  * o (foo|bar) will match either the substring foo, or the substring bar.
  32.  *             These can be shell expressions as well.
  33.  *
  34.  * The public interface to these routines is documented below.
  35.  *
  36.  * Rob McJoule
  37.  *
  38.  */
  39.  
  40. #ifndef SHEXP_H
  41. #define SHEXP_H
  42.  
  43. /*
  44.  * Requires that the macro MALLOC be set to a "safe" malloc that will
  45.  * exit if no memory is available. If not under MCC httpd, define MALLOC
  46.  * to be the real malloc and play with fire, or make your own function.
  47.  */
  48.  
  49. #include "../netsite.h"
  50.  
  51. #include <ctype.h>  /* isalnum */
  52. #include <string.h> /* strlen */
  53.  
  54.  
  55.  
  56. /* --------------------------- Public routines ---------------------------- */
  57.  
  58.  
  59. /*
  60.  * shexp_valid takes a shell expression exp as input. It returns:
  61.  *
  62.  *  NON_SXP      if exp is a standard string
  63.  *  INVALID_SXP  if exp is a shell expression, but invalid
  64.  *  VALID_SXP    if exp is a valid shell expression
  65.  */
  66.  
  67. #define NON_SXP -1
  68. #define INVALID_SXP -2
  69. #define VALID_SXP 1
  70.  
  71. int shexp_valid(char *exp);
  72.  
  73. /*
  74.  * shexp_match
  75.  *
  76.  * Takes a prevalidated shell expression exp, and a string str.
  77.  *
  78.  * Returns 0 on match and 1 on non-match.
  79.  */
  80.  
  81. int shexp_match(char *str, char *exp);
  82.  
  83.  
  84. /*
  85.  * shexp_cmp
  86.  *
  87.  * Same as above, but validates the exp first. 0 on match, 1 on non-match,
  88.  * -1 on invalid exp. shexp_casecmp does the same thing but is case
  89.  * insensitive.
  90.  */
  91.  
  92. int shexp_cmp(char *str, char *exp);
  93. int shexp_casecmp(char *str, char *exp);
  94.  
  95. #endif
  96.