1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
/* GIO - GLib Input, Output and Streaming Library
*
* Copyright (C) 2006-2007 Red Hat, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
*
* Author: Alexander Larsson <alexl@redhat.com>
*/
#include "config.h"
#include <string.h>
#include "gpollfilemonitor.h"
#include "gfile.h"
#include "gfilemonitor.h"
#include "gfileinfo.h"
static gboolean g_poll_file_monitor_cancel (GFileMonitor* monitor);
static void schedule_poll_timeout (GPollFileMonitor* poll_monitor);
struct _GPollFileMonitor
{
GFileMonitor parent_instance;
GFile *file;
GFileInfo *last_info;
guint timeout;
};
#define POLL_TIME_SECS 5
#define g_poll_file_monitor_get_type _g_poll_file_monitor_get_type
G_DEFINE_TYPE (GPollFileMonitor, g_poll_file_monitor, G_TYPE_FILE_MONITOR)
static void
g_poll_file_monitor_finalize (GObject* object)
{
GPollFileMonitor* poll_monitor;
poll_monitor = G_POLL_FILE_MONITOR (object);
g_object_unref (poll_monitor->file);
G_OBJECT_CLASS (g_poll_file_monitor_parent_class)->finalize (object);
}
static void
g_poll_file_monitor_class_init (GPollFileMonitorClass* klass)
{
GObjectClass* gobject_class = G_OBJECT_CLASS (klass);
GFileMonitorClass *file_monitor_class = G_FILE_MONITOR_CLASS (klass);
gobject_class->finalize = g_poll_file_monitor_finalize;
file_monitor_class->cancel = g_poll_file_monitor_cancel;
}
static void
g_poll_file_monitor_init (GPollFileMonitor* poll_monitor)
{
}
static int
safe_strcmp (const char *a,
const char *b)
{
if (a == NULL && b == NULL)
return 0;
if (a == NULL)
return -1;
if (b == NULL)
return 1;
return strcmp (a, b);
}
static int
calc_event_type (GFileInfo *last,
GFileInfo *new)
{
if (last == NULL && new == NULL)
return -1;
if (last == NULL && new != NULL)
return G_FILE_MONITOR_EVENT_CREATED;
if (last != NULL && new == NULL)
return G_FILE_MONITOR_EVENT_DELETED;
if (safe_strcmp (g_file_info_get_etag (last),
g_file_info_get_etag (new)))
return G_FILE_MONITOR_EVENT_CHANGED;
if (g_file_info_get_size (last) !=
g_file_info_get_size (new))
return G_FILE_MONITOR_EVENT_CHANGED;
return -1;
}
static void
got_new_info (GObject *source_object,
GAsyncResult *res,
gpointer user_data)
{
GPollFileMonitor* poll_monitor = user_data;
GFileInfo *info;
int event;
info = g_file_query_info_finish (poll_monitor->file, res, NULL);
if (!g_file_monitor_is_cancelled (G_FILE_MONITOR (poll_monitor)))
{
event = calc_event_type (poll_monitor->last_info, info);
if (event != -1)
{
g_file_monitor_emit_event (G_FILE_MONITOR (poll_monitor),
poll_monitor->file,
NULL, event);
/* We're polling so slowly anyway, so always emit the done hint */
if (event == G_FILE_MONITOR_EVENT_CHANGED)
g_file_monitor_emit_event (G_FILE_MONITOR (poll_monitor),
poll_monitor->file,
NULL, G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT);
}
if (poll_monitor->last_info)
{
g_object_unref (poll_monitor->last_info);
poll_monitor->last_info = NULL;
}
if (info)
poll_monitor->last_info = g_object_ref (info);
schedule_poll_timeout (poll_monitor);
}
if (info)
g_object_unref (info);
g_object_unref (poll_monitor);
}
static gboolean
poll_file_timeout (gpointer data)
{
GPollFileMonitor* poll_monitor = data;
poll_monitor->timeout = FALSE;
g_file_query_info_async (poll_monitor->file, G_FILE_ATTRIBUTE_ETAG_VALUE "," G_FILE_ATTRIBUTE_STANDARD_SIZE,
0, 0, NULL, got_new_info, g_object_ref (poll_monitor));
return G_SOURCE_REMOVE;
}
static void
schedule_poll_timeout (GPollFileMonitor* poll_monitor)
{
poll_monitor->timeout = g_timeout_add_seconds (POLL_TIME_SECS, poll_file_timeout, poll_monitor);
}
static void
got_initial_info (GObject *source_object,
GAsyncResult *res,
gpointer user_data)
{
GPollFileMonitor* poll_monitor = user_data;
GFileInfo *info;
info = g_file_query_info_finish (poll_monitor->file, res, NULL);
poll_monitor->last_info = info;
if (!g_file_monitor_is_cancelled (G_FILE_MONITOR (poll_monitor)))
schedule_poll_timeout (poll_monitor);
g_object_unref (poll_monitor);
}
/**
* g_poll_file_monitor_new:
* @file: a #GFile.
*
* Polls @file for changes.
*
* Returns: a new #GFileMonitor for the given #GFile.
**/
GFileMonitor*
_g_poll_file_monitor_new (GFile *file)
{
GPollFileMonitor* poll_monitor;
poll_monitor = g_object_new (G_TYPE_POLL_FILE_MONITOR, NULL);
poll_monitor->file = g_object_ref (file);
g_file_query_info_async (file, G_FILE_ATTRIBUTE_ETAG_VALUE "," G_FILE_ATTRIBUTE_STANDARD_SIZE,
0, 0, NULL, got_initial_info, g_object_ref (poll_monitor));
return G_FILE_MONITOR (poll_monitor);
}
static gboolean
g_poll_file_monitor_cancel (GFileMonitor* monitor)
{
GPollFileMonitor *poll_monitor = G_POLL_FILE_MONITOR (monitor);
if (poll_monitor->timeout)
{
g_source_remove (poll_monitor->timeout);
poll_monitor->timeout = 0;
}
return TRUE;
}
|