4 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
6 * Contact: Hyunjun Ko <zzoon.ko@samsung.com>, Haejeong Kim <backto.kim@samsung.com>
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
23 #include "media-svc-noti.h"
24 #include "media-svc-util.h"
26 static __thread media_svc_noti_item *g_inserted_noti_list = NULL;
27 static __thread int g_noti_from_pid = -1;
29 static int __media_svc_publish_noti_by_item(media_svc_noti_item *noti_item)
31 int ret = MS_MEDIA_ERR_NONE;
33 if (noti_item && noti_item->path) {
34 ret = media_db_update_send_internal(noti_item->pid, noti_item->update_item, noti_item->update_type, noti_item->path, noti_item->media_uuid, noti_item->media_type, noti_item->mime_type);
35 if (ret != MS_MEDIA_ERR_NONE) {
36 media_svc_error("media_db_update_send_internal failed : %d [%s]", ret, noti_item->path);
37 ret = MS_MEDIA_ERR_SEND_NOTI_FAIL;
39 media_svc_debug("media_db_update_send_internal success");
42 media_svc_debug("invalid path");
43 ret = MS_MEDIA_ERR_INVALID_PARAMETER;
49 int _media_svc_publish_noti(media_item_update_type_e update_type, const char *path, media_type_e media_type, const char *uuid, const char *mime_type)
51 int ret = MS_MEDIA_ERR_NONE;
52 media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid path");
54 ret = media_db_update_send_internal(getpid(), MS_MEDIA_ITEM_FILE, update_type, (char *)path, (char *)uuid, media_type, (char *)mime_type);
55 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "Send noti failed[%d][%s]", ret, path);
57 media_svc_debug("Send noti [%s]", path);
62 int _media_svc_publish_dir_noti(media_item_update_type_e update_type, const char *path, const char *uuid, int pid)
64 int ret = MS_MEDIA_ERR_NONE;
65 media_svc_retvm_if(!STRING_VALID(path), MS_MEDIA_ERR_INVALID_PARAMETER, "Invalid path");
67 ret = media_db_update_send_internal(pid, MS_MEDIA_ITEM_DIRECTORY, update_type, (char *)path, (char *)uuid, MS_MEDIA_UNKNOWN, NULL);
68 media_svc_retvm_if(ret != MS_MEDIA_ERR_NONE, ret, "Send dir noti failed[%d][%s]", ret, path);
70 media_svc_debug("Send dir noti [%s]", path);
76 void _media_svc_set_noti_from_pid(int pid)
78 g_noti_from_pid = pid;
81 int _media_svc_create_noti_list(int count)
83 SAFE_FREE(g_inserted_noti_list);
85 g_inserted_noti_list = calloc(count, sizeof(media_svc_noti_item));
86 if (g_inserted_noti_list == NULL) {
87 media_svc_error("Failed to prepare noti items");
88 return MS_MEDIA_ERR_OUT_OF_MEMORY;
91 return MS_MEDIA_ERR_NONE;
94 int _media_svc_insert_item_to_noti_list(media_svc_content_info_s *content_info, int cnt)
96 media_svc_noti_item *noti_list = g_inserted_noti_list;
98 if (noti_list && content_info) {
99 noti_list[cnt].pid = g_noti_from_pid;
100 noti_list[cnt].update_item = MS_MEDIA_ITEM_INSERT; /* INSERT */
101 noti_list[cnt].update_type = MS_MEDIA_ITEM_FILE;
102 noti_list[cnt].media_type = content_info->media_type;
103 if (content_info->media_uuid)
104 noti_list[cnt].media_uuid = strdup(content_info->media_uuid);
105 if (content_info->path)
106 noti_list[cnt].path = strdup(content_info->path);
107 if (content_info->mime_type)
108 noti_list[cnt].mime_type = strdup(content_info->mime_type);
111 return MS_MEDIA_ERR_NONE;
114 int _media_svc_destroy_noti_list(int all_cnt)
117 media_svc_noti_item *noti_list = g_inserted_noti_list;
120 for (i = 0; i < all_cnt; i++) {
121 SAFE_FREE(noti_list[i].media_uuid);
122 SAFE_FREE(noti_list[i].path);
123 SAFE_FREE(noti_list[i].mime_type);
126 SAFE_FREE(g_inserted_noti_list);
127 g_inserted_noti_list = NULL;
130 return MS_MEDIA_ERR_NONE;
133 int _media_svc_publish_noti_list(int all_cnt)
135 int ret = MS_MEDIA_ERR_NONE;
137 media_svc_noti_item *noti_list = g_inserted_noti_list;
140 for (idx = 0; idx < all_cnt; idx++)
141 ret = __media_svc_publish_noti_by_item(&(noti_list[idx]));
147 int _media_svc_destroy_noti_item(media_svc_noti_item *item)
150 SAFE_FREE(item->media_uuid);
151 SAFE_FREE(item->path);
152 SAFE_FREE(item->mime_type);
157 return MS_MEDIA_ERR_NONE;