LPR.C
上传用户:better800
上传日期:2022-06-13
资源大小:1853k
文件大小:12k
源码类别:

TCP/IP协议栈

开发平台:

DOS

  1. /*
  2.  * LPR - dump job to printer
  3.  *
  4.  *
  5.  *   Copyright (C) 1991 Erick Engelke
  6.  *
  7.  *   Portions Copyright (C) 1990, National Center for Supercomputer Applications
  8.  *   and portions copyright (c) 1990, Clarkson University
  9.  *
  10.  *   This program is free software; you can redistribute it and/or modify
  11.  *   it, but you may not sell it.
  12.  *
  13.  *   This program is distributed in the hope that it will be useful,
  14.  *   but without any warranty; without even the implied warranty of
  15.  *   merchantability or fitness for a particular purpose.
  16.  *
  17.  *       Erick Engelke                   or via E-Mail
  18.  *       Faculty of Engineering
  19.  *       University of Waterloo          Erick@development.watstar.uwaterloo.ca
  20.  *       200 University Ave.,
  21.  *       Waterloo, Ont., Canada
  22.  *       N2L 3G1
  23.  *
  24.  *
  25.  * The following notes on control and data files were obtained from Clarkson's
  26.  * CUTE project.
  27.  *
  28.  *
  29.  * Control File: format is the first character in the line is a command,
  30.  * the rest of the line is the argument.  Also note lowercase letters
  31.  * denote the data file names (of various types).
  32.  *
  33.  * currently valid commands are:
  34.  *
  35.  *     J -- "job name" on banner page
  36.  *     C -- "class name" on banner page
  37.  *     L -- "literal" user's name to print on banner
  38.  *     T -- "title" for pr
  39.  *     H -- "host name" of machine where lpr was done
  40.  *     P -- "person" user's login name
  41.  *     I -- "indent" amount to indent output
  42.  *     f -- "file name" name of text file to print
  43.  *     l -- "file name" text file with control chars
  44.  *     p -- "file name" text file to print with pr(1)
  45.  *     t -- "file name" troff(1) file to print
  46.  *     n -- "file name" ditroff(1) file to print
  47.  *     d -- "file name" dvi file to print
  48.  *     g -- "file name" plot(1G) file to print
  49.  *     v -- "file name" plain raster file to print (impress)
  50.  *     c -- "file name" cifplot file to print
  51.  *     1 -- "R font file" for troff
  52.  *     2 -- "I font file" for troff
  53.  *     3 -- "B font file" for troff
  54.  *     4 -- "S font file" for troff
  55.  *     N -- "name" of file (used by lpq)
  56.  *     U -- "unlink" name of file to remove
  57.  *           (after we print it. (Pass 2 only)).
  58.  *     M -- "mail" to user when done printing
  59.  *
  60.  * Currently it looks like only a lowercase filename and U command are
  61.  * necessary.  However one should also include J, L, H, and P.
  62.  *
  63.  * In general the lpd program doesn't care what the data file looks like.
  64.  * It should however be of the type specified in the control file
  65.  * otherwise it will probably print incorrectly.
  66.  *
  67.  * The format is ?fA<number><hostname>.  ? is either c for control or d
  68.  * for data files.  Number is a 3 digit number (0 padded) used for job
  69.  * number information.  Hostname is the name of the originating host and
  70.  * had best be equal to whatever shows up in the from field when a
  71.  * connection is opened (ie probably should be the "real" hostname).
  72.  * Currently all of these must be used as the program has them compiled in
  73.  * (by stupid use of pointers).  I may change this in time but currently
  74.  * it is the law if you want everything to work (some things will work
  75.  * just fine without it, queueing a file just wants names, showing the
  76.  * queue expects a number to start in the fourth position, deleting a file
  77.  * expects the hostname to start in the 7th position and go to the end of
  78.  * the filename.
  79.  *
  80.  * default userid = server = "UNKNOWN";
  81.  *
  82.  * get's sequence file from getenv( "SEQUENCE" )
  83.  * else "SEQUENCE.LPR"
  84.  *
  85.  * if ( ( title = getenv( "TITLE" )) ==  NULL )
  86.  *      title = "stdprn";
  87.  * if ( ( jobname = getenv( "JOBNAME" )) == NULL )
  88.  *       jobname = "job_name";
  89.  * if ( (  class = getenv("CLASS")) == NULL )
  90.  *       class = server
  91.  */
  92. #include <stdio.h>
  93. #include <stdlib.h>
  94. #include <string.h>
  95. #include <conio.h>
  96. #include <io.h>
  97. #include <tcp.h>
  98. #define SHORT_LIST 3
  99. #define LONG_LIST  4
  100. #define MFCF_COUNT 5
  101. char *mfcf[MFCF_COUNT];
  102. #define LPQ_PORT 515
  103. #define LOCAL_PORT 722
  104. #define SEQFILE "SEQUENCE.LPR"
  105. char *seqwhere;
  106. word getsequence( void )
  107. {
  108.     static word oldseq = 0;
  109.     FILE *f;
  110.     if ( ! oldseq ) {
  111.         /* must look to disk for an old sequence number */
  112.         if ( (f = fopen( seqwhere, "rt" )) != NULL ) {
  113.             fscanf( f, "%u", &oldseq );
  114.             fclose( f );
  115.         }
  116.     }
  117.     oldseq = ( oldseq + 1 ) % 1000;
  118.     if ( (f = fopen( seqwhere, "wt" )) != NULL ) {
  119.         fprintf( f, "%u", oldseq );
  120.         fclose( f );
  121.     }
  122.     return( oldseq );
  123. }
  124. int lpr( char *localhostname, char *printer, char *rhostname, char *filename,
  125.     char *title, char *jobname, char *class, char *username, char *servername )
  126. {
  127.     static tcp_Socket socketdata;
  128.     tcp_Socket *s;
  129.     longword filesize;
  130.     longword host;
  131.     int status = 0;
  132.     int connected = 0;
  133.     int completed = 0;
  134.     int localport;
  135.     word seqnum, i;
  136.     static char buffer[ 1024 ];
  137.     char *b2;
  138.     char remotename[ 80 ];
  139.     static char cmdfile[ 1024 ];
  140.     longword remaining;
  141.     word found;
  142.     FILE *f;
  143.     if (( *class == 0 ) || (*class == ' ')) class = NULL;
  144.     for ( i = 0; i < MFCF_COUNT ; ++i ) {
  145.         if ( mfcf[ i ] )
  146.             printf("Extra option: %sn", mfcf[i] );
  147.     }
  148.     if ( (f = fopen( filename, "rb")) == NULL ) {
  149. printf("Unable to open file '%s'n", filename );
  150. return( 3 );
  151.     }
  152.     sock_init();
  153.     s = &socketdata;
  154.     if (!(host = resolve( rhostname ))) {
  155.         printf( "lpq: unknown host %sn",rhostname);
  156.         return(1);
  157.     }
  158.     localport = 255 + (MsecClock() & 255);
  159.     if ( !tcp_open( s, localport, host, LPQ_PORT, NULL)) {
  160.       printf("Unable to open socket.");
  161.       tcp_shutdown();
  162.       return(1);
  163.    }
  164.    printf( "connecting...r");
  165.    sock_wait_established( s, sock_delay, NULL, &status );
  166.    connected = 1;
  167.    printf("connection establishedn");
  168.    /* is there an opening message - non-standard but possible */
  169.    if (sock_dataready( s )) {
  170.        sock_fastread( s, buffer, sizeof( buffer ));
  171.        sock_tick( s, &status ); /* in case above message closed port */
  172.    }
  173.    /* use ipnumber/time  */
  174.    seqnum = getsequence();
  175.    sprintf(remotename,"fA%03u%s", seqnum, localhostname );
  176.    
  177.    /* we are connected */
  178.    sprintf( buffer, "2%sn", printer ); /* select a printer */
  179.    sock_puts( s, buffer );
  180.    /* state #2 */
  181.    sock_wait_input( s, sock_delay, NULL, &status );
  182.    sock_fastread( s, buffer, sizeof( buffer ));
  183.    switch (*buffer) {
  184.        case 0 : break;
  185.        case 1 : printf("Printer '%s' is not availablen", printer);
  186. goto close_it;
  187.        default: rip( buffer );
  188.                 printf("ERROR: %sn", buffer);
  189. goto close_it;
  190.    }
  191.    /* printer is accepted, printing file */
  192.    filesize = filelength( fileno( f ));
  193.    sprintf( buffer, "3%ld d%sn", filesize, remotename );
  194.    sock_puts( s , buffer );
  195.    sock_wait_input( s, sock_delay, NULL, &status );
  196.    /* state 3, reply from filename */
  197.    sock_fastread( s, buffer, sizeof( buffer ));
  198.    switch (*buffer) {
  199. case 0: break;
  200.         case 1: printf("remote host complains of bad connection");
  201. goto close_it;
  202. case 2: puts("remote host out of storage space");
  203. goto close_it;
  204.     }
  205.     /* dump file */
  206.     remaining = filesize;
  207.     do {
  208.         cprintf("Transferred: %lu %c  r",
  209.             ((filesize - remaining + 1L)*100L)/(filesize+1), 37 );
  210.         backgroundon();
  211.         if ( (found = fread( buffer, 1, sizeof(buffer), f)) == 0 )
  212.     break;
  213.         backgroundoff();
  214.         sock_write( s, buffer, found );
  215. sock_tick( s , &status );
  216. if (sock_dataready( s )) {
  217.     puts("LPR: interrupted on transfer...");
  218.     goto close_it;
  219. }
  220.     } while ( (remaining -= (longword)found) > 0 );
  221.     sock_putc( s, 0 );
  222.     /* check on status of this file */
  223.     sock_wait_input( s, sock_delay, NULL, &status );
  224.     sock_fastread( s, buffer, sizeof(buffer));
  225.     switch (*buffer) {
  226. case 0: break;
  227. default:puts("file was rejected");
  228. goto close_it; /* could retry */
  229.     }
  230.     sprintf( cmdfile,   "H%sn"  "P%sn" "C%sn" "L%sn",
  231.         servername,     /* eg "development" */
  232. username, /* eg "erick", */
  233.         class ? class : servername, /* eg "NDSW or development", */
  234.         username );     /* eg  "erick"       for on banner */
  235.     for ( i = 0 ; i < MFCF_COUNT ; ++i ) {
  236.         if ( mfcf[i] ) {
  237.             strcat( cmdfile, mfcf[i] );
  238.             strcat( cmdfile, "n" );
  239.         }
  240.     }
  241.     b2 = strchr( cmdfile, 0 );
  242.     sprintf( b2, "T%sn" "fd%sn" "N%sn" "Ud%sn" "J%sn",
  243.         title,          /* title */
  244. remotename, /* file processor */
  245.         title,          /* name */
  246. remotename,
  247.         jobname
  248.     );
  249.     printf("nOptions:n%sn", cmdfile );
  250.     sprintf( buffer, "2%d c%sn", strlen( cmdfile ), remotename );
  251.     sock_puts( s , buffer );
  252.     sock_flush( s );
  253.     sock_wait_input( s, sock_delay, NULL, &status );
  254.     sock_fastread( s, buffer, sizeof( buffer ));
  255.     switch (*buffer) {
  256. case 0: break;
  257.         case 1: puts("Bad connection");
  258. goto close_it;
  259.         case 2: puts("Out of space on host");
  260.                 goto close_it;
  261.         default:puts("Unknown error");
  262.                 goto close_it;
  263.     }
  264.     sock_puts( s, cmdfile );
  265.     sock_putc( s, 0 );
  266.     sock_flush( s );
  267.     sock_wait_input( s, sock_delay, NULL, &status );
  268.     sock_fastread( s, buffer, sizeof( buffer ));
  269.     switch (*buffer) {
  270.         case 0: puts("Completed - job accepted");
  271.                 completed = 1;
  272. sock_putc( s, 0 );
  273. sock_flush( s );
  274. break;
  275.         default:puts("Control file rejected");
  276.                 status = 3;
  277.                 break;
  278.     }
  279.     /* all roads come here */
  280. close_it:
  281.     sock_tick( s, &status); /* in case they sent reset */
  282.     sock_close( s );
  283.     sock_wait_closed( s, sock_delay, NULL, &status );
  284. sock_err:
  285.     switch( status ) {
  286. case 1: break;
  287.         case-1: printf("Remote host reset connectionnr");
  288. status = 3;
  289. break;
  290.     }
  291.     if (!connected)
  292.        printf( "nrCould not get connected.  Perhaps you were not in the /etc/hosts.lpd file!nr");
  293.     return( !completed );
  294. }
  295. int main( int argc, char **argv )
  296. {
  297.     char remotename[128];
  298.     char *hostname;
  299.     char *filename;
  300.     char *printer;
  301.     char *userid, *server;
  302.     char *title, *jobname;
  303.     char *rhostname;
  304.     char *class;
  305.     int status, i;
  306.     for ( i = 0 ; i < MFCF_COUNT ; ++i ) {
  307.         sprintf( remotename, "MFCF%u", i );
  308.         mfcf[i] = getenv( remotename );
  309.         if ( *mfcf[i] == 0 ) mfcf[i] = NULL;
  310.     }
  311.     userid = server = "UNKNOWN";
  312.     if ((seqwhere = getenv( "SEQUENCE" )) == NULL )
  313.         seqwhere = SEQFILE;
  314.     if ( ( title = getenv( "TITLE" )) ==  NULL )
  315.         title = "stdprn";
  316.     if ( ( jobname = getenv( "JOBNAME" )) == NULL )
  317.         jobname = "job_name";
  318.     class = getenv("CLASS");
  319.     puts("LPR using Waterloo TCP");
  320.     switch (argc) {
  321. case 3:
  322.     /* no printername */
  323.     rhostname = argv[1];
  324.     filename = argv[2];
  325.     printer = "lp";
  326.     break;
  327. case 6:
  328.     /* whole thing */
  329.     userid = argv[4];
  330.     server = argv[5]; /* and continue on below */
  331. case 4:
  332.     /* Hostname and printer */
  333.     printer = argv[1];
  334.     rhostname = argv[2];
  335.     filename = argv[3];
  336.     break;
  337. default:
  338.               printf( "Usage: LPR [printer] host filename [userid server]");
  339.       exit(1);
  340.    }
  341.     hostname = gethostname( NULL, 0 );
  342.     if ( !hostname || !*hostname ) {
  343.         puts("You must define your hostname in the WATTCP.CFG file!");
  344.         exit( 3 );
  345.     }
  346.     strlwr( hostname );
  347.     strlwr( userid );
  348.     strlwr( server );
  349. /* 94.11.19 -- removed extra parms */
  350.     status = lpr( hostname, printer, rhostname, filename, title, jobname,
  351.         class, userid, server /*, MFCF_COUNT, mfcf*/ );
  352.     return( status ? 3 : 0 );
  353. }