These functions are used internally by EFL in general for profiling. More...
Data Structures | |
struct | _Eina_Evlog_Item |
struct | _Eina_Evlog_Buf |
Typedefs | |
typedef struct _Eina_Evlog_Item | Eina_Evlog_Item |
typedef struct _Eina_Evlog_Buf | Eina_Evlog_Buf |
Functions | |
EINA_API void | eina_evlog (const char *event, void *obj, double srctime, const char *detail) |
Logs an event for profiling data. More... | |
EINA_API Eina_Evlog_Buf * | eina_evlog_steal (void) |
Steals an event log buffer from the evlog core. More... | |
EINA_API void | eina_evlog_start (void) |
Begins logging - until now eina_evlog is a NOOP. More... | |
EINA_API void | eina_evlog_stop (void) |
Stops logging. More... | |
These functions are used internally by EFL in general for profiling.
This API is not considered stable or intended for use outside of EFL itself at this stage. The format of debug logs may and likely will change as this feature matures.
EINA_API void eina_evlog | ( | const char * | event, |
void * | obj, | ||
double | srctime, | ||
const char * | detail | ||
) |
Logs an event for profiling data.
Log some interesting event inside of EFL, e.g. a wakeup (and why etc.). The event
string must always be provided and be of the form:
"+eventname" "-eventname" ">eventname" "<eventname" "!eventname" "*eventname"
etc. The "+" char means an event is beginning (and any subsequent events logged are really children of this event). The "-" char means an event is ending and so all child events SHOULD have ended by now. A "!" character means the event is a one-off with no beginning or end. A"*" means this is special metadata and the detail field may need special parsing based on the eventname, so ignore unless known. A ">" character means we begin this "state" of the process (these are separate to "+" and "-" events and don't nest - are not related to a thread or any other event, but just a state). "<" Ends the given state given by the "eventname" part of the string. Any string following this initial character is the event or state name (and must be provided in the exact same string at both "+", "<" and "-", ">" events). This is what will be displayed in a debugger (and may be a well known string thus given a nice UI flourish with icons, labels and colors, so don't change this string unless you want to impact such visibility of these events). The event string after the first character as above can be anything, including white space. It is suggested to keep it human readable and as short as feasible.
The object
is optional, and if not used, pass in NULL. If it is used, it can be a pointer to anything. It is intended simply to be of use to indicate an event happens on object A vs object B. What this points to is irrelevant as the pointer is never de-referenced or used other than as a label to differentiate an event on 2 different objects.
The srctime
parameter is 0.0 if not used, or if used, contains a timepoint for an event that triggered this once. For example, if a device or hardware interrupt causes this event, that device may provide a timestamp/timepoint as part of the device information to indicate the exact time the hardware interrupt happened. This can be useful to have more information as to the latency of an actual source of an event such as the hardware interrupt time, and when the code actually begins seeing or processing it.
The detail
string is optional (and if unused should be NULL). This is for providing more detailed information to log such as perhaps a the state at the time of the log events or a series of parameters and input that caused this event.
[in] | event | The event string - see above for format |
[in] | obj | An optional object "pointer" to associate |
[in] | srctime | An optional source event timestamp that caused this event |
[in] | detail | An optional event detail string with more info |
Referenced by ecore_init(), and ecore_main_loop_begin().
EINA_API Eina_Evlog_Buf * eina_evlog_steal | ( | void | ) |
Steals an event log buffer from the evlog core.
Only one buffer can be stolen at any time. If you steal a new buffer, the old stolen buffer is "released" back to the evlog core.
References eina_spinlock_release(), and eina_spinlock_take().
EINA_API void eina_evlog_start | ( | void | ) |
Begins logging - until now eina_evlog is a NOOP.
References eina_spinlock_release(), and eina_spinlock_take().
EINA_API void eina_evlog_stop | ( | void | ) |
Stops logging.
You must not be using any evlog buffers stolen by eina_evlog_steal() by the time you call this function.
References eina_spinlock_release(), and eina_spinlock_take().