home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / gnurx.zip / rx / rxspencer.h < prev    next >
C/C++ Source or Header  |  1995-12-31  |  3KB  |  115 lines

  1. /* classes: h_files */
  2.  
  3. #ifndef RXSPENCERH
  4. #define RXSPENCERH
  5. /***********************************************************
  6.  
  7. Copyright 1995 by Tom Lord
  8.  
  9.                         All Rights Reserved
  10.  
  11. Permission to use, copy, modify, and distribute this software and its 
  12. documentation for any purpose and without fee is hereby granted, 
  13. provided that the above copyright notice appear in all copies and that
  14. both that copyright notice and this permission notice appear in 
  15. supporting documentation, and that the name of the copyright holder not be
  16. used in advertising or publicity pertaining to distribution of the
  17. software without specific, written prior permission.  
  18.  
  19. Tom Lord DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  20. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  21. EVENT SHALL TOM LORD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  22. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  23. USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  24. OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  25. PERFORMANCE OF THIS SOFTWARE.
  26.  
  27. ******************************************************************/
  28.  
  29.  
  30.  
  31. #include "rxproto.h"
  32. #include "rxnode.h"
  33. #include "rxunfa.h"
  34. #include "rxanal.h"
  35.  
  36.  
  37.  
  38. typedef struct rx_registers
  39. {
  40.   regoff_t rm_so;  /* Byte offset from string's start to substring's start.  */
  41.   regoff_t rm_eo;  /* Byte offset from string's start to substring's end.  */
  42. } regmatch_t;
  43.  
  44.  
  45. typedef enum rx_answers (*rx_vmfn)
  46.      P((void * closure,
  47.     unsigned char ** burst, int * len, int * offset,
  48.     int start, int end, int need));
  49.  
  50. typedef enum rx_answers (*rx_contextfn)
  51.      P((void * closure,
  52.     int type,
  53.     int start, int end,
  54.     struct rx_registers * regs));
  55.  
  56.  
  57. struct rx_solutions
  58. {
  59.   int step;
  60.  
  61.   int cset_size;
  62.   struct rexp_node * exp;
  63.   struct rexp_node ** subexps;
  64.   struct rx_registers * regs;
  65.  
  66.   int start;
  67.   int end;
  68.  
  69.   rx_vmfn vmfn;
  70.   rx_contextfn contextfn;
  71.   void * closure;
  72.   int current_pos;
  73.  
  74.   struct rx_unfaniverse * verse;
  75.   struct rx_unfa * dfa;
  76.   struct rx_classical_system match_engine;
  77.  
  78.   int split_guess;
  79.   struct rx_solutions * left;
  80.   struct rx_solutions * right;
  81.  
  82.   int interval_x;
  83. };
  84.  
  85.  
  86. #ifdef __STDC__
  87. extern struct rx_solutions * rx_make_solutions (struct rx_registers * regs,
  88.                         struct rx_unfaniverse * verse,
  89.                         struct rexp_node * expression,
  90.                         struct rexp_node ** subexps,
  91.                         int cset_size,
  92.                         int start, int end,
  93.                         rx_vmfn vmfn, rx_contextfn contextfn,
  94.                         void * closure);
  95. extern void rx_free_solutions (struct rx_solutions * solns);
  96. extern enum rx_answers rx_next_solution (struct rx_solutions * solns);
  97.  
  98. #else /* STDC */
  99. extern struct rx_solutions * rx_make_solutions ();
  100. extern void rx_free_solutions ();
  101. extern enum rx_answers rx_next_solution ();
  102.  
  103. #endif /* STDC */
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114. #endif  /* RXSPENCERH */
  115.