cpl_log.c

Go to the documentation of this file.
00001 /*
00002  * $Id: cpl_log.c 4518 2008-07-28 15:39:28Z henningw $
00003  *
00004  * Copyright (C) 2001-2003 FhG Fokus
00005  *
00006  * This file is part of Kamailio, a free SIP server.
00007  *
00008  * Kamailio is free software; you can redistribute it and/or modify
00009  * it under the terms of the GNU General Public License as published by
00010  * the Free Software Foundation; either version 2 of the License, or
00011  * (at your option) any later version
00012  *
00013  * Kamailio is distributed in the hope that it will be useful,
00014  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00015  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00016  * GNU General Public License for more details.
00017  *
00018  * You should have received a copy of the GNU General Public License
00019  * along with this program; if not, write to the Free Software
00020  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00021  *
00022  *
00023  * History:
00024  * -------
00025  * 2003-09-22: created (bogdan)
00026  *
00027  */
00028 
00029 #include <stdlib.h>
00030 #include <string.h>
00031 #include "cpl_log.h"
00032 #include "../../mem/mem.h"
00033 #include "../../dprint.h"
00034 
00035 
00036 static str  cpl_logs[MAX_LOG_NR];
00037 static int  nr_logs;
00038 
00039 
00040 void reset_logs(void)
00041 {
00042    nr_logs = 0;
00043 }
00044 
00045 
00046 
00047 void append_log( int nr, ...)
00048 {
00049    va_list ap;
00050    int     i;
00051 
00052 
00053    if ( nr_logs+nr>MAX_LOG_NR ) {
00054       LM_ERR("no more space for logging\n");
00055       return;
00056    }
00057 
00058    va_start(ap, nr);
00059 
00060    for(i=0;i<nr;i++,nr_logs++) {
00061       cpl_logs[nr_logs].s   = va_arg(ap, char *);
00062       cpl_logs[nr_logs].len = va_arg(ap, int );
00063    }
00064 
00065    va_end(ap);
00066 }
00067 
00068 
00069 
00070 void compile_logs( str *log)
00071 {
00072    int i;
00073    char *p;
00074 
00075    log->s = 0;
00076    log->len = 0;
00077 
00078    if (nr_logs==0)
00079       /* no logs */
00080       return;
00081 
00082    /* compile the total len */
00083    for(i=0;i<nr_logs;i++)
00084       log->len += cpl_logs[i].len;
00085 
00086    /* get a buffer */
00087    log->s = (char*)pkg_malloc(log->len);
00088    if (log->s==0) {
00089       LM_ERR("no more pkg mem\n");
00090       log->len = 0;
00091       return;
00092    }
00093 
00094    /*copy all logs into buffer */
00095    p = log->s;
00096    for(i=0;i<nr_logs;i++) {
00097       memcpy( p, cpl_logs[i].s, cpl_logs[i].len);
00098       p += cpl_logs[i].len;
00099    }
00100 
00101    return;
00102 }
00103 

Generated on Mon May 21 18:00:25 2012 for Kamailio - The Open Source SIP Server by  doxygen 1.5.6