2010-05-09 13:17:13 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
#ifndef __SHELL_PERF_LOG_H__
|
|
|
|
#define __SHELL_PERF_LOG_H__
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
2010-05-12 17:24:52 -04:00
|
|
|
#include <gio/gio.h>
|
2010-05-09 13:17:13 -04:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2015-09-24 14:07:44 -04:00
|
|
|
#define SHELL_TYPE_PERF_LOG (shell_perf_log_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (ShellPerfLog, shell_perf_log, SHELL, PERF_LOG, GObject)
|
2010-05-09 13:17:13 -04:00
|
|
|
|
|
|
|
ShellPerfLog *shell_perf_log_get_default (void);
|
|
|
|
|
|
|
|
void shell_perf_log_set_enabled (ShellPerfLog *perf_log,
|
|
|
|
gboolean enabled);
|
|
|
|
|
|
|
|
void shell_perf_log_define_event (ShellPerfLog *perf_log,
|
|
|
|
const char *name,
|
|
|
|
const char *description,
|
|
|
|
const char *signature);
|
|
|
|
void shell_perf_log_event (ShellPerfLog *perf_log,
|
|
|
|
const char *name);
|
|
|
|
void shell_perf_log_event_i (ShellPerfLog *perf_log,
|
|
|
|
const char *name,
|
|
|
|
gint32 arg);
|
|
|
|
void shell_perf_log_event_x (ShellPerfLog *perf_log,
|
|
|
|
const char *name,
|
|
|
|
gint64 arg);
|
|
|
|
void shell_perf_log_event_s (ShellPerfLog *perf_log,
|
|
|
|
const char *name,
|
|
|
|
const char *arg);
|
|
|
|
|
2010-05-11 15:48:47 -04:00
|
|
|
void shell_perf_log_define_statistic (ShellPerfLog *perf_log,
|
|
|
|
const char *name,
|
|
|
|
const char *description,
|
|
|
|
const char *signature);
|
|
|
|
|
|
|
|
void shell_perf_log_update_statistic_i (ShellPerfLog *perf_log,
|
|
|
|
const char *name,
|
|
|
|
int value);
|
|
|
|
void shell_perf_log_update_statistic_x (ShellPerfLog *perf_log,
|
|
|
|
const char *name,
|
|
|
|
gint64 value);
|
|
|
|
|
|
|
|
typedef void (*ShellPerfStatisticsCallback) (ShellPerfLog *perf_log,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
void shell_perf_log_add_statistics_callback (ShellPerfLog *perf_log,
|
|
|
|
ShellPerfStatisticsCallback callback,
|
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify notify);
|
|
|
|
|
|
|
|
void shell_perf_log_collect_statistics (ShellPerfLog *perf_log);
|
|
|
|
|
2010-05-09 13:17:13 -04:00
|
|
|
typedef void (*ShellPerfReplayFunction) (gint64 time,
|
|
|
|
const char *name,
|
|
|
|
const char *signature,
|
2010-05-12 17:24:52 -04:00
|
|
|
GValue *arg,
|
|
|
|
gpointer user_data);
|
2010-05-09 13:17:13 -04:00
|
|
|
|
|
|
|
void shell_perf_log_replay (ShellPerfLog *perf_log,
|
2010-05-12 17:24:52 -04:00
|
|
|
ShellPerfReplayFunction replay_function,
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
gboolean shell_perf_log_dump_events (ShellPerfLog *perf_log,
|
|
|
|
GOutputStream *out,
|
|
|
|
GError **error);
|
|
|
|
gboolean shell_perf_log_dump_log (ShellPerfLog *perf_log,
|
|
|
|
GOutputStream *out,
|
|
|
|
GError **error);
|
2010-05-09 13:17:13 -04:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __SHELL_PERF_LOG_H__ */
|