summaryrefslogtreecommitdiff
path: root/thunar-volman/tvm-device.c
blob: 90cf94bb3377d94de8e315b88f5ceec5857f86fe (plain)
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
/* vi:set et ai sw=2 sts=2 ts=2: */
/*-
 * Copyright (c) 2010 Jannis Pohlmann <jannis@xfce.org>
 *
 * This program is free software; you can redistribute it and/or 
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of 
 * the License, or (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public 
 * License along with this program; if not, write to the Free 
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <glib.h>

#include <gudev/gudev.h>

#include <libxfce4util/libxfce4util.h>

#include <xfconf/xfconf.h>

#include <thunar-volman/tvm-block-device.h>
#include <thunar-volman/tvm-context.h>
#include <thunar-volman/tvm-device.h>
#include <thunar-volman/tvm-input-device.h>
#include <thunar-volman/tvm-usb-device.h>



typedef struct _TvmDeviceHandler TvmDeviceHandler;



static void tvm_device_try_next_handler (TvmContext *context);



struct _TvmDeviceHandler
{
  const gchar         *subsystem;
  TvmDeviceHandlerFunc func;
};



static TvmDeviceHandler subsystem_handlers[] = 
{
  { "block",       tvm_block_device_added },
  { "input",       tvm_input_device_added },
  { "usb",         tvm_usb_device_added   },
#if 0
  { "sound",       tvm_sound_device_added },
  { "video4linux", tvm_video_device_added },
#endif
};



void
tvm_device_handler_finished (TvmContext *context)
{
  g_return_if_fail (context != NULL);
  
  if (context->error != NULL && *context->error != NULL)
    {
      g_list_free (context->handlers);
      g_main_loop_quit (context->loop);
    }
  else
    {
      if (context->handlers != NULL)
        tvm_device_try_next_handler (context);
      else
        g_main_loop_quit (context->loop);
    }
}



static void
tvm_device_try_next_handler (TvmContext *context)
{
  TvmDeviceHandler *handler;

  g_return_if_fail (context != NULL);

  handler = context->handlers->data;
  context->handlers = g_list_delete_link (context->handlers, context->handlers);

  handler->func (context);
}



void
tvm_device_added (TvmContext *context)
{
  const gchar *const *keys = NULL;
  const gchar        *subsystem;
  gint                n;

  g_return_if_fail (context != NULL);

#ifdef DEBUG
  g_debug ("tvm_device_added:");
  keys = g_udev_device_get_property_keys (context->device);
  for (n = 0; keys != NULL && keys[n] != NULL; ++n)
    g_debug ("    %s = %s", keys[n], g_udev_device_get_property (context->device, keys[n]));
#endif

  /* determine the subsystem to which the device belongs */
  subsystem = g_udev_device_get_subsystem (context->device);

  /* find all subsystem handlers for this subsystem */
  for (n = G_N_ELEMENTS (subsystem_handlers)-1; n >= 0; --n)
    if (g_strcmp0 (subsystem, subsystem_handlers[n].subsystem) == 0)
      context->handlers = g_list_prepend (context->handlers, &subsystem_handlers[n]);

  /* check if we have at least one handler */
  if (context->handlers != NULL)
    {
      /* try the next handler in the list */
      tvm_device_try_next_handler (context);
    }
  else
    {
      g_set_error (context->error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
                   _("Device type \"%s\" not supported"),
                   g_udev_device_get_property (context->device, "DEVNAME"));
      g_main_loop_quit (context->loop);
    }
}