block: remove external-storage call if block module is not supported
[platform/core/system/libstorage.git] / src / storage-external-dbus.h
1 /*
2  * libstorage
3  *
4  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the License);
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19
20 #ifndef __STORAGE_EXTERNAL_DBUS_H__
21 #define __STORAGE_EXTERNAL_DBUS_H__
22
23 #include <stdbool.h>
24 #include <glib.h>
25 #include <gio/gio.h>
26 #include "list.h"
27
28 #define STORAGE_EXT_BUS_NAME              "org.tizen.system.storage"
29 #define STORAGE_EXT_PATH_MANAGER          "/Org/Tizen/System/Storage/Block/Manager"
30 #define STORAGE_EXT_IFACE_MANAGER         STORAGE_EXT_BUS_NAME".BlockManager"
31
32 enum mount_state {
33         STORAGE_EXT_UNMOUNTED,
34         STORAGE_EXT_MOUNTED,
35 };
36
37 enum storage_ext_state {
38         STORAGE_EXT_REMOVED,
39         STORAGE_EXT_ADDED,
40         STORAGE_EXT_CHANGED,
41         STORAGE_EXT_BLOCKED,
42 };
43
44 enum storage_ext_type {
45         STORAGE_EXT_SCSI,
46         STORAGE_EXT_MMC,
47         STORAGE_EXT_MMC_EXTENDED_INTERNAL,
48 };
49
50 enum storage_ext_flags {
51         FLAG_NONE        = 0,
52         UNMOUNT_UNSAFE   = 1 << 0,
53         FS_BROKEN        = 1 << 1,
54         FS_EMPTY         = 1 << 2,
55         FS_NOT_SUPPORTED = 1 << 3,
56         MOUNT_READONLY   = 1 << 4,
57 };
58
59 typedef struct _storage_ext_device {
60         enum storage_ext_type type;
61         char *devnode;
62         char *syspath;
63         char *fs_usage;
64         char *fs_type;
65         char *fs_version;
66         char *fs_uuid;
67         bool readonly;
68         char *mount_point;
69         enum mount_state state;
70         bool primary;   /* the first partition */
71         int flags;
72         int storage_id;
73 } storage_ext_device;
74
75 typedef int (*storage_ext_changed_cb)(storage_ext_device *dev, enum storage_ext_state state, void *data);
76
77 int storage_ext_is_supported(void);
78 void storage_ext_release_device(storage_ext_device **dev);
79 void storage_ext_release_list(dd_list **list);
80 int storage_ext_get_list(dd_list **list);
81
82 int storage_ext_register_device_change(storage_ext_changed_cb func, void *data);
83 void storage_ext_unregister_device_change(storage_ext_changed_cb func);
84
85 int storage_ext_get_device_info(int storage_id, storage_ext_device *info);
86
87 /* storage-internal.c */
88 GVariant *dbus_method_call_sync(const gchar *dest, const gchar *path,
89                 const gchar *iface, const gchar *method, GVariant *param);
90
91 #endif /* __STORAGE_EXTERNAL_DBUS_H__ */