Release version 0.2.4
[platform/core/base/bundle.git] / src / bundle.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 /**
18  * bundle.c
19  */
20
21 #include <stdlib.h>
22 #include <string.h>
23 #include <glib.h>
24
25 #include "bundle.h"
26 #include "bundle_internal.h"
27 #include "keyval.h"
28 #include "keyval_array.h"
29 #include "keyval_type.h"
30 #include "bundle_log.h"
31
32 #define CHECKSUM_LENGTH 32
33 #define TAG_IMPORT_EXPORT_CHECK "`zaybxcwdveuftgsh`"
34
35 /* ADT */
36 struct _bundle_t {
37         keyval_t *kv_head;
38 };
39
40 /**
41  * Find a kv from bundle
42  */
43 static keyval_t *_bundle_find_kv(bundle *b, const char *key)
44 {
45         keyval_t *kv;
46
47         if (b == NULL) {
48                 set_last_result(BUNDLE_ERROR_INVALID_PARAMETER);
49                 return NULL;
50         }
51
52         if (key == NULL) {
53                 set_last_result(BUNDLE_ERROR_INVALID_PARAMETER);
54                 return NULL;
55         }
56
57         kv = b->kv_head;
58         while (kv != NULL) {
59                 if (strcmp(key, kv->key) == 0) {
60                         set_last_result(BUNDLE_ERROR_NONE);
61                         return kv;
62                 }
63                 kv = kv->next;
64         }
65         /* Not found */
66         set_last_result(BUNDLE_ERROR_KEY_NOT_AVAILABLE);
67         return NULL;
68 }
69
70 /**
71  * Append kv into bundle
72  */
73 static int _bundle_append_kv(bundle *b, keyval_t *new_kv)
74 {
75         keyval_t *kv;
76
77         if (b->kv_head == NULL) {
78                 b->kv_head = new_kv;
79         } else {
80                 kv = b->kv_head;
81                 while (kv->next)
82                         kv = kv->next;
83                 kv->next = new_kv;
84         }
85
86         return BUNDLE_ERROR_NONE;
87 }
88
89 static int _bundle_add_kv(bundle *b, const char *key, const void *val,
90                 const size_t size, const int type, const unsigned int len)
91 {
92         keyval_t *kv;
93         keyval_t *new_kv;
94         keyval_array_t *kva;
95
96         /* basic value check */
97         if (b == NULL)
98                 return BUNDLE_ERROR_INVALID_PARAMETER;
99         if (key == NULL)
100                 return BUNDLE_ERROR_INVALID_PARAMETER;
101         if (strlen(key) == 0)
102                 return BUNDLE_ERROR_INVALID_PARAMETER;
103
104         kv = _bundle_find_kv(b, key);
105         if (kv) /* Key already exists */
106                 return BUNDLE_ERROR_KEY_EXISTS;
107
108         if (keyval_type_is_array(type)) {
109                 /* array type */
110                 kva = keyval_array_new(NULL, key, type,
111                                 (const void **) val, len);
112                 new_kv = (keyval_t *)kva;
113         } else {
114                 /* normal type */
115                 new_kv = keyval_new(NULL, key, type, val, size);
116         }
117
118         if (!new_kv)
119                 return BUNDLE_ERROR_OUT_OF_MEMORY;
120
121         _bundle_append_kv(b, new_kv);
122
123         return BUNDLE_ERROR_NONE;
124 }
125
126 static int _bundle_get_val(bundle *b, const char *key, const int type,
127                 void **val, size_t *size, unsigned int *len,
128                 size_t **array_element_size)
129 {
130         keyval_t *kv;
131         keyval_array_t *kva;
132
133         kv = _bundle_find_kv(b, key);
134         if (!kv) /* Key doesn't exist */
135                 return get_last_result();
136
137         if (BUNDLE_TYPE_ANY != type && type != kv->type)
138                 return BUNDLE_ERROR_INVALID_PARAMETER;
139
140         if (keyval_type_is_array(type)) {
141                 kva = (keyval_array_t *)kv;
142                 keyval_array_get_data(kva, NULL, (void ***)val,
143                                 len, array_element_size);
144         } else {
145                 keyval_get_data(kv, NULL, val, size);
146         }
147
148         return BUNDLE_ERROR_NONE;
149 }
150
151 /**
152  * global initialization
153  * Run only once.
154  */
155 static void _bundle_global_init(void)
156 {
157         static int _is_done;
158
159         if (_is_done)
160                 return;
161
162         /* Run init functions */
163         keyval_type_init();
164
165         _is_done = 1;
166         return;
167 }
168
169 /* APIs */
170 bundle *bundle_create(void)
171 {
172         bundle *b = NULL;
173
174         _bundle_global_init();
175
176         b = calloc(1, sizeof(bundle));  /* fill mem with NULL */
177         if (b == NULL) {
178                 BUNDLE_EXCEPTION_PRINT(
179                                 "Unable to allocate memory for bundle\n");
180                 set_last_result(BUNDLE_ERROR_OUT_OF_MEMORY);
181                 goto exception;
182         }
183
184         set_last_result(BUNDLE_ERROR_NONE);
185         return b;
186
187 exception:
188         return NULL;
189 }
190
191 int bundle_free(bundle *b)
192 {
193         keyval_t *kv;
194         keyval_t *tmp_kv;
195
196         if (b == NULL) {
197                 BUNDLE_EXCEPTION_PRINT("Bundle is already freed\n");
198                 return BUNDLE_ERROR_INVALID_PARAMETER;
199         }
200
201         /* Free keyval list */
202         kv = b->kv_head;
203         while (kv) {
204                 tmp_kv = kv;
205                 kv = kv->next;
206                 tmp_kv->method->free(tmp_kv, 1);
207         }
208
209         /* free bundle */
210         free(b);
211
212         return BUNDLE_ERROR_NONE;
213 }
214
215 int bundle_add_str(bundle *b, const char *key, const char *str)
216 {
217         if (!str)
218                 return BUNDLE_ERROR_INVALID_PARAMETER;
219         return _bundle_add_kv(b, key, str, strlen(str) + 1, BUNDLE_TYPE_STR, 1);
220 }
221
222 int bundle_get_str(bundle *b, const char *key, char **str)
223 {
224         return _bundle_get_val(b, key, BUNDLE_TYPE_STR, (void **)str,
225                         NULL, NULL, NULL);
226 }
227
228 int bundle_add(bundle *b, const char *key, const char *val)
229 {
230         return bundle_add_str(b, key, val);
231 }
232
233 int bundle_del(bundle *b, const char *key)
234 {
235         keyval_t *kv;
236         keyval_t *prev_kv = NULL;
237
238         /* basic value check */
239         if (b == NULL)
240                 return BUNDLE_ERROR_INVALID_PARAMETER;
241         if (key == NULL)
242                 return BUNDLE_ERROR_INVALID_PARAMETER;
243         if (strlen(key) == 0)
244                 return BUNDLE_ERROR_INVALID_PARAMETER;
245
246         kv = b->kv_head;
247         while (kv) {
248                 if (strcmp(key, kv->key) == 0)
249                         break;
250                 prev_kv = kv;
251                 kv = kv->next;
252         }
253
254         if (kv == NULL) {
255                 return BUNDLE_ERROR_KEY_NOT_AVAILABLE;
256         } else {
257                 if (prev_kv)
258                         prev_kv->next = kv->next;
259                 if (kv == b->kv_head)
260                         b->kv_head = kv->next;
261                 kv->method->free(kv, 1);
262         }
263
264         return BUNDLE_ERROR_NONE;
265 }
266
267 const char *bundle_get_val(bundle *b, const char *key)
268 {
269         char *val = NULL;
270         int ret = BUNDLE_ERROR_NONE;
271
272         ret = bundle_get_str(b, key, &val);
273         set_last_result(ret);
274
275         return val;
276 }
277
278 /**
279  * @brief used by bundle_get_count() API, to count number of items in a bundle
280  */
281 static void _bundle_get_count_iter(const char *k, const int type,
282                 const bundle_keyval_t *kv, void *user_data)
283 {
284         int *count = (int *)user_data;
285         *count += 1;
286 }
287
288 int bundle_get_count(bundle *b)
289 {
290         int count = 0;
291
292         if (b == NULL)
293                 return count;
294         bundle_foreach(b, _bundle_get_count_iter, &count);
295         return count;
296 }
297
298 void bundle_iterate(bundle *b, bundle_iterate_cb_t callback, void *data)
299 {
300         keyval_t *kv;
301
302         if (b == NULL || callback == NULL) {
303                 set_last_result(BUNDLE_ERROR_INVALID_PARAMETER);
304                 return;
305         }
306
307         kv = b->kv_head;
308         while (kv) {
309                 callback(kv->key, kv->val, data);
310                 kv = kv->next;
311         }
312
313         set_last_result(BUNDLE_ERROR_NONE);
314 }
315
316 void bundle_foreach(bundle *b, bundle_iterator_t iter, void *user_data)
317 {
318         keyval_t *kv;
319
320         if (b == NULL || iter == NULL) {
321                 set_last_result(BUNDLE_ERROR_INVALID_PARAMETER);
322                 return; /* TC_FIX if b = NULL- error handling */
323         }
324
325         kv = b->kv_head;
326         while (kv) {
327                 iter(kv->key, kv->type, kv, user_data);
328                 kv = kv->next;
329         }
330
331         set_last_result(BUNDLE_ERROR_NONE);
332 }
333
334 /* keyval functions */
335 int bundle_keyval_get_type(bundle_keyval_t *kv)
336 {
337         if (kv == NULL) {
338                 set_last_result(BUNDLE_ERROR_INVALID_PARAMETER);
339                 return -1;
340         }
341         set_last_result(BUNDLE_ERROR_NONE);
342         return kv->type;
343 }
344
345 int bundle_keyval_type_is_array(bundle_keyval_t *kv)
346 {
347         if (kv == NULL) {
348                 set_last_result(BUNDLE_ERROR_INVALID_PARAMETER);
349                 return -1;
350         }
351         set_last_result(BUNDLE_ERROR_NONE);
352         return keyval_type_is_array(kv->type);
353 }
354
355 int bundle_keyval_type_is_measurable(bundle_keyval_t *kv)
356 {
357         if (kv == NULL) {
358                 set_last_result(BUNDLE_ERROR_INVALID_PARAMETER);
359                 return -1;
360         }
361         set_last_result(BUNDLE_ERROR_NONE);
362         return keyval_type_is_measurable(kv->type);
363 }
364
365 int bundle_keyval_get_basic_val(bundle_keyval_t *kv, void **val, size_t *size)
366 {
367         return keyval_get_data(kv, NULL, val, size);
368 }
369
370 int bundle_keyval_get_array_val(bundle_keyval_t *kv, void ***array_val,
371                 unsigned int *array_len, size_t **array_item_size)
372 {
373         return keyval_array_get_data((keyval_array_t *)kv, NULL,
374                         array_val, array_len, array_item_size);
375 }
376
377 bundle *bundle_dup(bundle *b_from)
378 {
379         bundle *b_to;
380         keyval_t *kv_from;
381         keyval_t *kv_to;
382         keyval_array_t *kva_from;
383         int i;
384
385         if (b_from == NULL) {
386                 set_last_result(BUNDLE_ERROR_INVALID_PARAMETER);
387                 return NULL;
388         }
389
390         b_to = bundle_create();
391         if (b_to == NULL)
392                 return NULL;
393
394         kv_from = b_from->kv_head;
395         while (kv_from != NULL) {
396                 if (keyval_type_is_array(kv_from->type)) {
397                         kva_from = (keyval_array_t *)kv_from;
398                         kv_to = (keyval_t *)keyval_array_new(NULL, kv_from->key,
399                                         kv_from->type, NULL, kva_from->len);
400                         if (!kv_to)
401                                 goto err;
402
403                         for (i = 0; i < kva_from->len; i++) {
404                                 if (((keyval_array_t *)kv_from)->array_val[i]) {
405                                         keyval_array_set_element(
406                                                         (keyval_array_t *)kv_to, i,
407                                                         ((keyval_array_t *)kv_from)->array_val[i],
408                                                         ((keyval_array_t *)kv_from)->array_element_size[i]);
409                                 }
410                         }
411
412                         _bundle_append_kv(b_to, kv_to);
413                 } else {
414                         if (_bundle_add_kv(b_to, kv_from->key,
415                                 kv_from->val, kv_from->size, kv_from->type, 0))
416                                 goto err;
417                 }
418
419                 kv_from = kv_from->next;
420         }
421
422         return b_to;
423
424 err:
425         bundle_free(b_to);
426         return NULL;
427 }
428
429 int bundle_encode(bundle *b, bundle_raw **r, int *len)
430 {
431         keyval_t *kv;
432         unsigned char *m;
433         unsigned char *p_m;
434         unsigned char *byte;
435         size_t byte_len;
436         gchar *chksum_val;
437         size_t msize = 0;
438
439         if (b == NULL || r == NULL || len == NULL)
440                 return BUNDLE_ERROR_INVALID_PARAMETER;
441
442         /* calculate memory size */
443         kv = b->kv_head;
444         while (kv != NULL) {
445                 msize += kv->method->get_encoded_size(kv);
446                 kv = kv->next;
447         }
448
449         m = calloc(msize + CHECKSUM_LENGTH, sizeof(unsigned char));
450         if (unlikely(m == NULL))
451                 return BUNDLE_ERROR_OUT_OF_MEMORY;
452
453         p_m = m + CHECKSUM_LENGTH; /* temporary pointer */
454
455         kv = b->kv_head;
456         while (kv != NULL) {
457                 byte = NULL;
458                 byte_len = 0;
459
460                 kv->method->encode(kv, &byte, &byte_len);
461                 memcpy(p_m, byte, byte_len);
462
463                 p_m += byte_len;
464                 kv = kv->next;
465
466                 free(byte);
467         }
468
469         /* compute checksum from the data */
470         chksum_val = g_compute_checksum_for_string(G_CHECKSUM_MD5,
471                         (const char *)(m + CHECKSUM_LENGTH), msize);
472         /* prefix checksum to the data */
473         memcpy(m, chksum_val, CHECKSUM_LENGTH);
474         if (r) {
475                 /* base64 encode for whole string checksum and data */
476                 *r = (unsigned char *)g_base64_encode(m, msize + CHECKSUM_LENGTH);
477                 if (len)
478                         *len = strlen((char *)*r);
479         }
480         free(m);
481         g_free(chksum_val); /* free checksum string */
482
483         return BUNDLE_ERROR_NONE;
484 }
485
486 int bundle_free_encoded_rawdata(bundle_raw **r)
487 {
488         if (!*r)
489                 return BUNDLE_ERROR_INVALID_PARAMETER; /* TC_FIX - double free sigabrt handling */
490
491         free(*r);
492         *r = NULL;
493         return BUNDLE_ERROR_NONE;
494 }
495
496 bundle *bundle_decode(const bundle_raw *r, const int data_size)
497 {
498         bundle *b;
499         bundle_raw *p_r;
500         unsigned char *d_str;
501         gint state = 0;
502         guint save = 0;
503         unsigned int d_len_raw;
504         unsigned char *d_r;
505         unsigned int d_len;
506         char *extract_cksum;
507         gchar *compute_cksum;
508         size_t bytes_read;
509         keyval_t *kv;
510         int type;
511         size_t byte_size;
512
513         if (r == NULL) {
514                 set_last_result(BUNDLE_ERROR_INVALID_PARAMETER);
515                 return NULL;
516         }
517
518         extract_cksum = calloc(CHECKSUM_LENGTH + 1, sizeof(char));
519         if (unlikely(extract_cksum == NULL)) {
520                 set_last_result(BUNDLE_ERROR_INVALID_PARAMETER);
521                 return NULL;
522         }
523
524         /*
525          * base 64 decode of input string
526          * Since base64 encodes 3 bytes in 4 chars (+3 may be needed in case of non-zero state)
527          * refer to: https://developer.gnome.org/glib/stable/glib-Base64-Encoding.html#g-base64-decode-step
528          */
529         d_str = malloc((data_size / 4) * 3 + 3);
530         if (unlikely(d_str == NULL)) {
531                 set_last_result(BUNDLE_ERROR_OUT_OF_MEMORY);
532                 free(extract_cksum);
533                 return NULL;
534         }
535
536         d_len_raw = g_base64_decode_step((char *)r, data_size, d_str, &state, &save);
537         if (d_len_raw < CHECKSUM_LENGTH) {
538                 set_last_result(BUNDLE_ERROR_INVALID_PARAMETER);
539                 free(d_str);
540                 free(extract_cksum);
541                 return NULL;
542         }
543
544         /* extract checksum from the received string */
545         strncpy(extract_cksum, (const char *)d_str, CHECKSUM_LENGTH);
546         /* compute checksum for the data */
547         compute_cksum = g_compute_checksum_for_string(G_CHECKSUM_MD5,
548                         (const char *)(d_str + CHECKSUM_LENGTH),
549                         d_len_raw - CHECKSUM_LENGTH);
550         /*
551          * compare checksum values- extracted from the received
552          * string and computed from the data
553          */
554         if (strcmp(extract_cksum, compute_cksum) != 0) {
555                 free(d_str);
556                 free(extract_cksum);
557                 g_free(compute_cksum);
558                 return NULL;
559         }
560         d_r = d_str + CHECKSUM_LENGTH;
561         d_len = d_len_raw - CHECKSUM_LENGTH;
562
563         /* re-construct bundle */
564         b = bundle_create();
565         if (b == NULL) {
566                 free(d_str);
567                 free(extract_cksum);
568                 g_free(compute_cksum);
569                 return NULL;
570         }
571
572         p_r = (bundle_raw *)d_r;
573         while (p_r < d_r + d_len - 1) {
574                 kv = NULL;      /* To get a new kv */
575
576                 byte_size = d_r + d_len - 1 - p_r;
577                 if (byte_size < sizeof(size_t))
578                         break;
579
580                 /* Find type, and use decode function according to type */
581                 type = keyval_get_type_from_encoded_byte(p_r);
582                 if (keyval_type_is_array(type)) {
583                         bytes_read = keyval_array_decode(p_r,
584                                         (keyval_array_t **)&kv, byte_size);
585                 } else {
586                         bytes_read = keyval_decode(p_r, &kv, byte_size);
587                 }
588
589                 if (kv)
590                         _bundle_append_kv(b, kv);
591                 else
592                         break;
593                 p_r += bytes_read;
594         }
595
596         free(extract_cksum);
597         g_free(compute_cksum);
598         free(d_str);
599
600         set_last_result(BUNDLE_ERROR_NONE);
601         return b;
602 }
603
604 struct _argv_idx {
605         int argc;
606         char **argv;
607         int idx;
608 };
609
610 int bundle_encode_raw(bundle *b, bundle_raw **r, int *len)
611 {
612         keyval_t *kv = NULL;
613         unsigned char *m = NULL;
614         unsigned char *p_m = NULL;
615         unsigned char *byte = NULL;
616         size_t byte_len;
617         gchar *chksum_val = NULL;
618         size_t msize = 0;
619
620         if (b == NULL || r == NULL)
621                 return BUNDLE_ERROR_INVALID_PARAMETER;
622
623         /* calculate memory size */
624         kv = b->kv_head;
625         while (kv != NULL) {
626                 msize += kv->method->get_encoded_size(kv);
627                 kv = kv->next;
628         }
629
630         m = calloc(msize+CHECKSUM_LENGTH, sizeof(unsigned char));
631         if (unlikely(m == NULL))
632                 return BUNDLE_ERROR_OUT_OF_MEMORY;
633
634         p_m = m + CHECKSUM_LENGTH;      /* temporary pointer */
635
636         kv = b->kv_head;
637         while (kv != NULL) {
638                 byte = NULL;
639                 byte_len = 0;
640
641                 kv->method->encode(kv, &byte, &byte_len);
642                 memcpy(p_m, byte, byte_len);
643
644                 p_m += byte_len;
645                 kv = kv->next;
646
647                 free(byte);
648         }
649
650         /* compute checksum from the data */
651         chksum_val = g_compute_checksum_for_string(G_CHECKSUM_MD5,
652                         (const char *)(m + CHECKSUM_LENGTH), msize);
653         /* prefix checksum to the data */
654         memcpy(m, chksum_val, CHECKSUM_LENGTH);
655
656         *r = m;
657         *len = msize + CHECKSUM_LENGTH;
658         g_free(chksum_val); /* free checksum string */
659
660         return BUNDLE_ERROR_NONE;
661 }
662
663 bundle *bundle_decode_raw(const bundle_raw *r, const int data_size)
664 {
665         bundle *b = NULL;
666         bundle_raw *p_r = NULL;
667         unsigned char *d_str = NULL;
668         unsigned int d_len_raw;
669         unsigned char *d_r = NULL;
670         unsigned int d_len;
671         char *extract_cksum;
672         gchar *compute_cksum = NULL;
673         size_t bytes_read;
674         keyval_t *kv;
675         int type;
676         size_t byte_size;
677
678         if (r == NULL) {
679                 set_last_result(BUNDLE_ERROR_INVALID_PARAMETER);
680                 return NULL;
681         }
682
683         extract_cksum = calloc(CHECKSUM_LENGTH + 1, sizeof(char));
684         if (unlikely(extract_cksum == NULL)) {
685                 set_last_result(BUNDLE_ERROR_OUT_OF_MEMORY);
686                 return NULL;
687         }
688
689         /* base 64 decode of input string*/
690         /* d_str = g_base64_decode((char*)r, &d_len_raw); */
691         d_str = (unsigned char *)r;
692         d_len_raw = data_size;
693         /* extract checksum from the received string */
694         strncpy(extract_cksum, (const char *)d_str, CHECKSUM_LENGTH);
695         /* compute checksum for the data */
696         compute_cksum = g_compute_checksum_for_string(G_CHECKSUM_MD5,
697                         (const char *)(d_str + CHECKSUM_LENGTH),
698                         d_len_raw - CHECKSUM_LENGTH);
699         /*
700          * compare checksum values- extracted from the received
701          * string and computed from the data
702          */
703         if (strcmp(extract_cksum, compute_cksum) != 0) {
704                 free(extract_cksum);
705                 g_free(compute_cksum);
706                 set_last_result(BUNDLE_ERROR_INVALID_PARAMETER);
707                 return NULL;
708         }
709         d_r = d_str + CHECKSUM_LENGTH;
710         d_len = d_len_raw - CHECKSUM_LENGTH;
711
712         /* re-construct bundle */
713         b = bundle_create();
714         if (b == NULL) {
715                 free(extract_cksum);
716                 g_free(compute_cksum);
717                 return NULL;
718         }
719
720         p_r = (bundle_raw *)d_r;
721         while (p_r < d_r + d_len - 1) {
722                 kv = NULL;      /* To get a new kv */
723
724                 byte_size = d_r + d_len - 1 - p_r;
725                 if (byte_size < sizeof(size_t))
726                         break;
727
728                 /* Find type, and use decode function according to type */
729                 type = keyval_get_type_from_encoded_byte(p_r);
730                 if (keyval_type_is_array(type)) {
731                         bytes_read = keyval_array_decode(p_r,
732                                         (keyval_array_t **)&kv, byte_size);
733                 } else {
734                         bytes_read = keyval_decode(p_r, &kv, byte_size);
735                 }
736
737                 if (kv)
738                         _bundle_append_kv(b, kv);
739                 else
740                         break;
741                 p_r += bytes_read;
742         }
743
744         free(extract_cksum);
745         g_free(compute_cksum);
746         set_last_result(BUNDLE_ERROR_NONE);
747
748         return b;
749 }
750
751 void _iter_export_to_argv(const char *key, const int type, const keyval_t *kv,
752                 void *user_data)
753 {
754         struct _argv_idx *vi = (struct _argv_idx *)user_data;
755         unsigned char *byte = NULL;
756         unsigned char *encoded_byte = NULL;
757         size_t byte_len = 0;
758
759         vi->argv[vi->idx] = strdup(key);
760         if (kv->method->encode((struct keyval_t *)kv, &byte, &byte_len) == 0) {
761                 /* TODO: encode FAILED! */
762                 BUNDLE_EXCEPTION_PRINT("bundle: FAILED to encode keyval: %s\n",
763                                 key);
764                 return;
765         }
766
767         encoded_byte = (unsigned char *)g_base64_encode(byte, byte_len);
768         if (encoded_byte == NULL) {
769                 BUNDLE_EXCEPTION_PRINT("bundle: failed to encode byte\n");
770                 return;
771         }
772
773         vi->argv[vi->idx + 1] = (char *)encoded_byte;
774         (vi->idx) += 2;
775
776         free(byte);
777 }
778
779 int bundle_export_to_argv(bundle *b, char ***argv)
780 {
781         struct _argv_idx vi;
782         int argc;
783         int item_count;
784
785         if (b == NULL || argv == NULL) {
786                 set_last_result(BUNDLE_ERROR_INVALID_PARAMETER);
787                 return -1;
788         }
789
790         item_count = bundle_get_count(b);
791         argc = 2 * item_count + 2;
792         /* 2 more count for argv[0] and arv[1] = encoded */
793         *argv = calloc(argc + 1, sizeof(char *));
794         if (!*argv) {
795                 set_last_result(BUNDLE_ERROR_OUT_OF_MEMORY);
796                 return -1;
797         }
798
799         vi.argc = argc;
800         vi.argv = *argv;
801         vi.idx = 2;                             /* start from index 2*/
802         vi.argv[1] = TAG_IMPORT_EXPORT_CHECK;   /* set argv[1] as encoded*/
803         /* BUNDLE_LOG_PRINT("\nargument 1 is %s",vi.argv[1]); */
804
805         bundle_foreach(b, _iter_export_to_argv, &vi);
806
807         set_last_result(BUNDLE_ERROR_NONE);
808         return argc;
809 }
810
811 int bundle_free_exported_argv(int argc, char ***argv)
812 {
813         int i;
814
815         if (argc < 1)
816                 return BUNDLE_ERROR_INVALID_PARAMETER;
817
818         if (!*argv || argc < 2)
819                 return BUNDLE_ERROR_INVALID_PARAMETER;
820
821         for (i = 2; i < argc; i++)
822                 free((*argv)[i]);
823         free(*argv);
824         *argv = NULL;
825
826         return BUNDLE_ERROR_NONE;
827 }
828
829 bundle *bundle_import_from_argv(int argc, char **argv)
830 {
831         int idx;
832         int type;
833         keyval_t *kv;
834         keyval_array_t *kva;
835         unsigned char *byte;
836         char *encoded_byte;
837         unsigned int byte_size;
838         bundle *b;
839
840         if (!argv) {
841                 set_last_result(BUNDLE_ERROR_INVALID_PARAMETER);
842                 return NULL;  /* TC_FIX error handling for argv =NULL*/
843         }
844
845         b = bundle_create();
846         if (!b) {
847                 set_last_result(BUNDLE_ERROR_OUT_OF_MEMORY);
848                 return NULL;
849         }
850
851         if (argc < 2) {
852                 set_last_result(BUNDLE_ERROR_NONE);
853                 return b;
854         }
855
856         if (!argv[1] || strcmp(argv[1], TAG_IMPORT_EXPORT_CHECK)) {
857                 /* start idx from one as argv[1] is user given argument */
858                 for (idx = 1; idx + 1 < argc; idx = idx + 2)
859                         bundle_add(b, argv[idx], argv[idx + 1]);
860
861                 return b;
862         }
863
864         /* start idx from 2 as argv[1] is encoded */
865         for (idx = 2; idx + 1 < argc; idx = idx + 2) {
866                 kv = NULL;
867                 kva = NULL;
868
869                 encoded_byte = argv[idx+1];
870
871                 /* base64_decode */
872                 byte = g_base64_decode(encoded_byte, (gsize *)&byte_size);
873                 if (byte == NULL) {
874                         if (b)
875                                 set_last_result(bundle_free(b));
876                         return NULL;
877                 }
878
879                 if (byte_size < sizeof(size_t)) {
880                         free(byte);
881                         byte = NULL;
882                         byte_size = 0;
883                         continue;
884                 }
885
886                 type = keyval_get_type_from_encoded_byte(byte);
887                 if (keyval_type_is_array(type)) {
888                         if (keyval_array_decode(byte, &kva, byte_size) == 0) /* TODO: error! */
889                                 BUNDLE_EXCEPTION_PRINT("Unable to Decode array\n");
890                         kv = (keyval_t *)kva;
891                 } else {
892                         if (keyval_decode(byte, &kv, byte_size) == 0) /* TODO: error! */
893                                 BUNDLE_EXCEPTION_PRINT("Unable to Decode\n");
894                 }
895                 _bundle_append_kv(b, kv);
896
897                 free(byte);
898                 byte = NULL;
899                 byte_size = 0;
900         }
901
902         set_last_result(BUNDLE_ERROR_NONE);
903         return b;
904 }
905
906 int bundle_get_type(bundle *b, const char *key)
907 {
908         keyval_t *kv = _bundle_find_kv(b, key);
909
910         if (kv) {
911                 return kv->type;
912         } else {
913                 set_last_result(BUNDLE_ERROR_KEY_NOT_AVAILABLE);
914                 return BUNDLE_TYPE_NONE;
915         }
916 }
917
918 /*
919  * Get length of an array
920  */
921 /* LCOV_EXCL_START */
922 unsigned int bundle_get_array_len(bundle *b, const char *key)
923 {
924         return BUNDLE_ERROR_NONE;
925 }
926 /* LCOV_EXCL_STOP */
927
928 /*
929  * Get size of an item in byte, of given pointer
930  */
931 /* LCOV_EXCL_START */
932 size_t bundle_get_array_val_size(bundle *b, const char *key,
933                 const void *val_ptr)
934 {
935         return BUNDLE_ERROR_NONE;
936 }
937 /* LCOV_EXCL_STOP */
938
939 static int bundle_set_array_val(bundle *b, const char *key, const int type,
940                 const unsigned int idx, const void *val, const size_t size)
941 {
942         keyval_t *kv;
943         keyval_array_t *kva;
944
945         kv = _bundle_find_kv(b, key);
946         if (kv == NULL)
947                 return get_last_result();
948
949         if (type != kv->type)
950                 return BUNDLE_ERROR_INVALID_PARAMETER;
951
952         /* TODO: Is this needed? */
953         if (!keyval_type_is_array(kv->type))
954                 return BUNDLE_ERROR_INVALID_PARAMETER;
955
956         kva = (keyval_array_t *)kv;
957         if (!keyval_array_is_idx_valid(kva, idx))
958                 return BUNDLE_ERROR_INVALID_PARAMETER;
959
960         /* NULL value test (TODO: is this needed?) */
961         if (!kva->array_val)
962                 return BUNDLE_ERROR_INVALID_PARAMETER;
963
964         return keyval_array_set_element(kva, idx, (void *)val, size);
965 }
966
967 int bundle_add_str_array(bundle *b, const char *key, const char **str_array,
968                 const int len)
969 {
970         return _bundle_add_kv(b, key, str_array, 0, BUNDLE_TYPE_STR_ARRAY, len);
971 }
972
973 /* LCOV_EXCL_START */
974 int bundle_get_val_array(bundle *b, const char *key, char ***str_array,
975                 int *len)
976 {
977         return _bundle_get_val(b, key, BUNDLE_TYPE_STR_ARRAY,
978                         (void **)str_array, NULL, (unsigned int *)len, NULL);
979 }
980 /* LCOV_EXCL_STOP */
981
982 const char **bundle_get_str_array(bundle *b, const char *key, int *len)
983 {
984         int ret = BUNDLE_ERROR_NONE;
985         const char **arr_val = NULL;
986
987         ret = bundle_get_val_array(b, key, (char ***)&arr_val, len);
988         set_last_result(ret);
989
990         return arr_val;
991 }
992
993 /* LCOV_EXCL_START */
994 int bundle_compare(bundle *b1, bundle *b2)
995 {
996         keyval_t *kv1;
997         keyval_t *kv2;
998
999         if (!b1 || !b2)
1000                 return -1;
1001
1002         if (bundle_get_count(b1) != bundle_get_count(b2))
1003                 return 1;
1004
1005         for (kv1 = b1->kv_head; kv1 != NULL; kv1 = kv1->next) {
1006                 kv2 = _bundle_find_kv(b2, kv1->key);
1007                 if (!kv2)
1008                         return 1;
1009                 if (kv1->method->compare(kv1, kv2))
1010                         return 1;
1011         }
1012
1013         return 0;
1014 }
1015 /* LCOV_EXCL_STOP */
1016
1017 int bundle_set_str_array_element(bundle *b, const char *key,
1018                 const unsigned int idx, const char *val)
1019 {
1020         if (!val)
1021                 return BUNDLE_ERROR_INVALID_PARAMETER;
1022
1023         return bundle_set_array_val(b, key, BUNDLE_TYPE_STR_ARRAY,
1024                         idx, val, strlen(val) + 1);
1025 }
1026
1027 int bundle_add_byte(bundle *b, const char *key, const void *byte,
1028                 const size_t size)
1029 {
1030         return _bundle_add_kv(b, key, byte, size, BUNDLE_TYPE_BYTE, 1);
1031 }
1032
1033 int bundle_get_byte(bundle *b, const char *key, void **byte, size_t *size)
1034 {
1035         return _bundle_get_val(b, key, BUNDLE_TYPE_BYTE, (void **)byte,
1036                         size, NULL, NULL);
1037 }
1038
1039 int bundle_add_byte_array(bundle *b, const char *key, void **byte_array,
1040                 const unsigned int len)
1041 {
1042         return _bundle_add_kv(b, key, byte_array, 0,
1043                         BUNDLE_TYPE_BYTE_ARRAY, len);
1044 }
1045
1046 int bundle_get_byte_array(bundle *b, const char *key, void ***byte_array,
1047                 unsigned int *len, unsigned int **array_element_size)
1048 {
1049         return _bundle_get_val(b, key, BUNDLE_TYPE_BYTE_ARRAY,
1050                         (void **)byte_array, NULL, len, (size_t **)array_element_size);
1051 }
1052
1053 int bundle_set_byte_array_element(bundle *b, const char *key,
1054                 const unsigned int idx, const void *val, const size_t size)
1055 {
1056         return bundle_set_array_val(b, key, BUNDLE_TYPE_BYTE_ARRAY,
1057                         idx, val, size);
1058 }