#define DBUS_REPLY_TIMEOUT (-1)
+#define GET_DBUS_CONN_OR_EXIT() \
+ ({ \
+ dbus_handle_h dbus_handle = gdbus_get_connection(G_BUS_TYPE_SYSTEM, true); \
+ if (dbus_handle == NULL) { \
+ _E("Failed to get dbus connection"); \
+ return -EIO; \
+ } \
+ dbus_handle; \
+ })
+
+
struct storage_ext_callback {
storage_ext_changed_cb func;
void *data;
if (!list)
return -EINVAL;
- ret_dbus = gdbus_call_sync_with_reply(STORAGE_EXT_BUS_NAME,
+ dbus_handle_h dbus_handle = GET_DBUS_CONN_OR_EXIT();
+
+ ret_dbus = gdbus_priv_call_sync_with_reply(dbus_handle,
+ STORAGE_EXT_BUS_NAME,
STORAGE_EXT_PATH_MANAGER,
STORAGE_EXT_IFACE_MANAGER,
STORAGE_EXT_GET_LIST,
g_variant_new("(s)", "all"),
&reply);
+
+ gdbus_free_connection(dbus_handle);
+
if (ret_dbus < 0) {
_E("Failed to get storage_ext device info"); //LCOV_EXCL_LINE
return -EIO;
memset(buf, 0, sizeof(struct statvfs_32));
- ret_dbus = gdbus_call_sync_with_reply(STORAGE_EXT_BUS_NAME,
+ dbus_handle_h dbus_handle = GET_DBUS_CONN_OR_EXIT();
+
+ ret_dbus = gdbus_priv_call_sync_with_reply(dbus_handle,
+ STORAGE_EXT_BUS_NAME,
STORAGE_EXT_PATH_STORAGE,
STORAGE_EXT_IFACE_STORAGE,
STORAGE_EXT_GET_STATVFS,
g_variant_new("(s)", path),
&reply);
+
+ gdbus_free_connection(dbus_handle);
+
if (ret_dbus < 0) {
_E("Failed to get storage_ext device info"); //LCOV_EXCL_LINE
return -EIO;
memset(buf, 0, sizeof(struct statvfs));
- ret_dbus = gdbus_call_sync_with_reply(STORAGE_EXT_BUS_NAME,
+ dbus_handle_h dbus_handle = GET_DBUS_CONN_OR_EXIT();
+
+ ret_dbus = gdbus_priv_call_sync_with_reply(dbus_handle,
+ STORAGE_EXT_BUS_NAME,
STORAGE_EXT_PATH_STORAGE,
STORAGE_EXT_IFACE_STORAGE,
STORAGE_EXT_GET_STATVFS,
g_variant_new("(s)", path),
&reply);
+
+ gdbus_free_connection(dbus_handle);
+
if (ret_dbus < 0) {
_E("Failed to get storage_ext device info"); //LCOV_EXCL_LINE
return -EIO;
return -EINVAL;
}
- ret_dbus = gdbus_call_sync_with_reply(STORAGE_EXT_BUS_NAME,
+ dbus_handle_h dbus_handle = GET_DBUS_CONN_OR_EXIT();
+
+ ret_dbus = gdbus_priv_call_sync_with_reply(
+ dbus_handle,
+ STORAGE_EXT_BUS_NAME,
STORAGE_EXT_PATH_STORAGE,
STORAGE_EXT_IFACE_STORAGE,
STORAGE_EXT_GET_STORAGE_LEVEL,
g_variant_new("(i)", id),
&reply);
+
+ gdbus_free_connection(dbus_handle);
+
if (ret_dbus < 0) {
_E("Failed to get %d level", id);
return -EIO;
GVariant *reply;
int ret_dbus;
- ret_dbus = gdbus_call_sync_with_reply(STORAGE_EXT_BUS_NAME,
+ dbus_handle_h dbus_handle = GET_DBUS_CONN_OR_EXIT();
+
+ ret_dbus = gdbus_priv_call_sync_with_reply(dbus_handle,
+ STORAGE_EXT_BUS_NAME,
STORAGE_EXT_PATH_MANAGER,
STORAGE_EXT_IFACE_MANAGER,
"GetDeviceInfo",
g_variant_new("(i)", storage_id),
&reply);
+
+ gdbus_free_connection(dbus_handle);
+
if (ret_dbus < 0) {
_E("There is no storage with the storage id (%d)", storage_id); //LCOV_EXCL_LINE
return -ENODEV;
if (!storage_ext_is_supported())
return STORAGE_ERROR_NOT_SUPPORTED;
- ret_dbus = gdbus_call_sync_with_reply(STORAGE_EXT_BUS_NAME,
+ dbus_handle_h dbus_handle = gdbus_get_connection(G_BUS_TYPE_SYSTEM, true);
+ if (dbus_handle == NULL) {
+ _E("Failed to get dbus connection");
+ return STORAGE_ERROR_OPERATION_FAILED;
+ }
+
+ ret_dbus = gdbus_priv_call_sync_with_reply(dbus_handle,
+ STORAGE_EXT_BUS_NAME,
STORAGE_EXT_PATH_MANAGER,
STORAGE_EXT_IFACE_MANAGER,
"GetMmcPrimary",
NULL,
&reply);
+
+ gdbus_free_connection(dbus_handle);
+
if (ret_dbus < 0) {
//LCOV_EXCL_START System Error
_E("Failed to get primary sdcard partition"); //LCOV_EXCL_LINE