add package url attritute
[framework/appfw/pkgmgr-info.git] / parser / pkgmgr_parser.c
1 /*
2  * pkgmgr-info
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Jayoun Lee <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>,
7  * Jaeho Lee <jaeho81.lee@samsung.com>, Shobhit Srivastava <shobhit.s@samsung.com>
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  */
22 #define _GNU_SOURCE
23 #include <dlfcn.h>
24 #include <string.h>
25 #include <errno.h>
26 #include <fcntl.h>
27 #include <unistd.h>
28 #include <ctype.h>
29 #include <time.h>
30 #include <string.h>
31 #include <libxml/parser.h>
32 #include <libxml/xmlreader.h>
33 #include <libxml/xmlschemas.h>
34 #include <vconf.h>
35
36 #include "pkgmgr_parser.h"
37 #include "pkgmgr_parser_internal.h"
38 #include "pkgmgr_parser_db.h"
39 #include "pkgmgr-info.h"
40
41 #define MANIFEST_RW_DIRECTORY "/opt/share/packages"
42 #define MANIFEST_RO_DIRECTORY "/usr/share/packages"
43 #define ASCII(s) (const char *)s
44 #define XMLCHAR(s) (const xmlChar *)s
45
46 /* operation_type */
47 typedef enum {
48         ACTION_INSTALL = 0,
49         ACTION_UPGRADE,
50         ACTION_UNINSTALL,
51         ACTION_MAX
52 } ACTION_TYPE;
53
54 const char *package;
55
56 static int __ps_process_label(xmlTextReaderPtr reader, label_x *label);
57 static int __ps_process_privilege(xmlTextReaderPtr reader, privilege_x *privilege);
58 static int __ps_process_privileges(xmlTextReaderPtr reader, privileges_x *privileges);
59 static int __ps_process_deviceprofile(xmlTextReaderPtr reader, deviceprofile_x *deviceprofile);
60 static int __ps_process_allowed(xmlTextReaderPtr reader, allowed_x *allowed);
61 static int __ps_process_operation(xmlTextReaderPtr reader, operation_x *operation);
62 static int __ps_process_uri(xmlTextReaderPtr reader, uri_x *uri);
63 static int __ps_process_mime(xmlTextReaderPtr reader, mime_x *mime);
64 static int __ps_process_subapp(xmlTextReaderPtr reader, subapp_x *subapp);
65 static int __ps_process_condition(xmlTextReaderPtr reader, condition_x *condition);
66 static int __ps_process_notification(xmlTextReaderPtr reader, notification_x *notifiation);
67 static int __ps_process_category(xmlTextReaderPtr reader, category_x *category);
68 static int __ps_process_metadata(xmlTextReaderPtr reader, metadata_x *metadata);
69 static int __ps_process_permission(xmlTextReaderPtr reader, permission_x *permission);
70 static int __ps_process_compatibility(xmlTextReaderPtr reader, compatibility_x *compatibility);
71 static int __ps_process_resolution(xmlTextReaderPtr reader, resolution_x *resolution);
72 static int __ps_process_request(xmlTextReaderPtr reader, request_x *request);
73 static int __ps_process_define(xmlTextReaderPtr reader, define_x *define);
74 static int __ps_process_appsvc(xmlTextReaderPtr reader, appsvc_x *appsvc);
75 static int __ps_process_launchconditions(xmlTextReaderPtr reader, launchconditions_x *launchconditions);
76 static int __ps_process_datashare(xmlTextReaderPtr reader, datashare_x *datashare);
77 static int __ps_process_icon(xmlTextReaderPtr reader, icon_x *icon);
78 static int __ps_process_author(xmlTextReaderPtr reader, author_x *author);
79 static int __ps_process_description(xmlTextReaderPtr reader, description_x *description);
80 static int __ps_process_capability(xmlTextReaderPtr reader, capability_x *capability);
81 static int __ps_process_license(xmlTextReaderPtr reader, license_x *license);
82 static int __ps_process_appcontrol(xmlTextReaderPtr reader, appcontrol_x *appcontrol);
83 static int __ps_process_datacontrol(xmlTextReaderPtr reader, datacontrol_x *datacontrol);
84 static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *uiapplication);
85 static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceapplication_x *serviceapplication);
86 static int __ps_process_font(xmlTextReaderPtr reader, font_x *font);
87 static int __ps_process_theme(xmlTextReaderPtr reader, theme_x *theme);
88 static int __ps_process_daemon(xmlTextReaderPtr reader, daemon_x *daemon);
89 static int __ps_process_ime(xmlTextReaderPtr reader, ime_x *ime);
90 static void __ps_free_label(label_x *label);
91 static void __ps_free_privilege(privilege_x *privilege);
92 static void __ps_free_privileges(privileges_x *privileges);
93 static void __ps_free_deviceprofile(deviceprofile_x * deviceprofile);
94 static void __ps_free_allowed(allowed_x *allowed);
95 static void __ps_free_operation(operation_x *operation);
96 static void __ps_free_uri(uri_x *uri);
97 static void __ps_free_mime(mime_x *mime);
98 static void __ps_free_subapp(subapp_x *subapp);
99 static void __ps_free_condition(condition_x *condition);
100 static void __ps_free_notification(notification_x *notifiation);
101 static void __ps_free_category(category_x *category);
102 static void __ps_free_metadata(metadata_x *metadata);
103 static void __ps_free_permission(permission_x *permission);
104 static void __ps_free_compatibility(compatibility_x *compatibility);
105 static void __ps_free_resolution(resolution_x *resolution);
106 static void __ps_free_request(request_x *request);
107 static void __ps_free_define(define_x *define);
108 static void __ps_free_appsvc(appsvc_x *appsvc);
109 static void __ps_free_launchconditions(launchconditions_x *launchconditions);
110 static void __ps_free_datashare(datashare_x *datashare);
111 static void __ps_free_icon(icon_x *icon);
112 static void __ps_free_author(author_x *author);
113 static void __ps_free_description(description_x *description);
114 static void __ps_free_capability(capability_x *capability);
115 static void __ps_free_license(license_x *license);
116 static void __ps_free_appcontrol(appcontrol_x *appcontrol);
117 static void __ps_free_datacontrol(datacontrol_x *datacontrol);
118 static void __ps_free_uiapplication(uiapplication_x *uiapplication);
119 static void __ps_free_serviceapplication(serviceapplication_x *serviceapplication);
120 static void __ps_free_font(font_x *font);
121 static void __ps_free_theme(theme_x *theme);
122 static void __ps_free_daemon(daemon_x *daemon);
123 static void __ps_free_ime(ime_x *ime);
124 static char *__pkgid_to_manifest(const char *pkgid);
125 static int __next_child_element(xmlTextReaderPtr reader, int depth);
126 static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx);
127 static int __process_manifest(xmlTextReaderPtr reader, manifest_x * mfx);
128 static void __str_trim(char *input);
129 static char *__get_parser_plugin(const char *type);
130 static int __ps_run_parser(xmlDocPtr docPtr, const char *tag, ACTION_TYPE action, const char *pkgid);
131 static int __run_parser_prestep(xmlTextReaderPtr reader, ACTION_TYPE action, const char *pkgid);
132 static void __processNode(xmlTextReaderPtr reader, ACTION_TYPE action, char *const tagv[], const char *pkgid);
133 static void __streamFile(const char *filename, ACTION_TYPE action, char *const tagv[], const char *pkgid);
134 static int __validate_appid(const char *pkgid, const char *appid, char **newappid);
135
136 static void __str_trim(char *input)
137 {
138         char *trim_str = input;
139
140         if (input == NULL)
141                 return;
142
143         while (*input != 0) {
144                 if (!isspace(*input)) {
145                         *trim_str = *input;
146                         trim_str++;
147                 }
148                 input++;
149         }
150
151         *trim_str = 0;
152         return;
153 }
154
155 static int __validate_appid(const char *pkgid, const char *appid, char **newappid)
156 {
157         if (!pkgid || !appid || !newappid) {
158                 DBG("Arg supplied is NULL\n");
159                 return -1;
160         }
161         int pkglen = strlen(pkgid);
162         int applen = strlen(appid);
163         char *ptr = NULL;
164         char *newapp = NULL;
165         int len = 0;
166         if (strncmp(appid, ".", 1) == 0) {
167                 len = pkglen + applen + 1;
168                 newapp = calloc(1,len);
169                 if (newapp == NULL) {
170                         DBG("Malloc failed\n");
171                         return -1;
172                 }
173                 strncpy(newapp, pkgid, pkglen);
174                 strncat(newapp, appid, applen);
175                 DBG("new appid is %s\n", newapp);
176                 *newappid = newapp;
177                 return 0;
178         }
179         if (applen < pkglen) {
180                 DBG("app id is not proper\n");
181                 *newappid = NULL;
182 #ifdef _VALIDATE_APPID_
183                 return -1;
184 #else
185                 return 0;
186 #endif
187         }
188         if (!strcmp(appid, pkgid)) {
189                 DBG("appid is proper\n");
190                 *newappid = NULL;
191                 return 0;
192         }
193         else if (strncmp(appid, pkgid, pkglen) == 0) {
194                 ptr = strstr(appid, pkgid);
195                 ptr = ptr + pkglen;
196                 if (strncmp(ptr, ".", 1) == 0) {
197                         DBG("appid is proper\n");
198                         *newappid = NULL;
199                         return 0;
200                 }
201                 else {
202                         DBG("appid is not proper\n");
203                         *newappid = NULL;
204 #ifdef _VALIDATE_APPID_
205                         return -1;
206 #else
207                         return 0;
208 #endif
209                 }
210         } else {
211                 DBG("appid is not proper\n");
212                 *newappid = NULL;
213 #ifdef _VALIDATE_APPID_
214                 return -1;
215 #else
216                 return 0;
217 #endif
218         }
219         return 0;
220 }
221
222
223 static char *__get_parser_plugin(const char *type)
224 {
225         FILE *fp = NULL;
226         char buffer[1024] = { 0 };
227         char temp_path[1024] = { 0 };
228         char *path = NULL;
229
230         if (type == NULL) {
231                 DBGE("invalid argument\n");
232                 return NULL;
233         }
234
235         fp = fopen(PKG_PARSER_CONF_PATH, "r");
236         if (fp == NULL) {
237                 DBGE("no matching backendlib\n");
238                 return NULL;
239         }
240
241         while (fgets(buffer, sizeof(buffer), fp) != NULL) {
242                 if (buffer[0] == '#')
243                         continue;
244
245                 __str_trim(buffer);
246
247                 if ((path = strstr(buffer, PKG_PARSERLIB)) != NULL) {
248                         DBG("[%s]\n", path);
249                         path = path + strlen(PKG_PARSERLIB);
250                         DBG("[%s]\n", path);
251
252                         break;
253                 }
254
255                 memset(buffer, 0x00, 1024);
256         }
257
258         if (fp != NULL)
259                 fclose(fp);
260
261         if (path == NULL) {
262                 DBGE("no matching backendlib\n");
263                 return NULL;
264         }
265
266         snprintf(temp_path, sizeof(temp_path) - 1, "%slib%s.so", path, type);
267
268         return strdup(temp_path);
269 }
270
271 static int __ps_run_parser(xmlDocPtr docPtr, const char *tag,
272                            ACTION_TYPE action, const char *pkgid)
273 {
274         char *lib_path = NULL;
275         void *lib_handle = NULL;
276         int (*plugin_install) (xmlDocPtr, const char *);
277         int ret = -1;
278         char *ac = NULL;
279
280         switch (action) {
281         case ACTION_INSTALL:
282                 ac = "PKGMGR_PARSER_PLUGIN_INSTALL";
283                 break;
284         case ACTION_UPGRADE:
285                 ac = "PKGMGR_PARSER_PLUGIN_UPGRADE";
286                 break;
287         case ACTION_UNINSTALL:
288                 ac = "PKGMGR_PARSER_PLUGIN_UNINSTALL";
289                 break;
290         default:
291                 goto END;
292         }
293
294         lib_path = __get_parser_plugin(tag);
295         if (!lib_path) {
296                 goto END;
297         }
298
299         if ((lib_handle = dlopen(lib_path, RTLD_LAZY)) == NULL) {
300                 DBGE("dlopen is failed lib_path[%s]\n", lib_path);
301                 goto END;
302         }
303         if ((plugin_install =
304                 dlsym(lib_handle, ac)) == NULL || dlerror() != NULL) {
305                 DBGE("can not find symbol \n");
306                 goto END;
307         }
308
309         ret = plugin_install(docPtr, pkgid);
310
311 END:
312         if (lib_path)
313                 free(lib_path);
314         if (lib_handle)
315                 dlclose(lib_handle);
316         return ret;
317 }
318
319 static char *__pkgid_to_manifest(const char *pkgid)
320 {
321         char *manifest;
322         int size;
323
324         if (pkgid == NULL) {
325                 DBGE("pkgid is NULL");
326                 return NULL;
327         }
328
329         size = strlen(MANIFEST_RW_DIRECTORY) + strlen(pkgid) + 10;
330         manifest = malloc(size);
331         if (manifest == NULL) {
332                 DBGE("No memory");
333                 return NULL;
334         }
335         memset(manifest, '\0', size);
336         snprintf(manifest, size, MANIFEST_RW_DIRECTORY "/%s.xml", pkgid);
337
338         if (access(manifest, F_OK)) {
339                 snprintf(manifest, size, MANIFEST_RO_DIRECTORY "/%s.xml", pkgid);
340         }
341
342         return manifest;
343 }
344
345 static int __run_parser_prestep(xmlTextReaderPtr reader, ACTION_TYPE action, const char *pkgid)
346 {
347         int ret = -1;
348         const xmlChar *name;
349
350         DBG("__run_parser_prestep");
351
352         if (xmlTextReaderDepth(reader) != 1) {
353                 DBGE("Node depth is not 1");
354                 goto END;
355         }
356
357         if (xmlTextReaderNodeType(reader) != 1) {
358                 DBGE("Node type is not 1");
359                 goto END;
360         }
361
362         const xmlChar *value;
363         name = xmlTextReaderConstName(reader);
364         if (name == NULL) {
365                 DBGE("TEST TEST TES\n");
366                 name = BAD_CAST "--";
367         }
368
369         value = xmlTextReaderConstValue(reader);
370         DBG("%d %d %s %d %d",
371             xmlTextReaderDepth(reader),
372             xmlTextReaderNodeType(reader),
373             name,
374             xmlTextReaderIsEmptyElement(reader), xmlTextReaderHasValue(reader));
375
376         if (value == NULL) {
377                 DBG("ConstValue NULL");
378         } else {
379                 if (xmlStrlen(value) > 40) {
380                         DBG(" %.40s...", value);
381                 } else {
382                         DBG(" %s", value);
383                 }
384         }
385
386         name = xmlTextReaderConstName(reader);
387         if (name == NULL) {
388                 DBGE("TEST TEST TES\n");
389                 name = BAD_CAST "--";
390         }
391
392         xmlDocPtr docPtr = xmlTextReaderCurrentDoc(reader);
393         DBG("docPtr->URL %s\n", (char *)docPtr->URL);
394         xmlDocPtr copyDocPtr = xmlCopyDoc(docPtr, 1);
395         if (copyDocPtr == NULL)
396                 return -1;
397         xmlNode *rootElement = xmlDocGetRootElement(copyDocPtr);
398         if (rootElement == NULL)
399                 return -1;
400         xmlNode *cur_node = xmlFirstElementChild(rootElement);
401         if (cur_node == NULL)
402                 return -1;
403         xmlNode *temp = xmlTextReaderExpand(reader);
404         if (temp == NULL)
405                 return -1;
406         xmlNode *next_node = NULL;
407         while(cur_node != NULL) {
408                 if ( (strcmp(ASCII(temp->name), ASCII(cur_node->name)) == 0) &&
409                         (temp->line == cur_node->line) ) {
410                         break;
411                 }
412                 else {
413                         next_node = xmlNextElementSibling(cur_node);
414                         xmlUnlinkNode(cur_node);
415                         xmlFreeNode(cur_node);
416                         cur_node = next_node;
417                 }
418         }
419         if (cur_node == NULL)
420                 return -1;
421         next_node = xmlNextElementSibling(cur_node);
422         if (next_node) {
423                 cur_node->next = NULL;
424                 next_node->prev = NULL;
425                 xmlFreeNodeList(next_node);
426                 xmlSetTreeDoc(cur_node, copyDocPtr);
427         } else {
428                 xmlSetTreeDoc(cur_node, copyDocPtr);
429         }
430
431 #ifdef __DEBUG__
432
433 //#else
434         DBG("node type: %d, name: %s children->name: %s last->name: %s\n"
435             "parent->name: %s next->name: %s prev->name: %s\n",
436             cur_node->type, cur_node->name,
437             cur_node->children ? cur_node->children->name : "NULL",
438             cur_node->last ? cur_node->last->name : "NULL",
439             cur_node->parent ? cur_node->parent->name : "NULL",
440             cur_node->next ? cur_node->next->name : "NULL",
441             cur_node->prev ? cur_node->prev->name : "NULL");
442
443         FILE *fp = fopen("/opt/share/test.xml", "a");
444         xmlDocDump(fp, copyDocPtr);
445         fprintf(fp, "\n");
446         fclose(fp);
447 #endif
448
449         ret = __ps_run_parser(copyDocPtr, ASCII(name), action, pkgid);
450  END:
451
452         return ret;
453 }
454
455 static void
456 __processNode(xmlTextReaderPtr reader, ACTION_TYPE action, char *const tagv[], const char *pkgid)
457 {
458         char *tag = NULL;
459         int i = 0;
460
461         switch (xmlTextReaderNodeType(reader)) {
462         case XML_READER_TYPE_END_ELEMENT:
463                 {
464                         //            DBG("XML_READER_TYPE_END_ELEMENT");
465                         break;
466                 }
467
468         case XML_READER_TYPE_ELEMENT:
469                 {
470                         // Elements without closing tag don't receive
471                         // XML_READER_TYPE_END_ELEMENT event.
472
473                         const xmlChar *elementName =
474                             xmlTextReaderLocalName(reader);
475                         if (elementName == NULL) {
476 //                              DBG("elementName %s\n", (char *)elementName);
477                                 break;
478                         }
479
480                         const xmlChar *nameSpace =
481                             xmlTextReaderConstNamespaceUri(reader);
482                         if (nameSpace) {
483 //                              DBG("nameSpace %s\n", (char *)nameSpace);
484                         }
485 /*
486                         DBG("XML_READER_TYPE_ELEMENT %s, %s\n",
487                             elementName ? elementName : "NULL",
488                             nameSpace ? nameSpace : "NULL");
489 */
490                         if (tagv == NULL) {
491                                 DBG("__run_parser_prestep pkgid[%s]\n", pkgid);
492                                 __run_parser_prestep(reader, action, pkgid);
493                         }
494                         else {
495                                 i = 0;
496                                 for (tag = tagv[0]; tag; tag = tagv[++i])
497                                         if (strcmp(tag, ASCII(elementName)) == 0) {
498                                                 DBG("__run_parser_prestep tag[%s] pkgid[%s]\n", tag, pkgid);
499                                                 __run_parser_prestep(reader,
500                                                                      action, pkgid);
501                                                 break;
502                                         }
503                         }
504
505                         break;
506                 }
507         case XML_READER_TYPE_TEXT:
508         case XML_READER_TYPE_CDATA:
509                 {
510                         const xmlChar *value = xmlTextReaderConstValue(reader);
511                         if (value) {
512 //                              DBG("value %s\n", value);
513                         }
514
515                         const xmlChar *lang = xmlTextReaderConstXmlLang(reader);
516                         if (lang) {
517 //                              DBG("lang\n", lang);
518                         }
519
520 /*                      DBG("XML_READER_TYPE_TEXT %s, %s\n",
521                             value ? value : "NULL", lang ? lang : "NULL");
522 */
523                         break;
524                 }
525         default:
526 //              DBG("Ignoring Node of Type: %d", xmlTextReaderNodeType(reader));
527                 break;
528         }
529 }
530
531 static void
532 __streamFile(const char *filename, ACTION_TYPE action, char *const tagv[], const char *pkgid)
533 {
534         xmlTextReaderPtr reader;
535         xmlDocPtr docPtr;
536         int ret;
537
538         docPtr = xmlReadFile(filename, NULL, 0);
539         reader = xmlReaderWalker(docPtr);
540         if (reader != NULL) {
541                 ret = xmlTextReaderRead(reader);
542                 while (ret == 1) {
543                         __processNode(reader, action, tagv, pkgid);
544                         ret = xmlTextReaderRead(reader);
545                 }
546                 xmlFreeTextReader(reader);
547
548                 if (ret != 0) {
549                         DBGE("%s : failed to parse", filename);
550                 }
551         } else {
552                 DBGE("Unable to open %s", filename);
553         }
554 }
555
556 static int __next_child_element(xmlTextReaderPtr reader, int depth)
557 {
558         int ret = xmlTextReaderRead(reader);
559         int cur = xmlTextReaderDepth(reader);
560         while (ret == 1) {
561
562                 switch (xmlTextReaderNodeType(reader)) {
563                 case XML_READER_TYPE_ELEMENT:
564                         if (cur == depth + 1)
565                                 return 1;
566                         break;
567                 case XML_READER_TYPE_TEXT:
568                         /*text is handled by each function separately*/
569                         if (cur == depth + 1)
570                                 return 0;
571                         break;
572                 case XML_READER_TYPE_END_ELEMENT:
573                         if (cur == depth)
574                                 return 0;
575                         break;
576                 default:
577                         if (cur <= depth)
578                                 return 0;
579                         break;
580                 }
581                 ret = xmlTextReaderRead(reader);
582                 cur = xmlTextReaderDepth(reader);
583         }
584         return ret;
585 }
586
587 static void __ps_free_category(category_x *category)
588 {
589         if (category == NULL)
590                 return;
591         if (category->name) {
592                 free((void *)category->name);
593                 category->name = NULL;
594         }
595         free((void*)category);
596         category = NULL;
597 }
598
599 static void __ps_free_privilege(privilege_x *privilege)
600 {
601         if (privilege == NULL)
602                 return;
603         if (privilege->text) {
604                 free((void *)privilege->text);
605                 privilege->text = NULL;
606         }
607         free((void*)privilege);
608         privilege = NULL;
609 }
610
611 static void __ps_free_privileges(privileges_x *privileges)
612 {
613         if (privileges == NULL)
614                 return;
615         /*Free Privilege*/
616         if (privileges->privilege) {
617                 privilege_x *privilege = privileges->privilege;
618                 privilege_x *tmp = NULL;
619                 while(privilege != NULL) {
620                         tmp = privilege->next;
621                         __ps_free_privilege(privilege);
622                         privilege = tmp;
623                 }
624         }
625         free((void*)privileges);
626         privileges = NULL;
627 }
628
629 static void __ps_free_metadata(metadata_x *metadata)
630 {
631         if (metadata == NULL)
632                 return;
633         if (metadata->key) {
634                 free((void *)metadata->key);
635                 metadata->key = NULL;
636         }
637         if (metadata->value) {
638                 free((void *)metadata->value);
639                 metadata->value = NULL;
640         }
641         free((void*)metadata);
642         metadata = NULL;
643 }
644
645 static void __ps_free_permission(permission_x *permission)
646 {
647         if (permission == NULL)
648                 return;
649         if (permission->type) {
650                 free((void *)permission->type);
651                 permission->type = NULL;
652         }
653         if (permission->value) {
654                 free((void *)permission->value);
655                 permission->value = NULL;
656         }
657         free((void*)permission);
658         permission = NULL;
659 }
660
661 static void __ps_free_icon(icon_x *icon)
662 {
663         if (icon == NULL)
664                 return;
665         if (icon->text) {
666                 free((void *)icon->text);
667                 icon->text = NULL;
668         }
669         if (icon->lang) {
670                 free((void *)icon->lang);
671                 icon->lang = NULL;
672         }
673         if (icon->name) {
674                 free((void *)icon->name);
675                 icon->name= NULL;
676         }
677         if (icon->section) {
678                 free((void *)icon->section);
679                 icon->section = NULL;
680         }
681         if (icon->size) {
682                 free((void *)icon->size);
683                 icon->size = NULL;
684         }
685         if (icon->resolution) {
686                 free((void *)icon->resolution);
687                 icon->resolution = NULL;
688         }
689         free((void*)icon);
690         icon = NULL;
691 }
692
693 static void __ps_free_image(image_x *image)
694 {
695         if (image == NULL)
696                 return;
697         if (image->text) {
698                 free((void *)image->text);
699                 image->text = NULL;
700         }
701         if (image->lang) {
702                 free((void *)image->lang);
703                 image->lang = NULL;
704         }
705         if (image->name) {
706                 free((void *)image->name);
707                 image->name= NULL;
708         }
709         if (image->section) {
710                 free((void *)image->section);
711                 image->section = NULL;
712         }
713         free((void*)image);
714         image = NULL;
715 }
716
717 static void __ps_free_operation(operation_x *operation)
718 {
719         if (operation == NULL)
720                 return;
721         if (operation->text) {
722                 free((void *)operation->text);
723                 operation->text = NULL;
724         }
725         free((void*)operation);
726         operation = NULL;
727 }
728
729 static void __ps_free_uri(uri_x *uri)
730 {
731         if (uri == NULL)
732                 return;
733         if (uri->text) {
734                 free((void *)uri->text);
735                 uri->text = NULL;
736         }
737         free((void*)uri);
738         uri = NULL;
739 }
740
741 static void __ps_free_mime(mime_x *mime)
742 {
743         if (mime == NULL)
744                 return;
745         if (mime->text) {
746                 free((void *)mime->text);
747                 mime->text = NULL;
748         }
749         free((void*)mime);
750         mime = NULL;
751 }
752
753 static void __ps_free_subapp(subapp_x *subapp)
754 {
755         if (subapp == NULL)
756                 return;
757         if (subapp->text) {
758                 free((void *)subapp->text);
759                 subapp->text = NULL;
760         }
761         free((void*)subapp);
762         subapp = NULL;
763 }
764
765 static void __ps_free_condition(condition_x *condition)
766 {
767         if (condition == NULL)
768                 return;
769         if (condition->text) {
770                 free((void *)condition->text);
771                 condition->text = NULL;
772         }
773         if (condition->name) {
774                 free((void *)condition->name);
775                 condition->name = NULL;
776         }
777         free((void*)condition);
778         condition = NULL;
779 }
780
781 static void __ps_free_notification(notification_x *notification)
782 {
783         if (notification == NULL)
784                 return;
785         if (notification->text) {
786                 free((void *)notification->text);
787                 notification->text = NULL;
788         }
789         if (notification->name) {
790                 free((void *)notification->name);
791                 notification->name = NULL;
792         }
793         free((void*)notification);
794         notification = NULL;
795 }
796
797 static void __ps_free_compatibility(compatibility_x *compatibility)
798 {
799         if (compatibility == NULL)
800                 return;
801         if (compatibility->text) {
802                 free((void *)compatibility->text);
803                 compatibility->text = NULL;
804         }
805         if (compatibility->name) {
806                 free((void *)compatibility->name);
807                 compatibility->name = NULL;
808         }
809         free((void*)compatibility);
810         compatibility = NULL;
811 }
812
813 static void __ps_free_resolution(resolution_x *resolution)
814 {
815         if (resolution == NULL)
816                 return;
817         if (resolution->mimetype) {
818                 free((void *)resolution->mimetype);
819                 resolution->mimetype = NULL;
820         }
821         if (resolution->urischeme) {
822                 free((void *)resolution->urischeme);
823                 resolution->urischeme = NULL;
824         }
825         free((void*)resolution);
826         resolution = NULL;
827 }
828
829 static void __ps_free_capability(capability_x *capability)
830 {
831         if (capability == NULL)
832                 return;
833         if (capability->operationid) {
834                 free((void *)capability->operationid);
835                 capability->operationid = NULL;
836         }
837         /*Free Resolution*/
838         if (capability->resolution) {
839                 resolution_x *resolution = capability->resolution;
840                 resolution_x *tmp = NULL;
841                 while(resolution != NULL) {
842                         tmp = resolution->next;
843                         __ps_free_resolution(resolution);
844                         resolution = tmp;
845                 }
846         }
847         free((void*)capability);
848         capability = NULL;
849 }
850
851 static void __ps_free_allowed(allowed_x *allowed)
852 {
853         if (allowed == NULL)
854                 return;
855         if (allowed->name) {
856                 free((void *)allowed->name);
857                 allowed->name = NULL;
858         }
859         if (allowed->text) {
860                 free((void *)allowed->text);
861                 allowed->text = NULL;
862         }
863         free((void*)allowed);
864         allowed = NULL;
865 }
866
867 static void __ps_free_request(request_x *request)
868 {
869         if (request == NULL)
870                 return;
871         if (request->text) {
872                 free((void *)request->text);
873                 request->text = NULL;
874         }
875         free((void*)request);
876         request = NULL;
877 }
878
879 static void __ps_free_datacontrol(datacontrol_x *datacontrol)
880 {
881         if (datacontrol == NULL)
882                 return;
883         if (datacontrol->providerid) {
884                 free((void *)datacontrol->providerid);
885                 datacontrol->providerid = NULL;
886         }
887         /*Free Capability*/
888         if (datacontrol->capability) {
889                 capability_x *capability = datacontrol->capability;
890                 capability_x *tmp = NULL;
891                 while(capability != NULL) {
892                         tmp = capability->next;
893                         __ps_free_capability(capability);
894                         capability = tmp;
895                 }
896         }
897         free((void*)datacontrol);
898         datacontrol = NULL;
899 }
900
901 static void __ps_free_launchconditions(launchconditions_x *launchconditions)
902 {
903         if (launchconditions == NULL)
904                 return;
905         if (launchconditions->text) {
906                 free((void *)launchconditions->text);
907                 launchconditions->text = NULL;
908         }
909         /*Free Condition*/
910         if (launchconditions->condition) {
911                 condition_x *condition = launchconditions->condition;
912                 condition_x *tmp = NULL;
913                 while(condition != NULL) {
914                         tmp = condition->next;
915                         __ps_free_condition(condition);
916                         condition = tmp;
917                 }
918         }
919         free((void*)launchconditions);
920         launchconditions = NULL;
921 }
922
923 static void __ps_free_appcontrol(appcontrol_x *appcontrol)
924 {
925         if (appcontrol == NULL)
926                 return;
927         if (appcontrol->text) {
928                 free((void *)appcontrol->text);
929                 appcontrol->text = NULL;
930         }
931         /*Free Operation*/
932         if (appcontrol->operation) {
933                 operation_x *operation = appcontrol->operation;
934                 operation_x *tmp = NULL;
935                 while(operation != NULL) {
936                         tmp = operation->next;
937                         __ps_free_operation(operation);
938                         operation = tmp;
939                 }
940         }
941         /*Free Uri*/
942         if (appcontrol->uri) {
943                 uri_x *uri = appcontrol->uri;
944                 uri_x *tmp = NULL;
945                 while(uri != NULL) {
946                         tmp = uri->next;
947                         __ps_free_uri(uri);
948                         uri = tmp;
949                 }
950         }
951         /*Free Mime*/
952         if (appcontrol->mime) {
953                 mime_x *mime = appcontrol->mime;
954                 mime_x *tmp = NULL;
955                 while(mime != NULL) {
956                         tmp = mime->next;
957                         __ps_free_mime(mime);
958                         mime = tmp;
959                 }
960         }
961         /*Free subapp*/
962         if (appcontrol->subapp) {
963                 subapp_x *subapp = appcontrol->subapp;
964                 subapp_x *tmp = NULL;
965                 while(subapp != NULL) {
966                         tmp = subapp->next;
967                         __ps_free_subapp(subapp);
968                         subapp = tmp;
969                 }
970         }
971         free((void*)appcontrol);
972         appcontrol = NULL;
973 }
974
975 static void __ps_free_appsvc(appsvc_x *appsvc)
976 {
977         if (appsvc == NULL)
978                 return;
979         if (appsvc->text) {
980                 free((void *)appsvc->text);
981                 appsvc->text = NULL;
982         }
983         /*Free Operation*/
984         if (appsvc->operation) {
985                 operation_x *operation = appsvc->operation;
986                 operation_x *tmp = NULL;
987                 while(operation != NULL) {
988                         tmp = operation->next;
989                         __ps_free_operation(operation);
990                         operation = tmp;
991                 }
992         }
993         /*Free Uri*/
994         if (appsvc->uri) {
995                 uri_x *uri = appsvc->uri;
996                 uri_x *tmp = NULL;
997                 while(uri != NULL) {
998                         tmp = uri->next;
999                         __ps_free_uri(uri);
1000                         uri = tmp;
1001                 }
1002         }
1003         /*Free Mime*/
1004         if (appsvc->mime) {
1005                 mime_x *mime = appsvc->mime;
1006                 mime_x *tmp = NULL;
1007                 while(mime != NULL) {
1008                         tmp = mime->next;
1009                         __ps_free_mime(mime);
1010                         mime = tmp;
1011                 }
1012         }
1013         /*Free subapp*/
1014         if (appsvc->subapp) {
1015                 subapp_x *subapp = appsvc->subapp;
1016                 subapp_x *tmp = NULL;
1017                 while(subapp != NULL) {
1018                         tmp = subapp->next;
1019                         __ps_free_subapp(subapp);
1020                         subapp = tmp;
1021                 }
1022         }
1023         free((void*)appsvc);
1024         appsvc = NULL;
1025 }
1026
1027 static void __ps_free_deviceprofile(deviceprofile_x *deviceprofile)
1028 {
1029         return;
1030 }
1031
1032 static void __ps_free_define(define_x *define)
1033 {
1034         if (define == NULL)
1035                 return;
1036         if (define->path) {
1037                 free((void *)define->path);
1038                 define->path = NULL;
1039         }
1040         /*Free Request*/
1041         if (define->request) {
1042                 request_x *request = define->request;
1043                 request_x *tmp = NULL;
1044                 while(request != NULL) {
1045                         tmp = request->next;
1046                         __ps_free_request(request);
1047                         request = tmp;
1048                 }
1049         }
1050         /*Free Allowed*/
1051         if (define->allowed) {
1052                 allowed_x *allowed = define->allowed;
1053                 allowed_x *tmp = NULL;
1054                 while(allowed != NULL) {
1055                         tmp = allowed->next;
1056                         __ps_free_allowed(allowed);
1057                         allowed = tmp;
1058                 }
1059         }
1060         free((void*)define);
1061         define = NULL;
1062 }
1063
1064 static void __ps_free_datashare(datashare_x *datashare)
1065 {
1066         if (datashare == NULL)
1067                 return;
1068         /*Free Define*/
1069         if (datashare->define) {
1070                 define_x *define =  datashare->define;
1071                 define_x *tmp = NULL;
1072                 while(define != NULL) {
1073                         tmp = define->next;
1074                         __ps_free_define(define);
1075                         define = tmp;
1076                 }
1077         }
1078         /*Free Request*/
1079         if (datashare->request) {
1080                 request_x *request = datashare->request;
1081                 request_x *tmp = NULL;
1082                 while(request != NULL) {
1083                         tmp = request->next;
1084                         __ps_free_request(request);
1085                         request = tmp;
1086                 }
1087         }
1088         free((void*)datashare);
1089         datashare = NULL;
1090 }
1091
1092 static void __ps_free_label(label_x *label)
1093 {
1094         if (label == NULL)
1095                 return;
1096         if (label->name) {
1097                 free((void *)label->name);
1098                 label->name = NULL;
1099         }
1100         if (label->text) {
1101                 free((void *)label->text);
1102                 label->text = NULL;
1103         }
1104         if (label->lang) {
1105                 free((void *)label->lang);
1106                 label->lang= NULL;
1107         }
1108         free((void*)label);
1109         label = NULL;
1110 }
1111
1112 static void __ps_free_author(author_x *author)
1113 {
1114         if (author == NULL)
1115                 return;
1116         if (author->email) {
1117                 free((void *)author->email);
1118                 author->email = NULL;
1119         }
1120         if (author->text) {
1121                 free((void *)author->text);
1122                 author->text = NULL;
1123         }
1124         if (author->href) {
1125                 free((void *)author->href);
1126                 author->href = NULL;
1127         }
1128         if (author->lang) {
1129                 free((void *)author->lang);
1130                 author->lang = NULL;
1131         }
1132         free((void*)author);
1133         author = NULL;
1134 }
1135
1136 static void __ps_free_description(description_x *description)
1137 {
1138         if (description == NULL)
1139                 return;
1140         if (description->name) {
1141                 free((void *)description->name);
1142                 description->name = NULL;
1143         }
1144         if (description->text) {
1145                 free((void *)description->text);
1146                 description->text = NULL;
1147         }
1148         if (description->lang) {
1149                 free((void *)description->lang);
1150                 description->lang = NULL;
1151         }
1152         free((void*)description);
1153         description = NULL;
1154 }
1155
1156 static void __ps_free_license(license_x *license)
1157 {
1158         if (license == NULL)
1159                 return;
1160         if (license->text) {
1161                 free((void *)license->text);
1162                 license->text = NULL;
1163         }
1164         if (license->lang) {
1165                 free((void *)license->lang);
1166                 license->lang = NULL;
1167         }
1168         free((void*)license);
1169         license = NULL;
1170 }
1171
1172 static void __ps_free_uiapplication(uiapplication_x *uiapplication)
1173 {
1174         if (uiapplication == NULL)
1175                 return;
1176         if (uiapplication->exec) {
1177                 free((void *)uiapplication->exec);
1178                 uiapplication->exec = NULL;
1179         }
1180         if (uiapplication->appid) {
1181                 free((void *)uiapplication->appid);
1182                 uiapplication->appid = NULL;
1183         }
1184         if (uiapplication->nodisplay) {
1185                 free((void *)uiapplication->nodisplay);
1186                 uiapplication->nodisplay = NULL;
1187         }
1188         if (uiapplication->multiple) {
1189                 free((void *)uiapplication->multiple);
1190                 uiapplication->multiple = NULL;
1191         }
1192         if (uiapplication->type) {
1193                 free((void *)uiapplication->type);
1194                 uiapplication->type = NULL;
1195         }
1196         if (uiapplication->categories) {
1197                 free((void *)uiapplication->categories);
1198                 uiapplication->categories = NULL;
1199         }
1200         if (uiapplication->extraid) {
1201                 free((void *)uiapplication->extraid);
1202                 uiapplication->extraid = NULL;
1203         }
1204         if (uiapplication->taskmanage) {
1205                 free((void *)uiapplication->taskmanage);
1206                 uiapplication->taskmanage = NULL;
1207         }
1208         if (uiapplication->enabled) {
1209                 free((void *)uiapplication->enabled);
1210                 uiapplication->enabled = NULL;
1211         }
1212         if (uiapplication->hwacceleration) {
1213                 free((void *)uiapplication->hwacceleration);
1214                 uiapplication->hwacceleration = NULL;
1215         }
1216         if (uiapplication->mainapp) {
1217                 free((void *)uiapplication->mainapp);
1218                 uiapplication->mainapp = NULL;
1219         }
1220         if (uiapplication->recentimage) {
1221                 free((void *)uiapplication->recentimage);
1222                 uiapplication->recentimage = NULL;
1223         }
1224         if (uiapplication->package) {
1225                 free((void *)uiapplication->package);
1226                 uiapplication->package = NULL;
1227         }
1228         if (uiapplication->launchcondition) {
1229                 free((void *)uiapplication->launchcondition);
1230                 uiapplication->launchcondition = NULL;
1231         }
1232         /*Free Label*/
1233         if (uiapplication->label) {
1234                 label_x *label = uiapplication->label;
1235                 label_x *tmp = NULL;
1236                 while(label != NULL) {
1237                         tmp = label->next;
1238                         __ps_free_label(label);
1239                         label = tmp;
1240                 }
1241         }
1242         /*Free Icon*/
1243         if (uiapplication->icon) {
1244                 icon_x *icon = uiapplication->icon;
1245                 icon_x *tmp = NULL;
1246                 while(icon != NULL) {
1247                         tmp = icon->next;
1248                         __ps_free_icon(icon);
1249                         icon = tmp;
1250                 }
1251         }
1252         /*Free image*/
1253         if (uiapplication->image) {
1254                 image_x *image = uiapplication->image;
1255                 image_x *tmp = NULL;
1256                 while(image != NULL) {
1257                         tmp = image->next;
1258                         __ps_free_image(image);
1259                         image = tmp;
1260                 }
1261         }
1262         /*Free AppControl*/
1263         if (uiapplication->appcontrol) {
1264                 appcontrol_x *appcontrol = uiapplication->appcontrol;
1265                 appcontrol_x *tmp = NULL;
1266                 while(appcontrol != NULL) {
1267                         tmp = appcontrol->next;
1268                         __ps_free_appcontrol(appcontrol);
1269                         appcontrol = tmp;
1270                 }
1271         }
1272         /*Free LaunchConditions*/
1273         if (uiapplication->launchconditions) {
1274                 launchconditions_x *launchconditions = uiapplication->launchconditions;
1275                 launchconditions_x *tmp = NULL;
1276                 while(launchconditions != NULL) {
1277                         tmp = launchconditions->next;
1278                         __ps_free_launchconditions(launchconditions);
1279                         launchconditions = tmp;
1280                 }
1281         }
1282         /*Free Notification*/
1283         if (uiapplication->notification) {
1284                 notification_x *notification = uiapplication->notification;
1285                 notification_x *tmp = NULL;
1286                 while(notification != NULL) {
1287                         tmp = notification->next;
1288                         __ps_free_notification(notification);
1289                         notification = tmp;
1290                 }
1291         }
1292         /*Free DataShare*/
1293         if (uiapplication->datashare) {
1294                 datashare_x *datashare = uiapplication->datashare;
1295                 datashare_x *tmp = NULL;
1296                 while(datashare != NULL) {
1297                         tmp = datashare->next;
1298                         __ps_free_datashare(datashare);
1299                         datashare = tmp;
1300                 }
1301         }
1302         /*Free AppSvc*/
1303         if (uiapplication->appsvc) {
1304                 appsvc_x *appsvc = uiapplication->appsvc;
1305                 appsvc_x *tmp = NULL;
1306                 while(appsvc != NULL) {
1307                         tmp = appsvc->next;
1308                         __ps_free_appsvc(appsvc);
1309                         appsvc = tmp;
1310                 }
1311         }
1312         /*Free Category*/
1313         if (uiapplication->category) {
1314                 category_x *category = uiapplication->category;
1315                 category_x *tmp = NULL;
1316                 while(category != NULL) {
1317                         tmp = category->next;
1318                         __ps_free_category(category);
1319                         category = tmp;
1320                 }
1321         }
1322         /*Free Metadata*/
1323         if (uiapplication->metadata) {
1324                 metadata_x *metadata = uiapplication->metadata;
1325                 metadata_x *tmp = NULL;
1326                 while(metadata != NULL) {
1327                         tmp = metadata->next;
1328                         __ps_free_metadata(metadata);
1329                         metadata = tmp;
1330                 }
1331         }
1332         /*Free permission*/
1333         if (uiapplication->permission) {
1334                 permission_x *permission = uiapplication->permission;
1335                 permission_x *tmp = NULL;
1336                 while(permission != NULL) {
1337                         tmp = permission->next;
1338                         __ps_free_permission(permission);
1339                         permission = tmp;
1340                 }
1341         }
1342         /* _PRODUCT_LAUNCHING_ENHANCED_ START */
1343         if (uiapplication->indicatordisplay) {
1344                 free((void *)uiapplication->indicatordisplay);
1345                 uiapplication->indicatordisplay = NULL;
1346         }
1347         if (uiapplication->portraitimg) {
1348                 free((void *)uiapplication->portraitimg);
1349                 uiapplication->portraitimg = NULL;
1350         }
1351         if (uiapplication->landscapeimg) {
1352                 free((void *)uiapplication->landscapeimg);
1353                 uiapplication->landscapeimg = NULL;
1354         }
1355         /* _PRODUCT_LAUNCHING_ENHANCED_ END */
1356         if (uiapplication->guestmode_visibility) {
1357                 free((void *)uiapplication->guestmode_visibility);
1358                 uiapplication->guestmode_visibility = NULL;
1359         }
1360         free((void*)uiapplication);
1361         uiapplication = NULL;
1362 }
1363
1364 static void __ps_free_serviceapplication(serviceapplication_x *serviceapplication)
1365 {
1366         if (serviceapplication == NULL)
1367                 return;
1368         if (serviceapplication->exec) {
1369                 free((void *)serviceapplication->exec);
1370                 serviceapplication->exec = NULL;
1371         }
1372         if (serviceapplication->appid) {
1373                 free((void *)serviceapplication->appid);
1374                 serviceapplication->appid = NULL;
1375         }
1376         if (serviceapplication->onboot) {
1377                 free((void *)serviceapplication->onboot);
1378                 serviceapplication->onboot = NULL;
1379         }
1380         if (serviceapplication->autorestart) {
1381                 free((void *)serviceapplication->autorestart);
1382                 serviceapplication->autorestart = NULL;
1383         }
1384         if (serviceapplication->type) {
1385                 free((void *)serviceapplication->type);
1386                 serviceapplication->type = NULL;
1387         }
1388         if (serviceapplication->enabled) {
1389                 free((void *)serviceapplication->enabled);
1390                 serviceapplication->enabled = NULL;
1391         }
1392         if (serviceapplication->package) {
1393                 free((void *)serviceapplication->package);
1394                 serviceapplication->package = NULL;
1395         }
1396         /*Free Label*/
1397         if (serviceapplication->label) {
1398                 label_x *label = serviceapplication->label;
1399                 label_x *tmp = NULL;
1400                 while(label != NULL) {
1401                         tmp = label->next;
1402                         __ps_free_label(label);
1403                         label = tmp;
1404                 }
1405         }
1406         /*Free Icon*/
1407         if (serviceapplication->icon) {
1408                 icon_x *icon = serviceapplication->icon;
1409                 icon_x *tmp = NULL;
1410                 while(icon != NULL) {
1411                         tmp = icon->next;
1412                         __ps_free_icon(icon);
1413                         icon = tmp;
1414                 }
1415         }
1416         /*Free AppControl*/
1417         if (serviceapplication->appcontrol) {
1418                 appcontrol_x *appcontrol = serviceapplication->appcontrol;
1419                 appcontrol_x *tmp = NULL;
1420                 while(appcontrol != NULL) {
1421                         tmp = appcontrol->next;
1422                         __ps_free_appcontrol(appcontrol);
1423                         appcontrol = tmp;
1424                 }
1425         }
1426         /*Free DataControl*/
1427         if (serviceapplication->datacontrol) {
1428                 datacontrol_x *datacontrol = serviceapplication->datacontrol;
1429                 datacontrol_x *tmp = NULL;
1430                 while(datacontrol != NULL) {
1431                         tmp = datacontrol->next;
1432                         __ps_free_datacontrol(datacontrol);
1433                         datacontrol = tmp;
1434                 }
1435         }
1436         /*Free LaunchConditions*/
1437         if (serviceapplication->launchconditions) {
1438                 launchconditions_x *launchconditions = serviceapplication->launchconditions;
1439                 launchconditions_x *tmp = NULL;
1440                 while(launchconditions != NULL) {
1441                         tmp = launchconditions->next;
1442                         __ps_free_launchconditions(launchconditions);
1443                         launchconditions = tmp;
1444                 }
1445         }
1446         /*Free Notification*/
1447         if (serviceapplication->notification) {
1448                 notification_x *notification = serviceapplication->notification;
1449                 notification_x *tmp = NULL;
1450                 while(notification != NULL) {
1451                         tmp = notification->next;
1452                         __ps_free_notification(notification);
1453                         notification = tmp;
1454                 }
1455         }
1456         /*Free DataShare*/
1457         if (serviceapplication->datashare) {
1458                 datashare_x *datashare = serviceapplication->datashare;
1459                 datashare_x *tmp = NULL;
1460                 while(datashare != NULL) {
1461                         tmp = datashare->next;
1462                         __ps_free_datashare(datashare);
1463                         datashare = tmp;
1464                 }
1465         }
1466         /*Free AppSvc*/
1467         if (serviceapplication->appsvc) {
1468                 appsvc_x *appsvc = serviceapplication->appsvc;
1469                 appsvc_x *tmp = NULL;
1470                 while(appsvc != NULL) {
1471                         tmp = appsvc->next;
1472                         __ps_free_appsvc(appsvc);
1473                         appsvc = tmp;
1474                 }
1475         }
1476         /*Free Category*/
1477         if (serviceapplication->category) {
1478                 category_x *category = serviceapplication->category;
1479                 category_x *tmp = NULL;
1480                 while(category != NULL) {
1481                         tmp = category->next;
1482                         __ps_free_category(category);
1483                         category = tmp;
1484                 }
1485         }
1486         /*Free Metadata*/
1487         if (serviceapplication->metadata) {
1488                 metadata_x *metadata = serviceapplication->metadata;
1489                 metadata_x *tmp = NULL;
1490                 while(metadata != NULL) {
1491                         tmp = metadata->next;
1492                         __ps_free_metadata(metadata);
1493                         metadata = tmp;
1494                 }
1495         }
1496         /*Free permission*/
1497         if (serviceapplication->permission) {
1498                 permission_x *permission = serviceapplication->permission;
1499                 permission_x *tmp = NULL;
1500                 while(permission != NULL) {
1501                         tmp = permission->next;
1502                         __ps_free_permission(permission);
1503                         permission = tmp;
1504                 }
1505         }
1506         free((void*)serviceapplication);
1507         serviceapplication = NULL;
1508 }
1509
1510 static void __ps_free_font(font_x *font)
1511 {
1512         if (font == NULL)
1513                 return;
1514         if (font->name) {
1515                 free((void *)font->name);
1516                 font->name = NULL;
1517         }
1518         if (font->text) {
1519                 free((void *)font->text);
1520                 font->text = NULL;
1521         }
1522         free((void*)font);
1523         font = NULL;
1524 }
1525
1526 static void __ps_free_theme(theme_x *theme)
1527 {
1528         if (theme == NULL)
1529                 return;
1530         if (theme->name) {
1531                 free((void *)theme->name);
1532                 theme->name = NULL;
1533         }
1534         if (theme->text) {
1535                 free((void *)theme->text);
1536                 theme->text = NULL;
1537         }
1538         free((void*)theme);
1539         theme = NULL;
1540 }
1541
1542 static void __ps_free_daemon(daemon_x *daemon)
1543 {
1544         if (daemon == NULL)
1545                 return;
1546         if (daemon->name) {
1547                 free((void *)daemon->name);
1548                 daemon->name = NULL;
1549         }
1550         if (daemon->text) {
1551                 free((void *)daemon->text);
1552                 daemon->text = NULL;
1553         }
1554         free((void*)daemon);
1555         daemon = NULL;
1556 }
1557
1558 static void __ps_free_ime(ime_x *ime)
1559 {
1560         if (ime == NULL)
1561                 return;
1562         if (ime->name) {
1563                 free((void *)ime->name);
1564                 ime->name = NULL;
1565         }
1566         if (ime->text) {
1567                 free((void *)ime->text);
1568                 ime->text = NULL;
1569         }
1570         free((void*)ime);
1571         ime = NULL;
1572 }
1573
1574
1575 static int __ps_process_allowed(xmlTextReaderPtr reader, allowed_x *allowed)
1576 {
1577         xmlTextReaderRead(reader);
1578         if (xmlTextReaderValue(reader))
1579                 allowed->text = ASCII(xmlTextReaderValue(reader));
1580         return 0;
1581 }
1582
1583 static int __ps_process_operation(xmlTextReaderPtr reader, operation_x *operation)
1584 {
1585         if (xmlTextReaderGetAttribute(reader, XMLCHAR("name")))
1586                 operation->name = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("name")));
1587 /* Text does not exist. Only attribute exists
1588         xmlTextReaderRead(reader);
1589         if (xmlTextReaderValue(reader))
1590                 operation->text = ASCII(xmlTextReaderValue(reader));
1591 */
1592         return 0;
1593 }
1594
1595 static int __ps_process_uri(xmlTextReaderPtr reader, uri_x *uri)
1596 {
1597         if (xmlTextReaderGetAttribute(reader, XMLCHAR("name")))
1598                 uri->name = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("name")));
1599 /* Text does not exist. Only attribute exists
1600         xmlTextReaderRead(reader);
1601         if (xmlTextReaderValue(reader))
1602                 uri->text = ASCII(xmlTextReaderValue(reader));
1603 */
1604         return 0;
1605 }
1606
1607 static int __ps_process_mime(xmlTextReaderPtr reader, mime_x *mime)
1608 {
1609         if (xmlTextReaderGetAttribute(reader, XMLCHAR("name")))
1610                 mime->name = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("name")));
1611 /* Text does not exist. Only attribute exists
1612         xmlTextReaderRead(reader);
1613         if (xmlTextReaderValue(reader))
1614                 mime->text = ASCII(xmlTextReaderValue(reader));
1615 */
1616         return 0;
1617 }
1618
1619 static int __ps_process_subapp(xmlTextReaderPtr reader, subapp_x *subapp)
1620 {
1621         if (xmlTextReaderGetAttribute(reader, XMLCHAR("name")))
1622                 subapp->name = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("name")));
1623 /* Text does not exist. Only attribute exists
1624         xmlTextReaderRead(reader);
1625         if (xmlTextReaderValue(reader))
1626                 mime->text = ASCII(xmlTextReaderValue(reader));
1627 */
1628         return 0;
1629 }
1630
1631 static int __ps_process_condition(xmlTextReaderPtr reader, condition_x *condition)
1632 {
1633         if (xmlTextReaderGetAttribute(reader, XMLCHAR("name")))
1634                 condition->name = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("name")));
1635         xmlTextReaderRead(reader);
1636         if (xmlTextReaderValue(reader))
1637                 condition->text = ASCII(xmlTextReaderValue(reader));
1638         return 0;
1639 }
1640
1641 static int __ps_process_notification(xmlTextReaderPtr reader, notification_x *notification)
1642 {
1643         if (xmlTextReaderGetAttribute(reader, XMLCHAR("name")))
1644                 notification->name = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("name")));
1645         xmlTextReaderRead(reader);
1646         if (xmlTextReaderValue(reader))
1647                 notification->text = ASCII(xmlTextReaderValue(reader));
1648         return 0;
1649 }
1650
1651 static int __ps_process_category(xmlTextReaderPtr reader, category_x *category)
1652 {
1653         if (xmlTextReaderGetAttribute(reader, XMLCHAR("name")))
1654                 category->name = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("name")));
1655         return 0;
1656 }
1657
1658 static int __ps_process_privilege(xmlTextReaderPtr reader, privilege_x *privilege)
1659 {
1660         xmlTextReaderRead(reader);
1661         if (xmlTextReaderValue(reader)) {
1662                 privilege->text = ASCII(xmlTextReaderValue(reader));
1663         }
1664         return 0;
1665 }
1666
1667 static int __ps_process_metadata(xmlTextReaderPtr reader, metadata_x *metadata)
1668 {
1669         if (xmlTextReaderGetAttribute(reader, XMLCHAR("key")))
1670                 metadata->key = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("key")));
1671         if (xmlTextReaderGetAttribute(reader, XMLCHAR("value")))
1672                 metadata->value = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("value")));
1673         return 0;
1674 }
1675
1676 static int __ps_process_permission(xmlTextReaderPtr reader, permission_x *permission)
1677 {
1678         if (xmlTextReaderGetAttribute(reader, XMLCHAR("type")))
1679                 permission->type = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("type")));
1680
1681         xmlTextReaderRead(reader);
1682         if (xmlTextReaderValue(reader))
1683                 permission->value = ASCII(xmlTextReaderValue(reader));
1684         return 0;
1685 }
1686
1687 static int __ps_process_compatibility(xmlTextReaderPtr reader, compatibility_x *compatibility)
1688 {
1689         if (xmlTextReaderGetAttribute(reader, XMLCHAR("name")))
1690                 compatibility->name = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("name")));
1691         xmlTextReaderRead(reader);
1692         if (xmlTextReaderValue(reader))
1693                 compatibility->text = ASCII(xmlTextReaderValue(reader));
1694         return 0;
1695 }
1696
1697 static int __ps_process_resolution(xmlTextReaderPtr reader, resolution_x *resolution)
1698 {
1699         if (xmlTextReaderGetAttribute(reader, XMLCHAR("mime-type")))
1700                 resolution->mimetype = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("mime-type")));
1701         if (xmlTextReaderGetAttribute(reader, XMLCHAR("uri-scheme")))
1702                 resolution->urischeme = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("uri-scheme")));
1703         return 0;
1704 }
1705
1706 static int __ps_process_request(xmlTextReaderPtr reader, request_x *request)
1707 {
1708         xmlTextReaderRead(reader);
1709         if (xmlTextReaderValue(reader))
1710                 request->text = ASCII(xmlTextReaderValue(reader));
1711         return 0;
1712 }
1713
1714 static int __ps_process_define(xmlTextReaderPtr reader, define_x *define)
1715 {
1716         const xmlChar *node;
1717         int ret = -1;
1718         int depth = -1;
1719         allowed_x *tmp1 = NULL;
1720         request_x *tmp2 = NULL;
1721
1722         if (xmlTextReaderGetAttribute(reader, XMLCHAR("path")))
1723                 define->path = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("path")));
1724
1725         depth = xmlTextReaderDepth(reader);
1726         while ((ret = __next_child_element(reader, depth))) {
1727                 node = xmlTextReaderConstName(reader);
1728                 if (!node) {
1729                         DBG("xmlTextReaderConstName value is NULL\n");
1730                         return -1;
1731                 }
1732
1733                 if (!strcmp(ASCII(node), "allowed")) {
1734                         allowed_x *allowed= malloc(sizeof(allowed_x));
1735                         if (allowed == NULL) {
1736                                 DBG("Malloc Failed\n");
1737                                 return -1;
1738                         }
1739                         memset(allowed, '\0', sizeof(allowed_x));
1740                         LISTADD(define->allowed, allowed);
1741                         ret = __ps_process_allowed(reader, allowed);
1742                 } else if (!strcmp(ASCII(node), "request")) {
1743                         request_x *request = malloc(sizeof(request_x));
1744                         if (request == NULL) {
1745                                 DBG("Malloc Failed\n");
1746                                 return -1;
1747                         }
1748                         memset(request, '\0', sizeof(request_x));
1749                         LISTADD(define->request, request);
1750                         ret = __ps_process_request(reader, request);
1751                 } else
1752                         return -1;
1753                 if (ret < 0) {
1754                         DBG("Processing define failed\n");
1755                         return ret;
1756                 }
1757         }
1758         if (define->allowed) {
1759                 LISTHEAD(define->allowed, tmp1);
1760                 define->allowed = tmp1;
1761         }
1762         if (define->request) {
1763                 LISTHEAD(define->request, tmp2);
1764                 define->request = tmp2;
1765         }
1766         return ret;
1767 }
1768
1769 static int __ps_process_appcontrol(xmlTextReaderPtr reader, appcontrol_x *appcontrol)
1770 {
1771         const xmlChar *node;
1772         int ret = -1;
1773         int depth = -1;
1774         operation_x *tmp1 = NULL;
1775         uri_x *tmp2 = NULL;
1776         mime_x *tmp3 = NULL;
1777         subapp_x *tmp4 = NULL;
1778
1779         depth = xmlTextReaderDepth(reader);
1780         while ((ret = __next_child_element(reader, depth))) {
1781                 node = xmlTextReaderConstName(reader);
1782                 if (!node) {
1783                         DBG("xmlTextReaderConstName value is NULL\n");
1784                         return -1;
1785                 }
1786
1787                 if (!strcmp(ASCII(node), "operation")) {
1788                         operation_x *operation = malloc(sizeof(operation_x));
1789                         if (operation == NULL) {
1790                                 DBG("Malloc Failed\n");
1791                                 return -1;
1792                         }
1793                         memset(operation, '\0', sizeof(operation_x));
1794                         LISTADD(appcontrol->operation, operation);
1795                         ret = __ps_process_operation(reader, operation);
1796                         DBG("operation processing\n");
1797                 } else if (!strcmp(ASCII(node), "uri")) {
1798                         uri_x *uri= malloc(sizeof(uri_x));
1799                         if (uri == NULL) {
1800                                 DBG("Malloc Failed\n");
1801                                 return -1;
1802                         }
1803                         memset(uri, '\0', sizeof(uri_x));
1804                         LISTADD(appcontrol->uri, uri);
1805                         ret = __ps_process_uri(reader, uri);
1806                         DBG("uri processing\n");
1807                 } else if (!strcmp(ASCII(node), "mime")) {
1808                         mime_x *mime = malloc(sizeof(mime_x));
1809                         if (mime == NULL) {
1810                                 DBG("Malloc Failed\n");
1811                                 return -1;
1812                         }
1813                         memset(mime, '\0', sizeof(mime_x));
1814                         LISTADD(appcontrol->mime, mime);
1815                         ret = __ps_process_mime(reader, mime);
1816                         DBG("mime processing\n");
1817                 } else if (!strcmp(ASCII(node), "subapp")) {
1818                         subapp_x *subapp = malloc(sizeof(subapp_x));
1819                         if (subapp == NULL) {
1820                                 DBG("Malloc Failed\n");
1821                                 return -1;
1822                         }
1823                         memset(subapp, '\0', sizeof(subapp_x));
1824                         LISTADD(appcontrol->subapp, subapp);
1825                         ret = __ps_process_subapp(reader, subapp);
1826                         DBG("subapp processing\n");
1827                 } else
1828                         return -1;
1829                 if (ret < 0) {
1830                         DBG("Processing appcontrol failed\n");
1831                         return ret;
1832                 }
1833         }
1834         if (appcontrol->operation) {
1835                 LISTHEAD(appcontrol->operation, tmp1);
1836                 appcontrol->operation = tmp1;
1837         }
1838         if (appcontrol->uri) {
1839                 LISTHEAD(appcontrol->uri, tmp2);
1840                 appcontrol->uri = tmp2;
1841         }
1842         if (appcontrol->mime) {
1843                 LISTHEAD(appcontrol->mime, tmp3);
1844                 appcontrol->mime = tmp3;
1845         }
1846         if (appcontrol->subapp) {
1847                 LISTHEAD(appcontrol->subapp, tmp4);
1848                 appcontrol->subapp = tmp4;
1849         }
1850
1851         xmlTextReaderRead(reader);
1852         if (xmlTextReaderValue(reader))
1853                 appcontrol->text = ASCII(xmlTextReaderValue(reader));
1854
1855         return ret;
1856 }
1857
1858 static int __ps_process_appsvc(xmlTextReaderPtr reader, appsvc_x *appsvc)
1859 {
1860         const xmlChar *node;
1861         int ret = -1;
1862         int depth = -1;
1863         operation_x *tmp1 = NULL;
1864         uri_x *tmp2 = NULL;
1865         mime_x *tmp3 = NULL;
1866         subapp_x *tmp4 = NULL;
1867
1868         depth = xmlTextReaderDepth(reader);
1869         while ((ret = __next_child_element(reader, depth))) {
1870                 node = xmlTextReaderConstName(reader);
1871                 if (!node) {
1872                         DBG("xmlTextReaderConstName value is NULL\n");
1873                         return -1;
1874                 }
1875
1876                 if (!strcmp(ASCII(node), "operation")) {
1877                         operation_x *operation = malloc(sizeof(operation_x));
1878                         if (operation == NULL) {
1879                                 DBG("Malloc Failed\n");
1880                                 return -1;
1881                         }
1882                         memset(operation, '\0', sizeof(operation_x));
1883                         LISTADD(appsvc->operation, operation);
1884                         ret = __ps_process_operation(reader, operation);
1885                         DBG("operation processing\n");
1886                 } else if (!strcmp(ASCII(node), "uri")) {
1887                         uri_x *uri= malloc(sizeof(uri_x));
1888                         if (uri == NULL) {
1889                                 DBG("Malloc Failed\n");
1890                                 return -1;
1891                         }
1892                         memset(uri, '\0', sizeof(uri_x));
1893                         LISTADD(appsvc->uri, uri);
1894                         ret = __ps_process_uri(reader, uri);
1895                         DBG("uri processing\n");
1896                 } else if (!strcmp(ASCII(node), "mime")) {
1897                         mime_x *mime = malloc(sizeof(mime_x));
1898                         if (mime == NULL) {
1899                                 DBG("Malloc Failed\n");
1900                                 return -1;
1901                         }
1902                         memset(mime, '\0', sizeof(mime_x));
1903                         LISTADD(appsvc->mime, mime);
1904                         ret = __ps_process_mime(reader, mime);
1905                         DBG("mime processing\n");
1906                 } else if (!strcmp(ASCII(node), "subapp")) {
1907                         subapp_x *subapp = malloc(sizeof(subapp_x));
1908                         if (subapp == NULL) {
1909                                 DBG("Malloc Failed\n");
1910                                 return -1;
1911                         }
1912                         memset(subapp, '\0', sizeof(subapp_x));
1913                         LISTADD(appsvc->subapp, subapp);
1914                         ret = __ps_process_subapp(reader, subapp);
1915                         DBG("subapp processing\n");
1916                 } else
1917                         return -1;
1918                 if (ret < 0) {
1919                         DBG("Processing appsvc failed\n");
1920                         return ret;
1921                 }
1922         }
1923         if (appsvc->operation) {
1924                 LISTHEAD(appsvc->operation, tmp1);
1925                 appsvc->operation = tmp1;
1926         }
1927         if (appsvc->uri) {
1928                 LISTHEAD(appsvc->uri, tmp2);
1929                 appsvc->uri = tmp2;
1930         }
1931         if (appsvc->mime) {
1932                 LISTHEAD(appsvc->mime, tmp3);
1933                 appsvc->mime = tmp3;
1934         }
1935         if (appsvc->subapp) {
1936                 LISTHEAD(appsvc->subapp, tmp4);
1937                 appsvc->subapp = tmp4;
1938         }
1939
1940         xmlTextReaderRead(reader);
1941         if (xmlTextReaderValue(reader))
1942                 appsvc->text = ASCII(xmlTextReaderValue(reader));
1943
1944         return ret;
1945 }
1946
1947
1948 static int __ps_process_privileges(xmlTextReaderPtr reader, privileges_x *privileges)
1949 {
1950         const xmlChar *node;
1951         int ret = -1;
1952         int depth = -1;
1953         privilege_x *tmp1 = NULL;
1954
1955         depth = xmlTextReaderDepth(reader);
1956         while ((ret = __next_child_element(reader, depth))) {
1957                 node = xmlTextReaderConstName(reader);
1958                 if (!node) {
1959                         DBG("xmlTextReaderConstName value is NULL\n");
1960                         return -1;
1961                 }
1962
1963                 if (strcmp(ASCII(node), "privilege") == 0) {
1964                         privilege_x *privilege = malloc(sizeof(privilege_x));
1965                         if (privilege == NULL) {
1966                                 DBG("Malloc Failed\n");
1967                                 return -1;
1968                         }
1969                         memset(privilege, '\0', sizeof(privilege_x));
1970                         LISTADD(privileges->privilege, privilege);
1971                         ret = __ps_process_privilege(reader, privilege);
1972                 } else
1973                         return -1;
1974                 if (ret < 0) {
1975                         DBG("Processing privileges failed\n");
1976                         return ret;
1977                 }
1978         }
1979         if (privileges->privilege) {
1980                 LISTHEAD(privileges->privilege, tmp1);
1981                 privileges->privilege = tmp1;
1982         }
1983         return ret;
1984 }
1985
1986 static int __ps_process_launchconditions(xmlTextReaderPtr reader, launchconditions_x *launchconditions)
1987 {
1988         const xmlChar *node;
1989         int ret = -1;
1990         int depth = -1;
1991         condition_x *tmp1 = NULL;
1992
1993         depth = xmlTextReaderDepth(reader);
1994         while ((ret = __next_child_element(reader, depth))) {
1995                 node = xmlTextReaderConstName(reader);
1996                 if (!node) {
1997                         DBG("xmlTextReaderConstName value is NULL\n");
1998                         return -1;
1999                 }
2000
2001                 if (strcmp(ASCII(node), "condition") == 0) {
2002                         condition_x *condition = malloc(sizeof(condition_x));
2003                         if (condition == NULL) {
2004                                 DBG("Malloc Failed\n");
2005                                 return -1;
2006                         }
2007                         memset(condition, '\0', sizeof(condition_x));
2008                         LISTADD(launchconditions->condition, condition);
2009                         ret = __ps_process_condition(reader, condition);
2010                 } else
2011                         return -1;
2012                 if (ret < 0) {
2013                         DBG("Processing launchconditions failed\n");
2014                         return ret;
2015                 }
2016         }
2017         if (launchconditions->condition) {
2018                 LISTHEAD(launchconditions->condition, tmp1);
2019                 launchconditions->condition = tmp1;
2020         }
2021
2022         xmlTextReaderRead(reader);
2023         if (xmlTextReaderValue(reader))
2024                 launchconditions->text = ASCII(xmlTextReaderValue(reader));
2025
2026         return ret;
2027 }
2028
2029 static int __ps_process_datashare(xmlTextReaderPtr reader, datashare_x *datashare)
2030 {
2031         const xmlChar *node;
2032         int ret = -1;
2033         int depth = -1;
2034         define_x *tmp1 = NULL;
2035         request_x *tmp2 = NULL;
2036         depth = xmlTextReaderDepth(reader);
2037         while ((ret = __next_child_element(reader, depth))) {
2038                 node = xmlTextReaderConstName(reader);
2039                 if (!node) {
2040                         DBG("xmlTextReaderConstName value is NULL\n");
2041                         return -1;
2042                 }
2043
2044                 if (!strcmp(ASCII(node), "define")) {
2045                         define_x *define= malloc(sizeof(define_x));
2046                         if (define == NULL) {
2047                                 DBG("Malloc Failed\n");
2048                                 return -1;
2049                         }
2050                         memset(define, '\0', sizeof(define_x));
2051                         LISTADD(datashare->define, define);
2052                         ret = __ps_process_define(reader, define);
2053                 } else if (!strcmp(ASCII(node), "request")) {
2054                         request_x *request= malloc(sizeof(request_x));
2055                         if (request == NULL) {
2056                                 DBG("Malloc Failed\n");
2057                                 return -1;
2058                         }
2059                         memset(request, '\0', sizeof(request_x));
2060                         LISTADD(datashare->request, request);
2061                         ret = __ps_process_request(reader, request);
2062                 } else
2063                         return -1;
2064                 if (ret < 0) {
2065                         DBG("Processing data-share failed\n");
2066                         return ret;
2067                 }
2068         }
2069         if (datashare->define) {
2070                 LISTHEAD(datashare->define, tmp1);
2071                 datashare->define = tmp1;
2072         }
2073         if (datashare->request) {
2074                 LISTHEAD(datashare->request, tmp2);
2075                 datashare->request = tmp2;
2076         }
2077         return ret;
2078 }
2079
2080 static char*
2081 __get_icon_with_path(const char* icon)
2082 {
2083         if (!icon)
2084                 return NULL;
2085
2086         if (index(icon, '/') == NULL) {
2087                 char* theme = NULL;
2088                 char* icon_with_path = NULL;
2089                 int len;
2090
2091                 if (!package)
2092                         return NULL;
2093
2094                 theme = vconf_get_str("db/setting/theme");
2095                 if (!theme) {
2096                         theme = strdup("default");
2097                         if(!theme) {
2098                                 return NULL;
2099                         }
2100                 }
2101
2102                 len = (0x01 << 7) + strlen(icon) + strlen(package) + strlen(theme);
2103                 icon_with_path = malloc(len);
2104                 if(icon_with_path == NULL) {
2105                         DBG("(icon_with_path == NULL) return\n");
2106                         free(theme);
2107                         return NULL;
2108                 }
2109
2110                 memset(icon_with_path, 0, len);
2111
2112                 snprintf(icon_with_path, len, "/opt/share/icons/%s/small/%s", theme, icon);
2113                 do {
2114                         if (access(icon_with_path, R_OK) == 0) break;
2115                         snprintf(icon_with_path, len, "/usr/share/icons/%s/small/%s", theme, icon);
2116                         if (access(icon_with_path, R_OK) == 0) break;
2117                         DBG("cannot find icon %s", icon_with_path);
2118                         snprintf(icon_with_path, len,"/opt/share/icons/default/small/%s", icon);
2119                         if (access(icon_with_path, R_OK) == 0) break;
2120                         snprintf(icon_with_path, len, "/usr/share/icons/default/small/%s", icon);
2121                         if (access(icon_with_path, R_OK) == 0) break;
2122
2123                         /* icon path is going to be moved intto the app directory */
2124                         DBGE("icon file must be moved to %s", icon_with_path);
2125                         snprintf(icon_with_path, len, "/opt/apps/%s/res/icons/%s/small/%s", package, theme, icon);
2126                         if (access(icon_with_path, R_OK) == 0) break;
2127                         snprintf(icon_with_path, len, "/usr/apps/%s/res/icons/%s/small/%s", package, theme, icon);
2128                         if (access(icon_with_path, R_OK) == 0) break;
2129                         DBG("cannot find icon %s", icon_with_path);
2130                         snprintf(icon_with_path, len, "/opt/apps/%s/res/icons/default/small/%s", package, icon);
2131                         if (access(icon_with_path, R_OK) == 0) break;
2132                         snprintf(icon_with_path, len, "/usr/apps/%s/res/icons/default/small/%s", package, icon);
2133                         if (access(icon_with_path, R_OK) == 0) break;
2134                         snprintf(icon_with_path, len, "/usr/ug/res/images/%s/%s", package, icon);
2135                         if (access(icon_with_path, R_OK) == 0) break;
2136                 } while (0);
2137
2138                 free(theme);
2139
2140                 DBG("Icon path : %s ---> %s", icon, icon_with_path);
2141
2142                 return icon_with_path;
2143         } else {
2144                 char* confirmed_icon = NULL;
2145
2146                 confirmed_icon = strdup(icon);
2147                 if (!confirmed_icon)
2148                         return NULL;
2149                 return confirmed_icon;
2150         }
2151 }
2152
2153 static void __ps_process_tag(manifest_x * mfx, char *const tagv[])
2154 {
2155         int i = 0;
2156         char delims[] = "=";
2157         char *ret_result = NULL;
2158         char *tag = NULL;
2159
2160         if (tagv == NULL)
2161                 return;
2162
2163         for (tag = strdup(tagv[0]); tag != NULL; ) {
2164                 ret_result = strtok(tag, delims);
2165
2166                 /*check tag :  preload */
2167                 if (strcmp(ret_result, "preload") == 0) {
2168                         ret_result = strtok(NULL, delims);
2169                         if (strcmp(ret_result, "true") == 0) {
2170                                 free((void *)mfx->preload);
2171                                 mfx->preload = strdup("true");
2172                         } else if (strcmp(ret_result, "false") == 0) {
2173                                 free((void *)mfx->preload);
2174                                 mfx->preload = strdup("false");
2175                         }
2176                 /*check tag :  removable*/
2177                 } else if (strcmp(ret_result, "removable") == 0) {
2178                         ret_result = strtok(NULL, delims);
2179                         if (strcmp(ret_result, "true") == 0){
2180                                 free((void *)mfx->removable);
2181                                 mfx->removable = strdup("true");
2182                         } else if (strcmp(ret_result, "false") == 0) {
2183                                 free((void *)mfx->removable);
2184                                 mfx->removable = strdup("false");
2185                         }
2186                 /*check tag :  not matched*/
2187                 } else
2188                         DBG("tag process [%s]is not defined\n", ret_result);
2189
2190                 free(tag);
2191
2192                 /*check next value*/
2193                 if (tagv[++i] != NULL)
2194                         tag = strdup(tagv[i]);
2195                 else {
2196                         DBG("tag process success...\n");
2197                         return;
2198                 }
2199         }
2200 }
2201
2202 static int __ps_process_icon(xmlTextReaderPtr reader, icon_x *icon)
2203 {
2204         if (xmlTextReaderGetAttribute(reader, XMLCHAR("name")))
2205                 icon->name = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("name")));
2206         if (xmlTextReaderConstXmlLang(reader)) {
2207                 icon->lang = strdup(ASCII(xmlTextReaderConstXmlLang(reader)));
2208                 if (icon->lang == NULL)
2209                         icon->lang = strdup(DEFAULT_LOCALE);
2210         } else {
2211                 icon->lang = strdup(DEFAULT_LOCALE);
2212         }
2213         if (xmlTextReaderGetAttribute(reader, XMLCHAR("section")))
2214                 icon->section = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("section")));
2215         if (xmlTextReaderGetAttribute(reader, XMLCHAR("size")))
2216                 icon->size = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("size")));
2217         if (xmlTextReaderGetAttribute(reader, XMLCHAR("resolution")))
2218                 icon->resolution = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("resolution")));
2219         xmlTextReaderRead(reader);
2220         if (xmlTextReaderValue(reader)) {
2221                 const char *text  = ASCII(xmlTextReaderValue(reader));
2222                 if(text) {
2223                         icon->text = (const char *)__get_icon_with_path(text);
2224                         free((void *)text);
2225                 }
2226         }
2227
2228         return 0;
2229 }
2230
2231 static int __ps_process_image(xmlTextReaderPtr reader, image_x *image)
2232 {
2233         if (xmlTextReaderGetAttribute(reader, XMLCHAR("name")))
2234                 image->name = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("name")));
2235         if (xmlTextReaderConstXmlLang(reader)) {
2236                 image->lang = strdup(ASCII(xmlTextReaderConstXmlLang(reader)));
2237                 if (image->lang == NULL)
2238                         image->lang = strdup(DEFAULT_LOCALE);
2239         } else {
2240                 image->lang = strdup(DEFAULT_LOCALE);
2241         }
2242         if (xmlTextReaderGetAttribute(reader, XMLCHAR("section")))
2243                 image->section = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("section")));
2244         xmlTextReaderRead(reader);
2245         if (xmlTextReaderValue(reader))
2246                 image->text = ASCII(xmlTextReaderValue(reader));
2247
2248         return 0;
2249 }
2250
2251 static int __ps_process_label(xmlTextReaderPtr reader, label_x *label)
2252 {
2253         if (xmlTextReaderGetAttribute(reader, XMLCHAR("name")))
2254                 label->name = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("name")));
2255         if (xmlTextReaderConstXmlLang(reader)) {
2256                 label->lang = strdup(ASCII(xmlTextReaderConstXmlLang(reader)));
2257                 if (label->lang == NULL)
2258                         label->lang = strdup(DEFAULT_LOCALE);
2259         } else {
2260                 label->lang = strdup(DEFAULT_LOCALE);
2261         }
2262         xmlTextReaderRead(reader);
2263         if (xmlTextReaderValue(reader))
2264                 label->text = ASCII(xmlTextReaderValue(reader));
2265
2266 /*      DBG("lable name %s\n", label->name);
2267         DBG("lable lang %s\n", label->lang);
2268         DBG("lable text %s\n", label->text);
2269 */
2270         return 0;
2271
2272 }
2273
2274 static int __ps_process_author(xmlTextReaderPtr reader, author_x *author)
2275 {
2276         if (xmlTextReaderGetAttribute(reader, XMLCHAR("email")))
2277                 author->email = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("email")));
2278         if (xmlTextReaderGetAttribute(reader, XMLCHAR("href")))
2279                 author->href = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("href")));
2280         if (xmlTextReaderConstXmlLang(reader)) {
2281                 author->lang = strdup(ASCII(xmlTextReaderConstXmlLang(reader)));
2282                 if (author->lang == NULL)
2283                         author->lang = strdup(DEFAULT_LOCALE);
2284         } else {
2285                 author->lang = strdup(DEFAULT_LOCALE);
2286         }
2287         xmlTextReaderRead(reader);
2288         if (xmlTextReaderValue(reader))
2289                 author->text = ASCII(xmlTextReaderValue(reader));
2290         return 0;
2291 }
2292
2293 static int __ps_process_description(xmlTextReaderPtr reader, description_x *description)
2294 {
2295         if (xmlTextReaderConstXmlLang(reader)) {
2296                 description->lang = strdup(ASCII(xmlTextReaderConstXmlLang(reader)));
2297                 if (description->lang == NULL)
2298                         description->lang = strdup(DEFAULT_LOCALE);
2299         } else {
2300                 description->lang = strdup(DEFAULT_LOCALE);
2301         }
2302         xmlTextReaderRead(reader);
2303         if (xmlTextReaderValue(reader))
2304                 description->text = ASCII(xmlTextReaderValue(reader));
2305         return 0;
2306 }
2307
2308 static int __ps_process_license(xmlTextReaderPtr reader, license_x *license)
2309 {
2310         if (xmlTextReaderConstXmlLang(reader)) {
2311                 license->lang = strdup(ASCII(xmlTextReaderConstXmlLang(reader)));
2312                 if (license->lang == NULL)
2313                         license->lang = strdup(DEFAULT_LOCALE);
2314         } else {
2315                 license->lang = strdup(DEFAULT_LOCALE);
2316         }
2317         xmlTextReaderRead(reader);
2318         if (xmlTextReaderValue(reader))
2319                 license->text = ASCII(xmlTextReaderValue(reader));
2320         return 0;
2321 }
2322
2323 static int __ps_process_capability(xmlTextReaderPtr reader, capability_x *capability)
2324 {
2325         const xmlChar *node;
2326         int ret = -1;
2327         int depth = -1;
2328         resolution_x *tmp1 = NULL;
2329
2330         if (xmlTextReaderGetAttribute(reader, XMLCHAR("operation-id")))
2331                 capability->operationid = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("operation-id")));
2332
2333         depth = xmlTextReaderDepth(reader);
2334         while ((ret = __next_child_element(reader, depth))) {
2335                 node = xmlTextReaderConstName(reader);
2336                 if (!node) {
2337                         DBG("xmlTextReaderConstName value is NULL\n");
2338                         return -1;
2339                 }
2340
2341                 if (!strcmp(ASCII(node), "resolution")) {
2342                         resolution_x *resolution = malloc(sizeof(resolution_x));
2343                         if (resolution == NULL) {
2344                                 DBG("Malloc Failed\n");
2345                                 return -1;
2346                         }
2347                         memset(resolution, '\0', sizeof(resolution_x));
2348                         LISTADD(capability->resolution, resolution);
2349                         ret = __ps_process_resolution(reader, resolution);
2350                 } else
2351                         return -1;
2352                 if (ret < 0) {
2353                         DBG("Processing capability failed\n");
2354                         return ret;
2355                 }
2356         }
2357
2358         if (capability->resolution) {
2359                 LISTHEAD(capability->resolution, tmp1);
2360                 capability->resolution = tmp1;
2361         }
2362
2363         return ret;
2364 }
2365
2366 static int __ps_process_datacontrol(xmlTextReaderPtr reader, datacontrol_x *datacontrol)
2367 {
2368         const xmlChar *node;
2369         int ret = -1;
2370         int depth = -1;
2371         capability_x *tmp1 = NULL;
2372
2373         if (xmlTextReaderGetAttribute(reader, XMLCHAR("provider-id")))
2374                 datacontrol->providerid = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("provider-id")));
2375
2376         depth = xmlTextReaderDepth(reader);
2377         while ((ret = __next_child_element(reader, depth))) {
2378                 node = xmlTextReaderConstName(reader);
2379                 if (!node) {
2380                         DBG("xmlTextReaderConstName value is NULL\n");
2381                         return -1;
2382                 }
2383
2384                 if (!strcmp(ASCII(node), "capability")) {
2385                         capability_x *capability = malloc(sizeof(capability_x));
2386                         if (capability == NULL) {
2387                                 DBG("Malloc Failed\n");
2388                                 return -1;
2389                         }
2390                         memset(capability, '\0', sizeof(capability_x));
2391                         LISTADD(datacontrol->capability, capability);
2392                         ret = __ps_process_capability(reader, capability);
2393                 } else
2394                         return -1;
2395                 if (ret < 0) {
2396                         DBG("Processing datacontrol failed\n");
2397                         return ret;
2398                 }
2399         }
2400
2401         if (datacontrol->capability) {
2402                 LISTHEAD(datacontrol->capability, tmp1);
2403                 datacontrol->capability = tmp1;
2404         }
2405
2406         return ret;
2407 }
2408
2409 static int __ps_process_uiapplication(xmlTextReaderPtr reader, uiapplication_x *uiapplication)
2410 {
2411         const xmlChar *node;
2412         int ret = -1;
2413         int depth = -1;
2414         char *newappid = NULL;
2415         label_x *tmp1 = NULL;
2416         icon_x *tmp2 = NULL;
2417         appsvc_x *tmp3 = NULL;
2418         appcontrol_x *tmp4 = NULL;
2419         launchconditions_x *tmp5 = NULL;
2420         notification_x *tmp6 = NULL;
2421         datashare_x *tmp7 = NULL;
2422         category_x *tmp8 = NULL;
2423         metadata_x *tmp9 = NULL;
2424         image_x *tmp10 = NULL;
2425         permission_x *tmp11 = NULL;
2426
2427         if (xmlTextReaderGetAttribute(reader, XMLCHAR("appid"))) {
2428                 uiapplication->appid = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("appid")));
2429                 if (uiapplication->appid == NULL) {
2430                         DBG("appid cant be NULL\n");
2431                         return -1;
2432                 }
2433         } else {
2434                 DBG("appid is mandatory\n");
2435                 return -1;
2436         }
2437         /*check appid*/
2438         ret = __validate_appid(package, uiapplication->appid, &newappid);
2439         if (ret == -1) {
2440                 DBG("appid is not proper\n");
2441                 return -1;
2442         } else {
2443                 if (newappid) {
2444                         if (uiapplication->appid)
2445                                 free((void *)uiapplication->appid);
2446                         uiapplication->appid = newappid;
2447                 }
2448         }
2449         if (xmlTextReaderGetAttribute(reader, XMLCHAR("exec")))
2450                 uiapplication->exec = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("exec")));
2451         if (xmlTextReaderGetAttribute(reader, XMLCHAR("nodisplay"))) {
2452                 uiapplication->nodisplay = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("nodisplay")));
2453                 if (uiapplication->nodisplay == NULL)
2454                         uiapplication->nodisplay = strdup("false");
2455         } else {
2456                 uiapplication->nodisplay = strdup("false");
2457         }
2458         if (xmlTextReaderGetAttribute(reader, XMLCHAR("multiple"))) {
2459                 uiapplication->multiple = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("multiple")));
2460                 if (uiapplication->multiple == NULL)
2461                         uiapplication->multiple = strdup("false");
2462         } else {
2463                 uiapplication->multiple = strdup("false");
2464         }
2465         if (xmlTextReaderGetAttribute(reader, XMLCHAR("type")))
2466                 uiapplication->type = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("type")));
2467         if (xmlTextReaderGetAttribute(reader, XMLCHAR("categories")))
2468                 uiapplication->categories = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("categories")));
2469         if (xmlTextReaderGetAttribute(reader, XMLCHAR("extraid")))
2470                 uiapplication->extraid = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("extraid")));
2471         if (xmlTextReaderGetAttribute(reader, XMLCHAR("taskmanage"))) {
2472                 uiapplication->taskmanage = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("taskmanage")));
2473                 if (uiapplication->taskmanage == NULL)
2474                         uiapplication->taskmanage = strdup("true");
2475         } else {
2476                 uiapplication->taskmanage = strdup("true");
2477         }
2478         if (xmlTextReaderGetAttribute(reader, XMLCHAR("enabled"))) {
2479                 uiapplication->enabled = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("enabled")));
2480                 if (uiapplication->enabled == NULL)
2481                         uiapplication->enabled = strdup("true");
2482         } else {
2483                 uiapplication->enabled = strdup("true");
2484         }
2485         if (xmlTextReaderGetAttribute(reader, XMLCHAR("hw-acceleration"))) {
2486                 uiapplication->hwacceleration = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("hw-acceleration")));
2487                 if (uiapplication->hwacceleration == NULL)
2488                         uiapplication->hwacceleration = strdup("use-system-setting");
2489         } else {
2490                 uiapplication->hwacceleration = strdup("use-system-setting");
2491         }
2492         if (xmlTextReaderGetAttribute(reader, XMLCHAR("recentimage")))
2493                 uiapplication->recentimage = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("recentimage")));
2494         if (xmlTextReaderGetAttribute(reader, XMLCHAR("mainapp"))) {
2495                 uiapplication->mainapp = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("mainapp")));
2496                 if (uiapplication->mainapp == NULL)
2497                         uiapplication->mainapp = strdup("false");
2498         } else {
2499                 uiapplication->mainapp = strdup("false");
2500         }
2501         if (xmlTextReaderGetAttribute(reader, XMLCHAR("launchcondition"))) {
2502                 uiapplication->launchcondition = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("launchcondition")));
2503                 if (uiapplication->launchcondition == NULL)
2504                         uiapplication->launchcondition = strdup("false");
2505         } else {
2506                 uiapplication->launchcondition = strdup("false");
2507         }
2508
2509         if (xmlTextReaderGetAttribute(reader, XMLCHAR("indicatordisplay"))) {
2510                 uiapplication->indicatordisplay = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("indicatordisplay")));
2511                 if (uiapplication->indicatordisplay == NULL)
2512                         uiapplication->indicatordisplay = strdup("true");
2513         } else {
2514                 uiapplication->indicatordisplay = strdup("true");
2515         }
2516         if (xmlTextReaderGetAttribute(reader, XMLCHAR("portrait-effectimage")))
2517                 uiapplication->portraitimg = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("portrait-effectimage")));
2518         else
2519                 uiapplication->portraitimg = NULL;
2520         if (xmlTextReaderGetAttribute(reader, XMLCHAR("landscape-effectimage")))
2521                 uiapplication->landscapeimg = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("landscape-effectimage")));
2522         else
2523                 uiapplication->landscapeimg = NULL;
2524         if (xmlTextReaderGetAttribute(reader, XMLCHAR("guestmode-visibility"))) {
2525                 uiapplication->guestmode_visibility = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("guestmode-visibility")));
2526                 if (uiapplication->guestmode_visibility == NULL)
2527                         uiapplication->guestmode_visibility = strdup("true");
2528         } else {
2529                 uiapplication->guestmode_visibility = strdup("true");
2530         }
2531
2532         depth = xmlTextReaderDepth(reader);
2533         while ((ret = __next_child_element(reader, depth))) {
2534                 node = xmlTextReaderConstName(reader);
2535                 if (!node) {
2536                         DBG("xmlTextReaderConstName value is NULL\n");
2537                         return -1;
2538                 }
2539                 if (!strcmp(ASCII(node), "label")) {
2540                         label_x *label = malloc(sizeof(label_x));
2541                         if (label == NULL) {
2542                                 DBG("Malloc Failed\n");
2543                                 return -1;
2544                         }
2545                         memset(label, '\0', sizeof(label_x));
2546                         LISTADD(uiapplication->label, label);
2547                         ret = __ps_process_label(reader, label);
2548                 } else if (!strcmp(ASCII(node), "icon")) {
2549                         icon_x *icon = malloc(sizeof(icon_x));
2550                         if (icon == NULL) {
2551                                 DBG("Malloc Failed\n");
2552                                 return -1;
2553                         }
2554                         memset(icon, '\0', sizeof(icon_x));
2555                         LISTADD(uiapplication->icon, icon);
2556                         ret = __ps_process_icon(reader, icon);
2557                 } else if (!strcmp(ASCII(node), "image")) {
2558                         image_x *image = malloc(sizeof(image_x));
2559                         if (image == NULL) {
2560                                 DBG("Malloc Failed\n");
2561                                 return -1;
2562                         }
2563                         memset(image, '\0', sizeof(image_x));
2564                         LISTADD(uiapplication->image, image);
2565                         ret = __ps_process_image(reader, image);
2566                 } else if (!strcmp(ASCII(node), "category")) {
2567                         category_x *category = malloc(sizeof(category_x));
2568                         if (category == NULL) {
2569                                 DBG("Malloc Failed\n");
2570                                 return -1;
2571                         }
2572                         memset(category, '\0', sizeof(category_x));
2573                         LISTADD(uiapplication->category, category);
2574                         ret = __ps_process_category(reader, category);
2575                 } else if (!strcmp(ASCII(node), "metadata")) {
2576                         metadata_x *metadata = malloc(sizeof(metadata_x));
2577                         if (metadata == NULL) {
2578                                 DBG("Malloc Failed\n");
2579                                 return -1;
2580                         }
2581                         memset(metadata, '\0', sizeof(metadata_x));
2582                         LISTADD(uiapplication->metadata, metadata);
2583                         ret = __ps_process_metadata(reader, metadata);
2584                 } else if (!strcmp(ASCII(node), "permission")) {
2585                         permission_x *permission = malloc(sizeof(permission_x));
2586                         if (permission == NULL) {
2587                                 DBG("Malloc Failed\n");
2588                                 return -1;
2589                         }
2590                         memset(permission, '\0', sizeof(permission_x));
2591                         LISTADD(uiapplication->permission, permission);
2592                         ret = __ps_process_permission(reader, permission);
2593                 } else if (!strcmp(ASCII(node), "app-control")) {
2594                         appcontrol_x *appcontrol = malloc(sizeof(appcontrol_x));
2595                         if (appcontrol == NULL) {
2596                                 DBG("Malloc Failed\n");
2597                                 return -1;
2598                         }
2599                         memset(appcontrol, '\0', sizeof(appcontrol_x));
2600                         LISTADD(uiapplication->appcontrol, appcontrol);
2601                         ret = __ps_process_appcontrol(reader, appcontrol);
2602                 } else if (!strcmp(ASCII(node), "application-service")) {
2603                         appsvc_x *appsvc = malloc(sizeof(appsvc_x));
2604                         if (appsvc == NULL) {
2605                                 DBG("Malloc Failed\n");
2606                                 return -1;
2607                         }
2608                         memset(appsvc, '\0', sizeof(appsvc_x));
2609                         LISTADD(uiapplication->appsvc, appsvc);
2610                         ret = __ps_process_appsvc(reader, appsvc);
2611                 } else if (!strcmp(ASCII(node), "data-share")) {
2612                         datashare_x *datashare = malloc(sizeof(datashare_x));
2613                         if (datashare == NULL) {
2614                                 DBG("Malloc Failed\n");
2615                                 return -1;
2616                         }
2617                         memset(datashare, '\0', sizeof(datashare_x));
2618                         LISTADD(uiapplication->datashare, datashare);
2619                         ret = __ps_process_datashare(reader, datashare);
2620                 } else if (!strcmp(ASCII(node), "launch-conditions")) {
2621                         launchconditions_x *launchconditions = malloc(sizeof(launchconditions_x));
2622                         if (launchconditions == NULL) {
2623                                 DBG("Malloc Failed\n");
2624                                 return -1;
2625                         }
2626                         memset(launchconditions, '\0', sizeof(launchconditions_x));
2627                         LISTADD(uiapplication->launchconditions, launchconditions);
2628                         ret = __ps_process_launchconditions(reader, launchconditions);
2629                 } else if (!strcmp(ASCII(node), "notification")) {
2630                         notification_x *notification = malloc(sizeof(notification_x));
2631                         if (notification == NULL) {
2632                                 DBG("Malloc Failed\n");
2633                                 return -1;
2634                         }
2635                         memset(notification, '\0', sizeof(notification_x));
2636                         LISTADD(uiapplication->notification, notification);
2637                         ret = __ps_process_notification(reader, notification);
2638                 } else
2639                         return -1;
2640                 if (ret < 0) {
2641                         DBG("Processing uiapplication failed\n");
2642                         return ret;
2643                 }
2644         }
2645
2646         if (uiapplication->label) {
2647                 LISTHEAD(uiapplication->label, tmp1);
2648                 uiapplication->label = tmp1;
2649         }
2650         if (uiapplication->icon) {
2651                 LISTHEAD(uiapplication->icon, tmp2);
2652                 uiapplication->icon = tmp2;
2653         }
2654         if (uiapplication->appsvc) {
2655                 LISTHEAD(uiapplication->appsvc, tmp3);
2656                 uiapplication->appsvc = tmp3;
2657         }
2658         if (uiapplication->appcontrol) {
2659                 LISTHEAD(uiapplication->appcontrol, tmp4);
2660                 uiapplication->appcontrol = tmp4;
2661         }
2662         if (uiapplication->launchconditions) {
2663                 LISTHEAD(uiapplication->launchconditions, tmp5);
2664                 uiapplication->launchconditions = tmp5;
2665         }
2666         if (uiapplication->notification) {
2667                 LISTHEAD(uiapplication->notification, tmp6);
2668                 uiapplication->notification = tmp6;
2669         }
2670         if (uiapplication->datashare) {
2671                 LISTHEAD(uiapplication->datashare, tmp7);
2672                 uiapplication->datashare = tmp7;
2673         }
2674         if (uiapplication->category) {
2675                 LISTHEAD(uiapplication->category, tmp8);
2676                 uiapplication->category = tmp8;
2677         }
2678         if (uiapplication->metadata) {
2679                 LISTHEAD(uiapplication->metadata, tmp9);
2680                 uiapplication->metadata = tmp9;
2681         }
2682         if (uiapplication->image) {
2683                 LISTHEAD(uiapplication->image, tmp10);
2684                 uiapplication->image = tmp10;
2685         }
2686         if (uiapplication->permission) {
2687                 LISTHEAD(uiapplication->permission, tmp11);
2688                 uiapplication->permission = tmp11;
2689         }
2690
2691         return ret;
2692 }
2693
2694 static int __ps_process_serviceapplication(xmlTextReaderPtr reader, serviceapplication_x *serviceapplication)
2695 {
2696         const xmlChar *node;
2697         int ret = -1;
2698         int depth = -1;
2699         char *newappid = NULL;
2700         label_x *tmp1 = NULL;
2701         icon_x *tmp2 = NULL;
2702         appsvc_x *tmp3 = NULL;
2703         appcontrol_x *tmp4 = NULL;
2704         datacontrol_x *tmp5 = NULL;
2705         launchconditions_x *tmp6 = NULL;
2706         notification_x *tmp7 = NULL;
2707         datashare_x *tmp8 = NULL;
2708         category_x *tmp9 = NULL;
2709         metadata_x *tmp10 = NULL;
2710         permission_x *tmp11 = NULL;
2711
2712         if (xmlTextReaderGetAttribute(reader, XMLCHAR("appid"))) {
2713                 serviceapplication->appid = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("appid")));
2714                 if (serviceapplication->appid == NULL) {
2715                         DBG("appid cant be NULL\n");
2716                         return -1;
2717                 }
2718         } else {
2719                 DBG("appid is mandatory\n");
2720                 return -1;
2721         }
2722         /*check appid*/
2723         ret = __validate_appid(package, serviceapplication->appid, &newappid);
2724         if (ret == -1) {
2725                 DBG("appid is not proper\n");
2726                 return -1;
2727         } else {
2728                 if (newappid) {
2729                         if (serviceapplication->appid)
2730                                 free((void *)serviceapplication->appid);
2731                         serviceapplication->appid = newappid;
2732                 }
2733         }
2734         if (xmlTextReaderGetAttribute(reader, XMLCHAR("exec")))
2735                 serviceapplication->exec = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("exec")));
2736         if (xmlTextReaderGetAttribute(reader, XMLCHAR("type")))
2737                 serviceapplication->type = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("type")));
2738         if (xmlTextReaderGetAttribute(reader, XMLCHAR("on-boot"))) {
2739                 serviceapplication->onboot = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("on-boot")));
2740                 if (serviceapplication->onboot == NULL)
2741                         serviceapplication->onboot = strdup("false");
2742         } else {
2743                 serviceapplication->onboot = strdup("false");
2744         }
2745         if (xmlTextReaderGetAttribute(reader, XMLCHAR("auto-restart"))) {
2746                 serviceapplication->autorestart = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("auto-restart")));
2747                 if (serviceapplication->autorestart == NULL)
2748                         serviceapplication->autorestart = strdup("false");
2749         } else {
2750                 serviceapplication->autorestart = strdup("false");
2751         }
2752
2753         depth = xmlTextReaderDepth(reader);
2754         while ((ret = __next_child_element(reader, depth))) {
2755                 node = xmlTextReaderConstName(reader);
2756                 if (!node) {
2757                         DBG("xmlTextReaderConstName value is NULL\n");
2758                         return -1;
2759                 }
2760
2761                 if (!strcmp(ASCII(node), "label")) {
2762                         label_x *label = malloc(sizeof(label_x));
2763                         if (label == NULL) {
2764                                 DBG("Malloc Failed\n");
2765                                 return -1;
2766                         }
2767                         memset(label, '\0', sizeof(label_x));
2768                         LISTADD(serviceapplication->label, label);
2769                         ret = __ps_process_label(reader, label);
2770                 } else if (!strcmp(ASCII(node), "icon")) {
2771                         icon_x *icon = malloc(sizeof(icon_x));
2772                         if (icon == NULL) {
2773                                 DBG("Malloc Failed\n");
2774                                 return -1;
2775                         }
2776                         memset(icon, '\0', sizeof(icon_x));
2777                         LISTADD(serviceapplication->icon, icon);
2778                         ret = __ps_process_icon(reader, icon);
2779                 } else if (!strcmp(ASCII(node), "category")) {
2780                         category_x *category = malloc(sizeof(category_x));
2781                         if (category == NULL) {
2782                                 DBG("Malloc Failed\n");
2783                                 return -1;
2784                         }
2785                         memset(category, '\0', sizeof(category_x));
2786                         LISTADD(serviceapplication->category, category);
2787                         ret = __ps_process_category(reader, category);
2788                 } else if (!strcmp(ASCII(node), "metadata")) {
2789                         metadata_x *metadata = malloc(sizeof(metadata_x));
2790                         if (metadata == NULL) {
2791                                 DBG("Malloc Failed\n");
2792                                 return -1;
2793                         }
2794                         memset(metadata, '\0', sizeof(metadata_x));
2795                         LISTADD(serviceapplication->metadata, metadata);
2796                         ret = __ps_process_metadata(reader, metadata);
2797                 } else if (!strcmp(ASCII(node), "permission")) {
2798                         permission_x *permission = malloc(sizeof(permission_x));
2799                         if (permission == NULL) {
2800                                 DBG("Malloc Failed\n");
2801                                 return -1;
2802                         }
2803                         memset(permission, '\0', sizeof(permission_x));
2804                         LISTADD(serviceapplication->permission, permission);
2805                         ret = __ps_process_permission(reader, permission);
2806                 } else if (!strcmp(ASCII(node), "app-control")) {
2807                         appcontrol_x *appcontrol = malloc(sizeof(appcontrol_x));
2808                         if (appcontrol == NULL) {
2809                                 DBG("Malloc Failed\n");
2810                                 return -1;
2811                         }
2812                         memset(appcontrol, '\0', sizeof(appcontrol_x));
2813                         LISTADD(serviceapplication->appcontrol, appcontrol);
2814                         ret = __ps_process_appcontrol(reader, appcontrol);
2815                 } else if (!strcmp(ASCII(node), "application-service")) {
2816                         appsvc_x *appsvc = malloc(sizeof(appsvc_x));
2817                         if (appsvc == NULL) {
2818                                 DBG("Malloc Failed\n");
2819                                 return -1;
2820                         }
2821                         memset(appsvc, '\0', sizeof(appsvc_x));
2822                         LISTADD(serviceapplication->appsvc, appsvc);
2823                         ret = __ps_process_appsvc(reader, appsvc);
2824                 } else if (!strcmp(ASCII(node), "data-share")) {
2825                         datashare_x *datashare = malloc(sizeof(datashare_x));
2826                         if (datashare == NULL) {
2827                                 DBG("Malloc Failed\n");
2828                                 return -1;
2829                         }
2830                         memset(datashare, '\0', sizeof(datashare_x));
2831                         LISTADD(serviceapplication->datashare, datashare);
2832                         ret = __ps_process_datashare(reader, datashare);
2833                 } else if (!strcmp(ASCII(node), "launch-conditions")) {
2834                         launchconditions_x *launchconditions = malloc(sizeof(launchconditions_x));
2835                         if (launchconditions == NULL) {
2836                                 DBG("Malloc Failed\n");
2837                                 return -1;
2838                         }
2839                         memset(launchconditions, '\0', sizeof(launchconditions_x));
2840                         LISTADD(serviceapplication->launchconditions, launchconditions);
2841                         ret = __ps_process_launchconditions(reader, launchconditions);
2842                 } else if (!strcmp(ASCII(node), "notification")) {
2843                         notification_x *notification = malloc(sizeof(notification_x));
2844                         if (notification == NULL) {
2845                                 DBG("Malloc Failed\n");
2846                                 return -1;
2847                         }
2848                         memset(notification, '\0', sizeof(notification_x));
2849                         LISTADD(serviceapplication->notification, notification);
2850                         ret = __ps_process_notification(reader, notification);
2851                 } else if (!strcmp(ASCII(node), "data-control")) {
2852                         datacontrol_x *datacontrol = malloc(sizeof(datacontrol_x));
2853                         if (datacontrol == NULL) {
2854                                 DBG("Malloc Failed\n");
2855                                 return -1;
2856                         }
2857                         memset(datacontrol, '\0', sizeof(datacontrol_x));
2858                         LISTADD(serviceapplication->datacontrol, datacontrol);
2859                         ret = __ps_process_datacontrol(reader, datacontrol);
2860                 } else
2861                         return -1;
2862                 if (ret < 0) {
2863                         DBG("Processing serviceapplication failed\n");
2864                         return ret;
2865                 }
2866         }
2867
2868         if (serviceapplication->label) {
2869                 LISTHEAD(serviceapplication->label, tmp1);
2870                 serviceapplication->label = tmp1;
2871         }
2872         if (serviceapplication->icon) {
2873                 LISTHEAD(serviceapplication->icon, tmp2);
2874                 serviceapplication->icon = tmp2;
2875         }
2876         if (serviceapplication->appsvc) {
2877                 LISTHEAD(serviceapplication->appsvc, tmp3);
2878                 serviceapplication->appsvc = tmp3;
2879         }
2880         if (serviceapplication->appcontrol) {
2881                 LISTHEAD(serviceapplication->appcontrol, tmp4);
2882                 serviceapplication->appcontrol = tmp4;
2883         }
2884         if (serviceapplication->datacontrol) {
2885                 LISTHEAD(serviceapplication->datacontrol, tmp5);
2886                 serviceapplication->datacontrol = tmp5;
2887         }
2888         if (serviceapplication->launchconditions) {
2889                 LISTHEAD(serviceapplication->launchconditions, tmp6);
2890                 serviceapplication->launchconditions = tmp6;
2891         }
2892         if (serviceapplication->notification) {
2893                 LISTHEAD(serviceapplication->notification, tmp7);
2894                 serviceapplication->notification = tmp7;
2895         }
2896         if (serviceapplication->datashare) {
2897                 LISTHEAD(serviceapplication->datashare, tmp8);
2898                 serviceapplication->datashare = tmp8;
2899         }
2900         if (serviceapplication->category) {
2901                 LISTHEAD(serviceapplication->category, tmp9);
2902                 serviceapplication->category = tmp9;
2903         }
2904         if (serviceapplication->metadata) {
2905                 LISTHEAD(serviceapplication->metadata, tmp10);
2906                 serviceapplication->metadata = tmp10;
2907         }
2908         if (serviceapplication->permission) {
2909                 LISTHEAD(serviceapplication->permission, tmp11);
2910                 serviceapplication->permission = tmp11;
2911         }
2912
2913         return ret;
2914 }
2915
2916 static int __ps_process_deviceprofile(xmlTextReaderPtr reader, deviceprofile_x *deviceprofile)
2917 {
2918         /*TODO: once policy is set*/
2919         return 0;
2920 }
2921
2922 static int __ps_process_font(xmlTextReaderPtr reader, font_x *font)
2923 {
2924         /*TODO: once policy is set*/
2925         return 0;
2926 }
2927
2928 static int __ps_process_theme(xmlTextReaderPtr reader, theme_x *theme)
2929 {
2930         /*TODO: once policy is set*/
2931         return 0;
2932 }
2933
2934 static int __ps_process_daemon(xmlTextReaderPtr reader, daemon_x *daemon)
2935 {
2936         /*TODO: once policy is set*/
2937         return 0;
2938 }
2939
2940 static int __ps_process_ime(xmlTextReaderPtr reader, ime_x *ime)
2941 {
2942         /*TODO: once policy is set*/
2943         return 0;
2944 }
2945
2946 static int __start_process(xmlTextReaderPtr reader, manifest_x * mfx)
2947 {
2948         DBG("__start_process\n");
2949         const xmlChar *node;
2950         int ret = -1;
2951         int depth = -1;
2952         label_x *tmp1 = NULL;
2953         author_x *tmp2 = NULL;
2954         description_x *tmp3 = NULL;
2955         license_x *tmp4 = NULL;
2956         uiapplication_x *tmp5 = NULL;
2957         serviceapplication_x *tmp6 = NULL;
2958         daemon_x *tmp7 = NULL;
2959         theme_x *tmp8 = NULL;
2960         font_x *tmp9 = NULL;
2961         ime_x *tmp10 = NULL;
2962         icon_x *tmp11 = NULL;
2963         compatibility_x *tmp12 = NULL;
2964         deviceprofile_x *tmp13 = NULL;
2965         privileges_x *tmp14 = NULL;
2966
2967         depth = xmlTextReaderDepth(reader);
2968         while ((ret = __next_child_element(reader, depth))) {
2969                 node = xmlTextReaderConstName(reader);
2970                 if (!node) {
2971                         DBG("xmlTextReaderConstName value is NULL\n");
2972                         return -1;
2973                 }
2974
2975                 if (!strcmp(ASCII(node), "label")) {
2976                         label_x *label = malloc(sizeof(label_x));
2977                         if (label == NULL) {
2978                                 DBG("Malloc Failed\n");
2979                                 return -1;
2980                         }
2981                         memset(label, '\0', sizeof(label_x));
2982                         LISTADD(mfx->label, label);
2983                         ret = __ps_process_label(reader, label);
2984                 } else if (!strcmp(ASCII(node), "author")) {
2985                         author_x *author = malloc(sizeof(author_x));
2986                         if (author == NULL) {
2987                                 DBG("Malloc Failed\n");
2988                                 return -1;
2989                         }
2990                         memset(author, '\0', sizeof(author_x));
2991                         LISTADD(mfx->author, author);
2992                         ret = __ps_process_author(reader, author);
2993                 } else if (!strcmp(ASCII(node), "description")) {
2994                         description_x *description = malloc(sizeof(description_x));
2995                         if (description == NULL) {
2996                                 DBG("Malloc Failed\n");
2997                                 return -1;
2998                         }
2999                         memset(description, '\0', sizeof(description_x));
3000                         LISTADD(mfx->description, description);
3001                         ret = __ps_process_description(reader, description);
3002                 } else if (!strcmp(ASCII(node), "license")) {
3003                         license_x *license = malloc(sizeof(license_x));
3004                         if (license == NULL) {
3005                                 DBG("Malloc Failed\n");
3006                                 return -1;
3007                         }
3008                         memset(license, '\0', sizeof(license_x));
3009                         LISTADD(mfx->license, license);
3010                         ret = __ps_process_license(reader, license);
3011                 } else if (!strcmp(ASCII(node), "privileges")) {
3012                         privileges_x *privileges = malloc(sizeof(privileges_x));
3013                         if (privileges == NULL) {
3014                                 DBG("Malloc Failed\n");
3015                                 return -1;
3016                         }
3017                         memset(privileges, '\0', sizeof(privileges_x));
3018                         LISTADD(mfx->privileges, privileges);
3019                         ret = __ps_process_privileges(reader, privileges);
3020                 } else if (!strcmp(ASCII(node), "ui-application")) {
3021                         uiapplication_x *uiapplication = malloc(sizeof(uiapplication_x));
3022                         if (uiapplication == NULL) {
3023                                 DBG("Malloc Failed\n");
3024                                 return -1;
3025                         }
3026                         memset(uiapplication, '\0', sizeof(uiapplication_x));
3027                         LISTADD(mfx->uiapplication, uiapplication);
3028                         ret = __ps_process_uiapplication(reader, uiapplication);
3029                 } else if (!strcmp(ASCII(node), "service-application")) {
3030                         serviceapplication_x *serviceapplication = malloc(sizeof(serviceapplication_x));
3031                         if (serviceapplication == NULL) {
3032                                 DBG("Malloc Failed\n");
3033                                 return -1;
3034                         }
3035                         memset(serviceapplication, '\0', sizeof(serviceapplication_x));
3036                         LISTADD(mfx->serviceapplication, serviceapplication);
3037                         ret = __ps_process_serviceapplication(reader, serviceapplication);
3038                 } else if (!strcmp(ASCII(node), "daemon")) {
3039                         daemon_x *daemon = malloc(sizeof(daemon_x));
3040                         if (daemon == NULL) {
3041                                 DBG("Malloc Failed\n");
3042                                 return -1;
3043                         }
3044                         memset(daemon, '\0', sizeof(daemon_x));
3045                         LISTADD(mfx->daemon, daemon);
3046                         ret = __ps_process_daemon(reader, daemon);
3047                 } else if (!strcmp(ASCII(node), "theme")) {
3048                         theme_x *theme = malloc(sizeof(theme_x));
3049                         if (theme == NULL) {
3050                                 DBG("Malloc Failed\n");
3051                                 return -1;
3052                         }
3053                         memset(theme, '\0', sizeof(theme_x));
3054                         LISTADD(mfx->theme, theme);
3055                         ret = __ps_process_theme(reader, theme);
3056                 } else if (!strcmp(ASCII(node), "font")) {
3057                         font_x *font = malloc(sizeof(font_x));
3058                         if (font == NULL) {
3059                                 DBG("Malloc Failed\n");
3060                                 return -1;
3061                         }
3062                         memset(font, '\0', sizeof(font_x));
3063                         LISTADD(mfx->font, font);
3064                         ret = __ps_process_font(reader, font);
3065                 } else if (!strcmp(ASCII(node), "ime")) {
3066                         ime_x *ime = malloc(sizeof(ime_x));
3067                         if (ime == NULL) {
3068                                 DBG("Malloc Failed\n");
3069                                 return -1;
3070                         }
3071                         memset(ime, '\0', sizeof(ime_x));
3072                         LISTADD(mfx->ime, ime);
3073                         ret = __ps_process_ime(reader, ime);
3074                 } else if (!strcmp(ASCII(node), "icon")) {
3075                         icon_x *icon = malloc(sizeof(icon_x));
3076                         if (icon == NULL) {
3077                                 DBG("Malloc Failed\n");
3078                                 return -1;
3079                         }
3080                         memset(icon, '\0', sizeof(icon_x));
3081                         LISTADD(mfx->icon, icon);
3082                         ret = __ps_process_icon(reader, icon);
3083                 } else if (!strcmp(ASCII(node), "device-profile")) {
3084                         deviceprofile_x *deviceprofile = malloc(sizeof(deviceprofile_x));
3085                         if (deviceprofile == NULL) {
3086                                 DBG("Malloc Failed\n");
3087                                 return -1;
3088                         }
3089                         memset(deviceprofile, '\0', sizeof(deviceprofile_x));
3090                         LISTADD(mfx->deviceprofile, deviceprofile);
3091                         ret = __ps_process_deviceprofile(reader, deviceprofile);
3092                 } else if (!strcmp(ASCII(node), "compatibility")) {
3093                         compatibility_x *compatibility = malloc(sizeof(compatibility_x));
3094                         if (compatibility == NULL) {
3095                                 DBG("Malloc Failed\n");
3096                                 return -1;
3097                         }
3098                         memset(compatibility, '\0', sizeof(compatibility_x));
3099                         LISTADD(mfx->compatibility, compatibility);
3100                         ret = __ps_process_compatibility(reader, compatibility);
3101                 } else if (!strcmp(ASCII(node), "shortcut-list")) {
3102                         continue;
3103                 } else if (!strcmp(ASCII(node), "livebox")) {
3104                         continue;
3105                 } else if (!strcmp(ASCII(node), "account")) {
3106                         continue;
3107                 } else if (!strcmp(ASCII(node), "notifications")) {
3108                         continue;
3109                 } else if (!strcmp(ASCII(node), "ime")) {
3110                         continue;
3111                 } else
3112                         return -1;
3113
3114                 if (ret < 0) {
3115                         DBG("Processing manifest failed\n");
3116                         return ret;
3117                 }
3118         }
3119         if (mfx->label) {
3120                 LISTHEAD(mfx->label, tmp1);
3121                 mfx->label = tmp1;
3122         }
3123         if (mfx->author) {
3124                 LISTHEAD(mfx->author, tmp2);
3125                 mfx->author = tmp2;
3126         }
3127         if (mfx->description) {
3128                 LISTHEAD(mfx->description, tmp3);
3129                 mfx->description= tmp3;
3130         }
3131         if (mfx->license) {
3132                 LISTHEAD(mfx->license, tmp4);
3133                 mfx->license= tmp4;
3134         }
3135         if (mfx->uiapplication) {
3136                 LISTHEAD(mfx->uiapplication, tmp5);
3137                 mfx->uiapplication = tmp5;
3138         }
3139         if (mfx->serviceapplication) {
3140                 LISTHEAD(mfx->serviceapplication, tmp6);
3141                 mfx->serviceapplication = tmp6;
3142         }
3143         if (mfx->daemon) {
3144                 LISTHEAD(mfx->daemon, tmp7);
3145                 mfx->daemon= tmp7;
3146         }
3147         if (mfx->theme) {
3148                 LISTHEAD(mfx->theme, tmp8);
3149                 mfx->theme= tmp8;
3150         }
3151         if (mfx->font) {
3152                 LISTHEAD(mfx->font, tmp9);
3153                 mfx->font= tmp9;
3154         }
3155         if (mfx->ime) {
3156                 LISTHEAD(mfx->ime, tmp10);
3157                 mfx->ime= tmp10;
3158         }
3159         if (mfx->icon) {
3160                 LISTHEAD(mfx->icon, tmp11);
3161                 mfx->icon= tmp11;
3162         }
3163         if (mfx->compatibility) {
3164                 LISTHEAD(mfx->compatibility, tmp12);
3165                 mfx->compatibility= tmp12;
3166         }
3167         if (mfx->deviceprofile) {
3168                 LISTHEAD(mfx->deviceprofile, tmp13);
3169                 mfx->deviceprofile= tmp13;
3170         }
3171         if (mfx->privileges) {
3172                 LISTHEAD(mfx->privileges, tmp14);
3173                 mfx->privileges = tmp14;
3174         }
3175         return ret;
3176 }
3177
3178 static int __process_manifest(xmlTextReaderPtr reader, manifest_x * mfx)
3179 {
3180         const xmlChar *node;
3181         int ret = -1;
3182
3183         if ((ret = __next_child_element(reader, -1))) {
3184                 node = xmlTextReaderConstName(reader);
3185                 if (!node) {
3186                         DBG("xmlTextReaderConstName value is NULL\n");
3187                         return -1;
3188                 }
3189
3190                 if (!strcmp(ASCII(node), "manifest")) {
3191                         if (xmlTextReaderGetAttribute(reader, XMLCHAR("xmlns")))
3192                                 mfx->ns = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("xmlns")));
3193                         if (xmlTextReaderGetAttribute(reader, XMLCHAR("package"))) {
3194                                 mfx->package= ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("package")));
3195                                 if (mfx->package == NULL) {
3196                                         DBG("package cant be NULL\n");
3197                                         return -1;
3198                                 }
3199                         } else {
3200                                 DBG("package field is mandatory\n");
3201                                 return -1;
3202                         }
3203                         package = mfx->package;
3204                         if (xmlTextReaderGetAttribute(reader, XMLCHAR("version")))
3205                                 mfx->version= ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("version")));
3206                         /*app2ext needs package size for external installation*/
3207                         if (xmlTextReaderGetAttribute(reader, XMLCHAR("size")))
3208                                 mfx->package_size = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("size")));
3209                         if (xmlTextReaderGetAttribute(reader, XMLCHAR("install-location")))
3210                                 mfx->installlocation = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("install-location")));
3211                         if (xmlTextReaderGetAttribute(reader, XMLCHAR("type")))
3212                                 mfx->type = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("type")));
3213                         if (xmlTextReaderGetAttribute(reader, XMLCHAR("root_path")))
3214                                 mfx->root_path = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("root_path")));
3215                         if (xmlTextReaderGetAttribute(reader, XMLCHAR("appsetting"))) {
3216                                 mfx->appsetting = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("appsetting")));
3217                                 if (mfx->appsetting == NULL)
3218                                         mfx->appsetting = strdup("false");
3219                         } else {
3220                                 mfx->appsetting = strdup("false");
3221                         }
3222                         if (xmlTextReaderGetAttribute(reader, XMLCHAR("storeclient-id")))
3223                                 mfx->storeclient_id= ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("storeclient-id")));
3224                         if (xmlTextReaderGetAttribute(reader, XMLCHAR("nodisplay-setting"))) {
3225                                 mfx->nodisplay_setting = ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("nodisplay-setting")));
3226                                 if (mfx->nodisplay_setting == NULL)
3227                                         mfx->nodisplay_setting = strdup("false");
3228                         } else {
3229                                 mfx->nodisplay_setting = strdup("false");
3230                         }
3231                         if (xmlTextReaderGetAttribute(reader, XMLCHAR("url")))
3232                                 mfx->package_url= ASCII(xmlTextReaderGetAttribute(reader, XMLCHAR("url")));
3233
3234                         /*Assign default values. If required it will be overwritten in __add_preload_info()*/
3235                         mfx->preload = strdup("False");
3236                         mfx->removable = strdup("True");
3237                         mfx->readonly = strdup("False");
3238                         char buf[PKG_STRING_LEN_MAX] = {'\0'};
3239                         char *val = NULL;
3240                         time_t current_time;
3241                         time(&current_time);
3242                         snprintf(buf, PKG_STRING_LEN_MAX - 1, "%d", current_time);
3243                         val = strndup(buf, PKG_STRING_LEN_MAX - 1);
3244                         mfx->installed_time = val;
3245
3246                         mfx->installed_storage= strdup("installed_internal");
3247
3248                         ret = __start_process(reader, mfx);
3249                 } else {
3250                         DBG("No Manifest element found\n");
3251                         return -1;
3252                 }
3253         }
3254         return ret;
3255 }
3256
3257 #define DESKTOP_RW_PATH "/opt/share/applications/"
3258 #define DESKTOP_RO_PATH "/usr/share/applications/"
3259
3260 static char* __convert_to_system_locale(const char *mlocale)
3261 {
3262         if (mlocale == NULL)
3263                 return NULL;
3264         char *locale = NULL;
3265         locale = (char *)calloc(1, 6);
3266         if (!locale) {
3267                 DBGE("Malloc Failed\n");
3268                 return NULL;
3269         }
3270
3271         strncpy(locale, mlocale, 2);
3272         strncat(locale, "_", 1);
3273         locale[3] = toupper(mlocale[3]);
3274         locale[4] = toupper(mlocale[4]);
3275         return locale;
3276 }
3277
3278 #define LIBAIL_PATH "/usr/lib/libail.so.0"
3279
3280 /* operation_type */
3281 typedef enum {
3282         AIL_INSTALL = 0,
3283         AIL_UPDATE,
3284         AIL_REMOVE,
3285         AIL_MAX
3286 } AIL_TYPE;
3287
3288 static int __ail_change_info(int op, const char *appid)
3289 {
3290         void *lib_handle = NULL;
3291         int (*ail_desktop_operation) (const char *);
3292         char *aop = NULL;
3293         int ret = 0;
3294
3295         if ((lib_handle = dlopen(LIBAIL_PATH, RTLD_LAZY)) == NULL) {
3296                 DBGE("dlopen is failed LIBAIL_PATH[%s]\n", LIBAIL_PATH);
3297                 goto END;
3298         }
3299
3300
3301         switch (op) {
3302                 case 0:
3303                         aop  = "ail_desktop_add";
3304                         break;
3305                 case 1:
3306                         aop  = "ail_desktop_update";
3307                         break;
3308                 case 2:
3309                         aop  = "ail_desktop_remove";
3310                         break;
3311                 default:
3312                         goto END;
3313                         break;
3314         }
3315
3316         if ((ail_desktop_operation =
3317              dlsym(lib_handle, aop)) == NULL || dlerror() != NULL) {
3318                 DBGE("can not find symbol \n");
3319                 goto END;
3320         }
3321
3322         ret = ail_desktop_operation(appid);
3323
3324 END:
3325         if (lib_handle)
3326                 dlclose(lib_handle);
3327
3328         return ret;
3329 }
3330
3331
3332 /* desktop shoud be generated automatically based on manifest */
3333 /* Currently removable, taskmanage, etc fields are not considerd. it will be decided soon.*/
3334 #define BUFMAX 1024*128
3335 static int __ps_make_nativeapp_desktop(manifest_x * mfx, bool is_update)
3336 {
3337         FILE* file = NULL;
3338         int fd = 0;
3339         char filepath[PKG_STRING_LEN_MAX] = "";
3340         char *buf = NULL;
3341         char *buftemp = NULL;
3342         char *locale = NULL;
3343
3344         buf = (char *)calloc(1, BUFMAX);
3345         if (!buf) {
3346                 DBGE("Malloc Failed\n");
3347                 return -1;
3348         }
3349
3350         buftemp = (char *)calloc(1, BUFMAX);
3351         if (!buftemp) {
3352                 DBGE("Malloc Failed\n");
3353                 free(buf);
3354                 return -1;
3355         }
3356
3357         for(; mfx->uiapplication; mfx->uiapplication=mfx->uiapplication->next) {
3358
3359                 if(mfx->readonly && !strcasecmp(mfx->readonly, "True"))
3360                         snprintf(filepath, sizeof(filepath),"%s%s.desktop", DESKTOP_RO_PATH, mfx->uiapplication->appid);
3361                 else
3362                         snprintf(filepath, sizeof(filepath),"%s%s.desktop", DESKTOP_RW_PATH, mfx->uiapplication->appid);
3363
3364                 /* skip if desktop exists
3365                 if (access(filepath, R_OK) == 0)
3366                         continue;
3367                 */
3368
3369                 file = fopen(filepath, "w");
3370                 if(file == NULL)
3371                 {
3372                     DBGE("Can't open %s", filepath);
3373                     free(buf);
3374                     free(buftemp);
3375                     return -1;
3376                 }
3377
3378                 snprintf(buf, BUFMAX, "[Desktop Entry]\n");
3379                 fwrite(buf, 1, strlen(buf), file);
3380
3381                 for( ; mfx->uiapplication->label ; mfx->uiapplication->label = mfx->uiapplication->label->next) {
3382                         if(!strcmp(mfx->uiapplication->label->lang, DEFAULT_LOCALE)) {
3383                                 snprintf(buf, BUFMAX, "Name=%s\n",      mfx->uiapplication->label->text);
3384                         } else {
3385                                 locale = __convert_to_system_locale(mfx->uiapplication->label->lang);
3386                                 snprintf(buf, BUFMAX, "Name[%s]=%s\n", locale,
3387                                         mfx->uiapplication->label->text);
3388                                 free(locale);
3389                         }
3390                         fwrite(buf, 1, strlen(buf), file);
3391                 }
3392
3393                 if(mfx->uiapplication->label && mfx->uiapplication->label->text) {
3394                         snprintf(buf, BUFMAX, "Name=%s\n", mfx->uiapplication->label->text);
3395                         fwrite(buf, 1, strlen(buf), file);
3396                 }
3397 /*
3398                 else if(mfx->label && mfx->label->text) {
3399                         snprintf(buf, BUFMAX, "Name=%s\n", mfx->label->text);
3400                         fwrite(buf, 1, strlen(buf), file);
3401                 } else {
3402                         snprintf(buf, BUFMAX, "Name=%s\n", mfx->package);
3403                         fwrite(buf, 1, strlen(buf), file);
3404                 }
3405 */
3406
3407
3408                 snprintf(buf, BUFMAX, "Type=Application\n");
3409                 fwrite(buf, 1, strlen(buf), file);
3410
3411                 if(mfx->uiapplication->exec) {
3412                         snprintf(buf, BUFMAX, "Exec=%s\n", mfx->uiapplication->exec);
3413                         fwrite(buf, 1, strlen(buf), file);
3414                 }
3415
3416                 if(mfx->uiapplication->icon && mfx->uiapplication->icon->text) {
3417                         snprintf(buf, BUFMAX, "Icon=%s\n", mfx->uiapplication->icon->text);
3418                         fwrite(buf, 1, strlen(buf), file);
3419                 } else if(mfx->icon && mfx->icon->text) {
3420                         snprintf(buf, BUFMAX, "Icon=%s\n", mfx->icon->text);
3421                         fwrite(buf, 1, strlen(buf), file);
3422                 }
3423
3424                 if(mfx->version) {
3425                         snprintf(buf, BUFMAX, "Version=%s\n", mfx->version);
3426                         fwrite(buf, 1, strlen(buf), file);
3427                 }
3428
3429                 if(mfx->uiapplication->nodisplay) {
3430                         snprintf(buf, BUFMAX, "NoDisplay=%s\n", mfx->uiapplication->nodisplay);
3431                         fwrite(buf, 1, strlen(buf), file);
3432                 }
3433
3434                 if(mfx->uiapplication->categories) {
3435                         snprintf(buf, BUFMAX, "Categories=%s\n", mfx->uiapplication->categories);
3436                         fwrite(buf, 1, strlen(buf), file);
3437                 }
3438
3439                 if(mfx->uiapplication->taskmanage && !strcasecmp(mfx->uiapplication->taskmanage, "False")) {
3440                         snprintf(buf, BUFMAX, "X-TIZEN-TaskManage=False\n");
3441                         fwrite(buf, 1, strlen(buf), file);
3442                 }
3443
3444                 if(mfx->uiapplication->enabled && !strcasecmp(mfx->uiapplication->enabled, "False")) {
3445                         snprintf(buf, BUFMAX, "X-TIZEN-Enabled=False\n");
3446                         fwrite(buf, 1, strlen(buf), file);
3447                 }
3448
3449                 if(mfx->uiapplication->hwacceleration) {
3450                         snprintf(buf, BUFMAX, "Hw-Acceleration=%s\n", mfx->uiapplication->hwacceleration);
3451                         fwrite(buf, 1, strlen(buf), file);
3452                 }
3453
3454                 if(mfx->uiapplication->multiple && !strcasecmp(mfx->uiapplication->multiple, "True")) {
3455                         snprintf(buf, BUFMAX, "X-TIZEN-Multiple=True\n");
3456                         fwrite(buf, 1, strlen(buf), file);
3457                 }
3458
3459                 if(mfx->uiapplication->extraid) {
3460                         snprintf(buf, BUFMAX, "X-TIZEN-PackageID=%s\n", mfx->uiapplication->extraid);
3461                         fwrite(buf, 1, strlen(buf), file);
3462                 }
3463
3464                 if(mfx->removable && !strcasecmp(mfx->removable, "False")) {
3465                         snprintf(buf, BUFMAX, "X-TIZEN-Removable=False\n");
3466                         fwrite(buf, 1, strlen(buf), file);
3467                 }
3468
3469                 if(mfx->type) {
3470                         snprintf(buf, BUFMAX, "X-TIZEN-PackageType=%s\n", mfx->type);
3471                         fwrite(buf, 1, strlen(buf), file);
3472                 }
3473
3474                 snprintf(buf, BUFMAX, "X-TIZEN-PkgID=%s\n", mfx->package);
3475                 fwrite(buf, 1, strlen(buf), file);
3476
3477
3478 //              snprintf(buf, BUFMAX, "X-TIZEN-PackageType=rpm\n");
3479 //              fwrite(buf, 1, strlen(buf), file);
3480
3481
3482                 if(mfx->uiapplication->appsvc) {
3483                         snprintf(buf, BUFMAX, "X-TIZEN-Svc=");
3484                         DBG("buf[%s]\n", buf);
3485
3486
3487                         uiapplication_x *up = mfx->uiapplication;
3488                         appsvc_x *asvc = NULL;
3489                         operation_x *op = NULL;
3490                         mime_x *mi = NULL;
3491                         uri_x *ui = NULL;
3492                         subapp_x *sub = NULL;
3493                         const char *operation = NULL;
3494                         const char *mime = NULL;
3495                         const char *uri = NULL;
3496                         const char *subapp = NULL;
3497                         int i = 0;
3498
3499
3500                         asvc = up->appsvc;
3501                         while(asvc != NULL) {
3502                                 op = asvc->operation;
3503                                 while(op != NULL) {
3504                                         if (op)
3505                                                 operation = op->name;
3506                                         mi = asvc->mime;
3507
3508                                         do
3509                                         {
3510                                                 if (mi)
3511                                                         mime = mi->name;
3512                                                 sub = asvc->subapp;
3513                                                 do
3514                                                 {
3515                                                         if (sub)
3516                                                                 subapp = sub->name;
3517                                                         ui = asvc->uri;
3518                                                         do
3519                                                         {
3520                                                                 if (ui)
3521                                                                         uri = ui->name;
3522
3523                                                                 if(i++ > 0) {
3524                                                                         strncpy(buftemp, buf, BUFMAX);
3525                                                                         snprintf(buf, BUFMAX, "%s;", buftemp);
3526                                                                 }
3527
3528
3529                                                                 strncpy(buftemp, buf, BUFMAX);
3530                                                                 snprintf(buf, BUFMAX, "%s%s|%s|%s|%s", buftemp, operation?operation:"NULL", uri?uri:"NULL", mime?mime:"NULL", subapp?subapp:"NULL");
3531                                                                 DBG("buf[%s]\n", buf);
3532
3533                                                                 if (ui)
3534                                                                         ui = ui->next;
3535                                                                 uri = NULL;
3536                                                         } while(ui != NULL);
3537                                                 if (sub)
3538                                                                 sub = sub->next;
3539                                                         subapp = NULL;
3540                                                 }while(sub != NULL);
3541                                                 if (mi)
3542                                                         mi = mi->next;
3543                                                 mime = NULL;
3544                                         }while(mi != NULL);
3545                                         if (op)
3546                                                 op = op->next;
3547                                         operation = NULL;
3548                                 }
3549                                 asvc = asvc->next;
3550                         }
3551
3552
3553                         fwrite(buf, 1, strlen(buf), file);
3554
3555 //                      strncpy(buftemp, buf, BUFMAX);
3556 //                      snprintf(buf, BUFMAX, "%s\n", buftemp);
3557 //                      fwrite(buf, 1, strlen(buf), file);
3558                 }
3559
3560                 if(mfx->uiapplication->appcontrol) {
3561                         snprintf(buf, BUFMAX, "X-TIZEN-Svc=");
3562                         DBG("buf[%s]\n", buf);
3563
3564                         uiapplication_x *up = mfx->uiapplication;
3565                         appcontrol_x *acontrol = NULL;
3566                         operation_x *op = NULL;
3567                         mime_x *mi = NULL;
3568                         uri_x *ui = NULL;
3569                         subapp_x *sub = NULL;
3570                         const char *operation = NULL;
3571                         const char *mime = NULL;
3572                         const char *uri = NULL;
3573                         const char *subapp = NULL;
3574                         int i = 0;
3575
3576                         acontrol = up->appcontrol;
3577                         while(acontrol != NULL) {
3578                                 op = acontrol->operation;
3579                                 while(op != NULL) {
3580                                         if (op)
3581                                                 operation = op->name;
3582                                         mi = acontrol->mime;
3583
3584                                         do
3585                                         {
3586                                                 if (mi)
3587                                                         mime = mi->name;
3588                                                 sub = acontrol->subapp;
3589                                                 do
3590                                                 {
3591                                                         if (sub)
3592                                                                 subapp = sub->name;
3593                                                         ui = acontrol->uri;
3594                                                         do
3595                                                         {
3596                                                                 if (ui)
3597                                                                         uri = ui->name;
3598
3599                                                                 if(i++ > 0) {
3600                                                                         strncpy(buftemp, buf, BUFMAX);
3601                                                                         snprintf(buf, BUFMAX, "%s;", buftemp);
3602                                                                 }
3603
3604                                                                 strncpy(buftemp, buf, BUFMAX);
3605                                                                 snprintf(buf, BUFMAX, "%s%s|%s|%s|%s", buftemp, operation?operation:"NULL", uri?uri:"NULL", mime?mime:"NULL", subapp?subapp:"NULL");
3606                                                                 DBG("buf[%s]\n", buf);
3607
3608                                                                 if (ui)
3609                                                                         ui = ui->next;
3610                                                                 uri = NULL;
3611                                                         } while(ui != NULL);
3612                                                 if (sub)
3613                                                                 sub = sub->next;
3614                                                         subapp = NULL;
3615                                                 }while(sub != NULL);
3616                                                 if (mi)
3617                                                         mi = mi->next;
3618                                                 mime = NULL;
3619                                         }while(mi != NULL);
3620                                         if (op)
3621                                                 op = op->next;
3622                                         operation = NULL;
3623                                 }
3624                                 acontrol = acontrol->next;
3625                         }
3626
3627
3628                         fwrite(buf, 1, strlen(buf), file);
3629
3630 //                      strncpy(buftemp, buf, BUFMAX);
3631 //                      snprintf(buf, BUFMAX, "%s\n", buftemp);
3632 //                      fwrite(buf, 1, strlen(buf), file);
3633                 }
3634
3635                 fflush(file);
3636                 fd = fileno(file);
3637                 fsync(fd);
3638                 fclose(file);
3639
3640                 if (!is_update)
3641                         __ail_change_info(AIL_INSTALL, mfx->uiapplication->appid);
3642                 else
3643                         __ail_change_info(AIL_UPDATE, mfx->uiapplication->appid);
3644         }
3645
3646         free(buf);
3647         free(buftemp);
3648
3649         return 0;
3650 }
3651
3652 static int __ps_remove_nativeapp_desktop(manifest_x *mfx)
3653 {
3654         char filepath[PKG_STRING_LEN_MAX] = "";
3655         int ret = 0;
3656         uiapplication_x *uiapplication = mfx->uiapplication;
3657
3658         for(; uiapplication; uiapplication=uiapplication->next) {
3659                 snprintf(filepath, sizeof(filepath),"%s%s.desktop", DESKTOP_RW_PATH, uiapplication->appid);
3660
3661                 __ail_change_info(AIL_REMOVE, uiapplication->appid);
3662
3663                 ret = remove(filepath);
3664                 if (ret <0)
3665                         return -1;
3666         }
3667
3668         return 0;
3669 }
3670
3671 #define LIBAPPSVC_PATH "/usr/lib/libappsvc.so.0"
3672
3673 static int __ps_remove_appsvc_db(manifest_x *mfx)
3674 {
3675         void *lib_handle = NULL;
3676         int (*appsvc_operation) (const char *);
3677         int ret = 0;
3678         uiapplication_x *uiapplication = mfx->uiapplication;
3679
3680         if ((lib_handle = dlopen(LIBAPPSVC_PATH, RTLD_LAZY)) == NULL) {
3681                 DBGE("dlopen is failed LIBAIL_PATH[%s]\n", LIBAPPSVC_PATH);
3682                 goto END;
3683         }
3684
3685         if ((appsvc_operation =
3686                  dlsym(lib_handle, "appsvc_unset_defapp")) == NULL || dlerror() != NULL) {
3687                 DBGE("can not find symbol \n");
3688                 goto END;
3689         }
3690
3691         for(; uiapplication; uiapplication=uiapplication->next) {
3692                 ret = appsvc_operation(uiapplication->appid);
3693                 if (ret <0)
3694                         DBGE("can not operation  symbol \n");
3695         }
3696
3697 END:
3698         if (lib_handle)
3699                 dlclose(lib_handle);
3700
3701         return ret;
3702 }
3703
3704 #define MANIFEST_RO_PREFIX "/usr/share/packages/"
3705 #define PRELOAD_PACKAGE_LIST "/usr/etc/package-manager/preload/preload_list.txt"
3706 static int __add_preload_info(manifest_x * mfx, const char *manifest)
3707 {
3708         FILE *fp = NULL;
3709         char buffer[1024] = { 0 };
3710         int state = 0;
3711
3712         if(strstr(manifest, MANIFEST_RO_PREFIX)) {
3713                 free((void *)mfx->readonly);
3714                 mfx->readonly = strdup("True");
3715
3716                 free((void *)mfx->preload);
3717                 mfx->preload = strdup("True");
3718
3719                 free((void *)mfx->removable);
3720                 mfx->removable = strdup("False");
3721
3722                 return 0;
3723         }
3724
3725         fp = fopen(PRELOAD_PACKAGE_LIST, "r");
3726         if (fp == NULL) {
3727                 DBGE("no preload list\n");
3728                 return -1;
3729         }
3730
3731         while (fgets(buffer, sizeof(buffer), fp) != NULL) {
3732                 if (buffer[0] == '#') {
3733                         if(strcasestr(buffer, "RW_NORM"))
3734                                 state = 2;
3735                         else if(strcasestr(buffer, "RW_RM"))
3736                                 state = 3;
3737                         else
3738                                 continue;
3739                 }
3740
3741                 __str_trim(buffer);
3742
3743                 if(!strcmp(mfx->package, buffer)) {
3744                         free((void *)mfx->preload);
3745                         mfx->preload = strdup("True");
3746                         if(state == 2){
3747                                 free((void *)mfx->readonly);
3748                                 mfx->readonly = strdup("False");
3749                                 free((void *)mfx->removable);
3750                                 mfx->removable = strdup("False");
3751                         } else if(state == 3){
3752                                 free((void *)mfx->readonly);
3753                                 mfx->readonly = strdup("False");
3754                                 free((void *)mfx->removable);
3755                                 mfx->removable = strdup("True");
3756                         }
3757                 }
3758
3759                 memset(buffer, 0x00, sizeof(buffer));
3760         }
3761
3762         if (fp != NULL)
3763                 fclose(fp);
3764
3765         return 0;
3766 }
3767
3768
3769 API void pkgmgr_parser_free_manifest_xml(manifest_x *mfx)
3770 {
3771         if (mfx == NULL)
3772                 return;
3773         if (mfx->ns) {
3774                 free((void *)mfx->ns);
3775                 mfx->ns = NULL;
3776         }
3777         if (mfx->package) {
3778                 free((void *)mfx->package);
3779                 mfx->package = NULL;
3780         }
3781         if (mfx->version) {
3782                 free((void *)mfx->version);
3783                 mfx->version = NULL;
3784         }
3785         if (mfx->installlocation) {
3786                 free((void *)mfx->installlocation);
3787                 mfx->installlocation = NULL;
3788         }
3789         if (mfx->preload) {
3790                 free((void *)mfx->preload);
3791                 mfx->preload = NULL;
3792         }
3793         if (mfx->readonly) {
3794                 free((void *)mfx->readonly);
3795                 mfx->readonly = NULL;
3796         }
3797         if (mfx->removable) {
3798                 free((void *)mfx->removable);
3799                 mfx->removable = NULL;
3800         }
3801         if (mfx->update) {
3802                 free((void *)mfx->update);
3803                 mfx->update = NULL;
3804         }
3805         if (mfx->type) {
3806                 free((void *)mfx->type);
3807                 mfx->type = NULL;
3808         }
3809         if (mfx->package_size) {
3810                 free((void *)mfx->package_size);
3811                 mfx->package_size = NULL;
3812         }
3813         if (mfx->installed_time) {
3814                 free((void *)mfx->installed_time);
3815                 mfx->installed_time = NULL;
3816         }
3817         if (mfx->installed_storage) {
3818                 free((void *)mfx->installed_storage);
3819                 mfx->installed_storage = NULL;
3820         }
3821         if (mfx->storeclient_id) {
3822                 free((void *)mfx->storeclient_id);
3823                 mfx->storeclient_id = NULL;
3824         }
3825         if (mfx->mainapp_id) {
3826                 free((void *)mfx->mainapp_id);
3827                 mfx->mainapp_id = NULL;
3828         }
3829         if (mfx->package_url) {
3830                 free((void *)mfx->package_url);
3831                 mfx->package_url = NULL;
3832         }
3833         if (mfx->root_path) {
3834                 free((void *)mfx->root_path);
3835                 mfx->root_path = NULL;
3836         }
3837         if (mfx->appsetting) {
3838                 free((void *)mfx->appsetting);
3839                 mfx->appsetting = NULL;
3840         }
3841         if (mfx->nodisplay_setting) {
3842                 free((void *)mfx->nodisplay_setting);
3843                 mfx->nodisplay_setting = NULL;
3844         }
3845
3846         /*Free Icon*/
3847         if (mfx->icon) {
3848                 icon_x *icon = mfx->icon;
3849                 icon_x *tmp = NULL;
3850                 while(icon != NULL) {
3851                         tmp = icon->next;
3852                         __ps_free_icon(icon);
3853                         icon = tmp;
3854                 }
3855         }
3856         /*Free Label*/
3857         if (mfx->label) {
3858                 label_x *label = mfx->label;
3859                 label_x *tmp = NULL;
3860                 while(label != NULL) {
3861                         tmp = label->next;
3862                         __ps_free_label(label);
3863                         label = tmp;
3864                 }
3865         }
3866         /*Free Author*/
3867         if (mfx->author) {
3868                 author_x *author = mfx->author;
3869                 author_x *tmp = NULL;
3870                 while(author != NULL) {
3871                         tmp = author->next;
3872                         __ps_free_author(author);
3873                         author = tmp;
3874                 }
3875         }
3876         /*Free Description*/
3877         if (mfx->description) {
3878                 description_x *description = mfx->description;
3879                 description_x *tmp = NULL;
3880                 while(description != NULL) {
3881                         tmp = description->next;
3882                         __ps_free_description(description);
3883                         description = tmp;
3884                 }
3885         }
3886         /*Free License*/
3887         if (mfx->license) {
3888                 license_x *license = mfx->license;
3889                 license_x *tmp = NULL;
3890                 while(license != NULL) {
3891                         tmp = license->next;
3892                         __ps_free_license(license);
3893                         license = tmp;
3894                 }
3895         }
3896         /*Free Privileges*/
3897         if (mfx->privileges) {
3898                 privileges_x *privileges = mfx->privileges;
3899                 privileges_x *tmp = NULL;
3900                 while(privileges != NULL) {
3901                         tmp = privileges->next;
3902                         __ps_free_privileges(privileges);
3903                         privileges = tmp;
3904                 }
3905         }
3906         /*Free UiApplication*/
3907         if (mfx->uiapplication) {
3908                 uiapplication_x *uiapplication = mfx->uiapplication;
3909                 uiapplication_x *tmp = NULL;
3910                 while(uiapplication != NULL) {
3911                         tmp = uiapplication->next;
3912                         __ps_free_uiapplication(uiapplication);
3913                         uiapplication = tmp;
3914                 }
3915         }
3916         /*Free ServiceApplication*/
3917         if (mfx->serviceapplication) {
3918                 serviceapplication_x *serviceapplication = mfx->serviceapplication;
3919                 serviceapplication_x *tmp = NULL;
3920                 while(serviceapplication != NULL) {
3921                         tmp = serviceapplication->next;
3922                         __ps_free_serviceapplication(serviceapplication);
3923                         serviceapplication = tmp;
3924                 }
3925         }
3926         /*Free Daemon*/
3927         if (mfx->daemon) {
3928                 daemon_x *daemon = mfx->daemon;
3929                 daemon_x *tmp = NULL;
3930                 while(daemon != NULL) {
3931                         tmp = daemon->next;
3932                         __ps_free_daemon(daemon);
3933                         daemon = tmp;
3934                 }
3935         }
3936         /*Free Theme*/
3937         if (mfx->theme) {
3938                 theme_x *theme = mfx->theme;
3939                 theme_x *tmp = NULL;
3940                 while(theme != NULL) {
3941                         tmp = theme->next;
3942                         __ps_free_theme(theme);
3943                         theme = tmp;
3944                 }
3945         }
3946         /*Free Font*/
3947         if (mfx->font) {
3948                 font_x *font = mfx->font;
3949                 font_x *tmp = NULL;
3950                 while(font != NULL) {
3951                         tmp = font->next;
3952                         __ps_free_font(font);
3953                         font = tmp;
3954                 }
3955         }
3956         /*Free Ime*/
3957         if (mfx->ime) {
3958                 ime_x *ime = mfx->ime;
3959                 ime_x *tmp = NULL;
3960                 while(ime != NULL) {
3961                         tmp = ime->next;
3962                         __ps_free_ime(ime);
3963                         ime = tmp;
3964                 }
3965         }
3966         /*Free Compatibility*/
3967         if (mfx->compatibility) {
3968                 compatibility_x *compatibility = mfx->compatibility;
3969                 compatibility_x *tmp = NULL;
3970                 while(compatibility != NULL) {
3971                         tmp = compatibility->next;
3972                         __ps_free_compatibility(compatibility);
3973                         compatibility = tmp;
3974                 }
3975         }
3976         /*Free DeviceProfile*/
3977         if (mfx->deviceprofile) {
3978                 deviceprofile_x *deviceprofile = mfx->deviceprofile;
3979                 deviceprofile_x *tmp = NULL;
3980                 while(deviceprofile != NULL) {
3981                         tmp = deviceprofile->next;
3982                         __ps_free_deviceprofile(deviceprofile);
3983                         deviceprofile = tmp;
3984                 }
3985         }
3986         free((void*)mfx);
3987         mfx = NULL;
3988         return;
3989 }
3990
3991 API manifest_x *pkgmgr_parser_process_manifest_xml(const char *manifest)
3992 {
3993         DBG("parsing start\n");
3994         xmlTextReaderPtr reader;
3995         manifest_x *mfx = NULL;
3996
3997         reader = xmlReaderForFile(manifest, NULL, 0);
3998         if (reader) {
3999                 mfx = malloc(sizeof(manifest_x));
4000                 if (mfx) {
4001                         memset(mfx, '\0', sizeof(manifest_x));
4002                         if (__process_manifest(reader, mfx) < 0) {
4003                                 DBG("Parsing Failed\n");
4004                                 pkgmgr_parser_free_manifest_xml(mfx);
4005                                 mfx = NULL;
4006                         } else
4007                                 DBG("Parsing Success\n");
4008                 } else {
4009                         DBG("Memory allocation error\n");
4010                 }
4011                 xmlFreeTextReader(reader);
4012         } else {
4013                 DBG("Unable to create xml reader\n");
4014         }
4015         return mfx;
4016 }
4017
4018 /* These APIs are intended to call parser directly */
4019
4020 API int pkgmgr_parser_parse_manifest_for_installation(const char *manifest, char *const tagv[])
4021 {
4022         char *temp[] = {"shortcut-list", "livebox", "account", "notifications", "privileges", "ime", NULL};
4023         if (manifest == NULL) {
4024                 DBG("argument supplied is NULL\n");
4025                 return PMINFO_R_EINVAL;
4026         }
4027         DBG("parsing manifest for installation: %s\n", manifest);
4028         manifest_x *mfx = NULL;
4029         int ret = -1;
4030         char roxml_check[PKG_STRING_LEN_MAX] = {'\0'};
4031
4032         xmlInitParser();
4033         mfx = pkgmgr_parser_process_manifest_xml(manifest);
4034         DBG("Parsing Finished\n");
4035         if (mfx == NULL)
4036                 return PMINFO_R_ERROR;
4037         
4038         __streamFile(manifest, ACTION_INSTALL, temp, mfx->package);
4039         __add_preload_info(mfx, manifest);
4040         DBG("Added preload infomation\n");
4041
4042         snprintf(roxml_check, PKG_STRING_LEN_MAX, MANIFEST_RO_DIRECTORY "/%s.xml", mfx->package);
4043         if (access(roxml_check, F_OK) == 0)
4044                 mfx->update = strdup("true");
4045         else
4046                 mfx->update = strdup("false");
4047
4048         __ps_process_tag(mfx, tagv);
4049
4050         ret = pkgmgr_parser_insert_manifest_info_in_db(mfx);
4051         if (ret == -1)
4052                 DBG("DB Insert failed\n");
4053         else
4054                 DBG("DB Insert Success\n");
4055
4056         ret = __ps_make_nativeapp_desktop(mfx, 0);
4057         if (ret == -1)
4058                 DBG("Creating desktop file failed\n");
4059         else
4060                 DBG("Creating desktop file Success\n");
4061
4062         pkgmgr_parser_free_manifest_xml(mfx);
4063         DBG("Free Done\n");
4064         xmlCleanupParser();
4065
4066         return PMINFO_R_OK;
4067 }
4068
4069 API int pkgmgr_parser_create_desktop_file(manifest_x *mfx)
4070 {
4071         int ret = 0;
4072         if (mfx == NULL) {
4073                 DBG("Manifest pointer is NULL\n");
4074                 return -1;
4075         }
4076         ret = __ps_make_nativeapp_desktop(mfx, 0);
4077         if (ret == -1)
4078                 DBG("Creating desktop file failed\n");
4079         else
4080                 DBG("Creating desktop file Success\n");
4081         return ret;
4082 }
4083
4084
4085 API int pkgmgr_parser_parse_manifest_for_upgrade(const char *manifest, char *const tagv[])
4086 {
4087         char *temp[] = {"shortcut-list", "livebox", "account", "notifications", "privileges", "ime", NULL};
4088         if (manifest == NULL) {
4089                 DBG("argument supplied is NULL\n");
4090                 return PMINFO_R_EINVAL;
4091         }
4092         DBG("parsing manifest for upgradation: %s\n", manifest);
4093         manifest_x *mfx = NULL;
4094         int ret = -1;
4095         bool preload;
4096         pkgmgrinfo_pkginfo_h handle;
4097
4098         xmlInitParser();
4099         mfx = pkgmgr_parser_process_manifest_xml(manifest);
4100         DBG("Parsing Finished\n");
4101         if (mfx == NULL)
4102                 return PMINFO_R_ERROR;
4103         
4104         __streamFile(manifest, ACTION_UPGRADE, temp, mfx->package);
4105         __add_preload_info(mfx, manifest);
4106         DBG("Added preload infomation\n");
4107
4108         ret = pkgmgrinfo_pkginfo_get_pkginfo(mfx->package, &handle);
4109         if (ret != PMINFO_R_OK)
4110                 DBG("pkgmgrinfo_pkginfo_get_pkginfo failed\n");
4111
4112         ret = pkgmgrinfo_pkginfo_is_preload(handle, &preload);
4113         if (ret != PMINFO_R_OK)
4114                 DBG("pkgmgrinfo_pkginfo_is_preload failed\n");
4115
4116         if (preload){
4117                 free((void *)mfx->preload);
4118                 mfx->preload = strdup("true");
4119         }
4120
4121         mfx->update = strdup("true");
4122         ret = pkgmgr_parser_update_manifest_info_in_db(mfx);
4123         if (ret == -1)
4124                 DBG("DB Update failed\n");
4125         else
4126                 DBG("DB Update Success\n");
4127
4128         ret = __ps_make_nativeapp_desktop(mfx, 1);
4129         if (ret == -1)
4130                 DBG("Creating desktop file failed\n");
4131         else
4132                 DBG("Creating desktop file Success\n");
4133
4134         pkgmgrinfo_pkginfo_destroy_pkginfo(handle);
4135         pkgmgr_parser_free_manifest_xml(mfx);
4136         DBG("Free Done\n");
4137         xmlCleanupParser();
4138
4139         return PMINFO_R_OK;
4140 }
4141
4142 API int pkgmgr_parser_parse_manifest_for_uninstallation(const char *manifest, char *const tagv[])
4143 {
4144         char *temp[] = {"shortcut-list", "livebox", "account", "notifications", "privileges", "ime", NULL};
4145         if (manifest == NULL) {
4146                 DBG("argument supplied is NULL\n");
4147                 return PMINFO_R_EINVAL;
4148         }
4149         DBG("parsing manifest for uninstallation: %s\n", manifest);
4150         manifest_x *mfx = NULL;
4151         int ret = -1;
4152         xmlInitParser();
4153         mfx = pkgmgr_parser_process_manifest_xml(manifest);
4154         DBG("Parsing Finished\n");
4155         if (mfx == NULL)
4156                 return PMINFO_R_ERROR;
4157         
4158         __streamFile(manifest, ACTION_UNINSTALL, temp, mfx->package);
4159         __add_preload_info(mfx, manifest);
4160         DBG("Added preload infomation\n");
4161
4162         ret = pkgmgr_parser_delete_manifest_info_from_db(mfx);
4163         if (ret == -1)
4164                 DBG("DB Delete failed\n");
4165         else
4166                 DBG("DB Delete Success\n");
4167
4168         ret = __ps_remove_nativeapp_desktop(mfx);
4169         if (ret == -1)
4170                 DBG("Removing desktop file failed\n");
4171         else
4172                 DBG("Removing desktop file Success\n");
4173
4174         ret = __ps_remove_appsvc_db(mfx);
4175         if (ret == -1)
4176                 DBG("Removing appsvc_db failed\n");
4177         else
4178                 DBG("Removing appsvc_db Success\n");
4179
4180         pkgmgr_parser_free_manifest_xml(mfx);
4181         DBG("Free Done\n");
4182         xmlCleanupParser();
4183
4184         return PMINFO_R_OK;
4185 }
4186
4187 API char *pkgmgr_parser_get_manifest_file(const char *pkgid)
4188 {
4189         return __pkgid_to_manifest(pkgid);
4190 }
4191
4192 API int pkgmgr_parser_run_parser_for_installation(xmlDocPtr docPtr, const char *tag, const char *pkgid)
4193 {
4194         return __ps_run_parser(docPtr, tag, ACTION_INSTALL, pkgid);
4195 }
4196
4197 API int pkgmgr_parser_run_parser_for_upgrade(xmlDocPtr docPtr, const char *tag, const char *pkgid)
4198 {
4199         return __ps_run_parser(docPtr, tag, ACTION_UPGRADE, pkgid);
4200 }
4201
4202 API int pkgmgr_parser_run_parser_for_uninstallation(xmlDocPtr docPtr, const char *tag, const char *pkgid)
4203 {
4204         return __ps_run_parser(docPtr, tag, ACTION_UNINSTALL, pkgid);
4205 }
4206
4207 #define SCHEMA_FILE "/usr/etc/package-manager/preload/manifest.xsd"
4208 #if 1
4209 API int pkgmgr_parser_check_manifest_validation(const char *manifest)
4210 {
4211         if (manifest == NULL) {
4212                 DBGE("manifest file is NULL\n");
4213                 return PMINFO_R_EINVAL;
4214         }
4215         int ret = -1;
4216         xmlSchemaParserCtxtPtr ctx;
4217         xmlSchemaValidCtxtPtr vctx;
4218         xmlSchemaPtr xschema;
4219         ctx = xmlSchemaNewParserCtxt(SCHEMA_FILE);
4220         if (ctx == NULL) {
4221                 DBGE("xmlSchemaNewParserCtxt() Failed\n");
4222                 return PMINFO_R_ERROR;
4223         }
4224         xschema = xmlSchemaParse(ctx);
4225         if (xschema == NULL) {
4226                 DBGE("xmlSchemaParse() Failed\n");
4227                 return PMINFO_R_ERROR;
4228         }
4229         vctx = xmlSchemaNewValidCtxt(xschema);
4230         if (vctx == NULL) {
4231                 DBGE("xmlSchemaNewValidCtxt() Failed\n");
4232                 return PMINFO_R_ERROR;
4233         }
4234         xmlSchemaSetValidErrors(vctx, (xmlSchemaValidityErrorFunc) fprintf, (xmlSchemaValidityWarningFunc) fprintf, stderr);
4235         ret = xmlSchemaValidateFile(vctx, manifest, 0);
4236         if (ret == -1) {
4237                 DBGE("xmlSchemaValidateFile() failed\n");
4238                 return PMINFO_R_ERROR;
4239         } else if (ret == 0) {
4240                 DBGE("Manifest is Valid\n");
4241                 return PMINFO_R_OK;
4242         } else {
4243                 DBGE("Manifest Validation Failed with error code %d\n", ret);
4244                 return PMINFO_R_ERROR;
4245         }
4246         return PMINFO_R_OK;
4247 }
4248
4249 #else
4250 API int pkgmgr_parser_check_manifest_validation(const char *manifest)
4251 {
4252         int err = 0;
4253         int status = 0;
4254         pid_t pid;
4255
4256         pid = fork();
4257
4258         switch (pid) {
4259         case -1:
4260                 DBGE("fork failed\n");
4261                 return -1;
4262         case 0:
4263                 /* child */
4264                 {
4265                         int dev_null_fd = open ("/dev/null", O_RDWR);
4266                         if (dev_null_fd >= 0)
4267                         {
4268                                 dup2 (dev_null_fd, 0);/*stdin*/
4269                                 dup2 (dev_null_fd, 1);/*stdout*/
4270                                 dup2 (dev_null_fd, 2);/*stderr*/
4271                         }
4272
4273                         if (execl("/usr/bin/xmllint", "xmllint", manifest, "--schema",
4274                                 SCHEMA_FILE, NULL) < 0) {
4275                                 DBGE("execl error\n");
4276                         }
4277
4278                         _exit(100);
4279                 }
4280         default:
4281                 /* parent */
4282                 break;
4283         }
4284
4285         while ((err = waitpid(pid, &status, WNOHANG)) != pid) {
4286                 if (err < 0) {
4287                         if (errno == EINTR)
4288                                 continue;
4289                         DBGE("waitpid failed\n");
4290                         return -1;
4291                 }
4292         }
4293
4294
4295         if(WIFEXITED(status) && !WEXITSTATUS(status))
4296                 return 0;
4297         else
4298                 return -1;
4299 }
4300 #endif