1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
2  *
3  * Copyright (C) 2007-2010 David Zeuthen <zeuthen@gmail.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program 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
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  */
20 
21 #ifndef __UDISKS_LINUX_DRIVE_OBJECT_H__
22 #define __UDISKS_LINUX_DRIVE_OBJECT_H__
23 
24 #include "udisksdaemontypes.h"
25 #include <gudev/gudev.h>
26 
27 G_BEGIN_DECLS
28 
29 #define UDISKS_TYPE_LINUX_DRIVE_OBJECT  (udisks_linux_drive_object_get_type ())
30 #define UDISKS_LINUX_DRIVE_OBJECT(o)    (G_TYPE_CHECK_INSTANCE_CAST ((o), UDISKS_TYPE_LINUX_DRIVE_OBJECT, UDisksLinuxDriveObject))
31 #define UDISKS_IS_LINUX_DRIVE_OBJECT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), UDISKS_TYPE_LINUX_DRIVE_OBJECT))
32 
33 GType                   udisks_linux_drive_object_get_type      (void) G_GNUC_CONST;
34 UDisksLinuxDriveObject *udisks_linux_drive_object_new           (UDisksDaemon             *daemon,
35                                                                  UDisksLinuxDevice        *device);
36 void                    udisks_linux_drive_object_uevent        (UDisksLinuxDriveObject   *object,
37                                                                  const gchar              *action,
38                                                                  UDisksLinuxDevice        *device);
39 UDisksDaemon           *udisks_linux_drive_object_get_daemon    (UDisksLinuxDriveObject   *object);
40 GList                  *udisks_linux_drive_object_get_devices   (UDisksLinuxDriveObject   *object);
41 UDisksLinuxDevice      *udisks_linux_drive_object_get_device    (UDisksLinuxDriveObject   *object,
42                                                                  gboolean                  get_hw);
43 UDisksLinuxBlockObject *udisks_linux_drive_object_get_block     (UDisksLinuxDriveObject   *object,
44                                                                  gboolean                  get_hw);
45 
46 GList                  *udisks_linux_drive_object_get_siblings  (UDisksLinuxDriveObject   *object);
47 
48 gboolean                udisks_linux_drive_object_housekeeping  (UDisksLinuxDriveObject   *object,
49                                                                  guint                     secs_since_last,
50                                                                  GCancellable             *cancellable,
51                                                                  GError                  **error);
52 
53 gboolean                udisks_linux_drive_object_is_not_in_use (UDisksLinuxDriveObject   *object,
54                                                                  GCancellable             *cancellable,
55                                                                  GError                  **error);
56 
57 gboolean                udisks_linux_drive_object_should_include_device (GUdevClient        *client,
58                                                                          UDisksLinuxDevice  *device,
59                                                                          gchar             **out_vpd);
60 
61 
62 G_END_DECLS
63 
64 #endif /* __UDISKS_LINUX_DRIVE_OBJECT_H__ */
65