Add IsEmpty() method
[platform/core/base/bundle.git] / src / keyval_type.c
1 /*
2  * Copyright (c) 2000 - 2016 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 <stddef.h>
18
19 #include "keyval_type.h"
20 #include "bundle_log.h"
21
22 void keyval_type_init(void)
23 {
24         static int is_done;
25
26         if (is_done)
27                 return;
28
29         is_done = 1;
30 }
31
32 int keyval_type_is_array(int type)
33 {
34         if (type & BUNDLE_TYPE_ARRAY)
35                 return 1;
36         return 0;
37 }
38
39 int keyval_type_is_measurable(int type)
40 {
41         if (type & BUNDLE_TYPE_MEASURABLE)
42                 return 1;
43         return 0;
44 }
45
46 keyval_type_measure_size_func_t keyval_type_get_measure_size_func(int type)
47 {
48         switch (type) {
49         case BUNDLE_TYPE_STR:
50         case BUNDLE_TYPE_STR_ARRAY:
51                 return keyval_type_measure_size_str;
52         default:
53                 return NULL;
54         }
55         return NULL;
56 }
57
58 size_t keyval_type_measure_size_str(void *val)
59 {
60         if (!val)
61                 return 0;
62         return strlen((char *)val) + 1;
63 }