stumpless 2.2.0
Loading...
Searching...
No Matches
stumpless::Sqlite3Target Class Reference

#include <Sqlite3Target.hpp>

Public Member Functions

 Sqlite3Target (struct stumpless_target *equivalent)
 
 Sqlite3Target (const char *name)
 Creates a new target for the given database.
 
 ~Sqlite3Target (void)
 Closes this target and releases all memory and other resources held by it.
 
const char * GetDefaultAppName (void)
 Returns the default app name used by this target.
 
const char * GetDefaultMsgid (void)
 Returns the default msgid used by this target.
 
Facility GetDefaultFacility (void)
 Gets the default facility of this target.
 
stumpless_filter_func_t GetFilter (void)
 Returns the current filter used by this target to determine if entries should be allowed through it.
 
int GetMask (void)
 Gets the log mask of this target.
 
const char * GetName (void)
 Returns the name of this target.
 
int GetOption (int option)
 Gets the given option for this target.
 
bool IsOpen (void)
 Checks to see if this target is open.
 
Sqlite3TargetLog (const char *message,...)
 Writes a string message to this target.
 
Sqlite3TargetLog (int priority, const char *message,...)
 Writes a log message with the given priority to this target.
 
Sqlite3TargetLog (Facility facility, Severity severity, const char *message,...)
 Writes a log message with the given facility and severity to this target.
 
Sqlite3TargetLog (Entry entry)
 Writes an Entry to this target.
 
void Open (void)
 Opens this target if it has been paused.
 
Sqlite3TargetSetDefaultAppName (const char *app_name)
 Sets the default app name for this target.
 
Sqlite3TargetSetDefaultFacility (int facility)
 Sets the default facility of the target.
 
Sqlite3TargetSetDefaultMsgid (const char *msgid)
 Sets the default message id for this target.
 
Sqlite3TargetSetFilter (stumpless_filter_func_t filter)
 Sets the filter used by this target to determine whether entries should be logged to it.
 
Sqlite3TargetSetMask (int mask)
 Sets the log mask of a target.
 
Sqlite3TargetSetOption (int option)
 Sets an option on a target.
 
Sqlite3TargetUnsetOption (int option)
 Unsets an option on a target.
 

Public Attributes

struct stumpless_target * equivalent
 

Constructor & Destructor Documentation

◆ Sqlite3Target() [1/2]

stumpless::Sqlite3Target::Sqlite3Target ( struct stumpless_target * equivalent)

◆ Sqlite3Target() [2/2]

stumpless::Sqlite3Target::Sqlite3Target ( const char * name)

Creates a new target for the given database.

Parameters
nameThe filename of the database.

◆ ~Sqlite3Target()

stumpless::Sqlite3Target::~Sqlite3Target ( void )

Closes this target and releases all memory and other resources held by it.

Member Function Documentation

◆ GetDefaultAppName()

const char * stumpless::Sqlite3Target::GetDefaultAppName ( void )

Returns the default app name used by this target.

The returned character buffer must be freed by the caller when it is no longer needed to avoid memory leaks. Available since release v2.0.0.

Returns
The default app name of this target.

◆ GetDefaultFacility()

Facility stumpless::Sqlite3Target::GetDefaultFacility ( void )

Gets the default facility of this target.

Returns
The default facility of this target.

◆ GetDefaultMsgid()

const char * stumpless::Sqlite3Target::GetDefaultMsgid ( void )

Returns the default msgid used by this target.

The returned character buffer must be freed by the caller when it is no longer needed to avoid memory leaks. Available since release v2.0.0.

Returns
The default msgid of this target.

◆ GetFilter()

stumpless_filter_func_t stumpless::Sqlite3Target::GetFilter ( void )

Returns the current filter used by this target to determine if entries should be allowed through it.

Note that NULL is a valid return value from this function, indicating that the target does not currently have a filter set. Available since release v2.1.0.

Returns
The filter function in use by this target.

◆ GetMask()

int stumpless::Sqlite3Target::GetMask ( void )

Gets the log mask of this target.

The mask is a bit field of severities that this target will allow if the default mask-based filter is in use. These can be formed and checked using the STUMPLESS_SEVERITY_MASK and STUMPLESS_SEVERITY_MASK_UPTO macros, and combining them using bitwise or operations. Available since release v2.1.0.

Returns
The current mask of this target.

◆ GetName()

const char * stumpless::Sqlite3Target::GetName ( void )

Returns the name of this target.

The returned character buffer must be freed by the caller when it is no longer needed to avoid memory leaks. Available since release v2.0.0.

Returns
The name of this Target.

◆ GetOption()

int stumpless::Sqlite3Target::GetOption ( int option)

Gets the given option for this target.

While the returned value is the option if it is set, callers can also simply use the truth value of the return to see if the provided option is set.

Parameters
optionThe option to check this target for.
Returns
The option if it is set on the target. If the option is not set, then zero is returned.

◆ IsOpen()

bool stumpless::Sqlite3Target::IsOpen ( void )

Checks to see if this target is open.

Returns
True if the target is open, false otherwise.

◆ Log() [1/4]

Sqlite3Target & stumpless::Sqlite3Target::Log ( const char * message,
... )

Writes a string message to this target.

Parameters
messageThe message to log, optionally containing any format specifiers valid in printf. This may be NULL, in which case an event with no message is logged.
...Substitutions for any format specifiers provided in message. The number of substitutions provided must exactly match the number of specifiers given.
Returns
The modified target.

◆ Log() [2/4]

Sqlite3Target & stumpless::Sqlite3Target::Log ( Entry entry)

Writes an Entry to this target.

Parameters
entrythe entry to write
Returns
The modified target.

◆ Log() [3/4]

Sqlite3Target & stumpless::Sqlite3Target::Log ( Facility facility,
Severity severity,
const char * message,
... )

Writes a log message with the given facility and severity to this target.

Parameters
facilityThe facility code of the message.
severityThe severity code of the message.
messageThe message to log, optionally containing any format specifiers valid in printf.
...Substitutions for any format specifiers provided in message. The number of substitutions provided must exactly match the number of specifiers given.
Returns
The modified target.

◆ Log() [4/4]

Sqlite3Target & stumpless::Sqlite3Target::Log ( int priority,
const char * message,
... )

Writes a log message with the given priority to this target.

Parameters
priorityThe priority of the message, described in RFC 5424 as the PRIVAL. This should be the bitwise or of the integer values of a Facility and a Severity.
messageThe message to log, optionally containing any format specifiers valid in printf.
...Substitutions for any format specifiers provided in message. The number of substitutions provided must exactly match the number of specifiers given.
Returns
The modified target.

◆ Open()

void stumpless::Sqlite3Target::Open ( void )

Opens this target if it has been paused.

◆ SetDefaultAppName()

Sqlite3Target & stumpless::Sqlite3Target::SetDefaultAppName ( const char * app_name)

Sets the default app name for this target.

Parameters
app_nameThe new default app name, as a NULL-terminated string.
Returns
The modified target.

◆ SetDefaultFacility()

Sqlite3Target & stumpless::Sqlite3Target::SetDefaultFacility ( int facility)

Sets the default facility of the target.

Parameters
facilityThe default facility for the target to use. This should be a STUMPLESS_FACILITY value.
Returns
The modified target.

◆ SetDefaultMsgid()

Sqlite3Target & stumpless::Sqlite3Target::SetDefaultMsgid ( const char * msgid)

Sets the default message id for this target.

Parameters
msgidThe new default message id, as a NULL-terminated string.
Returns
The modified target.

◆ SetFilter()

Sqlite3Target & stumpless::Sqlite3Target::SetFilter ( stumpless_filter_func_t filter)

Sets the filter used by this target to determine whether entries should be logged to it.

Available since release v2.1.0.

Parameters
filterThe new filter to use for this target.
Returns
The modified target.

◆ SetMask()

Sqlite3Target & stumpless::Sqlite3Target::SetMask ( int mask)

Sets the log mask of a target.

The mask is a bit field of severities that this target will allow if the default mask-based filter is in use. These can be formed and checked using the STUMPLESS_SEVERITY_MASK and STUMPLESS_SEVERITY_MASK_UPTO macros, and combining them using bitwise or operations. Available since release v2.1.0.

Parameters
maskThe new mask to use for this target.
Returns
The modified target.

◆ SetOption()

Sqlite3Target & stumpless::Sqlite3Target::SetOption ( int option)

Sets an option on a target.

Parameters
optionThe option to set. This should be a STUMPLESS_OPTION value.
Returns
The modified target.

◆ UnsetOption()

Sqlite3Target & stumpless::Sqlite3Target::UnsetOption ( int option)

Unsets an option on a target.

Parameters
optionThe option to unset. This should be a STUMPLESS_OPTION value.
Returns
The modified target.

Member Data Documentation

◆ equivalent

struct stumpless_target* stumpless::Sqlite3Target::equivalent

The documentation for this class was generated from the following file: