RE.h
上传用户:weiyuanprp
上传日期:2020-05-20
资源大小:1169k
文件大小:3k
源码类别:

传真(Fax)编程

开发平台:

C/C++

  1. /* $Id: RE.h,v 1.1.1.1 2005/11/11 21:32:03 faxguy Exp $ */
  2. /*
  3.  * Copyright (c) 1994-1996 Sam Leffler
  4.  * Copyright (c) 1994-1996 Silicon Graphics, Inc.
  5.  * HylaFAX is a trademark of Silicon Graphics
  6.  *
  7.  * Permission to use, copy, modify, distribute, and sell this software and 
  8.  * its documentation for any purpose is hereby granted without fee, provided
  9.  * that (i) the above copyright notices and this permission notice appear in
  10.  * all copies of the software and related documentation, and (ii) the names of
  11.  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  12.  * publicity relating to the software without the specific, prior written
  13.  * permission of Sam Leffler and Silicon Graphics.
  14.  * 
  15.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  16.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  17.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  18.  * 
  19.  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  20.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  21.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  22.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  23.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  24.  * OF THIS SOFTWARE.
  25.  */
  26. #ifndef _RE_
  27. #define _RE_
  28. #include <sys/types.h>
  29. #include "regex.h"
  30. #include "Str.h"
  31. #include "Ptr.h"
  32. /*
  33.  * Reference-counted regular expressions;
  34.  * for use with Ptrs, Arrays, and Dicts.
  35.  */
  36. class RE : public fxObj {
  37. public:
  38.     RE(const char* pat, int length = 0 , int flags = REG_EXTENDED);
  39.     RE(const fxStr& pat, int flags = REG_EXTENDED);
  40.     RE(const RE& other, int flags = REG_EXTENDED);
  41.     ~RE();
  42.     const char* pattern() const;
  43.     bool Find(const char* text, u_int length, u_int off = 0);
  44.     bool Find(const fxStr& s, u_int off = 0);
  45.     int StartOfMatch(u_int subexp = 0) const;
  46.     int EndOfMatch(u_int subexp = 0) const;
  47.     int getErrorCode() const;
  48.     void getError(fxStr&) const;
  49. private:
  50.     int compResult; // regcomp result
  51.     int execResult; // last regexec result
  52.     fxStr _pattern; // original regex
  53.     regex_t c_pattern; // compiled regex
  54.     regmatch_t* matches; // subexpression matches
  55.     void init(int flags);
  56. };
  57. inline bool RE::Find(const fxStr& s, u_int off)
  58.     { return Find(s, s.length(), off); }
  59. inline const char* RE::pattern() const { return _pattern; }
  60. inline int RE::getErrorCode() const { return execResult; }
  61. /*
  62.  * This private REPtr definition is done to work
  63.  * around problems with certain C++ compilers not
  64.  * properly making the destructor method either inline
  65.  * or static.  We also can save some space by eliminating
  66.  * some inline functions that compilers frequently can't
  67.  * handle in-line.
  68.  */
  69. class REPtr {
  70. protected:
  71.     void destroy();
  72.     RE* p;
  73. public:
  74.     REPtr() { p = 0; }
  75.     REPtr(RE *tp) { p = tp ? (tp->inc(),tp) : 0; }
  76.     REPtr(const REPtr& other)
  77. { p = other.p ? (other.p->inc(),other.p) : 0; }
  78.     ~REPtr();
  79.     REPtr& operator=(const REPtr& other);
  80.     REPtr& operator=(RE* tp);
  81.     int compare(const REPtr *other) const
  82. { return int((char*) p - (char*) other->p); }
  83.     operator RE*() { return p; }
  84.     operator const RE*() const { return p; }
  85.     RE* operator ->() { return p; }
  86.     const RE* operator ->() const { return p; }
  87. };
  88. #endif /* _RE_ */