update code by Tizen coding convention
[platform/core/multimedia/libmedia-service.git] / src / include / common / media-svc-util.h
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
23
24 #ifndef _MEDIA_SVC_UTIL_H_
25 #define _MEDIA_SVC_UTIL_H_
26
27 #include <string.h>
28 #include <stdbool.h>
29 #include <sqlite3.h>
30 #include "media-svc-types.h"
31 #include "media-svc-env.h"
32
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36
37 #ifndef FALSE
38 #define FALSE  0
39 #endif
40 #ifndef TRUE
41 #define TRUE   1
42 #endif
43
44 #define SAFE_FREE(src)      { if(src) {free(src); src = NULL;}}
45 #define STRING_VALID(str)       \
46         ((str != NULL && strlen(str) > 0) ? TRUE : FALSE)
47
48 char *_media_info_generate_uuid(void);
49 void _strncpy_safe(char *x_dst, const char *x_src, int max_len);
50 int _media_svc_rename_file(const char *old_name, const char *new_name);
51 int _media_svc_remove_file(const char *path);
52 int _media_svc_remove_all_files_in_dir(const char *dir_path);
53 int _media_svc_get_thumbnail_path(media_svc_storage_type_e storage_type, char *thumb_path, const char *pathname, const char *img_format, uid_t uid);
54 int _media_svc_get_file_time(const char *full_path);
55 int _media_svc_set_media_info(media_svc_content_info_s *content_info, const char *storage_id, media_svc_storage_type_e storage_type,
56                               const char *path, media_svc_media_type_e *media_type, bool refresh);
57 int _media_svc_extract_image_metadata(sqlite3 *handle, media_svc_content_info_s *content_info, media_svc_media_type_e media_type, uid_t uid);
58 int _media_svc_extract_media_metadata(sqlite3 *handle, media_svc_content_info_s *content_info, media_svc_media_type_e media_type, uid_t uid);
59 int __media_svc_malloc_and_strncpy(char **dst, const char *src);
60 time_t __media_svc_get_timeline_from_str(const char *timstr);
61 void _media_svc_destroy_content_info(media_svc_content_info_s *content_info);
62 int _media_svc_get_store_type_by_path(const char *path, media_svc_storage_type_e *storage_type, uid_t uid);
63 char *_media_svc_replace_path(char *s, const char *olds, const char *news);
64 char *_media_svc_get_thumb_internal_path(uid_t uid);
65 char *_media_svc_get_thumb_external_path(uid_t uid);
66 bool _media_svc_is_drm_file(const char *path);
67 int _media_svc_request_thumbnail_with_origin_size(const char *path, char *thumb_path, int max_length, int *origin_width, int *origin_height, uid_t uid);
68 int _media_svc_get_pinyin_str(const char *src_str, char **pinyin_str);
69 bool _media_svc_check_pinyin_support(void);
70 int _media_svc_extract_music_metadata_for_update(sqlite3 *handle, media_svc_content_info_s *content_info, media_svc_media_type_e media_type);
71 int _media_svc_request_extract_all_thumbs(uid_t uid);
72
73
74 #ifdef __cplusplus
75 }
76 #endif
77
78 #endif /*_MEDIA_SVC_UTIL_H_*/