2006-01-28 02:48:49 +03:00
|
|
|
/*
|
|
|
|
Provides a log file to ease tracing the program.
|
|
|
|
|
2024-01-01 09:46:17 +03:00
|
|
|
Copyright (C) 2006-2024
|
2014-02-12 10:33:10 +04:00
|
|
|
Free Software Foundation, Inc.
|
2009-05-20 16:34:33 +04:00
|
|
|
|
2011-10-15 14:56:47 +04:00
|
|
|
Written by:
|
|
|
|
Roland Illig <roland.illig@gmx.de>, 2006
|
|
|
|
Slava Zanko <slavazanko@gmail.com>, 2009, 2011
|
2006-01-28 02:48:49 +03:00
|
|
|
|
|
|
|
This file is part of the Midnight Commander.
|
|
|
|
|
2011-10-15 14:56:47 +04:00
|
|
|
The Midnight Commander is free software: you can redistribute it
|
2006-01-28 02:48:49 +03:00
|
|
|
and/or modify it under the terms of the GNU General Public License as
|
2011-10-15 14:56:47 +04:00
|
|
|
published by the Free Software Foundation, either version 3 of the License,
|
|
|
|
or (at your option) any later version.
|
2006-01-28 02:48:49 +03:00
|
|
|
|
2011-10-15 14:56:47 +04:00
|
|
|
The Midnight Commander 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.
|
2006-01-28 02:48:49 +03:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2011-10-15 14:56:47 +04:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2006-01-28 02:48:49 +03:00
|
|
|
*/
|
|
|
|
|
2009-02-05 21:28:18 +03:00
|
|
|
/** \file logging.c
|
|
|
|
* \brief Source: provides a log file to ease tracing the program
|
|
|
|
*/
|
|
|
|
|
2006-01-28 02:48:49 +03:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2010-01-20 18:11:52 +03:00
|
|
|
#include "lib/global.h"
|
2010-01-21 16:06:15 +03:00
|
|
|
#include "lib/mcconfig.h"
|
2010-01-21 13:30:08 +03:00
|
|
|
#include "lib/fileloc.h"
|
2006-01-28 02:48:49 +03:00
|
|
|
|
2010-11-22 14:45:18 +03:00
|
|
|
#include "logging.h"
|
2010-11-08 13:21:45 +03:00
|
|
|
|
|
|
|
/*** global variables ****************************************************************************/
|
|
|
|
|
|
|
|
/*** file scope macro definitions ****************************************************************/
|
|
|
|
|
2011-01-19 16:00:05 +03:00
|
|
|
#define CONFIG_GROUP_NAME "Development"
|
|
|
|
#define CONFIG_KEY_NAME "logging"
|
|
|
|
#define CONFIG_KEY_NAME_FILE "logfile"
|
|
|
|
|
2010-11-08 13:21:45 +03:00
|
|
|
/*** file scope type declarations ****************************************************************/
|
|
|
|
|
Update template for .c files.
Add section for forward declarations of local functions. This section is
located before file scope variables because functions can be used in
strucutres (see find.c for example):
/*** forward declarations (file scope functions) *************************************************/
/* button callbacks */
static int start_stop (WButton * button, int action);
static int find_do_view_file (WButton * button, int action);
static int find_do_edit_file (WButton * button, int action);
/*** file scope variables ************************************************************************/
static struct
{
...
bcback_fn callback;
} fbuts[] =
{
...
{ B_STOP, NORMAL_BUTTON, N_("S&uspend"), 0, 0, NULL, start_stop },
...
{ B_VIEW, NORMAL_BUTTON, N_("&View - F3"), 0, 0, NULL, find_do_view_file },
{ B_VIEW, NORMAL_BUTTON, N_("&Edit - F4"), 0, 0, NULL, find_do_edit_file }
};
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
2023-02-24 09:27:11 +03:00
|
|
|
/*** forward declarations (file scope functions) *************************************************/
|
|
|
|
|
2010-11-08 13:21:45 +03:00
|
|
|
/*** file scope variables ************************************************************************/
|
|
|
|
|
2011-01-19 16:00:05 +03:00
|
|
|
static gboolean logging_initialized = FALSE;
|
|
|
|
static gboolean logging_enabled = FALSE;
|
|
|
|
|
Update template for .c files.
Add section for forward declarations of local functions. This section is
located before file scope variables because functions can be used in
strucutres (see find.c for example):
/*** forward declarations (file scope functions) *************************************************/
/* button callbacks */
static int start_stop (WButton * button, int action);
static int find_do_view_file (WButton * button, int action);
static int find_do_edit_file (WButton * button, int action);
/*** file scope variables ************************************************************************/
static struct
{
...
bcback_fn callback;
} fbuts[] =
{
...
{ B_STOP, NORMAL_BUTTON, N_("S&uspend"), 0, 0, NULL, start_stop },
...
{ B_VIEW, NORMAL_BUTTON, N_("&View - F3"), 0, 0, NULL, find_do_view_file },
{ B_VIEW, NORMAL_BUTTON, N_("&Edit - F4"), 0, 0, NULL, find_do_edit_file }
};
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
2023-02-24 09:27:11 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
2010-11-08 13:21:45 +03:00
|
|
|
/*** file scope functions ************************************************************************/
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
2006-01-28 02:48:49 +03:00
|
|
|
|
2011-01-19 16:00:05 +03:00
|
|
|
static gboolean
|
|
|
|
is_logging_enabled_from_env (void)
|
|
|
|
{
|
|
|
|
const char *env_is_enabled;
|
|
|
|
|
|
|
|
env_is_enabled = g_getenv ("MC_LOG_ENABLE");
|
|
|
|
if (env_is_enabled == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
logging_enabled = (*env_is_enabled == '1' || g_ascii_strcasecmp (env_is_enabled, "true") == 0);
|
|
|
|
logging_initialized = TRUE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2009-02-06 01:46:07 +03:00
|
|
|
static gboolean
|
2010-11-08 13:21:45 +03:00
|
|
|
is_logging_enabled (void)
|
2006-01-28 02:48:49 +03:00
|
|
|
{
|
2011-01-19 16:00:05 +03:00
|
|
|
|
|
|
|
if (logging_initialized)
|
|
|
|
return logging_enabled;
|
|
|
|
|
|
|
|
if (is_logging_enabled_from_env ())
|
|
|
|
return logging_enabled;
|
|
|
|
|
|
|
|
logging_enabled =
|
2016-04-26 09:30:42 +03:00
|
|
|
mc_config_get_bool (mc_global.main_config, CONFIG_GROUP_NAME, CONFIG_KEY_NAME, FALSE);
|
2011-01-19 16:00:05 +03:00
|
|
|
logging_initialized = TRUE;
|
|
|
|
|
2010-11-08 13:21:45 +03:00
|
|
|
return logging_enabled;
|
2006-01-28 02:48:49 +03:00
|
|
|
}
|
|
|
|
|
2010-11-08 13:21:45 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
2006-01-28 02:48:49 +03:00
|
|
|
|
2011-01-19 16:00:05 +03:00
|
|
|
static char *
|
|
|
|
get_log_filename (void)
|
|
|
|
{
|
|
|
|
const char *env_filename;
|
|
|
|
|
|
|
|
env_filename = g_getenv ("MC_LOG_FILE");
|
|
|
|
if (env_filename != NULL)
|
|
|
|
return g_strdup (env_filename);
|
|
|
|
|
2016-04-26 09:30:42 +03:00
|
|
|
if (mc_config_has_param (mc_global.main_config, CONFIG_GROUP_NAME, CONFIG_KEY_NAME_FILE))
|
|
|
|
return mc_config_get_string (mc_global.main_config, CONFIG_GROUP_NAME, CONFIG_KEY_NAME_FILE,
|
|
|
|
NULL);
|
2011-01-19 16:00:05 +03:00
|
|
|
|
2011-11-24 02:28:07 +04:00
|
|
|
return mc_config_get_full_path ("mc.log");
|
2011-01-19 16:00:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2011-01-17 15:36:56 +03:00
|
|
|
static void
|
2015-08-25 15:28:01 +03:00
|
|
|
G_GNUC_PRINTF (1, 0)
|
2011-01-17 15:36:56 +03:00
|
|
|
mc_va_log (const char *fmt, va_list args)
|
2006-01-28 02:48:49 +03:00
|
|
|
{
|
2010-11-08 13:21:45 +03:00
|
|
|
char *logfilename;
|
|
|
|
|
2011-01-19 16:00:05 +03:00
|
|
|
logfilename = get_log_filename ();
|
|
|
|
|
2011-01-17 15:36:56 +03:00
|
|
|
if (logfilename != NULL)
|
2010-11-08 13:21:45 +03:00
|
|
|
{
|
2013-10-15 10:34:04 +04:00
|
|
|
FILE *f;
|
|
|
|
|
2011-01-17 15:36:56 +03:00
|
|
|
f = fopen (logfilename, "a");
|
|
|
|
if (f != NULL)
|
2010-11-08 13:21:45 +03:00
|
|
|
{
|
2011-01-17 15:36:56 +03:00
|
|
|
(void) vfprintf (f, fmt, args);
|
|
|
|
(void) fclose (f);
|
2010-11-08 13:21:45 +03:00
|
|
|
}
|
2011-01-17 15:36:56 +03:00
|
|
|
g_free (logfilename);
|
2010-11-08 13:21:45 +03:00
|
|
|
}
|
2011-01-17 15:36:56 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/*** public functions ****************************************************************************/
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
void
|
|
|
|
mc_log (const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
if (!is_logging_enabled ())
|
|
|
|
return;
|
|
|
|
|
|
|
|
va_start (args, fmt);
|
|
|
|
mc_va_log (fmt, args);
|
|
|
|
va_end (args);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
void
|
|
|
|
mc_always_log (const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start (args, fmt);
|
|
|
|
mc_va_log (fmt, args);
|
|
|
|
va_end (args);
|
2006-01-28 02:48:49 +03:00
|
|
|
}
|
2010-11-08 13:21:45 +03:00
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|