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

传真(Fax)编程

开发平台:

C/C++

  1. /* $Id: faxApp.h,v 1.6 2007/03/09 22:25:54 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 _faxApp_
  27. #define _faxApp_
  28. /*
  29.  * HylaFAX Application Support.
  30.  */
  31. #include "Str.h"
  32. #include "SystemLog.h"
  33. #include "Dispatcher.h"
  34. #include "Sequence.h"
  35. #include <stdarg.h>
  36. class faxApp : public SystemLog {
  37. private:
  38.     static fxStr getopts; // main arguments
  39.     bool running; // server running
  40.     int faxqfifo; // cached descriptor to faxq
  41. protected:
  42.     int openFIFO(const char* fifoName, int mode,
  43.     bool okToExist = false);
  44. public:
  45.     faxApp();
  46.     virtual ~faxApp();
  47.     static const fxStr fifoName;
  48.     static void setupPermissions(void);
  49.     static void setRealIDs();
  50.     static void detachFromTTY(void);
  51.     static void fatal(const char* fmt ...);
  52.     virtual void initialize(int argc, char** argv);
  53.     virtual void open(void);
  54.     virtual void close(void);
  55.     bool isRunning(void) const;
  56.     virtual void openFIFOs(void);
  57.     virtual void closeFIFOs(void);
  58.     virtual int FIFOInput(int);
  59.     virtual void FIFOMessage(const char* mesage);
  60.     bool sendModemStatus(const char* devid, const char* fmt ...);
  61.     bool sendJobStatus(const char* jobid, const char* fmt ...);
  62.     bool sendRecvStatus(const char* devid, const char* fmt ...);
  63.     bool sendQueuer(const char* fmt ...);
  64.     bool vsendQueuer(const char* fmt, va_list ap);
  65.     static void setOpts(const char*);
  66.     static const fxStr& getOpts(void);
  67.     static fxStr idToDev(const fxStr& id);
  68.     static fxStr devToID(const fxStr& dev);
  69.     static const fxStr quote;
  70.     static const fxStr enquote;
  71.     fxStr  quoted(const fxStr& s);
  72.     static bool runCmd(const char* cmd, bool changeIDs = false, IOHandler* waiter = NULL);
  73. };
  74. inline bool faxApp::isRunning(void) const { return running; }
  75. class GetoptIter {
  76. private:
  77.     const fxStr& opts;
  78.     int argc;
  79.     char** argv;
  80.     int c;
  81. public:
  82.     GetoptIter(int ac, char** av, const fxStr& s);
  83.     ~GetoptIter();
  84.     void operator++();
  85.     void operator++(int);
  86.     int option() const;
  87.     bool notDone() const;
  88.     const char* optArg() const;
  89.     const char* getArg();
  90.     const char* nextArg();
  91. };
  92. inline int GetoptIter::option() const { return c; }
  93. inline bool GetoptIter::notDone() const { return c != -1; }
  94. extern const char* fmtTime(time_t);
  95. #endif