tizen 2.3 release
[apps/livebox/livebox.git] / dynamicbox / src / util.c
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 #include <stdio.h>
18 #include <string.h>
19 #include <errno.h>
20 #include <sys/time.h>
21
22 #include <Ecore.h>
23 #include <dlog.h>
24
25 #include "debug.h"
26 #include "util.h"
27
28 int errno;
29
30 int util_check_extension(const char *filename, const char *check_ptr)
31 {
32     int name_len;
33
34     name_len = strlen(filename);
35     while (--name_len >= 0 && *check_ptr) {
36         if (filename[name_len] != *check_ptr)
37             return -EINVAL;
38
39         check_ptr ++;
40     }
41
42     return 0;
43 }
44
45 double util_timestamp(void)
46 {
47 #if defined(_USE_ECORE_TIME_GET)
48     return ecore_time_get();
49 #else
50     struct timeval tv;
51
52     gettimeofday(&tv, NULL);
53
54     return (double)tv.tv_sec + (double)tv.tv_usec / 1000000.0f;
55 #endif
56 }
57
58 /* End of a file */