tizen 2.3 release
[apps/livebox/data-provider-master.git] / include / util.h
1 /*
2  * Copyright 2013  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.1 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://floralicense.org/license/
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 extern unsigned long util_string_hash(const char *str);
18 extern double util_timestamp(void);
19 extern int util_check_ext(const char *filename, const char *check_ptr);
20 extern int util_unlink(const char *filename);
21 extern int util_unlink_files(const char *folder);
22 extern char *util_slavename(void);
23 extern const char *util_basename(const char *name);
24 extern unsigned long long util_free_space(const char *path);
25 extern char *util_replace_string(const char *src, const char *pattern, const char *replace);
26 extern const char *util_uri_to_path(const char *uri);
27 extern void *util_timer_add(double interval, Eina_Bool (*cb)(void *data), void *data);
28 extern void util_timer_interval_set(void *timer, double interval);
29 extern double util_time_delay_for_compensation(double period);
30 extern void util_setup_log_disk(void);
31 extern void util_remove_emergency_disk(void);
32 extern void util_prepare_emergency_disk(void);
33 extern int util_emergency_disk_is_mounted(void);
34 extern int util_service_is_enabled(const char *tag);
35
36 extern int util_screen_size_get(int *width, int *height);
37 extern int util_screen_init(void);
38 extern int util_screen_fini(void);
39
40 #define SCHEMA_FILE     "file://"
41 #define SCHEMA_PIXMAP   "pixmap://"
42 #define SCHEMA_SHM      "shm://"
43
44 #define CRITICAL_SECTION_BEGIN(handle) \
45 do { \
46         int ret; \
47         ret = pthread_mutex_lock(handle); \
48         if (ret != 0) \
49                 ErrPrint("Failed to lock: %s\n", strerror(ret)); \
50 } while (0)
51
52 #define CRITICAL_SECTION_END(handle) \
53 do { \
54         int ret; \
55         ret = pthread_mutex_unlock(handle); \
56         if (ret != 0) \
57                 ErrPrint("Failed to unlock: %s\n", strerror(ret)); \
58 } while (0)
59
60 #define CANCEL_SECTION_BEGIN() do { \
61         int ret; \
62         ret = pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); \
63         if (ret != 0) \
64                 ErrPrint("Unable to set cancelate state: %s\n", strerror(ret)); \
65 } while (0)
66
67 #define CANCEL_SECTION_END() do { \
68         int ret; \
69         ret = pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL); \
70         if (ret != 0) \
71                 ErrPrint("Unable to set cancelate state: %s\n", strerror(ret)); \
72 } while (0)
73
74 #define CLOSE_PIPE(p)   do { \
75         int status; \
76         status = close(p[PIPE_READ]); \
77         if (status < 0) \
78                 ErrPrint("close: %s\n", strerror(errno)); \
79         status = close(p[PIPE_WRITE]); \
80         if (status < 0) \
81                 ErrPrint("close: %s\n", strerror(errno)); \
82 } while (0)
83
84 #define PIPE_READ 0
85 #define PIPE_WRITE 1
86 #define PIPE_MAX 2
87
88 /* End of a file */