Apply tizen coding rule
[platform/core/multimedia/libmedia-service.git] / src / common / media-svc-noti.c
1 /*
2  * libmedia-service
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Hyunjun Ko <zzoon.ko@samsung.com>, Haejeong Kim <backto.kim@samsung.com>
7  *
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
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
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.
19  *
20  */
21
22 #include <unistd.h>
23 #include "media-svc-noti.h"
24 #include "media-svc-util.h"
25
26 static int __media_svc_publish_noti_by_item(media_svc_noti_item *noti_item);
27
28 static __thread media_svc_noti_item *g_inserted_noti_list = NULL;
29 static __thread int g_noti_from_pid = -1;
30
31 static int __media_svc_publish_noti_by_item(media_svc_noti_item *noti_item)
32 {
33         int ret = MS_MEDIA_ERR_NONE;
34
35         if (noti_item && noti_item->path) {
36                 ret = media_db_update_send(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);
37                 if (ret != MS_MEDIA_ERR_NONE) {
38                         media_svc_error("media_db_update_send failed : %d [%s]", ret, noti_item->path);
39                         ret = MS_MEDIA_ERR_SEND_NOTI_FAIL;
40                 } else {
41                         media_svc_debug("media_db_update_send success");
42                 }
43         } else {
44                 media_svc_debug("invalid path");
45                 ret = MS_MEDIA_ERR_INVALID_PARAMETER;
46         }
47
48         return ret;
49 }
50
51 int _media_svc_publish_noti(media_item_type_e update_item,
52                                         media_item_update_type_e update_type,
53                                         const char *path,
54                                         media_type_e media_type,
55                                         const char *uuid,
56                                         const char *mime_type
57                                         )
58 {
59         int ret = MS_MEDIA_ERR_NONE;
60
61         if (STRING_VALID(path)) {
62                 ret = media_db_update_send(getpid(), update_item, update_type, (char *)path, (char *)uuid, media_type, (char *)mime_type);
63                 if (ret != MS_MEDIA_ERR_NONE) {
64                         media_svc_error("Send noti failed : %d [%s]", ret, path);
65                         ret = MS_MEDIA_ERR_SEND_NOTI_FAIL;
66                 } else {
67                         media_svc_debug("Send noti success [%d][%d]", update_item, update_type);
68                 }
69         } else {
70                 media_svc_debug("invalid path");
71                 ret = MS_MEDIA_ERR_INVALID_PARAMETER;
72         }
73
74         return ret;
75 }
76
77 int _media_svc_publish_dir_noti(media_item_type_e update_item,
78                                                         media_item_update_type_e update_type,
79                                                         const char *path,
80                                                         media_type_e media_type,
81                                                         const char *uuid,
82                                                         const char *mime_type,
83                                                         int pid
84 )
85 {
86         int ret = MS_MEDIA_ERR_NONE;
87
88         if (STRING_VALID(path)) {
89                 ret = media_db_update_send(pid, update_item, update_type, (char *)path, (char *)uuid, media_type, (char *)mime_type);
90                 if (ret != MS_MEDIA_ERR_NONE) {
91                         media_svc_error("Send noti failed : %d [%s]", ret, path);
92                         ret = MS_MEDIA_ERR_SEND_NOTI_FAIL;
93                 } else {
94                         media_svc_debug("Send noti success [%d][%d]", update_item, update_type);
95                 }
96         } else {
97                 media_svc_debug("invalid path");
98                 ret = MS_MEDIA_ERR_INVALID_PARAMETER;
99         }
100
101         return ret;
102 }
103
104 int _media_svc_publish_dir_noti_v2(media_item_type_e update_item,
105                                                         media_item_update_type_e update_type,
106                                                         const char *path,
107                                                         media_type_e media_type,
108                                                         const char *uuid,
109                                                         const char *mime_type,
110                                                         int pid
111 )
112 {
113         int ret = MS_MEDIA_ERR_NONE;
114
115         if (STRING_VALID(path)) {
116                 ret = media_db_update_send_internal(pid, update_item, update_type, (char *)path, (char *)uuid, media_type, (char *)mime_type);
117                 if (ret != MS_MEDIA_ERR_NONE) {
118                         media_svc_error("Send noti failed : %d [%s]", ret, path);
119                         ret = MS_MEDIA_ERR_SEND_NOTI_FAIL;
120                 } else {
121                         media_svc_debug("Send noti success [%d][%d]", update_item, update_type);
122                 }
123         } else {
124                 media_svc_debug("invalid path");
125                 ret = MS_MEDIA_ERR_INVALID_PARAMETER;
126         }
127
128         return ret;
129 }
130
131
132 void _media_svc_set_noti_from_pid(int pid)
133 {
134         g_noti_from_pid = pid;
135 }
136
137 int _media_svc_create_noti_list(int count)
138 {
139         SAFE_FREE(g_inserted_noti_list);
140
141         g_inserted_noti_list = calloc(count, sizeof(media_svc_noti_item));
142         if (g_inserted_noti_list == NULL) {
143                 media_svc_error("Failed to prepare noti items");
144                 return MS_MEDIA_ERR_OUT_OF_MEMORY;
145         }
146
147         return MS_MEDIA_ERR_NONE;
148 }
149
150 int _media_svc_insert_item_to_noti_list(media_svc_content_info_s *content_info, int cnt)
151 {
152         media_svc_noti_item *noti_list = g_inserted_noti_list;
153
154         if (noti_list && content_info) {
155                 noti_list[cnt].pid = g_noti_from_pid;
156                 noti_list[cnt].update_item = MS_MEDIA_ITEM_INSERT; /* INSERT */
157                 noti_list[cnt].update_type = MS_MEDIA_ITEM_FILE;
158                 noti_list[cnt].media_type = content_info->media_type;
159                 if (content_info->media_uuid)
160                         noti_list[cnt].media_uuid = strdup(content_info->media_uuid);
161                 if (content_info->path)
162                         noti_list[cnt].path = strdup(content_info->path);
163                 if (content_info->mime_type)
164                         noti_list[cnt].mime_type = strdup(content_info->mime_type);
165         }
166
167         return MS_MEDIA_ERR_NONE;
168 }
169
170 int _media_svc_destroy_noti_list(int all_cnt)
171 {
172         int i = 0;
173         media_svc_noti_item *noti_list = g_inserted_noti_list;
174
175         if (noti_list) {
176                 for (i = 0; i < all_cnt; i++) {
177                         SAFE_FREE(noti_list[i].media_uuid);
178                         SAFE_FREE(noti_list[i].path);
179                         SAFE_FREE(noti_list[i].mime_type);
180                 }
181
182                 SAFE_FREE(g_inserted_noti_list);
183                 g_inserted_noti_list = NULL;
184         }
185
186         return MS_MEDIA_ERR_NONE;
187 }
188
189 int _media_svc_publish_noti_list(int all_cnt)
190 {
191         int ret = MS_MEDIA_ERR_NONE;
192         int idx = 0;
193         media_svc_noti_item *noti_list = g_inserted_noti_list;
194
195         if (noti_list) {
196                 for (idx = 0; idx < all_cnt; idx++) {
197                         ret = __media_svc_publish_noti_by_item(&(noti_list[idx]));
198                 }
199         }
200
201         return ret;
202 }
203
204 int _media_svc_destroy_noti_item(media_svc_noti_item *item)
205 {
206         if (item) {
207                 SAFE_FREE(item->media_uuid);
208                 SAFE_FREE(item->path);
209                 SAFE_FREE(item->mime_type);
210
211                 SAFE_FREE(item);
212         }
213
214         return MS_MEDIA_ERR_NONE;
215 }