home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / fax-3.2.1 / cmd / faxsend / faxsend.c next >
Encoding:
C/C++ Source or Header  |  1992-07-31  |  3.4 KB  |  156 lines

  1. /*
  2.   This file is part of the NetFax system.
  3.  
  4.   (c) Copyright 1989 by David M. Siegel. 
  5.       All rights reserved.
  6.  
  7.     This program is free software; you can redistribute it and/or modify
  8.     it under the terms of the GNU General Public License as published by
  9.     the Free Software Foundation.
  10.  
  11.     This program is distributed in the hope that it will be useful, 
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of 
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.  
  16.     You should have received a copy of the GNU General Public License
  17.     along with this program; if not, write to the Free Software
  18.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. */
  20.  
  21. #include <stdio.h>
  22. #include <unistd.h>
  23. #include <fcntl.h>
  24.  
  25. #include "../../lib/libfax/libfax.h"
  26.  
  27. static int verbose = FALSE;
  28.  
  29. #define MAX_TRIES  3
  30.  
  31. #define EXIT_ERROR        1
  32. #define EXIT_NO_FILE        2
  33. #define EXIT_OPEN_FAILED    3
  34. #define EXIT_CALL_FAILED    4
  35. #define EXIT_SEND_FAILED    5
  36. #define EXIT_FINISH_FAILED    6
  37.  
  38. static int do_send(fmp, fd, page, last_page)
  39.      FaxModem *fmp;
  40.      int fd;
  41.      int page;
  42.      int last_page;
  43. {
  44.     long start = time(0);
  45.  
  46.     if (faxmodem_send_page(fmp, fd, last_page, MAX_TRIES) < 0)
  47.       return (-1);
  48.  
  49.     if (verbose)
  50.       printf("page %d sent in %d seconds\n", page, time(0) - start);
  51.  
  52.     return (0);
  53. }
  54.  
  55. main(argc, argv)
  56.      int argc;
  57.      char *argv[];
  58. {
  59.     int c;
  60.     extern char *optarg;
  61.     extern int optind;
  62.     int errflg = 0;
  63.  
  64.     char *fax_device = FAX_DEVICE;
  65.     char *phone;
  66.     FaxModem fm;
  67.     long start;
  68.  
  69.     log_set_level(LOG_WARNING);
  70.  
  71.     while ((c = getopt(argc, argv, "l:vf:")) != -1)
  72.       switch (c) {
  73.     case 'l':
  74.       log_set_level(atoi(optarg));
  75.       break;
  76.     case 'v':
  77.       verbose = TRUE;
  78.       break;
  79.     case 'f':
  80.       fax_device = optarg;
  81.       break;
  82.     case '?':
  83.       errflg++;
  84.       break;
  85.       }
  86.  
  87.     if (errflg || optind >= argc) {
  88.     fprintf(stderr, "usage: %s phone [files..]\n", argv[0]);
  89.     exit(EXIT_ERROR);
  90.     }
  91.  
  92.     phone = argv[optind++];
  93.  
  94.     if (optind < argc) {
  95.     int ind;
  96.     for (ind = optind; ind < argc; ind++) {
  97.         if (access(argv[ind], R_OK) < 0) {
  98.         fprintf(stderr, "can't access file: %s\n", argv[ind]);
  99.         exit(EXIT_NO_FILE);
  100.         }
  101.     }
  102.     }
  103.  
  104.     if (faxmodem_open(&fm, fax_device) < 0) {
  105.     fprintf(stderr, "open of fax failed\n");
  106.     exit(EXIT_OPEN_FAILED);
  107.     }
  108.  
  109.     if (faxmodem_initiate_call(&fm, phone) < 0 || !FAX_CONNECTED(&fm)) {
  110.     fprintf(stderr, "call to %s failed\n", phone);
  111.     exit(EXIT_CALL_FAILED);
  112.     }
  113.  
  114.     start = time(0);
  115.  
  116.     if (verbose) {
  117.     printf("connected to %s\n", phone);
  118.     faxmodem_print_id_strings(&fm, stdout);
  119.     }
  120.  
  121.     if (optind < argc) {
  122.     int page = 1;
  123.     for (; optind < argc; optind++) {
  124.         int fd;
  125.         if ((fd = open(argv[optind], O_RDONLY)) < 0) {
  126.         fprintf(stderr, "can't access file: %s\n", argv[optind]);
  127.         exit(EXIT_NO_FILE);
  128.         }
  129.         if (do_send(&fm, fd, page++, optind+1 == argc) < 0) {
  130.         fprintf(stderr, "sending failed on: %s\n", argv[optind]);
  131.         exit(EXIT_SEND_FAILED);
  132.         }
  133.     }
  134.     } else
  135.       if (do_send(&fm, 0, 1, TRUE) < 0) {
  136.       fprintf(stderr, "sending failed stdin\n");
  137.       exit(EXIT_SEND_FAILED);
  138.       }
  139.       
  140.  
  141.     if (faxmodem_hangup(&fm) < 0) {
  142.     fprintf(stderr, "hangup failed\n");
  143.     exit(EXIT_FINISH_FAILED);
  144.     }
  145.  
  146.     if (verbose)
  147.       printf("total connect time was %d seconds\n", time(0) - start);
  148.  
  149.     if (faxmodem_close(&fm) < 0) {
  150.     fprintf(stderr, "close failed\n");
  151.     exit(EXIT_FINISH_FAILED);
  152.     }
  153.  
  154.     exit(0);
  155. }
  156.