2007-11-26 17:13:05 +01:00
|
|
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 2; tab-width: 8 -*- */
|
|
|
|
|
2015-08-21 04:30:19 +02:00
|
|
|
/* inotify-sub.c - GVFS Monitor based on inotify.
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
Copyright (C) 2006 John McCutchan
|
|
|
|
|
2024-04-17 16:42:54 +02:00
|
|
|
SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
|
2016-12-27 17:40:22 +01:00
|
|
|
This library is free software; you can redistribute it and/or
|
2017-01-05 14:51:09 +01:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
2016-12-27 17:40:22 +01:00
|
|
|
License as published by the Free Software Foundation; either
|
2017-01-05 14:51:09 +01:00
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2016-12-27 17:40:22 +01:00
|
|
|
This library is distributed in the hope that it will be useful,
|
2007-11-26 17:13:05 +01:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2017-01-05 14:51:09 +01:00
|
|
|
Lesser General Public License for more details.
|
2007-11-26 17:13:05 +01:00
|
|
|
|
2017-01-05 14:51:09 +01:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2016-12-27 17:40:22 +01:00
|
|
|
along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
Authors:
|
|
|
|
John McCutchan <john@johnmccutchan.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include "inotify-sub.h"
|
|
|
|
|
|
|
|
static gboolean is_debug_enabled = FALSE;
|
|
|
|
#define IS_W if (is_debug_enabled) g_warning
|
|
|
|
|
|
|
|
static gchar*
|
2008-01-21 06:12:16 +01:00
|
|
|
dup_dirname (const gchar *dirname)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2008-01-21 06:12:16 +01:00
|
|
|
gchar *d_dirname = g_strdup (dirname);
|
2007-11-26 17:13:05 +01:00
|
|
|
size_t len = strlen (d_dirname);
|
|
|
|
|
2023-01-29 03:33:54 +01:00
|
|
|
if (len > 1 && d_dirname[len - 1] == '/')
|
2008-11-28 06:09:21 +01:00
|
|
|
d_dirname[len - 1] = '\0';
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
return d_dirname;
|
|
|
|
}
|
|
|
|
|
|
|
|
inotify_sub*
|
2008-01-21 06:12:16 +01:00
|
|
|
_ih_sub_new (const gchar *dirname,
|
2015-09-29 22:48:29 +02:00
|
|
|
const gchar *basename,
|
2010-02-18 15:49:58 +01:00
|
|
|
const gchar *filename,
|
2008-01-21 06:12:16 +01:00
|
|
|
gpointer user_data)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
2008-01-21 06:12:16 +01:00
|
|
|
inotify_sub *sub = NULL;
|
2007-11-26 17:13:05 +01:00
|
|
|
|
|
|
|
sub = g_new0 (inotify_sub, 1);
|
2015-09-29 22:48:29 +02:00
|
|
|
|
|
|
|
if (filename)
|
|
|
|
{
|
|
|
|
sub->dirname = g_path_get_dirname (filename);
|
|
|
|
sub->filename = g_path_get_basename (filename);
|
|
|
|
sub->hardlinks = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sub->dirname = dup_dirname (dirname);
|
|
|
|
sub->filename = g_strdup (basename);
|
|
|
|
sub->hardlinks = FALSE;
|
|
|
|
}
|
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
sub->user_data = user_data;
|
2010-02-18 15:49:58 +01:00
|
|
|
|
2007-11-26 17:13:05 +01:00
|
|
|
IS_W ("new subscription for %s being setup\n", sub->dirname);
|
|
|
|
|
|
|
|
return sub;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-01-21 06:12:16 +01:00
|
|
|
_ih_sub_free (inotify_sub *sub)
|
2007-11-26 17:13:05 +01:00
|
|
|
{
|
|
|
|
g_free (sub->dirname);
|
|
|
|
g_free (sub->filename);
|
|
|
|
g_free (sub);
|
|
|
|
}
|