Mark strings for translation.
[platform/upstream/glib.git] / gio / glocalfilemonitor.c
1 /* GIO - GLib Input, Output and Streaming Library
2  * 
3  * Copyright (C) 2006-2007 Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Author: Alexander Larsson <alexl@redhat.com>
21  */
22
23 #include <config.h>
24
25 #include "glocalfilemonitor.h"
26 #include "giomodule-priv.h"
27 #include "glibintl.h"
28
29 #include <string.h>
30
31 #include "gioalias.h"
32
33 enum
34 {
35   PROP_0,
36   PROP_FILENAME
37 };
38
39 G_DEFINE_ABSTRACT_TYPE (GLocalFileMonitor, g_local_file_monitor, G_TYPE_FILE_MONITOR)
40
41 static void
42 g_local_file_monitor_init (GLocalFileMonitor* local_monitor)
43 {
44 }
45
46 static void
47 g_local_file_monitor_set_property (GObject      *object,
48                                    guint         property_id,
49                                    const GValue *value,
50                                    GParamSpec   *pspec)
51 {
52   switch (property_id)
53   {
54     case PROP_FILENAME:
55       /* Do nothing */
56       break;
57     default:
58       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
59       break;
60   }
61 }
62
63 static GObject *
64 g_local_file_monitor_constructor (GType                  type,
65                                   guint                  n_construct_properties,
66                                   GObjectConstructParam *construct_properties)
67 {
68   GObject *obj;
69   GLocalFileMonitorClass *klass;
70   GObjectClass *parent_class;
71   GLocalFileMonitor *local_monitor;
72   const gchar *filename = NULL;
73   gint i;
74   
75   klass = G_LOCAL_FILE_MONITOR_CLASS (g_type_class_peek (G_TYPE_LOCAL_FILE_MONITOR));
76   parent_class = G_OBJECT_CLASS (g_type_class_peek_parent (klass));
77   obj = parent_class->constructor (type,
78                                    n_construct_properties,
79                                    construct_properties);
80
81   local_monitor = G_LOCAL_FILE_MONITOR (obj);
82
83   for (i = 0; i < n_construct_properties; i++)
84     {
85       if (strcmp ("filename", g_param_spec_get_name (construct_properties[i].pspec)) == 0)
86         {
87           g_warn_if_fail (G_VALUE_HOLDS_STRING (construct_properties[i].value));
88           filename = g_value_get_string (construct_properties[i].value);
89           break;
90         }
91     }
92
93   g_warn_if_fail (filename != NULL);
94
95   local_monitor->filename = g_strdup (filename);
96   return obj;
97 }
98
99 static void
100 g_local_file_monitor_finalize (GObject *object)
101 {
102   GLocalFileMonitor *local_monitor = G_LOCAL_FILE_MONITOR (object);
103   if (local_monitor->filename)
104     {
105       g_free (local_monitor->filename);
106       local_monitor->filename = NULL;
107     }
108
109   if (G_OBJECT_CLASS (g_local_file_monitor_parent_class)->finalize)
110     (*G_OBJECT_CLASS (g_local_file_monitor_parent_class)->finalize) (object);
111 }
112
113 static void
114 g_local_file_monitor_class_init (GLocalFileMonitorClass* klass)
115 {
116   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
117
118   gobject_class->set_property = g_local_file_monitor_set_property;
119   gobject_class->finalize = g_local_file_monitor_finalize;
120   gobject_class->constructor = g_local_file_monitor_constructor;
121
122   g_object_class_install_property (gobject_class, 
123                                    PROP_FILENAME,
124                                    g_param_spec_string ("filename", 
125                                                         P_("File name"), 
126                                                         P_("File name to monitor"),
127                                                         NULL, 
128                                                         G_PARAM_CONSTRUCT_ONLY|
129                                                         G_PARAM_WRITABLE|
130                                                         G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB));
131 }
132
133 static gint
134 _compare_monitor_type_by_prio (gconstpointer _a,
135                                gconstpointer _b,
136                                gpointer      user_data)
137 {
138   const GType *a = _a, *b = _b;
139   int prio_a, prio_b;
140   gint ret;
141   GQuark private_q;
142
143   private_q = g_quark_from_static_string ("gio-prio");
144
145   prio_a = GPOINTER_TO_INT (g_type_get_qdata (*a, private_q));
146   prio_b = GPOINTER_TO_INT (g_type_get_qdata (*b, private_q));
147
148   ret = prio_b - prio_a;
149
150   return ret;
151 }
152
153 static gpointer
154 get_default_local_file_monitor (gpointer data)
155 {
156   GType *monitor_impls;
157   guint n_monitor_impls;
158   gint i;
159   GLocalFileMonitorClass *chosen_class;
160   GLocalFileMonitorClass **ret = data;
161
162   _g_io_modules_ensure_loaded ();
163   
164   monitor_impls = g_type_children (G_TYPE_LOCAL_FILE_MONITOR,
165                                    &n_monitor_impls);
166
167   g_qsort_with_data (monitor_impls,
168                      n_monitor_impls,
169                      sizeof (GType),
170                      _compare_monitor_type_by_prio,
171                      NULL);
172
173   chosen_class = NULL;
174   for (i = 0; i < n_monitor_impls; i++)
175     {    
176       GLocalFileMonitorClass *klass;
177       
178       klass = G_LOCAL_FILE_MONITOR_CLASS (g_type_class_ref (monitor_impls[i]));
179       
180       if (klass->is_supported())
181         {
182           chosen_class = klass;
183           break;
184         }
185       else
186         g_type_class_unref (klass);
187     }
188
189   g_free (monitor_impls);
190   
191   if (chosen_class)
192     {
193       *ret = chosen_class;
194       return (gpointer)G_TYPE_FROM_CLASS (chosen_class);
195     }
196   else
197     return (gpointer)G_TYPE_INVALID;
198 }
199
200 /**
201  * g_local_file_monitor_new:
202  * @pathname: path name to monitor.
203  * @flags: #GFileMonitorFlags.
204  * 
205  * Returns: a new #GFileMonitor for the given @pathname. 
206  **/
207 GFileMonitor*
208 _g_local_file_monitor_new (const char        *pathname,
209                            GFileMonitorFlags  flags)
210 {
211   static GOnce once_init = G_ONCE_INIT;
212   GTypeClass *type_class;
213   GFileMonitor *monitor;
214   GType type;
215
216   type_class = NULL;
217   g_once (&once_init, get_default_local_file_monitor, &type_class);
218   type = (GType)once_init.retval;
219
220   monitor = NULL;
221   if (type != G_TYPE_INVALID)
222     monitor = G_FILE_MONITOR (g_object_new (type, "filename", pathname, NULL));
223
224   /* This is non-null on first pass here. Unref the class now.
225    * This is to avoid unloading the module and then loading it
226    * again which would happen if we unrefed the class
227    * before creating the monitor.
228    */
229   
230   if (type_class)
231     g_type_class_unref (type_class);
232   
233   return monitor;
234 }
235
236 #define __G_LOCAL_FILE_MONITOR_C__
237 #include "gioaliasdef.c"