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

传真(Fax)编程

开发平台:

C/C++

  1. /* $Id: DialRules.h,v 1.1.1.1 2005/11/11 21:32:03 faxguy Exp $ */
  2. /*
  3.  * Copyright (c) 1990-1996 Sam Leffler
  4.  * Copyright (c) 1991-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 _DialStringRules_
  27. #define _DialStringRules_
  28. /*
  29.  * HylaFAX Dialing String Processing Rules.
  30.  *
  31.  * This file describes how to process user-specified dialing strings
  32.  * to create two items:
  33.  *
  34.  * CanonicalNumber: a unique string that is derived from all dialing
  35.  * strings to the same destination phone number.  This string is used
  36.  * by the fax server for ``naming'' the destination. 
  37.  *
  38.  * DialString: the string passed to the modem for use in dialing the
  39.  * telephone.
  40.  */
  41. #include "Str.h"
  42. class RuleArray;
  43. class REArray;
  44. class VarDict;
  45. class RulesDict;
  46. class DialStringRules {
  47. private:
  48.     fxStr filename; // source of rules
  49.     u_int lineno; // current line number during parsing
  50.     FILE* fp; // open file during parsing
  51.     VarDict* vars; // defined variables during parsing
  52.     bool verbose; // trace parsing of rules file
  53.     REArray* regex; // regular expressions
  54.     RulesDict* rules; // rules defined in the file
  55.     bool parseRules();
  56.     bool parseRuleSet(RuleArray& rules);
  57.     const char* parseToken(const char* cp, fxStr& v);
  58.     char* nextLine(char* line, int lineSize);
  59.     void subRHS(fxStr& v);
  60. protected:
  61.     virtual void parseError(const char* fmt ...);
  62.     virtual void traceParse(const char* fmt ...);
  63.     virtual void traceRules(const char* fmt ...);
  64. public:
  65.     DialStringRules(const char* filename);
  66.     virtual ~DialStringRules();
  67.     void setVerbose(bool b);
  68.     u_int getLineno() const;
  69.     const fxStr& getFilename() const;
  70.     void def(const fxStr& var, const fxStr& value);
  71.     void undef(const fxStr& var);
  72.     bool parse(bool shouldExist = true);
  73.     fxStr applyRules(const fxStr& name, const fxStr& s);
  74.     fxStr canonicalNumber(const fxStr&);
  75.     fxStr dialString(const fxStr&);
  76.     fxStr displayNumber(const fxStr&);
  77. };
  78. inline u_int DialStringRules::getLineno() const  { return lineno; }
  79. inline const fxStr& DialStringRules::getFilename() const { return filename; }
  80. #endif /* _DialStringRules_ */