NeoMutt
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
mutt_logging.h File Reference

NeoMutt Logging. More...

#include <stdbool.h>
#include <stdint.h>
#include <time.h>
#include "mutt/lib.h"
+ Include dependency graph for mutt_logging.h:

Go to the source code of this file.

Functions

int log_disp_curses (time_t stamp, const char *file, int line, const char *function, enum LogLevel level, const char *format,...) __attribute__((__format__(__printf__
 
int void mutt_log_prep (void)
 Prepare to log.
 
int mutt_log_start (void)
 Enable file logging.
 
void mutt_log_stop (void)
 Close the log file.
 
int mutt_log_set_level (enum LogLevel level, bool verbose)
 Change the logging level.
 
int mutt_log_set_file (const char *file)
 Change the logging file.
 
int main_log_observer (struct NotifyCallback *nc)
 Notification that a Config Variable has changed - Implements observer_t -.
 
int level_validator (const struct ConfigSet *cs, const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
 Validate the "debug_level" config variable - Implements ConfigDef::validator() -.
 
void mutt_clear_error (void)
 Clear the message line (bottom line of screen)
 

Detailed Description

NeoMutt Logging.

Authors
  • Richard Russon

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, see http://www.gnu.org/licenses/.

Definition in file mutt_logging.h.

Function Documentation

◆ log_disp_curses()

int log_disp_curses ( time_t  stamp,
const char *  file,
int  line,
const char *  function,
enum LogLevel  level,
const char *  format,
  ... 
)

◆ mutt_log_prep()

int void mutt_log_prep ( void  )

Prepare to log.

Definition at line 170 of file mutt_logging.c.

171{
172 char ver[64] = { 0 };
173 snprintf(ver, sizeof(ver), "-%s%s", PACKAGE_VERSION, GitVer);
175}
const char * GitVer
void log_file_set_version(const char *version)
Set the program's version number.
Definition: logging.c:220
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mutt_log_start()

int mutt_log_start ( void  )

Enable file logging.

Return values
0Success, or already running
-1Failed to start

This also handles file rotation.

Definition at line 247 of file mutt_logging.c.

248{
249 const short c_debug_level = cs_subset_number(NeoMutt->sub, "debug_level");
250 if (c_debug_level < 1)
251 return 0;
252
253 if (log_file_running())
254 return 0;
255
256 const char *const c_debug_file = cs_subset_path(NeoMutt->sub, "debug_file");
257 mutt_log_set_file(c_debug_file);
258
259 /* This will trigger the file creation */
260 if (log_file_set_level(c_debug_level, true) < 0)
261 return -1;
262
263 return 0;
264}
short cs_subset_number(const struct ConfigSubset *sub, const char *name)
Get a number config item by name.
Definition: helpers.c:144
const char * cs_subset_path(const struct ConfigSubset *sub, const char *name)
Get a path config item by name.
Definition: helpers.c:169
int log_file_set_level(enum LogLevel level, bool verbose)
Set the logging level.
Definition: logging.c:175
bool log_file_running(void)
Is the log file running?
Definition: logging.c:229
int mutt_log_set_file(const char *file)
Change the logging file.
Definition: mutt_logging.c:194
Container for Accounts, Notifications.
Definition: neomutt.h:41
struct ConfigSubset * sub
Inherited config items.
Definition: neomutt.h:45
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mutt_log_stop()

void mutt_log_stop ( void  )

Close the log file.

Definition at line 180 of file mutt_logging.c.

181{
182 log_file_close(false);
184}
void log_file_close(bool verbose)
Close the log file.
Definition: logging.c:98
#define FREE(x)
Definition: memory.h:45
static char * CurrentFile
The previous log file name.
Definition: mutt_logging.c:48
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mutt_log_set_level()

int mutt_log_set_level ( enum LogLevel  level,
bool  verbose 
)

Change the logging level.

Parameters
levelLogging level
verboseIf true, then log the event
Return values
0Success
-1Error, level is out of range

Definition at line 225 of file mutt_logging.c.

226{
227 if (!CurrentFile)
228 {
229 const char *const c_debug_file = cs_subset_path(NeoMutt->sub, "debug_file");
230 mutt_log_set_file(c_debug_file);
231 }
232
233 if (log_file_set_level(level, verbose) != 0)
234 return -1;
235
236 cs_subset_str_native_set(NeoMutt->sub, "debug_level", level, NULL);
237 return 0;
238}
int cs_subset_str_native_set(const struct ConfigSubset *sub, const char *name, intptr_t value, struct Buffer *err)
Natively set the value of a string config item.
Definition: subset.c:304
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mutt_log_set_file()

int mutt_log_set_file ( const char *  file)

Change the logging file.

Parameters
fileName to use
Return values
0Success, file opened
-1Error, see errno

Close the old log, rotate the new logs and open the new log.

Definition at line 194 of file mutt_logging.c.

195{
196 const char *const c_debug_file = cs_subset_path(NeoMutt->sub, "debug_file");
197 if (!mutt_str_equal(CurrentFile, c_debug_file))
198 {
199 struct Buffer *expanded = buf_pool_get();
200 buf_addstr(expanded, c_debug_file);
201 buf_expand_path(expanded);
202
203 const char *name = mutt_file_rotate(buf_string(expanded), NumOfLogs);
204 buf_pool_release(&expanded);
205 if (!name)
206 return -1;
207
208 log_file_set_filename(name, false);
209 FREE(&name);
210 mutt_str_replace(&CurrentFile, c_debug_file);
211 }
212
213 cs_subset_str_string_set(NeoMutt->sub, "debug_file", file, NULL);
214
215 return 0;
216}
size_t buf_addstr(struct Buffer *buf, const char *s)
Add a string to a Buffer.
Definition: buffer.c:238
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition: buffer.h:93
const char * mutt_file_rotate(const char *path, int count)
Rotate a set of numbered files.
Definition: file.c:521
int log_file_set_filename(const char *file, bool verbose)
Set the filename for the log.
Definition: logging.c:149
bool mutt_str_equal(const char *a, const char *b)
Compare two strings.
Definition: string.c:798
char * mutt_str_replace(char **p, const char *s)
Replace one string with another.
Definition: string.c:327
static const int NumOfLogs
How many log files to rotate.
Definition: mutt_logging.c:49
void buf_expand_path(struct Buffer *buf)
Create the canonical path.
Definition: muttlib.c:335
struct Buffer * buf_pool_get(void)
Get a Buffer from the pool.
Definition: pool.c:81
void buf_pool_release(struct Buffer **ptr)
Return a Buffer to the pool.
Definition: pool.c:94
String manipulation buffer.
Definition: buffer.h:34
int cs_subset_str_string_set(const struct ConfigSubset *sub, const char *name, const char *value, struct Buffer *err)
Set a config item by string.
Definition: subset.c:407
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ mutt_clear_error()

void mutt_clear_error ( void  )

Clear the message line (bottom line of screen)

Definition at line 73 of file mutt_logging.c.

74{
75 /* Make sure the error message has had time to be read */
76 if (OptMsgErr)
78
79 ErrorBufMessage = false;
80 if (!OptNoCurses)
82}
bool OptNoCurses
(pseudo) when sending in batch mode
Definition: globals.c:79
bool OptMsgErr
(pseudo) used by mutt_error/mutt_message
Definition: globals.c:72
bool ErrorBufMessage
true if the last message was an error
Definition: globals.c:36
void msgwin_clear_text(struct MuttWindow *win)
Clear the text in the Message Window.
Definition: msgwin.c:515
static void error_pause(void)
Wait for an error message to be read.
Definition: mutt_logging.c:58
+ Here is the call graph for this function: