Drop GVFS_INOTIFY_DIAG debug feature
authorMatthias Clasen <mclasen@redhat.com>
Wed, 12 Sep 2012 00:22:26 +0000 (20:22 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Wed, 12 Sep 2012 00:24:30 +0000 (20:24 -0400)
Just not a good idea to have this in production code.

docs/reference/gio/overview.xml
gio/inotify/Makefile.am
gio/inotify/inotify-diag.c [deleted file]
gio/inotify/inotify-diag.h [deleted file]
gio/inotify/inotify-helper.c

index bde9b6f..29087ca 100644 (file)
     </formalpara>
 
     <formalpara>
-      <title><envar>GVFS_INOTIFY_DIAG</envar></title>
-
-      <para>
-        When this environment variable is set and GIO has been built
-        with inotify support, a dump of diagnostic inotify information
-        will be written every 20 seconds to a file named
-        <filename>/tmp/gvfsdid.<replaceable>pid</replaceable></filename>.
-      </para>
-    </formalpara>
-
-    <formalpara>
       <title><envar>GIO_EXTRA_MODULES</envar></title>
 
       <para>
index 8eb9e91..2235126 100644 (file)
@@ -10,8 +10,6 @@ libinotify_la_SOURCES =               \
        inotify-path.c                  \
        inotify-missing.c               \
        inotify-helper.c                \
-       inotify-diag.c                  \
-       inotify-diag.h                  \
        inotify-kernel.h                \
        inotify-missing.h               \
        inotify-path.h                  \
diff --git a/gio/inotify/inotify-diag.c b/gio/inotify/inotify-diag.c
deleted file mode 100644 (file)
index 937ebd7..0000000
+++ /dev/null
@@ -1,74 +0,0 @@
-/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 2; tab-width: 8 -*- */
-
-/* inotify-helper.c - Gnome VFS Monitor based on inotify.
-
-   Copyright (C) 2005 John McCutchan
-
-   The Gnome Library is free software; you can redistribute it and/or
-   modify it under the terms of the GNU Library General Public License as
-   published by the Free Software Foundation; either version 2 of the
-   License, or (at your option) any later version.
-
-   The Gnome 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
-   Library General Public License for more details.
-
-   You should have received a copy of the GNU Library General Public
-   License along with the Gnome Library; see the file COPYING.LIB.  If not,
-   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.
-
-   Authors: 
-                John McCutchan <john@johnmccutchan.com>
-*/
-
-#include "config.h"
-#include <glib.h>
-#include <sys/types.h>
-#include <unistd.h>
-#include "inotify-missing.h"
-#include "inotify-path.h"
-#include "inotify-diag.h"
-
-#define DIAG_DUMP_TIME 20000 /* 20 seconds */
-
-G_LOCK_EXTERN (inotify_lock);
-
-static gboolean
-id_dump (gpointer userdata)
-{
-  GIOChannel *ioc;
-  pid_t pid;
-  char *fname;
-  G_LOCK (inotify_lock);
-  ioc = NULL;
-  pid = getpid ();
-
-  fname = g_strdup_printf ("/tmp/gvfsid.%d", pid);
-  ioc = g_io_channel_new_file (fname, "w", NULL);
-  g_free (fname);
-  
-  if (!ioc)
-    {
-      G_UNLOCK (inotify_lock);
-      return TRUE;
-    }
-
-  _im_diag_dump (ioc);
-  
-  g_io_channel_shutdown (ioc, TRUE, NULL);
-  g_io_channel_unref (ioc);
-  
-  G_UNLOCK (inotify_lock);
-  return TRUE;
-}
-
-void
-_id_startup (void)
-{
-  if (!g_getenv ("GVFS_INOTIFY_DIAG"))
-    return;
-       
-  g_timeout_add (DIAG_DUMP_TIME, id_dump, NULL);
-}
diff --git a/gio/inotify/inotify-diag.h b/gio/inotify/inotify-diag.h
deleted file mode 100644 (file)
index f818f16..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-/* inotify-helper.h - GNOME VFS Monitor using inotify
-
-   Copyright (C) 2006 John McCutchan <john@johnmccutchan.com>
-
-   The Gnome Library is free software; you can redistribute it and/or
-   modify it under the terms of the GNU Library General Public License as
-   published by the Free Software Foundation; either version 2 of the
-   License, or (at your option) any later version.
-
-   The Gnome 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
-   Library General Public License for more details.
-
-   You should have received a copy of the GNU Library General Public
-   License along with the Gnome Library; see the file COPYING.LIB.  If not,
-   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.
-
-   Author: John McCutchan <john@johnmccutchan.com>
-*/
-
-
-#ifndef __INOTIFY_DIAG_H
-#define __INOTIFY_DIAG_H
-
-void _id_startup (void);
-
-#endif /* __INOTIFY_DIAG_H */
index 6ee0b4b..b1a9cf1 100644 (file)
@@ -36,7 +36,6 @@
 #include "inotify-helper.h"
 #include "inotify-missing.h"
 #include "inotify-path.h"
-#include "inotify-diag.h"
 
 static gboolean ih_debug_enabled = FALSE;
 #define IH_W if (ih_debug_enabled) g_warning 
@@ -87,7 +86,6 @@ _ih_startup (void)
       return FALSE;
     }
   _im_startup (ih_not_missing_callback);
-  _id_startup ();
 
   IH_W ("started gvfs inotify backend\n");