2009-04-23 17:03:34 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <gdk/gdk.h>
|
|
|
|
#include <gdk/gdkx.h>
|
|
|
|
#include <gio/gio.h>
|
2009-04-23 10:46:36 -04:00
|
|
|
#include <gconf/gconf.h>
|
|
|
|
#include <gconf/gconf-client.h>
|
2009-07-30 15:40:26 -04:00
|
|
|
#include <dbus/dbus-glib.h>
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-08-11 11:32:58 -04:00
|
|
|
#define SN_API_NOT_YET_FROZEN 1
|
|
|
|
#include <libsn/sn.h>
|
|
|
|
|
|
|
|
#include "shell-texture-cache.h"
|
2009-04-23 17:03:34 -04:00
|
|
|
#include "shell-app-monitor.h"
|
2009-06-25 17:42:46 -04:00
|
|
|
#include "shell-app-system.h"
|
2009-04-23 17:03:34 -04:00
|
|
|
#include "shell-global.h"
|
2009-08-12 16:05:25 -04:00
|
|
|
#include "shell-marshal.h"
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-05-26 17:22:51 -04:00
|
|
|
#include "display.h"
|
2009-06-25 17:42:46 -04:00
|
|
|
#include "window.h"
|
2009-04-23 17:03:34 -04:00
|
|
|
|
|
|
|
/* This file includes modified code from
|
|
|
|
* desktop-data-engine/engine-dbus/hippo-application-monitor.c
|
|
|
|
* in the functions collecting application usage data.
|
|
|
|
* Written by Owen Taylor, originally licensed under LGPL 2.1.
|
|
|
|
* Copyright Red Hat, Inc. 2006-2008
|
|
|
|
*/
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
/**
|
|
|
|
* SECTION:shell-app-monitor
|
|
|
|
* @short_description: Associate windows with application data and track usage/state data
|
|
|
|
*
|
|
|
|
* The application monitor has two primary purposes. First, it
|
|
|
|
* maintains a mapping from windows to applications (.desktop file ids).
|
|
|
|
* It currently implements this with some heuristics on the WM_CLASS X11
|
|
|
|
* property (and some static override regexps); in the future, we want to
|
|
|
|
* have it also track through startup-notification.
|
|
|
|
*
|
|
|
|
* Second, the monitor also maintains some usage and state statistics for
|
|
|
|
* windows by keeping track of the approximate time an application's
|
|
|
|
* windows are focus, as well as the last workspace it was seen on.
|
|
|
|
* This time tracking is implemented by watching for restack notifications,
|
|
|
|
* and computing a time delta between them. Also we monitor the
|
|
|
|
* GNOME Session "StatusChanged" signal which by default is emitted after 5
|
|
|
|
* minutes to signify idle.
|
|
|
|
*/
|
|
|
|
|
2009-04-23 10:46:36 -04:00
|
|
|
#define APP_MONITOR_GCONF_DIR SHELL_GCONF_DIR"/app_monitor"
|
2009-05-04 13:40:44 -04:00
|
|
|
#define ENABLE_MONITORING_KEY APP_MONITOR_GCONF_DIR"/enable_monitoring"
|
2009-04-23 10:46:36 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
#define FOCUS_TIME_MIN_SECONDS 7 /* Need 7 continuous seconds of focus */
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
#define USAGE_CLEAN_DAYS 7 /* If after 7 days we haven't seen an app, purge it */
|
|
|
|
|
|
|
|
#define SNAPSHOTS_PER_CLEAN_SECONDS ((USAGE_CLEAN_DAYS * 24 * 60 * 60) / MIN_SNAPSHOT_APP_SECONDS) /* One week */
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
/* Data is saved to file SHELL_CONFIG_DIR/DATA_FILENAME */
|
|
|
|
#define DATA_FILENAME "application_state"
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
#define IDLE_TIME_TRANSITION_SECONDS 30 /* If we transition to idle, only count
|
|
|
|
* this many seconds of usage */
|
2009-04-23 17:03:34 -04:00
|
|
|
|
|
|
|
/* The ranking algorithm we use is: every time an app score reaches SCORE_MAX,
|
|
|
|
* divide all scores by 2. Scores are raised by 1 unit every SAVE_APPS_TIMEOUT
|
|
|
|
* seconds. This mechanism allows the list to update relatively fast when
|
|
|
|
* a new app is used intensively.
|
|
|
|
* To keep the list clean, and avoid being Big Brother, apps that have not been
|
|
|
|
* seen for a week and whose score is below SCORE_MIN are removed.
|
|
|
|
*/
|
2009-07-30 15:40:26 -04:00
|
|
|
|
|
|
|
/* How often we save internally app data, in seconds */
|
|
|
|
#define SAVE_APPS_TIMEOUT_SECONDS 5 /* leave this low for testing, we can bump later if need be */
|
|
|
|
|
|
|
|
/* With this value, an app goes from bottom to top of the
|
|
|
|
* usage list in 50 hours of use */
|
|
|
|
#define SCORE_MAX (3600 * 50 / FOCUS_TIME_MIN_SECONDS)
|
2009-04-23 17:03:34 -04:00
|
|
|
|
|
|
|
/* If an app's score in lower than this and the app has not been used in a week,
|
|
|
|
* remove it */
|
2009-07-30 15:40:26 -04:00
|
|
|
#define SCORE_MIN (SCORE_MAX >> 3)
|
2009-04-23 17:03:34 -04:00
|
|
|
|
|
|
|
/* Title patterns to detect apps that don't set WM class as needed.
|
|
|
|
* Format: pseudo/wanted WM class, title regex pattern, NULL (for GRegex) */
|
|
|
|
static struct
|
|
|
|
{
|
|
|
|
const char *app_id;
|
|
|
|
const char *pattern;
|
|
|
|
GRegex *regex;
|
|
|
|
} title_patterns[] = {
|
2009-06-25 17:42:46 -04:00
|
|
|
{"mozilla-firefox", ".* - Mozilla Firefox", NULL}, \
|
2009-04-23 17:03:34 -04:00
|
|
|
{"openoffice.org-writer", ".* - OpenOffice.org Writer$", NULL}, \
|
|
|
|
{"openoffice.org-calc", ".* - OpenOffice.org Calc$", NULL}, \
|
|
|
|
{"openoffice.org-impress", ".* - OpenOffice.org Impress$", NULL}, \
|
|
|
|
{"openoffice.org-draw", ".* - OpenOffice.org Draw$", NULL}, \
|
|
|
|
{"openoffice.org-base", ".* - OpenOffice.org Base$", NULL}, \
|
|
|
|
{"openoffice.org-math", ".* - OpenOffice.org Math$", NULL}, \
|
|
|
|
{NULL, NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
typedef struct AppUsage AppUsage;
|
2009-04-23 17:03:34 -04:00
|
|
|
typedef struct ActiveAppsData ActiveAppsData;
|
|
|
|
|
|
|
|
struct _ShellAppMonitor
|
|
|
|
{
|
|
|
|
GObject parent;
|
|
|
|
|
|
|
|
GFile *configfile;
|
2009-07-30 15:40:26 -04:00
|
|
|
DBusGProxy *session_proxy;
|
2009-04-23 17:03:34 -04:00
|
|
|
GdkDisplay *display;
|
2009-05-04 13:40:44 -04:00
|
|
|
GConfClient *gconf_client;
|
2009-04-23 17:03:34 -04:00
|
|
|
gulong last_idle;
|
2009-07-30 15:40:26 -04:00
|
|
|
guint idle_focus_change_id;
|
|
|
|
guint save_id;
|
2009-04-23 10:46:36 -04:00
|
|
|
guint gconf_notify;
|
2009-04-23 17:03:34 -04:00
|
|
|
gboolean currently_idle;
|
2009-04-23 10:46:36 -04:00
|
|
|
gboolean enable_monitoring;
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-08-08 10:03:08 -04:00
|
|
|
/* See comment in AppUsage below */
|
|
|
|
guint initially_seen_sequence;
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
GSList *previously_running;
|
|
|
|
|
|
|
|
long watch_start_time;
|
|
|
|
MetaWindow *watched_window;
|
2009-06-25 17:42:46 -04:00
|
|
|
|
2009-07-07 16:08:41 -04:00
|
|
|
/* <MetaWindow * window, ShellAppInfo *app> */
|
|
|
|
GHashTable *window_to_app;
|
2009-06-25 17:42:46 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
/* <char *context, GHashTable<char *appid, AppUsage *usage>> */
|
|
|
|
GHashTable *app_usages_for_context;
|
2009-04-23 17:03:34 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (ShellAppMonitor, shell_app_monitor, G_TYPE_OBJECT);
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
/* Represents an application record for a given context */
|
|
|
|
struct AppUsage
|
2009-04-23 17:03:34 -04:00
|
|
|
{
|
|
|
|
gdouble score; /* Based on the number of times we'e seen the app and normalized */
|
2009-07-30 15:40:26 -04:00
|
|
|
long last_seen; /* Used to clear old apps we've only seen a few times */
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
/* how many windows are currently open; in terms of persistence we only save
|
|
|
|
* whether the app had any windows or not. */
|
|
|
|
guint window_count;
|
2009-08-08 10:03:08 -04:00
|
|
|
|
|
|
|
/* Transient data */
|
|
|
|
guint initially_seen_sequence; /* Arbitrary ordered integer for when we first saw
|
|
|
|
* this application in this session. Used to order
|
|
|
|
* the open applications.
|
|
|
|
*/
|
2009-04-23 17:03:34 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
2009-08-12 16:05:25 -04:00
|
|
|
APP_ADDED,
|
|
|
|
APP_REMOVED,
|
|
|
|
WINDOW_ADDED,
|
|
|
|
WINDOW_REMOVED,
|
2009-08-11 11:32:58 -04:00
|
|
|
STARTUP_SEQUENCE_CHANGED,
|
2009-04-23 17:03:34 -04:00
|
|
|
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
static guint signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
|
|
|
static void shell_app_monitor_finalize (GObject *object);
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
static void on_session_status_changed (DBusGProxy *proxy, guint status, ShellAppMonitor *monitor);
|
|
|
|
static void on_focus_window_changed (MetaDisplay *display, GParamSpec *spec, ShellAppMonitor *monitor);
|
|
|
|
static void ensure_queued_save (ShellAppMonitor *monitor);
|
2009-08-08 10:03:08 -04:00
|
|
|
static AppUsage * get_app_usage_for_context_and_id (ShellAppMonitor *monitor,
|
|
|
|
const char *context,
|
|
|
|
const char *appid);
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
static gboolean idle_save_application_usage (gpointer data);
|
2009-04-23 17:03:34 -04:00
|
|
|
|
|
|
|
static void restore_from_file (ShellAppMonitor *monitor);
|
|
|
|
|
2009-05-04 13:40:44 -04:00
|
|
|
static void update_enable_monitoring (ShellAppMonitor *monitor);
|
|
|
|
|
|
|
|
static void on_enable_monitoring_key_changed (GConfClient *client,
|
|
|
|
guint connexion_id,
|
|
|
|
GConfEntry *entry,
|
|
|
|
gpointer monitor);
|
2009-04-23 10:46:36 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
static long
|
2009-04-23 17:03:34 -04:00
|
|
|
get_time (void)
|
|
|
|
{
|
|
|
|
GTimeVal tv;
|
|
|
|
g_get_current_time (&tv);
|
|
|
|
return tv.tv_sec;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void shell_app_monitor_class_init(ShellAppMonitorClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->finalize = shell_app_monitor_finalize;
|
2009-07-30 15:40:26 -04:00
|
|
|
|
2009-08-12 16:05:25 -04:00
|
|
|
signals[APP_ADDED] = g_signal_new ("app-added",
|
|
|
|
SHELL_TYPE_APP_MONITOR,
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
|
|
|
NULL, NULL,
|
|
|
|
_shell_marshal_VOID__BOXED,
|
|
|
|
G_TYPE_NONE, 1,
|
|
|
|
SHELL_TYPE_APP_INFO);
|
|
|
|
signals[APP_REMOVED] = g_signal_new ("app-removed",
|
|
|
|
SHELL_TYPE_APP_MONITOR,
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
|
|
|
NULL, NULL,
|
|
|
|
_shell_marshal_VOID__BOXED,
|
|
|
|
G_TYPE_NONE, 1,
|
|
|
|
SHELL_TYPE_APP_INFO);
|
|
|
|
|
|
|
|
signals[WINDOW_ADDED] = g_signal_new ("window-added",
|
|
|
|
SHELL_TYPE_APP_MONITOR,
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
|
|
|
NULL, NULL,
|
|
|
|
_shell_marshal_VOID__BOXED_OBJECT,
|
|
|
|
G_TYPE_NONE, 2,
|
|
|
|
SHELL_TYPE_APP_INFO,
|
|
|
|
META_TYPE_WINDOW);
|
|
|
|
signals[WINDOW_REMOVED] = g_signal_new ("window-removed",
|
|
|
|
SHELL_TYPE_APP_MONITOR,
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
|
|
|
NULL, NULL,
|
|
|
|
_shell_marshal_VOID__BOXED_OBJECT,
|
|
|
|
G_TYPE_NONE, 2,
|
|
|
|
SHELL_TYPE_APP_INFO,
|
|
|
|
META_TYPE_WINDOW);
|
2009-08-11 11:32:58 -04:00
|
|
|
|
|
|
|
signals[STARTUP_SEQUENCE_CHANGED] = g_signal_new ("startup-sequence-changed",
|
|
|
|
SHELL_TYPE_APP_MONITOR,
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
|
|
|
NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__BOXED,
|
|
|
|
G_TYPE_NONE, 1, SHELL_TYPE_STARTUP_SEQUENCE);
|
2009-04-23 17:03:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-07-30 15:40:26 -04:00
|
|
|
destroy_usage (AppUsage *usage)
|
2009-04-23 17:03:34 -04:00
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
g_free (usage);
|
2009-04-23 17:03:34 -04:00
|
|
|
}
|
|
|
|
|
2009-06-25 17:42:46 -04:00
|
|
|
static char *
|
|
|
|
get_wmclass_for_window (MetaWindow *window)
|
|
|
|
{
|
|
|
|
static gboolean patterns_initialized = FALSE;
|
|
|
|
const char *wm_class;
|
|
|
|
char *title;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
wm_class = meta_window_get_wm_class (window);
|
|
|
|
g_object_get (window, "title", &title, NULL);
|
|
|
|
|
|
|
|
if (!patterns_initialized) /* Generate match patterns once for all */
|
|
|
|
{
|
|
|
|
patterns_initialized = TRUE;
|
|
|
|
for (i = 0; title_patterns[i].app_id; i++)
|
|
|
|
{
|
|
|
|
title_patterns[i].regex = g_regex_new (title_patterns[i].pattern,
|
|
|
|
0, 0, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Match window title patterns to identifiers for non-standard apps */
|
|
|
|
if (title)
|
|
|
|
{
|
|
|
|
for (i = 0; title_patterns[i].app_id; i++)
|
|
|
|
{
|
|
|
|
if (g_regex_match (title_patterns[i].regex, title, 0, NULL))
|
|
|
|
{
|
|
|
|
/* Set a pseudo WM class, handled like true ones */
|
|
|
|
wm_class = title_patterns[i].app_id;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (title);
|
|
|
|
return g_strdup (wm_class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get_cleaned_wmclass_for_window:
|
|
|
|
*
|
|
|
|
* A "cleaned" wmclass is the WM_CLASS property of a window,
|
|
|
|
* after some transformations to turn it into a form
|
|
|
|
* somewhat more resilient to changes, such as lowercasing.
|
|
|
|
*/
|
|
|
|
static char *
|
|
|
|
get_cleaned_wmclass_for_window (MetaWindow *window)
|
|
|
|
{
|
|
|
|
char *wmclass;
|
|
|
|
char *cleaned_wmclass;
|
|
|
|
|
|
|
|
wmclass = get_wmclass_for_window (window);
|
|
|
|
if (!wmclass)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
cleaned_wmclass = g_utf8_strdown (wmclass, -1);
|
|
|
|
g_free (wmclass);
|
2009-07-30 15:40:26 -04:00
|
|
|
/* This handles "Fedora Eclipse", probably others.
|
|
|
|
* Note g_strdelimit is modify-in-place. */
|
2009-06-25 17:42:46 -04:00
|
|
|
g_strdelimit (cleaned_wmclass, " ", '-');
|
|
|
|
wmclass = g_strdup (cleaned_wmclass);
|
|
|
|
g_free (cleaned_wmclass);
|
|
|
|
return wmclass;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-07-07 16:08:41 -04:00
|
|
|
* get_app_for_window:
|
2009-06-25 17:42:46 -04:00
|
|
|
*
|
2009-07-07 16:08:41 -04:00
|
|
|
* Returns the application associated with a window, or %NULL if
|
2009-06-25 17:42:46 -04:00
|
|
|
* we're unable to determine one.
|
|
|
|
*/
|
2009-07-07 16:08:41 -04:00
|
|
|
static ShellAppInfo *
|
|
|
|
get_app_for_window (MetaWindow *window)
|
2009-06-25 17:42:46 -04:00
|
|
|
{
|
|
|
|
char *wmclass;
|
|
|
|
char *with_desktop;
|
2009-07-07 16:08:41 -04:00
|
|
|
ShellAppInfo *result;
|
2009-06-25 17:42:46 -04:00
|
|
|
ShellAppSystem *appsys;
|
|
|
|
|
|
|
|
wmclass = get_cleaned_wmclass_for_window (window);
|
|
|
|
|
|
|
|
if (!wmclass)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
with_desktop = g_strjoin (NULL, wmclass, ".desktop", NULL);
|
|
|
|
g_free (wmclass);
|
|
|
|
|
|
|
|
appsys = shell_app_system_get_default ();
|
2009-07-07 16:08:41 -04:00
|
|
|
result = shell_app_system_lookup_heuristic_basename (appsys, with_desktop);
|
2009-06-25 17:43:54 -04:00
|
|
|
g_free (with_desktop);
|
2009-06-25 17:42:46 -04:00
|
|
|
|
2009-06-25 17:43:54 -04:00
|
|
|
return result;
|
2009-06-25 17:42:46 -04:00
|
|
|
}
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
static const char *
|
|
|
|
get_window_context (MetaWindow *window)
|
|
|
|
{
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
static GHashTable *
|
|
|
|
get_usages_for_context (ShellAppMonitor *monitor,
|
|
|
|
const char *context)
|
|
|
|
{
|
|
|
|
GHashTable *context_usages;
|
|
|
|
|
|
|
|
context_usages = g_hash_table_lookup (monitor->app_usages_for_context, context);
|
|
|
|
if (context_usages == NULL)
|
|
|
|
{
|
|
|
|
context_usages = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, (GDestroyNotify)destroy_usage);
|
|
|
|
g_hash_table_insert (monitor->app_usages_for_context, g_strdup (context),
|
|
|
|
context_usages);
|
|
|
|
}
|
|
|
|
return context_usages;
|
|
|
|
}
|
|
|
|
|
|
|
|
static AppUsage *
|
|
|
|
get_app_usage_for_context_and_id (ShellAppMonitor *monitor,
|
2009-08-08 10:03:08 -04:00
|
|
|
const char *context,
|
|
|
|
const char *appid)
|
2009-07-30 15:40:26 -04:00
|
|
|
{
|
|
|
|
AppUsage *usage;
|
|
|
|
GHashTable *context_usages;
|
|
|
|
|
|
|
|
context_usages = get_usages_for_context (monitor, context);
|
|
|
|
|
|
|
|
usage = g_hash_table_lookup (context_usages, appid);
|
|
|
|
if (usage)
|
|
|
|
return usage;
|
|
|
|
|
|
|
|
usage = g_new0 (AppUsage, 1);
|
2009-08-08 10:03:08 -04:00
|
|
|
usage->initially_seen_sequence = ++monitor->initially_seen_sequence;
|
2009-07-30 15:40:26 -04:00
|
|
|
g_hash_table_insert (context_usages, g_strdup (appid), usage);
|
|
|
|
|
|
|
|
return usage;
|
|
|
|
}
|
|
|
|
|
|
|
|
static AppUsage *
|
|
|
|
get_app_usage_from_window (ShellAppMonitor *monitor,
|
|
|
|
MetaWindow *window)
|
|
|
|
{
|
|
|
|
ShellAppInfo *app;
|
|
|
|
const char *context;
|
|
|
|
|
|
|
|
app = g_hash_table_lookup (monitor->window_to_app, window);
|
|
|
|
if (!app)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
context = get_window_context (window);
|
|
|
|
|
|
|
|
return get_app_usage_for_context_and_id (monitor, context, shell_app_info_get_id (app));
|
|
|
|
}
|
|
|
|
|
|
|
|
static MetaWindow *
|
|
|
|
get_active_window (ShellAppMonitor *monitor)
|
|
|
|
{
|
|
|
|
MetaScreen *screen;
|
|
|
|
MetaDisplay *display;
|
|
|
|
screen = shell_global_get_screen (shell_global_get ());
|
|
|
|
display = meta_screen_get_display (screen);
|
|
|
|
return meta_display_get_focus_window (display);
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
gboolean in_context;
|
|
|
|
GHashTableIter context_iter;
|
|
|
|
const char *context_id;
|
|
|
|
GHashTableIter usage_iter;
|
|
|
|
} UsageIterator;
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage_iterator_init (ShellAppMonitor *self,
|
|
|
|
UsageIterator *iter)
|
|
|
|
{
|
|
|
|
iter->in_context = FALSE;
|
|
|
|
g_hash_table_iter_init (&(iter->context_iter), self->app_usages_for_context);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
usage_iterator_next (ShellAppMonitor *self,
|
|
|
|
UsageIterator *iter,
|
|
|
|
const char **context,
|
|
|
|
const char **id,
|
|
|
|
AppUsage **usage)
|
|
|
|
{
|
|
|
|
gpointer key, value;
|
|
|
|
gboolean next_context;
|
|
|
|
|
|
|
|
if (!iter->in_context)
|
|
|
|
next_context = TRUE;
|
|
|
|
else if (!g_hash_table_iter_next (&(iter->usage_iter), &key, &value))
|
|
|
|
next_context = TRUE;
|
|
|
|
else
|
|
|
|
next_context = FALSE;
|
|
|
|
|
|
|
|
while (next_context)
|
|
|
|
{
|
|
|
|
GHashTable *app_usages;
|
|
|
|
|
|
|
|
if (!g_hash_table_iter_next (&(iter->context_iter), &key, &value))
|
|
|
|
return FALSE;
|
|
|
|
iter->in_context = TRUE;
|
|
|
|
iter->context_id = key;
|
|
|
|
app_usages = value;
|
|
|
|
g_hash_table_iter_init (&(iter->usage_iter), app_usages);
|
|
|
|
|
|
|
|
next_context = !g_hash_table_iter_next (&(iter->usage_iter), &key, &value);
|
|
|
|
}
|
|
|
|
|
|
|
|
*context = iter->context_id;
|
|
|
|
*id = key;
|
|
|
|
*usage = value;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage_iterator_remove (ShellAppMonitor *self,
|
|
|
|
UsageIterator *iter)
|
|
|
|
{
|
|
|
|
g_assert (iter->in_context);
|
|
|
|
|
|
|
|
g_hash_table_iter_remove (&(iter->usage_iter));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Limit the score to a certain level so that most used apps can change */
|
|
|
|
static void
|
|
|
|
normalize_usage (ShellAppMonitor *self)
|
|
|
|
{
|
|
|
|
UsageIterator iter;
|
|
|
|
const char *context;
|
|
|
|
const char *id;
|
|
|
|
AppUsage *usage;
|
|
|
|
|
|
|
|
usage_iterator_init (self, &iter);
|
|
|
|
|
|
|
|
while (usage_iterator_next (self, &iter, &context, &id, &usage))
|
|
|
|
{
|
|
|
|
usage->score /= 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
increment_usage_for_window_at_time (ShellAppMonitor *self,
|
|
|
|
MetaWindow *window,
|
|
|
|
long time)
|
|
|
|
{
|
|
|
|
AppUsage *usage;
|
|
|
|
guint elapsed;
|
|
|
|
guint usage_count;
|
|
|
|
|
|
|
|
usage = get_app_usage_from_window (self, window);
|
|
|
|
if (usage == NULL)
|
|
|
|
{
|
|
|
|
/* This could in theory happen if we lost the app tracking, i.e.
|
|
|
|
* the window changed WM_CLASS. In that case, time for a punt.
|
|
|
|
*/
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
usage->last_seen = time;
|
|
|
|
|
|
|
|
elapsed = time - self->watch_start_time;
|
|
|
|
usage_count = elapsed / FOCUS_TIME_MIN_SECONDS;
|
|
|
|
if (usage_count > 0)
|
|
|
|
{
|
|
|
|
usage->score += usage_count;
|
|
|
|
if (usage->score > SCORE_MAX)
|
|
|
|
normalize_usage (self);
|
|
|
|
ensure_queued_save (self);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
increment_usage_for_window (ShellAppMonitor *self,
|
|
|
|
MetaWindow *window)
|
|
|
|
{
|
|
|
|
long curtime = get_time ();
|
|
|
|
increment_usage_for_window_at_time (self, window, curtime);
|
|
|
|
}
|
|
|
|
|
2009-06-25 17:42:46 -04:00
|
|
|
static void
|
|
|
|
track_window (ShellAppMonitor *self,
|
|
|
|
MetaWindow *window)
|
|
|
|
{
|
2009-07-07 16:08:41 -04:00
|
|
|
ShellAppInfo *app;
|
2009-07-30 15:40:26 -04:00
|
|
|
AppUsage *usage;
|
2009-08-11 14:54:51 -04:00
|
|
|
MetaWindow *transient_for;
|
|
|
|
|
|
|
|
/* Just ignore anything that isn't NORMAL */
|
|
|
|
if (meta_window_get_window_type (window) != META_WINDOW_NORMAL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Also ignore transients */
|
|
|
|
transient_for = meta_window_get_transient_for (window);
|
|
|
|
if (transient_for != NULL)
|
|
|
|
return;
|
2009-06-25 17:42:46 -04:00
|
|
|
|
2009-07-07 16:08:41 -04:00
|
|
|
app = get_app_for_window (window);
|
|
|
|
if (!app)
|
2009-06-25 17:42:46 -04:00
|
|
|
return;
|
|
|
|
|
2009-07-07 16:08:41 -04:00
|
|
|
g_hash_table_insert (self->window_to_app, window, app);
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
usage = get_app_usage_from_window (self, window);
|
2009-06-25 17:42:46 -04:00
|
|
|
|
2009-08-12 16:05:25 -04:00
|
|
|
/* Keep track of the number of windows open for this app, when it
|
|
|
|
* switches between 0 and 1 we emit an app-added signal.
|
2009-07-30 15:40:26 -04:00
|
|
|
*/
|
|
|
|
usage->window_count++;
|
2009-08-08 10:03:08 -04:00
|
|
|
if (usage->initially_seen_sequence == 0)
|
|
|
|
usage->initially_seen_sequence = ++self->initially_seen_sequence;
|
2009-07-30 15:40:26 -04:00
|
|
|
usage->last_seen = get_time ();
|
|
|
|
if (usage->window_count == 1)
|
2009-08-12 16:05:25 -04:00
|
|
|
g_signal_emit (self, signals[APP_ADDED], 0, app);
|
|
|
|
|
|
|
|
/* Emit window-added after app-added */
|
|
|
|
g_signal_emit (self, signals[WINDOW_ADDED], 0, app, window);
|
2009-06-25 17:42:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
shell_app_monitor_on_window_added (MetaWorkspace *workspace,
|
|
|
|
MetaWindow *window,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
ShellAppMonitor *self = SHELL_APP_MONITOR (user_data);
|
|
|
|
|
|
|
|
track_window (self, window);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
shell_app_monitor_on_window_removed (MetaWorkspace *workspace,
|
|
|
|
MetaWindow *window,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
ShellAppMonitor *self = SHELL_APP_MONITOR (user_data);
|
2009-07-07 16:08:41 -04:00
|
|
|
ShellAppInfo *app;
|
2009-07-30 15:40:26 -04:00
|
|
|
AppUsage *usage;
|
2009-06-25 17:42:46 -04:00
|
|
|
|
2009-07-07 16:08:41 -04:00
|
|
|
app = g_hash_table_lookup (self->window_to_app, window);
|
|
|
|
if (!app)
|
2009-06-25 17:42:46 -04:00
|
|
|
return;
|
|
|
|
|
2009-08-12 19:45:17 -04:00
|
|
|
shell_app_info_ref (app);
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
usage = get_app_usage_from_window (self, window);
|
|
|
|
|
|
|
|
if (window == self->watched_window)
|
|
|
|
self->watched_window = NULL;
|
|
|
|
|
|
|
|
usage->window_count--;
|
2009-08-05 20:07:30 -04:00
|
|
|
/* Remove before emitting */
|
|
|
|
g_hash_table_remove (self->window_to_app, window);
|
|
|
|
|
2009-08-12 16:05:25 -04:00
|
|
|
g_signal_emit (self, signals[WINDOW_REMOVED], 0, app, window);
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
if (usage->window_count == 0)
|
2009-08-08 10:03:08 -04:00
|
|
|
{
|
|
|
|
usage->initially_seen_sequence = 0;
|
2009-08-12 19:45:17 -04:00
|
|
|
g_signal_emit (self, signals[APP_REMOVED], 0, app);
|
2009-08-08 10:03:08 -04:00
|
|
|
}
|
2009-08-12 19:45:17 -04:00
|
|
|
|
|
|
|
shell_app_info_unref (app);
|
2009-06-25 17:42:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
load_initial_windows (ShellAppMonitor *monitor)
|
|
|
|
{
|
|
|
|
GList *workspaces, *iter;
|
|
|
|
MetaScreen *screen = shell_global_get_screen (shell_global_get ());
|
|
|
|
workspaces = meta_screen_get_workspaces (screen);
|
|
|
|
|
|
|
|
for (iter = workspaces; iter; iter = iter->next)
|
|
|
|
{
|
|
|
|
MetaWorkspace *workspace = iter->data;
|
|
|
|
GList *windows = meta_workspace_list_windows (workspace);
|
|
|
|
GList *window_iter;
|
|
|
|
|
|
|
|
for (window_iter = windows; window_iter; window_iter = window_iter->next)
|
2009-07-30 15:40:26 -04:00
|
|
|
{
|
|
|
|
MetaWindow *window = window_iter->data;
|
|
|
|
track_window (monitor, window);
|
|
|
|
}
|
2009-06-25 17:42:46 -04:00
|
|
|
|
|
|
|
g_list_free (windows);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
static void
|
|
|
|
on_session_status_changed (DBusGProxy *proxy,
|
|
|
|
guint status,
|
|
|
|
ShellAppMonitor *monitor)
|
|
|
|
{
|
|
|
|
gboolean idle;
|
|
|
|
|
|
|
|
idle = (status >= 3);
|
|
|
|
if (monitor->currently_idle == idle)
|
|
|
|
return;
|
|
|
|
|
|
|
|
monitor->currently_idle = idle;
|
|
|
|
if (idle)
|
|
|
|
{
|
|
|
|
long end_time;
|
|
|
|
|
|
|
|
/* Resync the active window, it may have changed while
|
|
|
|
* we were idle and ignoring focus changes.
|
|
|
|
*/
|
|
|
|
monitor->watched_window = get_active_window (monitor);
|
|
|
|
|
|
|
|
/* The GNOME Session signal we watch is 5 minutes, but that's a long
|
|
|
|
* time for this purpose. Instead, just add a base 30 seconds.
|
|
|
|
*/
|
|
|
|
if (monitor->watched_window)
|
|
|
|
{
|
|
|
|
end_time = monitor->watch_start_time + IDLE_TIME_TRANSITION_SECONDS;
|
|
|
|
increment_usage_for_window_at_time (monitor, monitor->watched_window, end_time);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Transitioning to !idle, reset the start time */
|
|
|
|
monitor->watch_start_time = get_time ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-04 17:13:13 -04:00
|
|
|
/**
|
|
|
|
* shell_app_monitor_get_windows_for_app:
|
|
|
|
* @self:
|
|
|
|
* @appid: Find windows for this id
|
|
|
|
*
|
2009-08-11 14:54:51 -04:00
|
|
|
* Returns the normal toplevel windows associated with the given application.
|
|
|
|
*
|
2009-07-04 17:13:13 -04:00
|
|
|
* Returns: (transfer container) (element-type MetaWindow): List of #MetaWindow corresponding to appid
|
|
|
|
*/
|
|
|
|
GSList *
|
|
|
|
shell_app_monitor_get_windows_for_app (ShellAppMonitor *self,
|
|
|
|
const char *appid)
|
2009-06-25 17:42:46 -04:00
|
|
|
{
|
2009-07-04 17:13:13 -04:00
|
|
|
GHashTableIter iter;
|
|
|
|
gpointer key, value;
|
|
|
|
GSList *ret = NULL;
|
|
|
|
|
2009-07-07 16:08:41 -04:00
|
|
|
g_hash_table_iter_init (&iter, self->window_to_app);
|
2009-07-04 17:13:13 -04:00
|
|
|
|
|
|
|
while (g_hash_table_iter_next (&iter, &key, &value))
|
|
|
|
{
|
|
|
|
MetaWindow *window = key;
|
2009-07-07 16:08:41 -04:00
|
|
|
ShellAppInfo *app = value;
|
|
|
|
const char *id = shell_app_info_get_id (app);
|
2009-07-04 17:13:13 -04:00
|
|
|
|
|
|
|
if (strcmp (id, appid) != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ret = g_slist_prepend (ret, window);
|
|
|
|
}
|
|
|
|
return ret;
|
2009-06-25 17:42:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
shell_app_monitor_on_n_workspaces_changed (MetaScreen *screen,
|
2009-06-26 17:12:55 -04:00
|
|
|
GParamSpec *pspec,
|
2009-06-25 17:42:46 -04:00
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
ShellAppMonitor *self = SHELL_APP_MONITOR (user_data);
|
|
|
|
GList *workspaces, *iter;
|
|
|
|
|
|
|
|
workspaces = meta_screen_get_workspaces (screen);
|
|
|
|
|
|
|
|
for (iter = workspaces; iter; iter = iter->next)
|
|
|
|
{
|
|
|
|
MetaWorkspace *workspace = iter->data;
|
|
|
|
|
|
|
|
/* This pair of disconnect/connect is idempotent if we were
|
|
|
|
* already connected, while ensuring we get connected for
|
|
|
|
* new workspaces.
|
|
|
|
*/
|
|
|
|
g_signal_handlers_disconnect_by_func (workspace,
|
|
|
|
shell_app_monitor_on_window_added,
|
|
|
|
self);
|
|
|
|
g_signal_handlers_disconnect_by_func (workspace,
|
|
|
|
shell_app_monitor_on_window_removed,
|
|
|
|
self);
|
|
|
|
|
|
|
|
g_signal_connect (workspace, "window-added",
|
|
|
|
G_CALLBACK (shell_app_monitor_on_window_added), self);
|
|
|
|
g_signal_connect (workspace, "window-removed",
|
|
|
|
G_CALLBACK (shell_app_monitor_on_window_removed), self);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
init_window_monitoring (ShellAppMonitor *self)
|
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
MetaDisplay *display;
|
2009-06-25 17:42:46 -04:00
|
|
|
MetaScreen *screen = shell_global_get_screen (shell_global_get ());
|
|
|
|
|
|
|
|
g_signal_connect (screen, "notify::n-workspaces",
|
|
|
|
G_CALLBACK (shell_app_monitor_on_n_workspaces_changed), self);
|
2009-07-30 15:40:26 -04:00
|
|
|
display = meta_screen_get_display (screen);
|
|
|
|
g_signal_connect (display, "notify::focus-window",
|
|
|
|
G_CALLBACK (on_focus_window_changed), self);
|
2009-06-25 17:42:46 -04:00
|
|
|
|
2009-06-26 17:12:55 -04:00
|
|
|
shell_app_monitor_on_n_workspaces_changed (screen, NULL, self);
|
2009-06-25 17:42:46 -04:00
|
|
|
}
|
|
|
|
|
2009-08-11 11:32:58 -04:00
|
|
|
static void
|
|
|
|
on_startup_sequence_changed (MetaScreen *screen,
|
|
|
|
SnStartupSequence *sequence,
|
|
|
|
ShellAppMonitor *self)
|
|
|
|
{
|
|
|
|
/* Just proxy the signal */
|
|
|
|
g_signal_emit (G_OBJECT (self), signals[STARTUP_SEQUENCE_CHANGED], 0, sequence);
|
|
|
|
}
|
|
|
|
|
2009-04-23 17:03:34 -04:00
|
|
|
static void
|
|
|
|
shell_app_monitor_init (ShellAppMonitor *self)
|
|
|
|
{
|
2009-08-11 11:32:58 -04:00
|
|
|
MetaScreen *screen;
|
2009-04-23 17:03:34 -04:00
|
|
|
GdkDisplay *display;
|
|
|
|
char *path;
|
|
|
|
char *shell_config_dir;
|
2009-07-30 15:40:26 -04:00
|
|
|
DBusGConnection *session_bus;
|
2009-04-23 10:46:36 -04:00
|
|
|
|
2009-04-23 17:03:34 -04:00
|
|
|
/* FIXME: should we create as many monitors as there are GdkScreens? */
|
2009-07-30 15:40:26 -04:00
|
|
|
display = gdk_display_get_default ();
|
2009-08-11 11:32:58 -04:00
|
|
|
screen = shell_global_get_screen (shell_global_get ());
|
2009-07-30 15:40:26 -04:00
|
|
|
|
|
|
|
session_bus = dbus_g_bus_get (DBUS_BUS_SESSION, NULL);
|
|
|
|
self->session_proxy = dbus_g_proxy_new_for_name (session_bus, "org.gnome.SessionManager",
|
|
|
|
"/org/gnome/SessionManager/Presence",
|
|
|
|
"org.gnome.SessionManager");
|
|
|
|
dbus_g_proxy_add_signal (self->session_proxy, "StatusChanged",
|
|
|
|
G_TYPE_UINT, G_TYPE_INVALID, G_TYPE_INVALID);
|
|
|
|
dbus_g_proxy_connect_signal (self->session_proxy, "StatusChanged",
|
|
|
|
G_CALLBACK (on_session_status_changed), self, NULL);
|
|
|
|
|
2009-04-23 17:03:34 -04:00
|
|
|
self->display = g_object_ref (display);
|
|
|
|
|
|
|
|
self->last_idle = 0;
|
|
|
|
self->currently_idle = FALSE;
|
2009-05-04 13:40:44 -04:00
|
|
|
self->enable_monitoring = FALSE;
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
self->app_usages_for_context = g_hash_table_new_full (g_str_hash, g_str_equal, g_free,
|
|
|
|
(GDestroyNotify) g_hash_table_destroy);
|
2009-06-25 17:42:46 -04:00
|
|
|
|
2009-07-07 16:08:41 -04:00
|
|
|
self->window_to_app = g_hash_table_new_full (g_direct_hash, g_direct_equal,
|
|
|
|
NULL, (GDestroyNotify) shell_app_info_unref);
|
2009-06-25 17:42:46 -04:00
|
|
|
|
2009-04-23 17:03:34 -04:00
|
|
|
g_object_get (shell_global_get(), "configdir", &shell_config_dir, NULL),
|
|
|
|
path = g_build_filename (shell_config_dir, DATA_FILENAME, NULL);
|
|
|
|
g_free (shell_config_dir);
|
|
|
|
self->configfile = g_file_new_for_path (path);
|
|
|
|
restore_from_file (self);
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
load_initial_windows (self);
|
|
|
|
init_window_monitoring (self);
|
|
|
|
|
2009-08-11 11:32:58 -04:00
|
|
|
g_signal_connect (G_OBJECT (screen), "startup-sequence-changed",
|
|
|
|
G_CALLBACK (on_startup_sequence_changed), self);
|
|
|
|
|
2009-05-04 13:40:44 -04:00
|
|
|
self->gconf_client = gconf_client_get_default ();
|
|
|
|
gconf_client_add_dir (self->gconf_client, APP_MONITOR_GCONF_DIR,
|
|
|
|
GCONF_CLIENT_PRELOAD_NONE, NULL);
|
|
|
|
self->gconf_notify =
|
|
|
|
gconf_client_notify_add (self->gconf_client, ENABLE_MONITORING_KEY,
|
|
|
|
on_enable_monitoring_key_changed, self, NULL, NULL);
|
|
|
|
update_enable_monitoring (self);
|
2009-04-23 17:03:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
shell_app_monitor_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
ShellAppMonitor *self = SHELL_APP_MONITOR (object);
|
|
|
|
int i;
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
if (self->save_id > 0)
|
|
|
|
g_source_remove (self->save_id);
|
2009-05-04 13:40:44 -04:00
|
|
|
gconf_client_notify_remove (self->gconf_client, self->gconf_notify);
|
|
|
|
g_object_unref (self->gconf_client);
|
2009-04-23 17:03:34 -04:00
|
|
|
g_object_unref (self->display);
|
2009-07-30 15:40:26 -04:00
|
|
|
g_hash_table_destroy (self->app_usages_for_context);
|
2009-04-23 17:03:34 -04:00
|
|
|
for (i = 0; title_patterns[i].app_id; i++)
|
|
|
|
g_regex_unref (title_patterns[i].regex);
|
|
|
|
g_object_unref (self->configfile);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (shell_app_monitor_parent_class)->finalize(object);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-05-26 17:22:51 -04:00
|
|
|
* shell_app_monitor_get_most_used_apps:
|
2009-04-23 17:03:34 -04:00
|
|
|
* @monitor: the app monitor instance to request
|
2009-07-30 15:40:26 -04:00
|
|
|
* @context: Activity identifier
|
2009-05-26 17:22:51 -04:00
|
|
|
* @max_count: how many applications are requested. Note that the actual
|
2009-04-23 17:03:34 -04:00
|
|
|
* list size may be less, or NULL if not enough applications are registered.
|
|
|
|
*
|
2009-07-30 15:40:26 -04:00
|
|
|
* Get a list of desktop identifiers representing the most popular applications
|
|
|
|
* for a given context.
|
|
|
|
*
|
|
|
|
* Returns: (element-type utf8) (transfer container): List of application desktop
|
|
|
|
* identifiers
|
2009-04-23 17:03:34 -04:00
|
|
|
*/
|
2009-07-30 15:40:26 -04:00
|
|
|
GList *
|
2009-05-26 17:22:51 -04:00
|
|
|
shell_app_monitor_get_most_used_apps (ShellAppMonitor *monitor,
|
2009-07-30 15:40:26 -04:00
|
|
|
const char *context,
|
2009-05-26 17:22:51 -04:00
|
|
|
gint max_count)
|
2009-04-23 17:03:34 -04:00
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
GHashTable *usages;
|
|
|
|
usages = g_hash_table_lookup (monitor->app_usages_for_context, context);
|
|
|
|
if (usages == NULL)
|
|
|
|
return NULL;
|
|
|
|
return g_hash_table_get_keys (usages);
|
2009-04-23 17:03:34 -04:00
|
|
|
}
|
|
|
|
|
2009-07-02 05:04:33 -04:00
|
|
|
/**
|
2009-07-07 16:08:41 -04:00
|
|
|
* shell_app_monitor_get_window_app
|
2009-07-02 05:04:33 -04:00
|
|
|
* @monitor: An app monitor instance
|
|
|
|
* @metawin: A #MetaWindow
|
|
|
|
*
|
2009-07-07 16:08:41 -04:00
|
|
|
* Returns: Desktop file id associated with window
|
2009-07-02 05:04:33 -04:00
|
|
|
*/
|
2009-07-07 16:08:41 -04:00
|
|
|
ShellAppInfo *
|
2009-07-30 15:40:26 -04:00
|
|
|
shell_app_monitor_get_window_app (ShellAppMonitor *monitor,
|
|
|
|
MetaWindow *metawin)
|
2009-07-02 05:04:33 -04:00
|
|
|
{
|
2009-08-11 14:54:51 -04:00
|
|
|
MetaWindow *transient_for;
|
|
|
|
ShellAppInfo *info;
|
|
|
|
|
|
|
|
transient_for = meta_window_get_transient_for (metawin);
|
|
|
|
if (transient_for != NULL)
|
|
|
|
metawin = transient_for;
|
|
|
|
|
|
|
|
info = g_hash_table_lookup (monitor->window_to_app, metawin);
|
2009-07-07 16:08:41 -04:00
|
|
|
if (info)
|
|
|
|
shell_app_info_ref (info);
|
|
|
|
return info;
|
2009-07-02 05:04:33 -04:00
|
|
|
}
|
|
|
|
|
2009-08-08 10:03:08 -04:00
|
|
|
typedef struct {
|
|
|
|
ShellAppMonitor *self;
|
|
|
|
const char *context_id;
|
|
|
|
} AppOpenSequenceSortData;
|
|
|
|
|
|
|
|
static int
|
|
|
|
sort_apps_by_open_sequence (gconstpointer a,
|
|
|
|
gconstpointer b,
|
|
|
|
gpointer datap)
|
|
|
|
{
|
|
|
|
AppOpenSequenceSortData *data = datap;
|
|
|
|
const char *id_a = a;
|
|
|
|
const char *id_b = b;
|
|
|
|
AppUsage *usage_a;
|
|
|
|
AppUsage *usage_b;
|
|
|
|
|
|
|
|
usage_a = get_app_usage_for_context_and_id (data->self, data->context_id, id_a);
|
|
|
|
usage_b = get_app_usage_for_context_and_id (data->self, data->context_id, id_b);
|
|
|
|
if (usage_a->initially_seen_sequence == usage_b->initially_seen_sequence)
|
|
|
|
return 0;
|
|
|
|
if (usage_a->initially_seen_sequence < usage_b->initially_seen_sequence)
|
|
|
|
return -1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-06-25 17:42:46 -04:00
|
|
|
/**
|
|
|
|
* shell_app_monitor_get_running_app_ids:
|
|
|
|
* @monitor: An app monitor instance
|
2009-07-30 15:40:26 -04:00
|
|
|
* @context: Activity identifier
|
|
|
|
*
|
|
|
|
* Returns the set of applications which currently have at least one open
|
|
|
|
* window in the given context.
|
2009-06-25 17:42:46 -04:00
|
|
|
*
|
|
|
|
* Returns: (element-type utf8) (transfer container): List of application desktop
|
|
|
|
* identifiers
|
|
|
|
*/
|
2009-07-30 15:40:26 -04:00
|
|
|
GSList *
|
|
|
|
shell_app_monitor_get_running_app_ids (ShellAppMonitor *monitor,
|
|
|
|
const char *context)
|
2009-06-25 17:42:46 -04:00
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
UsageIterator iter;
|
|
|
|
const char *cur_context;
|
|
|
|
const char *id;
|
|
|
|
AppUsage *usage;
|
|
|
|
GSList *ret;
|
2009-08-08 10:03:08 -04:00
|
|
|
AppOpenSequenceSortData data;
|
2009-06-25 17:42:46 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
usage_iterator_init (monitor, &iter);
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
ret = NULL;
|
|
|
|
while (usage_iterator_next (monitor, &iter, &cur_context, &id, &usage))
|
2009-04-23 17:03:34 -04:00
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
if (strcmp (cur_context, context) != 0)
|
|
|
|
continue;
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
if (usage->window_count > 0)
|
|
|
|
ret = g_slist_prepend (ret, (char*)id);
|
|
|
|
}
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-08-08 10:03:08 -04:00
|
|
|
data.self = monitor;
|
|
|
|
data.context_id = context;
|
|
|
|
return g_slist_sort_with_data (ret, sort_apps_by_open_sequence, &data);
|
2009-04-23 17:03:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2009-07-30 15:40:26 -04:00
|
|
|
idle_handle_focus_change (gpointer data)
|
2009-04-23 17:03:34 -04:00
|
|
|
{
|
|
|
|
ShellAppMonitor *monitor = data;
|
2009-07-30 15:40:26 -04:00
|
|
|
long curtime = get_time ();
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
increment_usage_for_window (monitor, monitor->watched_window);
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
monitor->watched_window = get_active_window (monitor);
|
|
|
|
monitor->watch_start_time = curtime;
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
monitor->idle_focus_change_id = 0;
|
|
|
|
return FALSE;
|
2009-04-23 17:03:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2009-07-30 15:40:26 -04:00
|
|
|
on_focus_window_changed (MetaDisplay *display,
|
|
|
|
GParamSpec *spec,
|
|
|
|
ShellAppMonitor *self)
|
2009-04-23 17:03:34 -04:00
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
if (!self->enable_monitoring || self->currently_idle)
|
|
|
|
return;
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
if (self->idle_focus_change_id != 0)
|
|
|
|
return;
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
/* Defensively compress notifications here in case something is going berserk,
|
|
|
|
* we'll at least use a bit less system resources. */
|
|
|
|
self->idle_focus_change_id = g_timeout_add (250, idle_handle_focus_change, self);
|
2009-04-23 17:03:34 -04:00
|
|
|
}
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
static void
|
|
|
|
ensure_queued_save (ShellAppMonitor *monitor)
|
2009-04-23 17:03:34 -04:00
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
if (monitor->save_id != 0)
|
|
|
|
return;
|
|
|
|
monitor->save_id = g_timeout_add_seconds (SAVE_APPS_TIMEOUT_SECONDS, idle_save_application_usage, monitor);
|
2009-04-23 17:03:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Used to sort highest scores at the top */
|
2009-07-30 15:40:26 -04:00
|
|
|
static gint
|
|
|
|
usage_sort_apps (gconstpointer data1,
|
|
|
|
gconstpointer data2)
|
2009-04-23 17:03:34 -04:00
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
const AppUsage *u1 = data1;
|
|
|
|
const AppUsage *u2 = data2;
|
|
|
|
|
|
|
|
if (u1->score > u2->score)
|
2009-04-23 17:03:34 -04:00
|
|
|
return -1;
|
2009-07-30 15:40:26 -04:00
|
|
|
else if (u1->score == u2->score)
|
2009-04-23 17:03:34 -04:00
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Clean up apps we see rarely.
|
|
|
|
* The logic behind this is that if an app was seen less than SCORE_MIN times
|
|
|
|
* and not seen for a week, it can probably be forgotten about.
|
|
|
|
* This should much reduce the size of the list and avoid 'pollution'. */
|
2009-07-30 15:40:26 -04:00
|
|
|
static gboolean
|
|
|
|
idle_clean_usage (ShellAppMonitor *monitor)
|
2009-04-23 17:03:34 -04:00
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
UsageIterator iter;
|
|
|
|
const char *context;
|
|
|
|
const char *id;
|
|
|
|
AppUsage *usage;
|
2009-04-23 17:03:34 -04:00
|
|
|
GDate *date;
|
|
|
|
guint32 date_days;
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
/* Subtract a week */
|
2009-04-23 17:03:34 -04:00
|
|
|
date = g_date_new ();
|
|
|
|
g_date_set_time_t (date, time (NULL));
|
2009-07-30 15:40:26 -04:00
|
|
|
g_date_subtract_days (date, USAGE_CLEAN_DAYS);
|
2009-04-23 17:03:34 -04:00
|
|
|
date_days = g_date_get_julian (date);
|
2009-07-30 15:40:26 -04:00
|
|
|
|
|
|
|
usage_iterator_init (monitor, &iter);
|
|
|
|
|
|
|
|
while (usage_iterator_next (monitor, &iter, &context, &id, &usage))
|
|
|
|
{
|
|
|
|
if ((usage->score < SCORE_MIN) &&
|
|
|
|
(usage->last_seen < date_days))
|
|
|
|
usage_iterator_remove (monitor, &iter);
|
|
|
|
}
|
2009-04-23 17:03:34 -04:00
|
|
|
g_date_free (date);
|
2009-07-30 15:40:26 -04:00
|
|
|
|
|
|
|
return FALSE;
|
2009-04-23 17:03:34 -04:00
|
|
|
}
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
static gboolean
|
|
|
|
write_escaped (GDataOutputStream *stream,
|
|
|
|
const char *str,
|
|
|
|
GError **error)
|
2009-04-23 17:03:34 -04:00
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
gboolean ret;
|
|
|
|
char *quoted = g_markup_escape_text (str, -1);
|
|
|
|
ret = g_data_output_stream_put_string (stream, quoted, NULL, error);
|
|
|
|
g_free (quoted);
|
|
|
|
return ret;
|
|
|
|
}
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
static gboolean
|
|
|
|
write_attribute_string (GDataOutputStream *stream,
|
|
|
|
const char *elt_name,
|
|
|
|
const char *str,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
char *elt;
|
|
|
|
|
|
|
|
elt = g_strdup_printf (" %s=\"", elt_name);
|
|
|
|
ret = g_data_output_stream_put_string (stream, elt, NULL, error);
|
|
|
|
g_free (elt);
|
|
|
|
if (!ret) goto out;
|
|
|
|
|
|
|
|
ret = write_escaped (stream, str, error);
|
|
|
|
if (!ret) goto out;
|
|
|
|
|
|
|
|
ret = g_data_output_stream_put_string (stream, "\"", NULL, error);
|
|
|
|
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
write_attribute_uint (GDataOutputStream *stream,
|
|
|
|
const char *elt_name,
|
|
|
|
guint value,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
gboolean ret;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
buf = g_strdup_printf ("%u", value);
|
|
|
|
ret = write_attribute_string (stream, elt_name, buf, error);
|
|
|
|
g_free (buf);
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
write_attribute_double (GDataOutputStream *stream,
|
|
|
|
const char *elt_name,
|
|
|
|
double value,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
gchar buf[G_ASCII_DTOSTR_BUF_SIZE];
|
|
|
|
gboolean ret;
|
|
|
|
|
|
|
|
g_ascii_dtostr (buf, sizeof (buf), value);
|
|
|
|
ret = write_attribute_string (stream, elt_name, buf, error);
|
|
|
|
|
|
|
|
return ret;
|
2009-04-23 17:03:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Save app data lists to file */
|
2009-07-30 15:40:26 -04:00
|
|
|
static gboolean
|
|
|
|
idle_save_application_usage (gpointer data)
|
2009-04-23 17:03:34 -04:00
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
ShellAppMonitor *monitor = SHELL_APP_MONITOR (data);
|
|
|
|
UsageIterator iter;
|
|
|
|
const char *current_context;
|
|
|
|
const char *context;
|
|
|
|
const char *id;
|
|
|
|
AppUsage *usage;
|
2009-04-23 17:03:34 -04:00
|
|
|
GFileOutputStream *output;
|
2009-07-30 15:40:26 -04:00
|
|
|
GOutputStream *buffered_output;
|
2009-04-23 17:03:34 -04:00
|
|
|
GDataOutputStream *data_output;
|
|
|
|
GError *error = NULL;
|
2009-07-30 15:40:26 -04:00
|
|
|
|
|
|
|
|
|
|
|
monitor->save_id = 0;
|
2009-04-23 17:03:34 -04:00
|
|
|
|
|
|
|
/* Parent directory is already created by shell-global */
|
|
|
|
output = g_file_replace (monitor->configfile, NULL, FALSE, G_FILE_CREATE_NONE, NULL, &error);
|
|
|
|
if (!output)
|
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
g_debug ("Could not save applications usage data: %s", error->message);
|
2009-04-23 17:03:34 -04:00
|
|
|
g_error_free (error);
|
2009-07-30 15:40:26 -04:00
|
|
|
return FALSE;
|
2009-04-23 17:03:34 -04:00
|
|
|
}
|
2009-07-30 15:40:26 -04:00
|
|
|
buffered_output = g_buffered_output_stream_new (G_OUTPUT_STREAM(output));
|
2009-04-23 17:03:34 -04:00
|
|
|
g_object_unref (output);
|
2009-07-30 15:40:26 -04:00
|
|
|
data_output = g_data_output_stream_new (G_OUTPUT_STREAM(buffered_output));
|
|
|
|
g_object_unref (buffered_output);
|
|
|
|
|
|
|
|
if (!g_data_output_stream_put_string (data_output, "<?xml version=\"1.0\"?>\n<application-state>\n", NULL, &error))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
usage_iterator_init (monitor, &iter);
|
|
|
|
|
|
|
|
current_context = NULL;
|
|
|
|
while (usage_iterator_next (monitor, &iter, &context, &id, &usage))
|
|
|
|
{
|
|
|
|
if (context != current_context)
|
2009-04-23 17:03:34 -04:00
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
if (current_context != NULL)
|
|
|
|
{
|
|
|
|
if (!g_data_output_stream_put_string (data_output, " </context>", NULL, &error))
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
current_context = context;
|
|
|
|
if (!g_data_output_stream_put_string (data_output, " <context", NULL, &error))
|
|
|
|
goto out;
|
|
|
|
if (!write_attribute_string (data_output, "id", context, &error))
|
|
|
|
goto out;
|
|
|
|
if (!g_data_output_stream_put_string (data_output, ">\n", NULL, &error))
|
2009-04-23 17:03:34 -04:00
|
|
|
goto out;
|
|
|
|
}
|
2009-07-30 15:40:26 -04:00
|
|
|
if (!g_data_output_stream_put_string (data_output, " <application", NULL, &error))
|
|
|
|
goto out;
|
|
|
|
if (!write_attribute_string (data_output, "id", id, &error))
|
|
|
|
goto out;
|
|
|
|
if (!write_attribute_uint (data_output, "open-window-count", usage->window_count > 0, &error))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (!write_attribute_double (data_output, "score", usage->score, &error))
|
|
|
|
goto out;
|
|
|
|
if (!write_attribute_uint (data_output, "last-seen", usage->last_seen, &error))
|
|
|
|
goto out;
|
|
|
|
if (!g_data_output_stream_put_string (data_output, "/>\n", NULL, &error))
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (current_context != NULL)
|
|
|
|
{
|
|
|
|
if (!g_data_output_stream_put_string (data_output, " </context>\n", NULL, &error))
|
|
|
|
goto out;
|
2009-04-23 17:03:34 -04:00
|
|
|
}
|
2009-07-30 15:40:26 -04:00
|
|
|
if (!g_data_output_stream_put_string (data_output, "</application-state>\n", NULL, &error))
|
|
|
|
goto out;
|
2009-04-23 17:03:34 -04:00
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
out:
|
|
|
|
if (!error)
|
|
|
|
g_output_stream_close (G_OUTPUT_STREAM(data_output), NULL, &error);
|
2009-04-23 17:03:34 -04:00
|
|
|
g_object_unref (data_output);
|
|
|
|
if (error)
|
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
g_debug ("Could not save applications usage data: %s", error->message);
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
ShellAppMonitor *monitor;
|
|
|
|
char *context;
|
|
|
|
} ParseData;
|
|
|
|
|
|
|
|
static void
|
|
|
|
shell_app_monitor_start_element_handler (GMarkupParseContext *context,
|
|
|
|
const gchar *element_name,
|
|
|
|
const gchar **attribute_names,
|
|
|
|
const gchar **attribute_values,
|
|
|
|
gpointer user_data,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
ParseData *data = user_data;
|
|
|
|
|
|
|
|
if (strcmp (element_name, "application-state") == 0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
else if (strcmp (element_name, "context") == 0)
|
|
|
|
{
|
|
|
|
char *context = NULL;
|
|
|
|
const char **attribute;
|
|
|
|
const char **value;
|
|
|
|
|
|
|
|
for (attribute = attribute_names, value = attribute_values; *attribute; attribute++, value++)
|
|
|
|
{
|
|
|
|
if (strcmp (*attribute, "id") == 0)
|
|
|
|
context = g_strdup (*value);
|
|
|
|
}
|
|
|
|
if (context < 0)
|
2009-04-23 17:03:34 -04:00
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
g_set_error (error,
|
|
|
|
G_MARKUP_ERROR,
|
|
|
|
G_MARKUP_ERROR_PARSE,
|
|
|
|
"Missing attribute id on <%s> element",
|
|
|
|
element_name);
|
2009-04-23 17:03:34 -04:00
|
|
|
return;
|
|
|
|
}
|
2009-07-30 15:40:26 -04:00
|
|
|
data->context = context;
|
|
|
|
}
|
|
|
|
else if (strcmp (element_name, "application") == 0)
|
|
|
|
{
|
|
|
|
const char **attribute;
|
|
|
|
const char **value;
|
|
|
|
AppUsage *usage;
|
|
|
|
char *appid = NULL;
|
|
|
|
GHashTable *usage_table;
|
|
|
|
|
|
|
|
for (attribute = attribute_names, value = attribute_values; *attribute; attribute++, value++)
|
|
|
|
{
|
|
|
|
if (strcmp (*attribute, "id") == 0)
|
|
|
|
appid = g_strdup (*value);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!appid)
|
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
G_MARKUP_ERROR,
|
|
|
|
G_MARKUP_ERROR_PARSE,
|
|
|
|
"Missing attribute id on <%s> element",
|
|
|
|
element_name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
usage_table = get_usages_for_context (data->monitor, data->context);
|
|
|
|
|
|
|
|
usage = g_new0 (AppUsage, 1);
|
2009-08-08 10:03:08 -04:00
|
|
|
usage->initially_seen_sequence = 0;
|
2009-07-30 15:40:26 -04:00
|
|
|
g_hash_table_insert (usage_table, appid, usage);
|
|
|
|
|
|
|
|
for (attribute = attribute_names, value = attribute_values; *attribute; attribute++, value++)
|
|
|
|
{
|
|
|
|
if (strcmp (*attribute, "open-window-count") == 0)
|
|
|
|
{
|
|
|
|
guint count = strtoul (*value, NULL, 10);
|
|
|
|
if (count > 0)
|
|
|
|
data->monitor->previously_running = g_slist_prepend (data->monitor->previously_running,
|
|
|
|
usage);
|
|
|
|
}
|
|
|
|
else if (strcmp (*attribute, "score") == 0)
|
|
|
|
{
|
|
|
|
usage->score = g_ascii_strtod (*value, NULL);
|
|
|
|
}
|
|
|
|
else if (strcmp (*attribute, "last-seen") == 0)
|
|
|
|
{
|
|
|
|
usage->last_seen = (guint) g_ascii_strtoull (*value, NULL, 10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_set_error (error,
|
|
|
|
G_MARKUP_ERROR,
|
|
|
|
G_MARKUP_ERROR_PARSE,
|
|
|
|
"Unknown element <%s>",
|
|
|
|
element_name);
|
2009-04-23 17:03:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
static void
|
|
|
|
shell_app_monitor_end_element_handler (GMarkupParseContext *context,
|
|
|
|
const gchar *element_name,
|
|
|
|
gpointer user_data,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
ParseData *data = user_data;
|
|
|
|
|
|
|
|
if (strcmp (element_name, "context") == 0)
|
|
|
|
{
|
|
|
|
g_free (data->context);
|
|
|
|
data->context = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
shell_app_monitor_text_handler (GMarkupParseContext *context,
|
|
|
|
const gchar *text,
|
|
|
|
gsize text_len,
|
|
|
|
gpointer user_data,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
/* do nothing, very very fast */
|
|
|
|
}
|
|
|
|
|
|
|
|
static GMarkupParser app_state_parse_funcs =
|
|
|
|
{
|
|
|
|
shell_app_monitor_start_element_handler,
|
|
|
|
shell_app_monitor_end_element_handler,
|
|
|
|
shell_app_monitor_text_handler,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2009-04-23 17:03:34 -04:00
|
|
|
/* Load data about apps usage from file */
|
|
|
|
static void
|
|
|
|
restore_from_file (ShellAppMonitor *monitor)
|
|
|
|
{
|
|
|
|
GFileInputStream *input;
|
2009-07-30 15:40:26 -04:00
|
|
|
ParseData parse_data;
|
|
|
|
GMarkupParseContext *parse_context;
|
2009-04-23 17:03:34 -04:00
|
|
|
GError *error = NULL;
|
2009-07-30 15:40:26 -04:00
|
|
|
char buf[1024];
|
|
|
|
|
2009-04-23 17:03:34 -04:00
|
|
|
input = g_file_read (monitor->configfile, NULL, &error);
|
|
|
|
if (error)
|
|
|
|
{
|
2009-05-04 13:35:29 -04:00
|
|
|
if (error->code != G_IO_ERROR_NOT_FOUND)
|
2009-04-23 17:03:34 -04:00
|
|
|
g_warning ("Could not load applications usage data: %s", error->message);
|
2009-05-04 13:35:29 -04:00
|
|
|
|
2009-04-23 17:03:34 -04:00
|
|
|
g_error_free (error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-07-30 15:40:26 -04:00
|
|
|
memset (&parse_data, 0, sizeof (ParseData));
|
|
|
|
parse_data.monitor = monitor;
|
|
|
|
parse_data.context = NULL;
|
|
|
|
parse_context = g_markup_parse_context_new (&app_state_parse_funcs, 0, &parse_data, NULL);
|
2009-04-23 17:03:34 -04:00
|
|
|
|
|
|
|
while (TRUE)
|
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
gssize count = g_input_stream_read ((GInputStream*) input, buf, sizeof(buf), NULL, &error);
|
|
|
|
if (count <= 0)
|
|
|
|
goto out;
|
|
|
|
if (!g_markup_parse_context_parse (parse_context, buf, count, &error))
|
2009-04-23 17:03:34 -04:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
2009-07-30 15:40:26 -04:00
|
|
|
g_free (parse_data.context);
|
|
|
|
g_markup_parse_context_free (parse_context);
|
|
|
|
g_input_stream_close ((GInputStream*)input, NULL, NULL);
|
|
|
|
g_object_unref (input);
|
|
|
|
|
|
|
|
idle_clean_usage (monitor);
|
|
|
|
monitor->previously_running = g_slist_sort (monitor->previously_running, usage_sort_apps);
|
|
|
|
|
|
|
|
if (error)
|
2009-04-23 17:03:34 -04:00
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
g_warning ("Could not load applications usage data: %s", error->message);
|
|
|
|
g_error_free (error);
|
2009-04-23 17:03:34 -04:00
|
|
|
}
|
|
|
|
}
|
2009-04-23 10:46:36 -04:00
|
|
|
|
2009-05-04 13:40:44 -04:00
|
|
|
/* Enable or disable the timers, depending on the value of ENABLE_MONITORING_KEY
|
|
|
|
* and taking care of the previous state. If monitoring is disabled, we still
|
|
|
|
* report apps usage based on (possibly) saved data, but don't collect data.
|
|
|
|
*/
|
2009-04-23 10:46:36 -04:00
|
|
|
static void
|
2009-05-04 13:40:44 -04:00
|
|
|
update_enable_monitoring (ShellAppMonitor *monitor)
|
2009-04-23 10:46:36 -04:00
|
|
|
{
|
|
|
|
GConfValue *value;
|
2009-05-04 13:40:44 -04:00
|
|
|
gboolean enable;
|
2009-04-23 10:46:36 -04:00
|
|
|
|
2009-05-04 13:40:44 -04:00
|
|
|
value = gconf_client_get (monitor->gconf_client, ENABLE_MONITORING_KEY, NULL);
|
|
|
|
if (value)
|
2009-04-23 10:46:36 -04:00
|
|
|
{
|
2009-05-04 13:40:44 -04:00
|
|
|
enable = gconf_value_get_bool (value);
|
|
|
|
gconf_value_free (value);
|
2009-04-23 10:46:36 -04:00
|
|
|
}
|
2009-05-04 13:40:44 -04:00
|
|
|
else /* Schema is not present, set default value by hand to avoid getting FALSE */
|
|
|
|
enable = TRUE;
|
2009-07-30 15:40:26 -04:00
|
|
|
|
2009-05-04 13:40:44 -04:00
|
|
|
/* Be sure not to start the timers if they were already set */
|
|
|
|
if (enable && !monitor->enable_monitoring)
|
2009-04-23 10:46:36 -04:00
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
on_focus_window_changed (NULL, NULL, monitor);
|
2009-04-23 10:46:36 -04:00
|
|
|
}
|
2009-05-04 13:40:44 -04:00
|
|
|
/* ...and don't try to stop them if they were not running */
|
|
|
|
else if (!enable && monitor->enable_monitoring)
|
2009-04-23 10:46:36 -04:00
|
|
|
{
|
2009-07-30 15:40:26 -04:00
|
|
|
monitor->watched_window = NULL;
|
|
|
|
if (monitor->save_id)
|
|
|
|
g_source_remove (monitor->save_id);
|
2009-04-23 10:46:36 -04:00
|
|
|
}
|
2009-05-04 13:40:44 -04:00
|
|
|
|
|
|
|
monitor->enable_monitoring = enable;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Called when the ENABLE_MONITORING_KEY boolean has changed */
|
|
|
|
static void
|
|
|
|
on_enable_monitoring_key_changed (GConfClient *client,
|
|
|
|
guint connexion_id,
|
|
|
|
GConfEntry *entry,
|
|
|
|
gpointer monitor)
|
|
|
|
{
|
|
|
|
update_enable_monitoring ((ShellAppMonitor *) monitor);
|
2009-04-23 10:46:36 -04:00
|
|
|
}
|
2009-06-18 12:27:19 -04:00
|
|
|
|
2009-08-11 11:32:58 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* shell_app_monitor_get_startup_sequences:
|
|
|
|
* @self:
|
|
|
|
*
|
|
|
|
* Returns: (transfer none) (element-type ShellStartupSequence): Currently active startup sequences
|
|
|
|
*/
|
|
|
|
GSList *
|
|
|
|
shell_app_monitor_get_startup_sequences (ShellAppMonitor *self)
|
|
|
|
{
|
|
|
|
ShellGlobal *global = shell_global_get ();
|
|
|
|
MetaScreen *screen = shell_global_get_screen (global);
|
|
|
|
return meta_screen_get_startup_sequences (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sn_startup_sequence_ref returns void, so make a
|
|
|
|
* wrapper which returns self */
|
2009-08-11 13:35:08 -04:00
|
|
|
static SnStartupSequence *
|
2009-08-11 11:32:58 -04:00
|
|
|
sequence_ref (SnStartupSequence *sequence)
|
|
|
|
{
|
|
|
|
sn_startup_sequence_ref (sequence);
|
|
|
|
return sequence;
|
|
|
|
}
|
|
|
|
|
|
|
|
GType
|
|
|
|
shell_startup_sequence_get_type (void)
|
|
|
|
{
|
|
|
|
static GType gtype = G_TYPE_INVALID;
|
|
|
|
if (gtype == G_TYPE_INVALID)
|
|
|
|
{
|
|
|
|
gtype = g_boxed_type_register_static ("ShellStartupSequence",
|
|
|
|
(GBoxedCopyFunc)sequence_ref,
|
|
|
|
(GBoxedFreeFunc)sn_startup_sequence_unref);
|
|
|
|
}
|
|
|
|
return gtype;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
shell_startup_sequence_get_id (ShellStartupSequence *sequence)
|
|
|
|
{
|
|
|
|
return sn_startup_sequence_get_id ((SnStartupSequence*)sequence);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
shell_startup_sequence_get_name (ShellStartupSequence *sequence)
|
|
|
|
{
|
|
|
|
return sn_startup_sequence_get_name ((SnStartupSequence*)sequence);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
shell_startup_sequence_get_completed (ShellStartupSequence *sequence)
|
|
|
|
{
|
|
|
|
return sn_startup_sequence_get_completed ((SnStartupSequence*)sequence);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* shell_startup_sequence_create_icon:
|
|
|
|
* @sequence:
|
|
|
|
* @size: Size in pixels of icon
|
|
|
|
*
|
|
|
|
* Returns: (transfer none): A new #ClutterTexture containing an icon for the sequence
|
|
|
|
*/
|
|
|
|
ClutterActor *
|
|
|
|
shell_startup_sequence_create_icon (ShellStartupSequence *sequence, guint size)
|
|
|
|
{
|
|
|
|
GThemedIcon *themed;
|
|
|
|
const char *icon_name;
|
|
|
|
ClutterActor *texture;
|
|
|
|
|
|
|
|
icon_name = sn_startup_sequence_get_icon_name ((SnStartupSequence*)sequence);
|
|
|
|
if (!icon_name)
|
|
|
|
{
|
|
|
|
texture = clutter_texture_new ();
|
|
|
|
clutter_actor_set_size (texture, size, size);
|
|
|
|
return texture;
|
|
|
|
}
|
|
|
|
|
|
|
|
themed = (GThemedIcon*)g_themed_icon_new (icon_name);
|
|
|
|
texture = shell_texture_cache_load_gicon (shell_texture_cache_get_default (),
|
|
|
|
G_ICON (themed), size);
|
|
|
|
g_object_unref (G_OBJECT (themed));
|
|
|
|
return texture;
|
|
|
|
}
|
|
|
|
|
2009-06-18 12:27:19 -04:00
|
|
|
/**
|
|
|
|
* shell_app_monitor_get_default:
|
|
|
|
*
|
|
|
|
* Return Value: (transfer none): The global #ShellAppMonitor instance
|
|
|
|
*/
|
|
|
|
ShellAppMonitor *
|
|
|
|
shell_app_monitor_get_default ()
|
|
|
|
{
|
|
|
|
static ShellAppMonitor *instance;
|
|
|
|
|
|
|
|
if (instance == NULL)
|
|
|
|
instance = g_object_new (SHELL_TYPE_APP_MONITOR, NULL);
|
|
|
|
|
|
|
|
return instance;
|
|
|
|
}
|