2003-10-01 15:03:30 +00:00
/*
2005-09-14 20:46:50 +00:00
* Asterisk -- An open source telephony toolkit.
2003-10-01 15:03:30 +00:00
*
2006-01-24 11:42:09 +00:00
* Copyright (C) 2003 - 2006
2005-09-15 15:44:26 +00:00
*
2003-10-01 15:03:30 +00:00
* Matthew D. Hardeman <mhardemn@papersoft.com>
* Adapted from the MySQL CDR logger originally by James Sharp
*
* Modified September 2003
* Matthew D. Hardeman <mhardemn@papersoft.com>
*
2005-09-14 20:46:50 +00:00
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
2003-10-01 15:03:30 +00:00
* This program is free software, distributed under the terms of
2005-09-14 20:46:50 +00:00
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
2005-10-26 13:03:17 +00:00
/*! \file
2005-09-14 20:46:50 +00:00
*
2005-10-26 13:03:17 +00:00
* \brief PostgreSQL CDR logger
*
* \author Matthew D. Hardeman <mhardemn@papersoft.com>
2007-02-24 19:27:50 +00:00
* \extref PostgreSQL http://www.postgresql.org/
2003-10-01 15:03:30 +00:00
*
2005-10-26 13:03:17 +00:00
* See also
* \arg \ref Config_cdr
* \arg http://www.postgresql.org/
2005-11-06 15:09:47 +00:00
* \ingroup cdr_drivers
2003-10-01 15:03:30 +00:00
*/
2006-04-24 17:11:45 +00:00
/*** MODULEINFO
<depend>pgsql</depend>
***/
2006-06-07 18:54:56 +00:00
#include "asterisk.h"
ASTERISK_FILE_VERSION ( __FILE__ , "$Revision$" )
2003-10-01 15:03:30 +00:00
#include <time.h>
#include <libpq-fe.h>
2005-06-06 21:09:59 +00:00
#include "asterisk/config.h"
#include "asterisk/channel.h"
#include "asterisk/cdr.h"
#include "asterisk/module.h"
2008-02-25 23:04:20 +00:00
#define DATE_FORMAT "'%Y-%m-%d %T'"
2003-10-01 15:03:30 +00:00
static char * name = "pgsql" ;
static char * config = "cdr_pgsql.conf" ;
2006-05-20 01:35:12 +00:00
static char * pghostname = NULL , * pgdbname = NULL , * pgdbuser = NULL , * pgpassword = NULL , * pgdbport = NULL , * table = NULL ;
2003-10-01 15:03:30 +00:00
static int connected = 0 ;
2008-02-25 23:04:20 +00:00
static int maxsize = 512 , maxsize2 = 512 ;
2003-10-01 15:03:30 +00:00
2004-06-09 01:45:08 +00:00
AST_MUTEX_DEFINE_STATIC ( pgsql_lock );
2003-10-01 15:03:30 +00:00
2006-11-13 21:32:13 +00:00
static PGconn * conn = NULL ;
2003-10-01 15:03:30 +00:00
2008-02-25 23:04:20 +00:00
struct columns {
char * name ;
char * type ;
int len ;
AST_RWLIST_ENTRY ( columns ) list ;
};
static AST_RWLIST_HEAD_STATIC ( psql_columns , columns );
#define LENGTHEN_BUF1(size) \
do { \
/* Lengthen buffer, if necessary */ \
if ((newsize = lensql + (size) + 3) > sizesql) { \
if ((tmp = ast_realloc(sql, (newsize / 512 + 1) * 512))) { \
sql = tmp; \
sizesql = (newsize / 512 + 1) * 512; \
} else { \
ast_log(LOG_ERROR, "Unable to allocate sufficient memory. Insert CDR failed.\n"); \
ast_free(sql); \
ast_free(sql2); \
AST_RWLIST_UNLOCK(&psql_columns); \
return -1; \
} \
} \
} while (0)
#define LENGTHEN_BUF2(size) \
do { \
if ((newsize = lensql2 + (size) + 3) > sizesql2) { \
if ((tmp = ast_realloc(sql2, (newsize / 512 + 1) * 512))) { \
sql2 = tmp; \
sizesql2 = (newsize / 512 + 1) * 512; \
} else { \
ast_log(LOG_ERROR, "Unable to allocate sufficient memory. Insert CDR failed.\n"); \
ast_free(sql); \
ast_free(sql2); \
AST_RWLIST_UNLOCK(&psql_columns); \
return -1; \
} \
} \
} while (0)
2003-10-01 15:03:30 +00:00
static int pgsql_log ( struct ast_cdr * cdr )
{
2007-07-18 19:47:20 +00:00
struct ast_tm tm ;
2004-07-09 16:19:00 +00:00
char * pgerror ;
2007-06-12 19:40:41 +00:00
PGresult * result ;
2003-10-01 15:03:30 +00:00
ast_mutex_lock ( & pgsql_lock );
if (( ! connected ) && pghostname && pgdbuser && pgpassword && pgdbname ) {
conn = PQsetdbLogin ( pghostname , pgdbport , NULL , NULL , pgdbname , pgdbuser , pgpassword );
if ( PQstatus ( conn ) != CONNECTION_BAD ) {
connected = 1 ;
} else {
2003-11-05 05:56:27 +00:00
pgerror = PQerrorMessage ( conn );
ast_log ( LOG_ERROR , "cdr_pgsql: Unable to connect to database server %s. Calls will not be logged! \n " , pghostname );
2007-06-20 23:33:49 +00:00
ast_log ( LOG_ERROR , "cdr_pgsql: Reason: %s \n " , pgerror );
2007-07-27 17:05:18 +00:00
PQfinish ( conn );
2007-07-26 18:31:28 +00:00
conn = NULL ;
2003-10-01 15:03:30 +00:00
}
}
if ( connected ) {
2008-02-25 23:04:20 +00:00
struct columns * cur ;
int lensql , lensql2 , sizesql = maxsize , sizesql2 = maxsize2 , newsize ;
char * sql = ast_calloc ( sizeof ( char ), sizesql ), * sql2 = ast_calloc ( sizeof ( char ), sizesql2 ), * tmp , * value ;
char buf [ 257 ], escapebuf [ 513 ];
lensql = snprintf ( sql , sizesql , "INSERT INTO %s (" , table );
lensql2 = snprintf ( sql2 , sizesql2 , " VALUES (" );
AST_RWLIST_RDLOCK ( & psql_columns );
AST_RWLIST_TRAVERSE ( & psql_columns , cur , list ) {
/* For fields not set, simply skip them */
ast_cdr_getvar ( cdr , cur -> name , & value , buf , sizeof ( buf ), 0 , 0 );
if ( ! value )
continue ;
LENGTHEN_BUF1 ( strlen ( cur -> name ));
lensql += snprintf ( sql + lensql , sizesql - lensql , "%s," , cur -> name );
if ( strcmp ( cur -> name , "start" ) == 0 || strcmp ( cur -> name , "calldate" ) == 0 ) {
if ( strncmp ( cur -> type , "int" , 3 ) == 0 ) {
LENGTHEN_BUF2 ( 12 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "%ld" , cdr -> start . tv_sec );
} else if ( strncmp ( cur -> type , "float" , 5 ) == 0 ) {
LENGTHEN_BUF2 ( 30 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "%f" , ( double ) cdr -> start . tv_sec + ( double ) cdr -> start . tv_usec / 1000000.0 );
} else {
/* char, hopefully */
LENGTHEN_BUF2 ( 30 );
ast_localtime ( & cdr -> start , & tm , NULL );
lensql2 += ast_strftime ( sql2 + lensql2 , sizesql2 - lensql2 , DATE_FORMAT , & tm );
}
} else if ( strcmp ( cur -> name , "answer" ) == 0 ) {
if ( strncmp ( cur -> type , "int" , 3 ) == 0 ) {
LENGTHEN_BUF2 ( 12 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "%ld" , cdr -> answer . tv_sec );
} else if ( strncmp ( cur -> type , "float" , 5 ) == 0 ) {
LENGTHEN_BUF2 ( 30 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "%f" , ( double ) cdr -> answer . tv_sec + ( double ) cdr -> answer . tv_usec / 1000000.0 );
} else {
/* char, hopefully */
LENGTHEN_BUF2 ( 30 );
ast_localtime ( & cdr -> start , & tm , NULL );
lensql2 += ast_strftime ( sql2 + lensql2 , sizesql2 - lensql2 , DATE_FORMAT , & tm );
}
} else if ( strcmp ( cur -> name , "end" ) == 0 ) {
if ( strncmp ( cur -> type , "int" , 3 ) == 0 ) {
LENGTHEN_BUF2 ( 12 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "%ld" , cdr -> end . tv_sec );
} else if ( strncmp ( cur -> type , "float" , 5 ) == 0 ) {
LENGTHEN_BUF2 ( 30 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "%f" , ( double ) cdr -> end . tv_sec + ( double ) cdr -> end . tv_usec / 1000000.0 );
} else {
/* char, hopefully */
LENGTHEN_BUF2 ( 30 );
ast_localtime ( & cdr -> end , & tm , NULL );
lensql2 += ast_strftime ( sql2 + lensql2 , sizesql2 - lensql2 , DATE_FORMAT , & tm );
}
} else if ( strcmp ( cur -> name , "duration" ) == 0 || strcmp ( cur -> name , "billsec" ) == 0 ) {
if ( cur -> type [ 0 ] == 'i' ) {
/* Get integer, no need to escape anything */
ast_cdr_getvar ( cdr , cur -> name , & value , buf , sizeof ( buf ), 0 , 0 );
LENGTHEN_BUF2 ( 12 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "%s" , value );
} else if ( strncmp ( cur -> type , "float" , 5 ) == 0 ) {
struct timeval * tv = cur -> name [ 0 ] == 'd' ? & cdr -> start : & cdr -> answer ;
LENGTHEN_BUF2 ( 30 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "%f" , ( double ) cdr -> end . tv_sec - tv -> tv_sec + cdr -> end . tv_usec / 1000000.0 - tv -> tv_usec / 1000000.0 );
} else {
/* Char field, probably */
struct timeval * tv = cur -> name [ 0 ] == 'd' ? & cdr -> start : & cdr -> answer ;
LENGTHEN_BUF2 ( 30 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "'%f'" , ( double ) cdr -> end . tv_sec - tv -> tv_sec + cdr -> end . tv_usec / 1000000.0 - tv -> tv_usec / 1000000.0 );
}
} else if ( strcmp ( cur -> name , "disposition" ) == 0 || strcmp ( cur -> name , "amaflags" ) == 0 ) {
if ( strncmp ( cur -> type , "int" , 3 ) == 0 ) {
/* Integer, no need to escape anything */
ast_cdr_getvar ( cdr , cur -> name , & value , buf , sizeof ( buf ), 0 , 1 );
LENGTHEN_BUF2 ( 12 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "%s" , value );
} else {
/* Although this is a char field, there are no special characters in the values for these fields */
ast_cdr_getvar ( cdr , cur -> name , & value , buf , sizeof ( buf ), 0 , 0 );
LENGTHEN_BUF2 ( 30 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "'%s'" , value );
}
} else {
/* Arbitrary field, could be anything */
ast_cdr_getvar ( cdr , cur -> name , & value , buf , sizeof ( buf ), 0 , 0 );
if ( strncmp ( cur -> type , "int" , 3 ) == 0 ) {
long long whatever ;
if ( value && sscanf ( value , "%lld" , & whatever ) == 1 ) {
LENGTHEN_BUF2 ( 25 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "%lld" , whatever );
} else {
LENGTHEN_BUF2 ( 1 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "0" );
}
} else if ( strncmp ( cur -> type , "float" , 5 ) == 0 ) {
long double whatever ;
if ( value && sscanf ( value , "%Lf" , & whatever ) == 1 ) {
LENGTHEN_BUF2 ( 50 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "%30Lf" , whatever );
} else {
LENGTHEN_BUF2 ( 1 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "0" );
}
/* XXX Might want to handle dates, times, and other misc fields here XXX */
} else {
if ( value )
PQescapeStringConn ( conn , escapebuf , value , strlen ( value ), NULL );
else
escapebuf [ 0 ] = '\0' ;
LENGTHEN_BUF2 ( strlen ( escapebuf ) + 2 );
lensql2 += snprintf ( sql2 + lensql2 , sizesql2 - lensql2 , "'%s'" , escapebuf );
}
}
LENGTHEN_BUF2 ( 1 );
strcat ( sql2 + lensql2 , "," );
lensql2 ++ ;
}
AST_RWLIST_UNLOCK ( & psql_columns );
LENGTHEN_BUF1 ( lensql2 );
sql [ lensql - 1 ] = ')' ;
sql2 [ lensql2 - 1 ] = ')' ;
strcat ( sql + lensql , sql2 );
ast_verb ( 11 , "[%s] \n " , sql );
2003-10-01 15:03:30 +00:00
2007-06-14 19:39:12 +00:00
ast_debug ( 2 , "cdr_pgsql: inserting a CDR record. \n " );
2003-10-01 15:03:30 +00:00
2003-11-05 05:56:27 +00:00
/* Test to be sure we're still connected... */
/* If we're connected, and connection is working, good. */
/* Otherwise, attempt reconnect. If it fails... sorry... */
if ( PQstatus ( conn ) == CONNECTION_OK ) {
connected = 1 ;
} else {
ast_log ( LOG_ERROR , "cdr_pgsql: Connection was lost... attempting to reconnect. \n " );
PQreset ( conn );
if ( PQstatus ( conn ) == CONNECTION_OK ) {
ast_log ( LOG_ERROR , "cdr_pgsql: Connection reestablished. \n " );
connected = 1 ;
} else {
pgerror = PQerrorMessage ( conn );
ast_log ( LOG_ERROR , "cdr_pgsql: Unable to reconnect to database server %s. Calls will not be logged! \n " , pghostname );
ast_log ( LOG_ERROR , "cdr_pgsql: Reason: %s \n " , pgerror );
2007-07-27 17:05:18 +00:00
PQfinish ( conn );
2007-07-26 18:31:28 +00:00
conn = NULL ;
2003-11-05 05:56:27 +00:00
connected = 0 ;
2004-01-22 17:03:11 +00:00
ast_mutex_unlock ( & pgsql_lock );
2003-11-05 05:56:27 +00:00
return - 1 ;
}
}
2008-02-25 23:04:20 +00:00
result = PQexec ( conn , sql );
2007-06-12 19:40:41 +00:00
if ( PQresultStatus ( result ) != PGRES_COMMAND_OK ) {
pgerror = PQresultErrorMessage ( result );
2003-11-05 05:56:27 +00:00
ast_log ( LOG_ERROR , "cdr_pgsql: Failed to insert call detail record into database! \n " );
2007-06-12 19:40:41 +00:00
ast_log ( LOG_ERROR , "cdr_pgsql: Reason: %s \n " , pgerror );
2005-02-19 20:10:52 +00:00
ast_log ( LOG_ERROR , "cdr_pgsql: Connection may have been lost... attempting to reconnect. \n " );
PQreset ( conn );
if ( PQstatus ( conn ) == CONNECTION_OK ) {
ast_log ( LOG_ERROR , "cdr_pgsql: Connection reestablished. \n " );
connected = 1 ;
2007-06-20 23:33:49 +00:00
PQclear ( result );
2008-02-25 23:04:20 +00:00
result = PQexec ( conn , sql );
2007-06-12 19:40:41 +00:00
if ( PQresultStatus ( result ) != PGRES_COMMAND_OK ) {
2005-02-19 20:10:52 +00:00
pgerror = PQresultErrorMessage ( result );
ast_log ( LOG_ERROR , "cdr_pgsql: HARD ERROR! Attempted reconnection failed. DROPPING CALL RECORD! \n " );
ast_log ( LOG_ERROR , "cdr_pgsql: Reason: %s \n " , pgerror );
}
}
2003-10-01 15:03:30 +00:00
ast_mutex_unlock ( & pgsql_lock );
2007-06-12 19:40:41 +00:00
PQclear ( result );
2003-10-01 15:03:30 +00:00
return - 1 ;
}
2007-06-12 19:40:41 +00:00
PQclear ( result );
2003-10-01 15:03:30 +00:00
}
ast_mutex_unlock ( & pgsql_lock );
return 0 ;
}
2007-08-16 21:09:46 +00:00
static int unload_module ( void )
2008-02-25 23:04:20 +00:00
{
struct columns * cur ;
ast_cdr_unregister ( name );
/* Give all threads time to finish */
usleep ( 1 );
2007-07-26 18:31:28 +00:00
PQfinish ( conn );
2008-02-25 23:04:20 +00:00
2005-07-11 21:06:27 +00:00
if ( pghostname )
2007-06-06 21:20:11 +00:00
ast_free ( pghostname );
2005-07-11 21:06:27 +00:00
if ( pgdbname )
2007-06-06 21:20:11 +00:00
ast_free ( pgdbname );
2005-07-11 21:06:27 +00:00
if ( pgdbuser )
2007-06-06 21:20:11 +00:00
ast_free ( pgdbuser );
2005-07-11 21:06:27 +00:00
if ( pgpassword )
2007-06-06 21:20:11 +00:00
ast_free ( pgpassword );
2005-07-11 21:06:27 +00:00
if ( pgdbport )
2007-06-06 21:20:11 +00:00
ast_free ( pgdbport );
2005-07-11 21:06:27 +00:00
if ( table )
2007-06-06 21:20:11 +00:00
ast_free ( table );
2008-02-25 23:04:20 +00:00
AST_RWLIST_WRLOCK ( & psql_columns );
while (( cur = AST_RWLIST_REMOVE_HEAD ( & psql_columns , list ))) {
ast_free ( cur );
}
AST_RWLIST_UNLOCK ( & psql_columns );
2003-10-01 15:03:30 +00:00
return 0 ;
}
2007-08-16 21:09:46 +00:00
static int config_module ( int reload )
2003-10-01 15:03:30 +00:00
{
struct ast_variable * var ;
2007-08-16 21:09:46 +00:00
char * pgerror ;
2008-02-25 23:04:20 +00:00
struct columns * cur ;
PGresult * result ;
2006-09-20 21:03:37 +00:00
const char * tmp ;
2007-08-16 21:09:46 +00:00
struct ast_config * cfg ;
struct ast_flags config_flags = { reload ? CONFIG_FLAG_FILEUNCHANGED : 0 };
if (( cfg = ast_config_load ( config , config_flags )) == NULL ) {
ast_log ( LOG_WARNING , "Unable to load config for PostgreSQL CDR's: %s \n " , config );
return - 1 ;
} else if ( cfg == CONFIG_STATUS_FILEUNCHANGED )
return 0 ;
2003-10-01 15:03:30 +00:00
2007-09-20 16:10:57 +00:00
if ( ! ( var = ast_variable_browse ( cfg , "global" ))) {
ast_config_destroy ( cfg );
2003-10-01 15:03:30 +00:00
return 0 ;
2007-09-20 16:10:57 +00:00
}
2003-10-01 15:03:30 +00:00
2007-08-16 21:09:46 +00:00
if ( ! ( tmp = ast_variable_retrieve ( cfg , "global" , "hostname" ))) {
ast_log ( LOG_WARNING , "PostgreSQL server hostname not specified. Assuming unix socket connection \n " );
2006-05-20 00:57:04 +00:00
tmp = "" ; /* connect via UNIX-socket by default */
2005-07-11 21:06:27 +00:00
}
2007-08-16 21:09:46 +00:00
if ( pghostname )
ast_free ( pghostname );
2007-09-20 16:10:57 +00:00
if ( ! ( pghostname = ast_strdup ( tmp ))) {
ast_config_destroy ( cfg );
2005-07-11 21:06:27 +00:00
return - 1 ;
2007-09-20 16:10:57 +00:00
}
2003-10-01 15:03:30 +00:00
2006-05-20 01:29:08 +00:00
if ( ! ( tmp = ast_variable_retrieve ( cfg , "global" , "dbname" ))) {
2003-11-05 05:56:27 +00:00
ast_log ( LOG_WARNING , "PostgreSQL database not specified. Assuming asterisk \n " );
2005-07-11 21:06:27 +00:00
tmp = "asteriskcdrdb" ;
}
2006-05-20 01:29:08 +00:00
2007-08-16 21:09:46 +00:00
if ( pgdbname )
ast_free ( pgdbname );
2007-09-20 16:10:57 +00:00
if ( ! ( pgdbname = ast_strdup ( tmp ))) {
ast_config_destroy ( cfg );
2005-07-11 21:06:27 +00:00
return - 1 ;
2007-09-20 16:10:57 +00:00
}
2003-10-01 15:03:30 +00:00
2006-05-20 01:29:08 +00:00
if ( ! ( tmp = ast_variable_retrieve ( cfg , "global" , "user" ))) {
2006-05-20 01:35:12 +00:00
ast_log ( LOG_WARNING , "PostgreSQL database user not specified. Assuming asterisk \n " );
tmp = "asterisk" ;
2005-07-11 21:06:27 +00:00
}
2006-05-20 01:29:08 +00:00
2007-08-16 21:09:46 +00:00
if ( pgdbuser )
ast_free ( pgdbuser );
2007-09-20 16:10:57 +00:00
if ( ! ( pgdbuser = ast_strdup ( tmp ))) {
ast_config_destroy ( cfg );
2005-07-11 21:06:27 +00:00
return - 1 ;
2007-09-20 16:10:57 +00:00
}
2003-10-01 15:03:30 +00:00
2006-05-20 01:29:08 +00:00
if ( ! ( tmp = ast_variable_retrieve ( cfg , "global" , "password" ))) {
2003-10-01 15:03:30 +00:00
ast_log ( LOG_WARNING , "PostgreSQL database password not specified. Assuming blank \n " );
2005-07-11 21:06:27 +00:00
tmp = "" ;
}
2006-05-20 01:29:08 +00:00
2007-08-16 21:09:46 +00:00
if ( pgpassword )
ast_free ( pgpassword );
2007-09-20 16:10:57 +00:00
if ( ! ( pgpassword = ast_strdup ( tmp ))) {
ast_config_destroy ( cfg );
2005-07-11 21:06:27 +00:00
return - 1 ;
2007-09-20 16:10:57 +00:00
}
2003-10-01 15:03:30 +00:00
2006-05-20 01:29:08 +00:00
if ( ! ( tmp = ast_variable_retrieve ( cfg , "global" , "port" ))) {
2003-11-05 05:56:27 +00:00
ast_log ( LOG_WARNING , "PostgreSQL database port not specified. Using default 5432. \n " );
2005-07-11 21:06:27 +00:00
tmp = "5432" ;
}
2006-05-20 01:29:08 +00:00
2007-08-16 21:09:46 +00:00
if ( pgdbport )
ast_free ( pgdbport );
2007-09-20 16:10:57 +00:00
if ( ! ( pgdbport = ast_strdup ( tmp ))) {
ast_config_destroy ( cfg );
2005-07-11 21:06:27 +00:00
return - 1 ;
2007-09-20 16:10:57 +00:00
}
2005-07-11 21:06:27 +00:00
2006-05-20 01:29:08 +00:00
if ( ! ( tmp = ast_variable_retrieve ( cfg , "global" , "table" ))) {
2004-12-09 20:34:35 +00:00
ast_log ( LOG_WARNING , "CDR table not specified. Assuming cdr \n " );
2005-07-11 21:06:27 +00:00
tmp = "cdr" ;
}
2006-05-20 01:29:08 +00:00
2007-08-16 21:09:46 +00:00
if ( table )
ast_free ( table );
2007-09-20 16:10:57 +00:00
if ( ! ( table = ast_strdup ( tmp ))) {
ast_config_destroy ( cfg );
2005-07-11 21:06:27 +00:00
return - 1 ;
2007-09-20 16:10:57 +00:00
}
2003-10-01 15:03:30 +00:00
2006-01-24 11:46:29 +00:00
if ( option_debug ) {
2008-03-11 16:28:03 +00:00
if ( ast_strlen_zero ( pghostname )) {
2007-06-14 19:39:12 +00:00
ast_debug ( 1 , "cdr_pgsql: using default unix socket \n " );
2008-03-11 16:28:03 +00:00
} else {
2007-06-14 19:39:12 +00:00
ast_debug ( 1 , "cdr_pgsql: got hostname of %s \n " , pghostname );
2008-03-11 16:28:03 +00:00
}
ast_debug ( 1 , "cdr_pgsql: got port of %s \n " , pgdbport );
ast_debug ( 1 , "cdr_pgsql: got user of %s \n " , pgdbuser );
ast_debug ( 1 , "cdr_pgsql: got dbname of %s \n " , pgdbname );
ast_debug ( 1 , "cdr_pgsql: got password of %s \n " , pgpassword );
ast_debug ( 1 , "cdr_pgsql: got sql table name of %s \n " , table );
2006-01-24 11:46:29 +00:00
}
2008-03-11 16:28:03 +00:00
2003-10-01 15:03:30 +00:00
conn = PQsetdbLogin ( pghostname , pgdbport , NULL , NULL , pgdbname , pgdbuser , pgpassword );
if ( PQstatus ( conn ) != CONNECTION_BAD ) {
2008-02-25 23:04:20 +00:00
char sqlcmd [ 256 ];
char * fname , * ftype , * flen ;
int i , rows ;
2007-06-14 19:39:12 +00:00
ast_debug ( 1 , "Successfully connected to PostgreSQL database. \n " );
2003-10-01 15:03:30 +00:00
connected = 1 ;
2008-02-25 23:04:20 +00:00
/* Query the columns */
snprintf ( sqlcmd , sizeof ( sqlcmd ), "select a.attname, t.typname, a.attlen from pg_class c, pg_attribute a, pg_type t where c.oid = a.attrelid and a.atttypid = t.oid and (a.attnum > 0) and c.relname = '%s' order by c.relname, attnum" , table );
result = PQexec ( conn , sqlcmd );
if ( PQresultStatus ( result ) != PGRES_TUPLES_OK ) {
pgerror = PQresultErrorMessage ( result );
ast_log ( LOG_ERROR , "cdr_pgsql: Failed to query database columns: %s \n " , pgerror );
PQclear ( result );
unload_module ();
return AST_MODULE_LOAD_DECLINE ;
}
rows = PQntuples ( result );
for ( i = 0 ; i < rows ; i ++ ) {
fname = PQgetvalue ( result , i , 0 );
ftype = PQgetvalue ( result , i , 1 );
flen = PQgetvalue ( result , i , 2 );
ast_verb ( 4 , "Found column '%s' of type '%s' \n " , fname , ftype );
cur = ast_calloc ( 1 , sizeof ( * cur ) + strlen ( fname ) + strlen ( ftype ) + 2 );
if ( cur ) {
sscanf ( flen , "%d" , & cur -> len );
cur -> name = ( char * ) cur + sizeof ( * cur );
cur -> type = ( char * ) cur + sizeof ( * cur ) + strlen ( fname ) + 1 ;
strcpy ( cur -> name , fname );
strcpy ( cur -> type , ftype );
AST_RWLIST_INSERT_TAIL ( & psql_columns , cur , list );
}
}
PQclear ( result );
2003-10-01 15:03:30 +00:00
} else {
2007-08-16 21:09:46 +00:00
pgerror = PQerrorMessage ( conn );
2005-02-19 20:10:52 +00:00
ast_log ( LOG_ERROR , "cdr_pgsql: Unable to connect to database server %s. CALLS WILL NOT BE LOGGED!! \n " , pghostname );
2007-08-16 21:09:46 +00:00
ast_log ( LOG_ERROR , "cdr_pgsql: Reason: %s \n " , pgerror );
2003-10-01 15:03:30 +00:00
connected = 0 ;
}
2007-09-20 16:10:57 +00:00
ast_config_destroy ( cfg );
2006-08-21 02:11:39 +00:00
return ast_cdr_register ( name , ast_module_info -> description , pgsql_log );
2003-10-01 15:03:30 +00:00
}
2006-08-21 02:11:39 +00:00
static int load_module ( void )
2003-10-01 15:03:30 +00:00
{
2007-08-16 21:09:46 +00:00
return config_module ( 0 ) ? AST_MODULE_LOAD_DECLINE : 0 ;
2003-10-01 15:03:30 +00:00
}
2006-08-21 02:11:39 +00:00
static int reload ( void )
2003-10-01 15:03:30 +00:00
{
2007-08-16 21:09:46 +00:00
return config_module ( 1 );
2003-10-01 15:03:30 +00:00
}
2006-08-21 02:11:39 +00:00
AST_MODULE_INFO ( ASTERISK_GPL_KEY , AST_MODFLAG_DEFAULT , "PostgreSQL CDR Backend" ,
. load = load_module ,
. unload = unload_module ,
. reload = reload ,
);