Merge branch 'tizen_2.2' into tizen
[platform/core/appfw/pkgmgr-info.git] / parser / pkgmgr_parser.h
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
23 #ifndef __PKGMGR_PARSER_H__
24 #define __PKGMGR_PARSER_H__
25
26 /**
27  * @file pkgmgr_parser.h
28  * @author Sewook Park <sewook7.park@samsung.com>
29  * @author Shobhit Srivastava <shobhit.s@samsung.com>
30  * @version 0.1
31  * @brief    This file declares API of pkgmgr_parser
32  * @addtogroup          APPLICATION_FRAMEWORK
33  * @{
34  *
35  * @defgroup            PackageManagerParser
36  * @section             Header Header file to include:
37  * @code
38  * #include             <pkgmgr_parser.h>
39  * @endcode
40  *
41  * @}
42  */
43
44 #include <libxml/xmlreader.h>
45
46 #ifdef __cplusplus
47 extern "C" {
48 #endif
49 #define DEFAULT_LOCALE          "No Locale"
50
51 #define PKG_PARSERLIB   "parserlib:"
52 #define PKG_PARSER_CONF_PATH    SYSCONFDIR "/package-manager/parser_path.conf"
53
54 #define PKG_STRING_LEN_MAX 1024
55
56 /**
57  * @brief List definitions.
58  * All lists are doubly-linked, the last element is stored to list pointer,
59  * which means that lists must be looped using the prev pointer, or by
60  * calling LISTHEAD first to go to start in order to use the next pointer.
61  */
62
63  /**
64  * @brief Convinience Macro to add node in list
65  */
66
67 #define LISTADD(list, node)                     \
68     do {                                        \
69         (node)->prev = (list);                  \
70         if (list) (node)->next = (list)->next;  \
71         else (node)->next = NULL;               \
72         if (list) (list)->next = (node);        \
73         (list) = (node);                        \
74     } while (0);
75
76  /**
77  * @brief Convinience Macro to add one node to another node
78  */
79 #define NODEADD(node1, node2)                                   \
80     do {                                                        \
81         (node2)->prev = (node1);                                \
82         (node2)->next = (node1)->next;                          \
83         if ((node1)->next) (node1)->next->prev = (node2);       \
84         (node1)->next = (node2);                                \
85     } while (0);
86
87  /**
88  * @brief Convinience Macro to concatenate two lists
89  */
90 #define LISTCAT(list, first, last)              \
91     if ((first) && (last)) {                    \
92         (first)->prev = (list);                 \
93         (list) = (last);                        \
94     }
95
96  /**
97  * @brief Convinience Macro to delete node from list
98  */
99 #define LISTDEL(list, node)                                     \
100     do {                                                        \
101         if ((node)->prev) (node)->prev->next = (node)->next;    \
102         if ((node)->next) (node)->next->prev = (node)->prev;    \
103         if (!((node)->prev) && !((node)->next)) (list) = NULL;  \
104     } while (0);
105
106  /**
107  * @brief Convinience Macro to get list head
108  */
109 #define LISTHEAD(list, node)                                    \
110     for ((node) = (list); (node)->prev; (node) = (node)->prev)
111
112  /**
113  * @brief Convinience Macro to get list tail
114  */
115 #define LISTTAIL(list, node)                                    \
116     for ((node) = (list); (node)->next; (node) = (node)->next)
117
118 typedef struct metadata_x {
119         const char *key;
120         const char *value;
121         struct metadata_x *prev;
122         struct metadata_x *next;
123 } metadata_x;
124
125 typedef struct privilege_x {
126         const char *text;
127         struct privilege_x *prev;
128         struct privilege_x *next;
129 } privilege_x;
130
131 typedef struct privileges_x {
132         struct privilege_x *privilege;
133         struct privileges_x *prev;
134         struct privileges_x *next;
135 } privileges_x;
136
137 typedef struct permission_x {
138         const char *type;
139         const char *value;
140         struct permission_x *prev;
141         struct permission_x *next;
142 } permission_x;
143
144 typedef struct icon_x {
145         const char *name;
146         const char *text;
147         const char *lang;
148         const char *section;
149         const char *size;
150         const char *resolution;
151         struct icon_x *prev;
152         struct icon_x *next;
153 } icon_x;
154
155 typedef struct image_x {
156         const char *name;
157         const char *text;
158         const char *lang;
159         const char *section;
160         struct image_x *prev;
161         struct image_x *next;
162 } image_x;
163
164 typedef struct allowed_x {
165         const char *name;
166         const char *text;
167         struct allowed_x *prev;
168         struct allowed_x *next;
169 } allowed_x;
170
171 typedef struct request_x {
172         const char *text;
173         struct request_x *prev;
174         struct request_x *next;
175 } request_x;
176
177 typedef struct define_x {
178         const char *path;
179         struct allowed_x *allowed;
180         struct request_x *request;
181         struct define_x *prev;
182         struct define_x *next;
183 } define_x;
184
185 typedef struct datashare_x {
186         struct define_x *define;
187         struct request_x *request;
188         struct datashare_x *prev;
189         struct datashare_x *next;
190 } datashare_x;
191
192 typedef struct description_x {
193         const char *name;
194         const char *text;
195         const char *lang;
196         struct description_x *prev;
197         struct description_x *next;
198 } description_x;
199
200 typedef struct registry_x {
201         const char *name;
202         const char *text;
203         struct registry_x *prev;
204         struct registry_x *next;
205 } registry_x;
206
207 typedef struct database_x {
208         const char *name;
209         const char *text;
210         struct database_x *prev;
211         struct database_x *next;
212 } database_x;
213
214 typedef struct layout_x {
215         const char *name;
216         const char *text;
217         struct layout_x *prev;
218         struct layout_x *next;
219 } layout_x;
220
221 typedef struct label_x {
222         const char *name;
223         const char *text;
224         const char *lang;
225         struct label_x *prev;
226         struct label_x *next;
227 } label_x;
228
229 typedef struct author_x {
230         const char *email;
231         const char *href;
232         const char *text;
233         const char *lang;
234         struct author_x *prev;
235         struct author_x *next;
236 } author_x;
237
238 typedef struct license_x {
239         const char *text;
240         const char *lang;
241         struct license_x *prev;
242         struct license_x *next;
243 } license_x;
244
245 typedef struct operation_x {
246         const char *name;
247         const char *text;
248         struct operation_x *prev;
249         struct operation_x *next;
250 } operation_x;
251
252 typedef struct uri_x {
253         const char *name;
254         const char *text;
255         struct uri_x *prev;
256         struct uri_x *next;
257 } uri_x;
258
259 typedef struct mime_x {
260         const char *name;
261         const char *text;
262         struct mime_x *prev;
263         struct mime_x *next;
264 } mime_x;
265
266 typedef struct subapp_x {
267         const char *name;
268         const char *text;
269         struct subapp_x *prev;
270         struct subapp_x *next;
271 } subapp_x;
272
273 typedef struct condition_x {
274         const char *name;
275         const char *text;
276         struct condition_x *prev;
277         struct condition_x *next;
278 } condition_x;
279
280 typedef struct notification_x {
281         const char *name;
282         const char *text;
283         struct notification_x *prev;
284         struct notification_x *next;
285 } notification_x;
286
287 typedef struct appsvc_x {
288         const char *text;
289         struct operation_x *operation;
290         struct uri_x *uri;
291         struct mime_x *mime;
292         struct subapp_x *subapp;
293         struct appsvc_x *prev;
294         struct appsvc_x *next;
295 } appsvc_x;
296
297 typedef struct appcontrol_x {
298         const char *text;
299         struct operation_x *operation;
300         struct uri_x *uri;
301         struct mime_x *mime;
302         struct subapp_x *subapp;
303         struct appcontrol_x *prev;
304         struct appcontrol_x *next;
305 } appcontrol_x;
306
307 typedef struct category_x{
308         const char *name;
309         struct category_x *prev;
310         struct category_x *next;
311 } category_x;
312
313 typedef struct launchconditions_x {
314         const char *text;
315         struct condition_x *condition;
316         struct launchconditions_x *prev;
317         struct launchconditions_x *next;
318 } launchconditions_x;
319
320 typedef struct compatibility_x {
321         const char *name;
322         const char *text;
323         struct compatibility_x *prev;
324         struct compatibility_x *next;
325 }compatibility_x;
326
327 typedef struct deviceprofile_x {
328         const char *name;
329         const char *text;
330         struct deviceprofile_x *prev;
331         struct deviceprofile_x *next;
332 }deviceprofile_x;
333
334 typedef struct resolution_x {
335         const char *mimetype;
336         const char *urischeme;
337         struct resolution_x *prev;
338         struct resolution_x *next;
339 } resolution_x;
340
341 typedef struct capability_x {
342         const char *operationid;
343         const char *access;
344         struct resolution_x *resolution;
345         struct capability_x *prev;
346         struct capability_x *next;
347 } capability_x;
348
349 typedef struct datacontrol_x {
350         const char *providerid;
351         struct capability_x *capability;
352         struct datacontrol_x *prev;
353         struct datacontrol_x *next;
354 } datacontrol_x;
355
356 typedef struct uiapplication_x {
357         const char *appid;
358         const char *exec;
359         const char *nodisplay;
360         const char *multiple;
361         const char *taskmanage;
362         const char *enabled;
363         const char *type;
364         const char *categories;
365         const char *extraid;
366         const char *hwacceleration;
367         const char *screenreader;
368         const char *mainapp;
369         const char *package;
370         const char *recentimage;
371         const char *launchcondition;
372         const char *indicatordisplay;
373         const char *portraitimg;
374         const char *landscapeimg;
375         const char *guestmode_visibility;
376         const char *app_component;
377         const char *permission_type;
378         const char *component_type;
379         const char *preload;
380         const char *submode;
381         const char *submode_mainid;
382         struct label_x *label;
383         struct icon_x *icon;
384         struct image_x *image;
385         struct appsvc_x *appsvc;
386         struct appcontrol_x *appcontrol;
387         struct category_x *category;
388         struct metadata_x *metadata;
389         struct permission_x *permission;
390         struct launchconditions_x *launchconditions;
391         struct notification_x *notification;
392         struct datashare_x *datashare;
393         struct uiapplication_x *prev;
394         struct uiapplication_x *next;
395 } uiapplication_x;
396
397 typedef struct serviceapplication_x {
398         const char *appid;
399         const char *exec;
400         const char *onboot;
401         const char *autorestart;
402         const char *enabled;
403         const char *type;
404         const char *package;
405         const char *permission_type;
406         struct label_x *label;
407         struct icon_x *icon;
408         struct appsvc_x *appsvc;
409         struct appcontrol_x *appcontrol;
410         struct category_x *category;
411         struct metadata_x *metadata;
412         struct permission_x *permission;
413         struct datacontrol_x *datacontrol;
414         struct launchconditions_x *launchconditions;
415         struct notification_x *notification;
416         struct datashare_x *datashare;
417         struct serviceapplication_x *prev;
418         struct serviceapplication_x *next;
419 } serviceapplication_x;
420
421 typedef struct daemon_x {
422         const char *name;
423         const char *text;
424         struct daemon_x *prev;
425         struct daemon_x *next;
426 } daemon_x;
427
428 typedef struct theme_x {
429         const char *name;
430         const char *text;
431         struct theme_x *prev;
432         struct theme_x *next;
433 } theme_x;
434
435 typedef struct font_x {
436         const char *name;
437         const char *text;
438         struct font_x *prev;
439         struct font_x *next;
440 } font_x;
441
442 typedef struct ime_x {
443         const char *name;
444         const char *text;
445         struct ime_x *prev;
446         struct ime_x *next;
447 } ime_x;
448
449 typedef struct manifest_x {
450         const char *package;            /**< package name*/
451         const char *version;            /**< package version*/
452         const char *installlocation;            /**< package install location*/
453         const char *ns;         /**<name space*/
454         const char *removable;          /**< package removable flag*/
455         const char *preload;            /**< package preload flag*/
456         const char *readonly;           /**< package readonly flag*/
457         const char *update;                     /**< package update flag*/
458         const char *appsetting;         /**< package app setting flag*/
459         const char *system;             /**< package system flag*/
460         const char *type;               /**< package type*/
461         const char *package_size;               /**< package size for external installation*/
462         const char *installed_time;             /**< installed time after finishing of installation*/
463         const char *installed_storage;          /**< package currently installed storage*/
464         const char *storeclient_id;             /**< id of store client for installed package*/
465         const char *mainapp_id;         /**< app id of main application*/
466         const char *package_url;                /**< app id of main application*/
467         const char *root_path;          /**< package root path*/
468         const char *csc_path;           /**< package csc path*/
469         const char *nodisplay_setting;          /**< package no display setting menu*/
470         struct icon_x *icon;            /**< package icon*/
471         struct label_x *label;          /**< package label*/
472         struct author_x *author;                /**< package author*/
473         struct description_x *description;              /**< package description*/
474         struct license_x *license;              /**< package license*/
475         struct privileges_x *privileges;        /**< package privileges*/
476         struct uiapplication_x *uiapplication;          /**< package's ui application*/
477         struct serviceapplication_x *serviceapplication;                /**< package's service application*/
478         struct daemon_x *daemon;                /**< package daemon*/
479         struct theme_x *theme;          /**< package theme*/
480         struct font_x *font;            /**< package font*/
481         struct ime_x *ime;              /**< package ime*/
482         struct compatibility_x *compatibility;          /**< package compatibility*/
483         struct deviceprofile_x *deviceprofile;          /**< package device profile*/
484 } manifest_x;
485
486 /**
487  * @fn char *pkgmgr_parser_get_manifest_file(const char *pkgid)
488  * @brief       This API gets the manifest file of the package.
489  *
490  * @par         This API is for package-manager installer backends.
491  * @par Sync (or) Async : Synchronous API
492  *
493  * @param[in]   pkgid   pointer to package ID
494  * @return      manifest file path on success, NULL on failure
495  * @pre         None
496  * @post                Free the manifest file pointer that is returned by API
497  * @code
498 static int get_manifest_file(const char *pkgid)
499 {
500         char *manifest = NULL;
501         manifest = pkgmgr_parser_get_manifest_file(pkgid);
502         if (manifest == NULL)
503                 return -1;
504         printf("Manifest File Path is %s\n", manifest);
505         free(manifest);
506         return 0;
507 }
508  * @endcode
509  */
510 char *pkgmgr_parser_get_manifest_file(const char *pkgid);
511
512 /**
513  * @fn int pkgmgr_parser_parse_manifest_for_installation(const char *manifest, char *const tagv[])
514  * @brief       This API parses the manifest file of the package after installation and stores the data in DB.
515  *
516  * @par         This API is for package-manager installer backends.
517  * @par Sync (or) Async : Synchronous API
518  *
519  * @param[in]   manifest        pointer to package manifest file
520  * @param[in]   tagv            array of xml tags or NULL
521  * @return      0 if success, error code(<0) if fail
522  * @retval      PMINFO_R_OK     success
523  * @retval      PMINFO_R_EINVAL invalid argument
524  * @retval      PMINFO_R_ERROR  internal error
525  * @pre         None
526  * @post                None
527  * @code
528 static int parse_manifest_file_for_installation(const char *manifest)
529 {
530         int ret = 0;
531         ret = pkgmgr_parser_parse_manifest_for_installation(manifest, NULL);
532         if (ret)
533                 return -1;
534         return 0;
535 }
536  * @endcode
537  */
538 int pkgmgr_parser_parse_manifest_for_installation(const char *manifest, char *const tagv[]);
539
540 /**
541  * @fn int pkgmgr_parser_parse_manifest_for_upgrade(const char *manifest, char *const tagv[])
542  * @brief       This API parses the manifest file of the package after upgrade and stores the data in DB.
543  *
544  * @par         This API is for package-manager installer backends.
545  * @par Sync (or) Async : Synchronous API
546  *
547  * @param[in]   manifest        pointer to package manifest file
548  * @param[in]   tagv            array of xml tags or NULL
549  * @return      0 if success, error code(<0) if fail
550  * @retval      PMINFO_R_OK     success
551  * @retval      PMINFO_R_EINVAL invalid argument
552  * @retval      PMINFO_R_ERROR  internal error
553  * @pre         None
554  * @post                None
555  * @code
556 static int parse_manifest_file_for_upgrade(const char *manifest)
557 {
558         int ret = 0;
559         ret = pkgmgr_parser_parse_manifest_for_upgrade(manifest, NULL);
560         if (ret)
561                 return -1;
562         return 0;
563 }
564  * @endcode
565  */
566 int pkgmgr_parser_parse_manifest_for_upgrade(const char *manifest, char *const tagv[]);
567
568 /**
569  * @fn int pkgmgr_parser_parse_manifest_for_uninstallation(const char *manifest, char *const tagv[])
570  * @brief       This API parses the manifest file of the package after uninstallation and deletes the data from DB.
571  *
572  * @par         This API is for package-manager installer backends.
573  * @par Sync (or) Async : Synchronous API
574  *
575  * @param[in]   manifest        pointer to package manifest file
576  * @param[in]   tagv            array of xml tags or NULL
577  * @return      0 if success, error code(<0) if fail
578  * @retval      PMINFO_R_OK     success
579  * @retval      PMINFO_R_EINVAL invalid argument
580  * @retval      PMINFO_R_ERROR  internal error
581  * @pre         None
582  * @post                None
583  * @code
584 static int parse_manifest_file_for_uninstallation(const char *manifest)
585 {
586         int ret = 0;
587         ret = pkgmgr_parser_parse_manifest_for_uninstallation(manifest, NULL);
588         if (ret)
589                 return -1;
590         return 0;
591 }
592  * @endcode
593  */
594 int pkgmgr_parser_parse_manifest_for_uninstallation(const char *manifest, char *const tagv[]);
595
596 /**
597  * @fn int pkgmgr_parser_parse_manifest_for_preload()
598  * @brief       This API update  preload information to DB.
599  *
600  * @par         This API is for package-manager installer backends.
601  * @par Sync (or) Async : Synchronous API
602  *
603  * @return      0 if success, error code(<0) if fail
604  * @retval      PMINFO_R_OK     success
605  * @retval      PMINFO_R_EINVAL invalid argument
606  * @retval      PMINFO_R_ERROR  internal error
607  * @pre         None
608  * @post                None
609  * @code
610 static int parser_parse_manifest_for_preload()
611 {
612         int ret = 0;
613         ret = pkgmgr_parser_parse_manifest_for_preload();
614         if (ret)
615                 return -1;
616         return 0;
617 }
618  * @endcode
619  */
620 int pkgmgr_parser_parse_manifest_for_preload();
621
622 /**
623  * @fn int pkgmgr_parser_check_manifest_validation(const char *manifest)
624  * @brief       This API validates the manifest file against the manifest schema.
625  *
626  * @par         This API is for package-manager installer backends.
627  * @par Sync (or) Async : Synchronous API
628  *
629  * @param[in]   manifest        pointer to package manifest file
630  * @return      0 if success, error code(<0) if fail
631  * @retval      PMINFO_R_OK     success
632  * @retval      PMINFO_R_EINVAL invalid argument
633  * @retval      PMINFO_R_ERROR  internal error
634  * @pre         None
635  * @post                None
636  * @code
637 static int validate_manifest_file(const char *manifest)
638 {
639         int ret = 0;
640         ret = pkgmgr_parser_check_manifest_validation(manifest);
641         if (ret)
642                 return -1;
643         return 0;
644 }
645  * @endcode
646  */
647 int pkgmgr_parser_check_manifest_validation(const char *manifest);
648
649 /**
650  * @fn void pkgmgr_parser_free_manifest_xml(manifest_x *mfx)
651  * @brief       This API will free the manifest pointer by recursively freeing all sub elements.
652  *
653  * @par         This API is for package-manager installer backends.
654  * @par Sync (or) Async : Synchronous API
655  *
656  * @param[in]   mfx     pointer to parsed manifest data
657  * @pre         pkgmgr_parser_process_manifest_xml()
658  * @post                None
659  * @code
660 static int parse_manifest_file(const char *manifest)
661 {
662         manifest_x *mfx = NULL
663         mfx = pkgmgr_parser_process_manifest_xml(manifest);
664         if (mfx == NULL)
665                 return -1;
666         printf("Parsing Manifest Success\n");
667         pkgmgr_parser_free_manifest_xml(mfx);
668         return 0;
669 }
670  * @endcode
671  */
672 void pkgmgr_parser_free_manifest_xml(manifest_x *mfx);
673
674 /**
675  * @fn manifest_x *pkgmgr_parser_process_manifest_xml(const char *manifest)
676  * @brief       This API parses the manifest file and stores all the data in the manifest structure.
677  *
678  * @par         This API is for package-manager installer backends.
679  * @par Sync (or) Async : Synchronous API
680  *
681  * @param[in]   manifest        pointer to package manifest file
682  * @return      manifest pointer on success, NULL on failure
683  * @pre         None
684  * @post                pkgmgr_parser_free_manifest_xml()
685  * @code
686 static int parse_manifest_file(const char *manifest)
687 {
688         manifest_x *mfx = NULL
689         mfx = pkgmgr_parser_process_manifest_xml(manifest);
690         if (mfx == NULL)
691                 return -1;
692         printf("Parsing Manifest Success\n");
693         pkgmgr_parser_free_manifest_xml(mfx);
694         return 0;
695 }
696  * @endcode
697  */
698 manifest_x *pkgmgr_parser_process_manifest_xml(const char *manifest);
699
700 /**
701  * @fn manifest_x *pkgmgr_parser_get_manifest_info(const char *pkigid)
702  * @brief       This API gets the manifest info from DB and stores all the data in the manifest structure.
703  *
704  * @par         This API is for package-manager installer backends.
705  * @par Sync (or) Async : Synchronous API
706  *
707  * @param[in]   pkgid   package id for package
708  * @return      manifest pointer on success, NULL on failure
709  * @pre         None
710  * @post                pkgmgr_parser_free_manifest_xml()
711  * @code
712 static int get_manifest_info(const char *pkgid)
713 {
714         manifest_x *mfx = NULL
715         mfx = pkgmgr_parser_get_manifest_info(pkgid);
716         if (mfx == NULL)
717                 return -1;
718         printf("Parsing Manifest Success\n");
719         pkgmgr_parser_free_manifest_xml(mfx);
720         return 0;
721 }
722  * @endcode
723  */
724 manifest_x *pkgmgr_parser_get_manifest_info(const char *pkigid);
725
726 /* These APIs are intended to call parser directly */
727 typedef int (*ps_iter_fn) (const char *tag, int type, void *userdata);
728
729 int pkgmgr_parser_has_parser(const char *tag, int *type);
730 int pkgmgr_parser_get_list(ps_iter_fn iter_fn, void *data);
731
732 /**
733  * @fn int pkgmgr_parser_run_parser_for_installation(xmlDocPtr docPtr, const char *tag, const char *pkgid)
734  * @brief       This API calls the parser directly by supplying the xml docptr. It is used during package installation
735  *
736  * @par         This API is for package-manager installer backends.
737  * @par Sync (or) Async : Synchronous API
738  *
739  * @param[in]   docPtr  XML doxument pointer
740  * @param[in]   tag             the xml tag corresponding to the parser that will parse the docPtr
741  * @param[in]   pkgid           the package id
742  * @return      0 if success, error code(<0) if fail
743  * @retval      PMINFO_R_OK     success
744  * @retval      PMINFO_R_EINVAL invalid argument
745  * @retval      PMINFO_R_ERROR  internal error
746  * @pre         None
747  * @post                None
748  * @code
749 static int parse_docptr_for_installation(xmlDocPtr docPtr)
750 {
751         int ret = 0;
752         ret = pkgmgr_parser_run_parser_for_installation(docPtr, "theme", "com.samsung.test");
753         if (ret)
754                 return -1;
755         return 0;
756 }
757  * @endcode
758  */
759 int pkgmgr_parser_run_parser_for_installation(xmlDocPtr docPtr, const char *tag, const char *pkgid);
760
761 /**
762  * @fn int pkgmgr_parser_run_parser_for_upgrade(xmlDocPtr docPtr, const char *tag, const char *pkgid)
763  * @brief       This API calls the parser directly by supplying the xml docptr. It is used during package upgrade
764  *
765  * @par         This API is for package-manager installer backends.
766  * @par Sync (or) Async : Synchronous API
767  *
768  * @param[in]   docPtr  XML doxument pointer
769  * @param[in]   tag             the xml tag corresponding to the parser that will parse the docPtr
770  * @param[in]   pkgid           the package id
771  * @return      0 if success, error code(<0) if fail
772  * @retval      PMINFO_R_OK     success
773  * @retval      PMINFO_R_EINVAL invalid argument
774  * @retval      PMINFO_R_ERROR  internal error
775  * @pre         None
776  * @post                None
777  * @code
778 static int parse_docptr_for_upgrade(xmlDocPtr docPtr)
779 {
780         int ret = 0;
781         ret = pkgmgr_parser_run_parser_for_upgrade(docPtr, "theme", "com.samsung.test");
782         if (ret)
783                 return -1;
784         return 0;
785 }
786  * @endcode
787  */
788 int pkgmgr_parser_run_parser_for_upgrade(xmlDocPtr docPtr, const char *tag, const char *pkgid);
789
790 /**
791  * @fn int pkgmgr_parser_run_parser_for_uninstallation(xmlDocPtr docPtr, const char *tag, const char *pkgid)
792  * @brief       This API calls the parser directly by supplying the xml docptr. It is used during package uninstallation
793  *
794  * @par         This API is for package-manager installer backends.
795  * @par Sync (or) Async : Synchronous API
796  *
797  * @param[in]   docPtr  XML doxument pointer
798  * @param[in]   tag             the xml tag corresponding to the parser that will parse the docPtr
799  * @param[in]   pkgid           the package id
800  * @return      0 if success, error code(<0) if fail
801  * @retval      PMINFO_R_OK     success
802  * @retval      PMINFO_R_EINVAL invalid argument
803  * @retval      PMINFO_R_ERROR  internal error
804  * @pre         None
805  * @post                None
806  * @code
807 static int parse_docptr_for_uninstallation(xmlDocPtr docPtr)
808 {
809         int ret = 0;
810         ret = pkgmgr_parser_run_parser_for_uninstallation(docPtr, "theme", "com.samsung.test");
811         if (ret)
812                 return -1;
813         return 0;
814 }
815  * @endcode
816  */
817 int pkgmgr_parser_run_parser_for_uninstallation(xmlDocPtr docPtr, const char *tag, const char *pkgid);
818
819
820
821 /**
822  * @fn int pkgmgr_parser_create_desktop_file(manifest_x *mfx)
823  * @brief       This API generates the application desktop file
824  *
825  * @par         This API is for package-manager installer backends.
826  * @par Sync (or) Async : Synchronous API
827  *
828  * @param[in]   mfx     manifest pointer
829  * @return      0 if success, error code(<0) if fail
830  * @retval      PMINFO_R_OK     success
831  * @retval      PMINFO_R_EINVAL invalid argument
832  * @retval      PMINFO_R_ERROR  internal error
833  * @pre         pkgmgr_parser_process_manifest_xml()
834  * @post        pkgmgr_parser_free_manifest_xml()
835  * @code
836 static int create_desktop_file(char *manifest)
837 {
838         int ret = 0;
839         manifest_x *mfx = NULL;
840         mfx = pkgmgr_parser_process_manifest_xml(manifest);
841         ret = pkgmgr_parser_create_desktop_file(mfx);
842         if (ret)
843                 return -1;
844         pkgmgr_parser_free_manifest_xml(mfx);
845         return 0;
846 }
847  * @endcode
848  */
849 int pkgmgr_parser_create_desktop_file(manifest_x *mfx);
850
851 /** @} */
852 #ifdef __cplusplus
853 }
854 #endif
855 #endif                          /* __PKGMGR_PARSER_H__ */