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

传真(Fax)编程

开发平台:

C/C++

  1. /* $Id: SNPPServer.h,v 1.1.1.1 2005/11/11 21:32:03 faxguy Exp $ */
  2. /*
  3.  * Copyright (c) 1995-1996 Sam Leffler
  4.  * Copyright (c) 1995-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 _SNPPServer_
  27. #define _SNPPServer_
  28. #include "InetFaxServer.h"
  29. /*
  30.  * An instance of an SNPP process.
  31.  */
  32. class SNPPServer : public InetFaxServer {
  33. private:
  34.     fxStr msgFile; // file with message text
  35.     bool haveText; // client specified message text
  36.     fxStrArray msgs; // jobs pending SEND (jobids)
  37. #define S_SENDWAIT 0x10000 // in SEND waiting for jobs
  38.     fxStr pagerIDMapFile; // file with pager ID mapping info
  39.     u_int maxMsgLength; // maximum length of pager message text
  40.     u_short priMap[12]; // service level -> priority map
  41.     time_t retryMap[12]; // service level -> retrytime map
  42.     time_t killMap[12]; // service level -> killtime map
  43.     void initSNPPJob(void);
  44. protected:
  45.     virtual void initServer(void);
  46.     virtual void initDefaultJob(void);
  47.     virtual void resetState(void);
  48.     virtual void dologout(int status);
  49.     virtual void resetConfig();
  50.     void setupConfig();
  51.     virtual bool setConfigItem(const char* tag, const char* value);
  52.     int parse(void);
  53.     bool cmd(Token t);
  54.     bool site_cmd(Token t);
  55.     bool checklogin(Token);
  56.     bool SNPPTime(time_t& result);
  57.     virtual void syntaxError(const char* msg);
  58.     virtual const char* cmdToken(Token t);
  59.     virtual const char* siteToken(Token t);
  60.     void dataCmd(void);
  61.     void helpCmd(const tab* ctab, const char* s);
  62.     void holdCmd(time_t when);
  63.     void loginCmd(const char* loginID, const char* pwd = "");
  64.     void messageCmd(const char* msg);
  65.     void pagerCmd(const char* pagerID, const char* pin = NULL);
  66.     void pingCmd(const char* pagerID);
  67.     void sendCmd(void);
  68.     void serviceLevel(u_int level);
  69.     void statusCmd(void);
  70.     void subjectCmd(const char*);
  71.     bool mapPagerID(const char* pagerID,
  72. fxStr& number, fxStr& pid, fxStr& emsg);
  73. public:
  74.     SNPPServer();
  75.     SNPPServer(const char* port);
  76.     virtual ~SNPPServer();
  77.     virtual void open(void);
  78. };
  79. class SNPPSuperServer : public SuperServer {
  80. private:
  81.     fxStr port;
  82. protected:
  83.     bool startServer(void);
  84.     HylaFAXServer* newChild(void);
  85. public:
  86.     SNPPSuperServer(const char* port, int backlog = 5);
  87.     ~SNPPSuperServer();
  88. };
  89. #endif /* _SNPPServer_ */