tizen 2.4 release
[framework/convergence/unifiedstorage-format.git] / src / thumbnail_manager / media-thumb-hash.c
1 /*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3 *
4 * Licensed under the Apache License, Version 2.0 (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://www.apache.org/licenses/LICENSE-2.0
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 "thumbnail_manager/media-thumb-hash.h"
18 #include <stdio.h>
19 #include <string.h>
20 #include <sys/time.h>
21
22 static long long current_time_millis(void)
23 {
24         struct timeval te;
25         gettimeofday(&te, NULL);
26         long long millis = te.tv_sec * 1000LL + te.tv_usec / 1000;
27         return millis;
28 }
29
30 int thumbnail_generate_hash_code(const char *origin_path, char *hash_code, int max_length)
31 {
32         if (NULL == origin_path || 0 == strlen(origin_path))
33                 return -1;
34
35         snprintf(hash_code, max_length, "%lld", current_time_millis());
36
37         return 0;
38 }