/* File: log.c Copyright (C) 1998-2007 Christophe GRENIER This software is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifdef HAVE_CONFIG_H #include #endif #include #include #ifdef HAVE_TIME_H #include #endif #ifdef HAVE_SYS_TIME_H #include #endif #ifdef HAVE_UNISTD_H #include #endif #include "types.h" #include "common.h" #include "log.h" #include "intrf.h" /* ask_log_location */ #include "fnctdsk.h" static FILE *log_handle=NULL; static int f_status=0; static int log_handler(const char *_format, va_list ap); static unsigned int log_levels=LOG_LEVEL_DEBUG|LOG_LEVEL_TRACE|LOG_LEVEL_QUIET|LOG_LEVEL_INFO|LOG_LEVEL_VERBOSE|LOG_LEVEL_PROGRESS|LOG_LEVEL_WARNING|LOG_LEVEL_ERROR|LOG_LEVEL_PERROR|LOG_LEVEL_CRITICAL; int log_set_levels(const unsigned int levels) { const int old_levels=log_levels; log_levels=levels; return old_levels; } int log_open(const char*default_filename, const char *mode, const char *prog_name, int argc, char**argv) { const char*filename=default_filename; do { log_handle=fopen(filename,mode); if(log_handle==NULL) filename=ask_log_location(filename); } while(log_handle==NULL && filename!=NULL); if(log_handle!=NULL) { int i; time_t my_time; #ifdef HAVE_DUP2 dup2(fileno(log_handle),2); #endif my_time=time(NULL); fprintf(log_handle,"\n\n%s",ctime(&my_time)); fprintf(log_handle,"Command line: %s", prog_name); for(i=1;i= 127)) log_debug("."); else log_debug("%c", car); } else log_debug(" "); } log_debug("\n"); } } void dump2_log(const void *dump_1, const void *dump_2, const unsigned int lng) { unsigned int i,j; unsigned int nbr_line; nbr_line=(lng+0x08-1)/0x08; /* write dump to log file*/ for (i=0; (i= 127)) log_debug("."); else log_debug("%c", car); } else log_debug(" "); } log_debug(" "); for(j=0; j<0x08;j++) { if(i*0x08+j= 127)) log_debug("."); else log_debug("%c", car); } else log_debug(" "); } log_debug("\n"); } } void log_partition(const disk_t *disk_car,const partition_t *partition) { const char *msg; char buffer_part_size[100]; msg=aff_part_aux(AFF_PART_ORDER, disk_car, partition); log_info("%s",msg); if(partition->info[0]!='\0') log_info("\n %s, %s",partition->info,size_to_unit(partition->part_size,buffer_part_size)); log_info("\n"); }