From: Christopher R. Hertel Date: Tue, 29 Dec 1998 20:43:01 +0000 (+0000) Subject: While writing the man page, I realized that it was a bit silly not to accept X-Git-Tag: samba-2.2.5pre1~4862 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=300a8c9e5077206b706c522c0b4288b00b7afda7;ds=sidebyside While writing the man page, I realized that it was a bit silly not to accept command-line parameters. I've added that capability. Of course, the man page is now wrong. Sigh. Chris -)----- --- diff --git a/source/utils/debug2html.c b/source/utils/debug2html.c index 1349da5b284..c7f36da0c05 100644 --- a/source/utils/debug2html.c +++ b/source/utils/debug2html.c @@ -28,13 +28,20 @@ * does a decent job of converting Samba logs into HTML. * -------------------------------------------------------------------------- ** * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * * ========================================================================== ** */ #include "includes.h" +/* -------------------------------------------------------------------------- ** + * Global values. + */ + +FILE *infile = stdin; +FILE *outfile = stdout; + /* -------------------------------------------------------------------------- ** * The size of the read buffer. */ @@ -74,7 +81,7 @@ static dbg_Token modechange( dbg_Token new, dbg_Token mode ) if( dbg_message != mode ) { /* Switching to message mode. */ - (void)printf( "
\n" );
+        (void)fprintf( outfile, "
\n" );
         return( dbg_message );
         }
       break;
@@ -82,7 +89,7 @@ static dbg_Token modechange( dbg_Token new, dbg_Token mode )
       if( dbg_message == mode )
         {
         /* Switching out of message mode. */
-        (void)printf( "
\n\n" ); + (void)fprintf( outfile, "
\n\n" ); return( dbg_null ); } } @@ -110,29 +117,29 @@ static void newblock( dbg_Token old, dbg_Token new ) switch( old ) { case dbg_timestamp: - (void)printf( "," ); + (void)fprintf( outfile, "," ); break; case dbg_level: - (void)printf( "]\n " ); + (void)fprintf( outfile, "]\n " ); break; case dbg_sourcefile: - (void)printf( ":" ); + (void)fprintf( outfile, ":" ); break; case dbg_lineno: - (void)printf( ")" ); + (void)fprintf( outfile, ")" ); break; } switch( new ) { case dbg_timestamp: - (void)printf( "[" ); + (void)fprintf( outfile, "[" ); break; case dbg_level: - (void)printf( " " ); + (void)fprintf( outfile, " " ); break; case dbg_lineno: - (void)printf( "(" ); + (void)fprintf( outfile, "(" ); break; } } /* newblock */ @@ -156,41 +163,38 @@ static void charprint( dbg_Token tok, int c ) break; case dbg_null: case dbg_eof: - (void)putchar( '\n' ); + (void)putc( '\n', outfile ); break; default: switch( c ) { case '<': - (void)printf( "<" ); + (void)fprintf( outfile, "<" ); break; case '>': - (void)printf( ">" ); + (void)fprintf( outfile, ">" ); break; case '&': - (void)printf( "&" ); + (void)fprintf( outfile, "&" ); break; case '\"': - (void)printf( """ ); + (void)fprintf( outfile, """ ); break; default: - (void)putchar( c ); + (void)putc( c, outfile ); break; } } } /* charprint */ -int main( int argc, char *argv[] ) +static void convert( void ) /* ------------------------------------------------------------------------ ** - * This simple program scans and parses Samba debug logs, and produces HTML - * output. + * Read the input logfile, converting the entries to HTML. * - * Input: argc - Currently ignored. - * argv - Currently ignored. - * - * Output: Always zero. - * - * Notes: The HTML output is sent to stdout. + * Input: none. + * output: none. + * Notes: Reads from the global infile, writes to the global outfile. + * These default to stdin and stdout, respectively. * * ------------------------------------------------------------------------ ** */ @@ -203,12 +207,8 @@ int main( int argc, char *argv[] ) state = dbg_null, mode = dbg_null; - (void)printf( "\n" ); - (void)printf( "\n\n" ); - (void)printf( " Samba Debug Output\n\n\n\n" ); - - while( (!feof( stdin )) - && ((len = fread( bufr, 1, DBG_BSIZE, stdin )) > 0) ) + while( (!feof( infile )) + && ((len = fread( bufr, 1, DBG_BSIZE, infile )) > 0) ) { for( i = 0; i < len; i++ ) { @@ -224,6 +224,91 @@ int main( int argc, char *argv[] ) } (void)modechange( dbg_eof, mode ); - (void)printf( "\n\n" ); + } /* convert */ + +static void usage( void ) + /* ------------------------------------------------------------------------ ** + * Prints a usage message on stderr, then gently exits. + * + * Input: none. + * Output: none. Exits with return code of 0. + * + * ------------------------------------------------------------------------ ** + */ + { + fprintf( stderr, "This utility converts Samba log files " ); + fprintf( stderr, "into HTML documents.\n" ); + fprintf( stderr, "Usage:\n" ); + fprintf( stderr, " debug2html \n" ); + exit( 0 ); + } /* usage */ + +static FILE *carefull_fopen( const char *path, const char *type ) + /* ------------------------------------------------------------------------ ** + * Checks for leading '-' characters, which are generically regarded as + * flags. Also exits the program gracefully should the file fail to open. + * + * Input: path - pathname of the file to open. + * type - open mode. See fopen(3S). + * + * Output: Pointer to open file. + * + * ------------------------------------------------------------------------ ** + */ + { + FILE *tmp; + + if( '-' == path[0] || '\0' == path[0] ) + usage(); + + tmp = sys_fopen( path, type ); + if( NULL == tmp ) + { + fprintf( stderr, "Error opening file %s: %s\n", path, strerror(errno) ); + exit( 1 ); + } + return( tmp ); + } /* carefull_fopen */ + +int main( int argc, char *argv[] ) + /* ------------------------------------------------------------------------ ** + * This simple program scans and parses Samba debug logs, and produces HTML + * output. + * + * Input: argc - Argument count. + * argv[1] - Input file name. + * argv[2] - Output file name. + * A '-' character by itself means use defaults (i.e., + * or depending upon the argument. + * A string beginning with '-' and containing more than + * that one character will generate a usage message. + * + * Output: An exit value of 1 is returned if an error was encountered + * while opening a file, else 0. + * + * Notes: The HTML output is sent to stdout. + * + * ------------------------------------------------------------------------ ** + */ + { + if( argc > 3 ) + usage(); + + if( argc > 1 && 0 != strcmp( argv[1], "-" ) ) + infile = carefull_fopen( argv[1], "r" ); + + if( argc > 2 && 0 != strcmp( argv[2], "-" ) ) + infile = carefull_fopen( argv[2], "w" ); + + (void)fprintf( outfile, + "\n" ); + (void)fprintf( outfile, "\n\n" ); + (void)fprintf( outfile, + " Samba Log\n\n\n\n" ); + + convert(); + + (void)fprintf( outfile, "\n\n" ); + return( 0 ); } /* main */