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

传真(Fax)编程

开发平台:

C/C++

  1. /* $Id: faxfetch.c++,v 1.4 2009/09/29 11:46:02 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. #include "FaxClient.h"
  27. #include "Sys.h"
  28. #include "config.h"
  29. class faxFetchApp : public FaxClient {
  30. private:
  31.     virtual void vtraceServer(const char* fmt, va_list ap);
  32. public:
  33.     faxFetchApp();
  34.     ~faxFetchApp();
  35.     void run(int argc, char** argv);
  36. };
  37. faxFetchApp::faxFetchApp() {}
  38. faxFetchApp::~faxFetchApp() {}
  39. static bool
  40. writeStdout(void*, const char* buf, int cc, fxStr&)
  41. {
  42.     (void) Sys::write(STDOUT_FILENO, buf, cc);
  43.     return (true);
  44. }
  45. void
  46. faxFetchApp::vtraceServer(const char* fmt, va_list ap)
  47. {
  48.     vfprintf(stderr, fmt, ap);
  49.     fputs("n", stderr);
  50. }
  51. void
  52. faxFetchApp::run(int argc, char** argv)
  53. {
  54.     resetConfig();
  55.     readConfig(FAX_SYSCONF);
  56.     readConfig(FAX_USERCONF);
  57.     int c;
  58.     fxStr op = "RETR ";
  59.     u_int mode = MODE_S;
  60.     u_long page = 0;
  61.     while ((c = Sys::getopt(argc, argv, "h:o:O:p:svz")) != -1)
  62. switch (c) {
  63. case 'h': // server's host
  64.     setHost(optarg);
  65.     break;
  66. case 'O':
  67.     readConfigItem(optarg);
  68.     break;
  69. case 'p': // retrieve page
  70.     op = "RETP ";
  71.     page = atol(optarg);
  72.     break;
  73. case 's':
  74.     mode = MODE_S;
  75.     break;
  76. case 'v': // enable protocol tracing
  77.     setVerbose(true);
  78.     break;
  79. case 'z':
  80.     mode = MODE_Z;
  81.     break;
  82. case '?':
  83.     fxFatal("usage: faxfetch [-h server-host] [-v] file");
  84. }
  85.     if (optind < argc) {
  86. fxStr emsg;
  87. if (callServer(emsg)) {
  88.     if (login(NULL, emsg)) {
  89. setType(TYPE_I); // always image type
  90. for (; optind < argc; optind++)
  91.     if (mode == MODE_S)
  92. recvData(writeStdout, NULL, emsg, page, op | argv[optind]);
  93.     else
  94. recvZData(writeStdout, NULL, emsg, page, op | argv[optind]);
  95.     }
  96.     hangupServer();
  97. }
  98. if (emsg != "")
  99.     printError("%s", (const char*) emsg);
  100.     }
  101. }
  102. int
  103. main(int argc, char** argv)
  104. {
  105.     faxFetchApp app;
  106.     app.run(argc, argv);
  107.     return 0;
  108. }