mirror of https://github.com/sipwise/heartbeat.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
2.7 KiB
128 lines
2.7 KiB
/*
|
|
* ha_logger.c utility to log a message to the logging daemon
|
|
*
|
|
* Copyright (C) 2004 Guochun Shi <gshi@ncsa.uiuc.edu>
|
|
*
|
|
* This program 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 to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*/
|
|
#include <lha_internal.h>
|
|
#include <glib.h>
|
|
#include <clplumbing/cl_log.h>
|
|
#include <clplumbing/ipc.h>
|
|
#include <clplumbing/GSource.h>
|
|
#include <clplumbing/cl_malloc.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include <clplumbing/loggingdaemon.h>
|
|
#include <syslog.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <errno.h>
|
|
#include <netinet/in.h>
|
|
|
|
#define EXIT_OK 0
|
|
#define EXIT_FAIL 1
|
|
#define MAXMSGSIZE (1048*4)
|
|
|
|
int LogToDaemon(int priority, const char * buf, int bstrlen, gboolean use_pri_str);
|
|
extern IPC_Channel * get_log_chan(void);
|
|
|
|
|
|
static gboolean
|
|
send_log_msg(gpointer data)
|
|
{
|
|
static int count = 0;
|
|
char msgstring[MAXMSGSIZE];
|
|
int priority;
|
|
static int dropmsg = 0;
|
|
long maxcount = (long) data;
|
|
IPC_Channel* chan = get_log_chan();
|
|
|
|
|
|
if (chan == NULL){
|
|
cl_log(LOG_ERR, "logging channel is NULL");
|
|
return FALSE;
|
|
|
|
}
|
|
if (count >= maxcount){
|
|
cl_log(LOG_INFO, "total message dropped: %d", dropmsg);
|
|
return FALSE;
|
|
}
|
|
|
|
if (chan->send_queue->current_qlen
|
|
== chan->send_queue->max_qlen){
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
priority = LOG_INFO;
|
|
msgstring[0]=0;
|
|
|
|
snprintf(msgstring, sizeof(msgstring),"Message %d", count++);
|
|
fprintf(stderr, "sending %s\n", msgstring);
|
|
if (LogToDaemon(priority, msgstring,MAXMSGSIZE, FALSE) != HA_OK){
|
|
printf("sending out messge %d failed\n", count);
|
|
dropmsg++;
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
static void
|
|
usage(char* prog)
|
|
{
|
|
printf("Usage:%s <num_of_messages>\n", prog);
|
|
return;
|
|
}
|
|
|
|
int
|
|
main(int argc, char** argv)
|
|
{
|
|
|
|
long maxcount;
|
|
GMainLoop* loop;
|
|
|
|
if (argc < 2){
|
|
usage(argv[0]);
|
|
return 1;
|
|
}
|
|
|
|
maxcount = atoi(argv[1]);
|
|
|
|
cl_log_set_facility(HA_LOG_FACILITY);
|
|
cl_log_set_uselogd(TRUE);
|
|
|
|
if(!cl_log_test_logd()){
|
|
return EXIT_FAIL;
|
|
}
|
|
|
|
cl_log_set_logd_channel_source(NULL, NULL);
|
|
|
|
g_idle_add(send_log_msg, (gpointer)maxcount);
|
|
|
|
|
|
loop = g_main_loop_new(NULL, FALSE);
|
|
g_main_run(loop);
|
|
return(1);
|
|
|
|
}
|
|
|