4 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
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>
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
13 * http://www.apache.org/licenses/LICENSE-2.0
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.
23 #ifndef __PKGMGR_PARSER_H__
24 #define __PKGMGR_PARSER_H__
27 * @file pkgmgr_parser.h
28 * @author Sewook Park <sewook7.park@samsung.com>
29 * @author Shobhit Srivastava <shobhit.s@samsung.com>
31 * @brief This file declares API of pkgmgr_parser
32 * @addtogroup APPLICATION_FRAMEWORK
35 * @defgroup PackageManagerParser
36 * @section Header Header file to include:
38 * #include <pkgmgr_parser.h>
44 #include <libxml/xmlreader.h>
49 #define DEFAULT_LOCALE "No Locale"
51 #define PKG_PARSERLIB "parserlib:"
52 #define PKG_PARSER_CONF_PATH "/usr/etc/package-manager/parser_path.conf"
54 #define PKG_STRING_LEN_MAX 1024
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.
64 * @brief Convinience Macro to add node in list
67 #define LISTADD(list, node) \
69 (node)->prev = (list); \
70 if (list) (node)->next = (list)->next; \
71 else (node)->next = NULL; \
72 if (list) (list)->next = (node); \
77 * @brief Convinience Macro to add one node to another node
79 #define NODEADD(node1, node2) \
81 (node2)->prev = (node1); \
82 (node2)->next = (node1)->next; \
83 if ((node1)->next) (node1)->next->prev = (node2); \
84 (node1)->next = (node2); \
88 * @brief Convinience Macro to concatenate two lists
90 #define LISTCAT(list, first, last) \
91 if ((first) && (last)) { \
92 (first)->prev = (list); \
97 * @brief Convinience Macro to delete node from list
99 #define LISTDEL(list, node) \
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; \
107 * @brief Convinience Macro to get list head
109 #define LISTHEAD(list, node) \
110 for ((node) = (list); (node)->prev; (node) = (node)->prev)
113 * @brief Convinience Macro to get list tail
115 #define LISTTAIL(list, node) \
116 for ((node) = (list); (node)->next; (node) = (node)->next)
118 typedef struct metadata_x {
121 struct metadata_x *prev;
122 struct metadata_x *next;
125 typedef struct privilege_x {
127 struct privilege_x *prev;
128 struct privilege_x *next;
131 typedef struct privileges_x {
132 struct privilege_x *privilege;
133 struct privileges_x *prev;
134 struct privileges_x *next;
137 typedef struct permission_x {
140 struct permission_x *prev;
141 struct permission_x *next;
144 typedef struct icon_x {
150 const char *resolution;
155 typedef struct image_x {
160 struct image_x *prev;
161 struct image_x *next;
164 typedef struct allowed_x {
167 struct allowed_x *prev;
168 struct allowed_x *next;
171 typedef struct request_x {
173 struct request_x *prev;
174 struct request_x *next;
177 typedef struct define_x {
179 struct allowed_x *allowed;
180 struct request_x *request;
181 struct define_x *prev;
182 struct define_x *next;
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;
192 typedef struct description_x {
196 struct description_x *prev;
197 struct description_x *next;
200 typedef struct registry_x {
203 struct registry_x *prev;
204 struct registry_x *next;
207 typedef struct database_x {
210 struct database_x *prev;
211 struct database_x *next;
214 typedef struct layout_x {
217 struct layout_x *prev;
218 struct layout_x *next;
221 typedef struct label_x {
225 struct label_x *prev;
226 struct label_x *next;
229 typedef struct author_x {
234 struct author_x *prev;
235 struct author_x *next;
238 typedef struct license_x {
241 struct license_x *prev;
242 struct license_x *next;
245 typedef struct operation_x {
248 struct operation_x *prev;
249 struct operation_x *next;
252 typedef struct uri_x {
259 typedef struct mime_x {
266 typedef struct subapp_x {
269 struct subapp_x *prev;
270 struct subapp_x *next;
273 typedef struct condition_x {
276 struct condition_x *prev;
277 struct condition_x *next;
280 typedef struct notification_x {
283 struct notification_x *prev;
284 struct notification_x *next;
287 typedef struct appsvc_x {
289 struct operation_x *operation;
292 struct subapp_x *subapp;
293 struct appsvc_x *prev;
294 struct appsvc_x *next;
297 typedef struct appcontrol_x {
299 struct operation_x *operation;
302 struct subapp_x *subapp;
303 struct appcontrol_x *prev;
304 struct appcontrol_x *next;
307 typedef struct category_x{
309 struct category_x *prev;
310 struct category_x *next;
313 typedef struct launchconditions_x {
315 struct condition_x *condition;
316 struct launchconditions_x *prev;
317 struct launchconditions_x *next;
318 } launchconditions_x;
320 typedef struct compatibility_x {
323 struct compatibility_x *prev;
324 struct compatibility_x *next;
327 typedef struct deviceprofile_x {
330 struct deviceprofile_x *prev;
331 struct deviceprofile_x *next;
334 typedef struct resolution_x {
335 const char *mimetype;
336 const char *urischeme;
337 struct resolution_x *prev;
338 struct resolution_x *next;
341 typedef struct capability_x {
342 const char *operationid;
344 struct resolution_x *resolution;
345 struct capability_x *prev;
346 struct capability_x *next;
349 typedef struct datacontrol_x {
350 const char *providerid;
351 struct capability_x *capability;
352 struct datacontrol_x *prev;
353 struct datacontrol_x *next;
356 typedef struct uiapplication_x {
359 const char *nodisplay;
360 const char *multiple;
361 const char *taskmanage;
364 const char *categories;
366 const char *hwacceleration;
369 const char *recentimage;
370 const char *launchcondition;
371 const char *indicatordisplay;
372 const char *portraitimg;
373 const char *landscapeimg;
374 const char *guestmode_visibility;
375 const char *app_component;
376 const char *permission_type;
377 struct label_x *label;
379 struct image_x *image;
380 struct appsvc_x *appsvc;
381 struct appcontrol_x *appcontrol;
382 struct category_x *category;
383 struct metadata_x *metadata;
384 struct permission_x *permission;
385 struct launchconditions_x *launchconditions;
386 struct notification_x *notification;
387 struct datashare_x *datashare;
388 struct uiapplication_x *prev;
389 struct uiapplication_x *next;
392 typedef struct serviceapplication_x {
396 const char *autorestart;
400 const char *permission_type;
401 struct label_x *label;
403 struct appsvc_x *appsvc;
404 struct appcontrol_x *appcontrol;
405 struct category_x *category;
406 struct metadata_x *metadata;
407 struct permission_x *permission;
408 struct datacontrol_x *datacontrol;
409 struct launchconditions_x *launchconditions;
410 struct notification_x *notification;
411 struct datashare_x *datashare;
412 struct serviceapplication_x *prev;
413 struct serviceapplication_x *next;
414 } serviceapplication_x;
416 typedef struct daemon_x {
419 struct daemon_x *prev;
420 struct daemon_x *next;
423 typedef struct theme_x {
426 struct theme_x *prev;
427 struct theme_x *next;
430 typedef struct font_x {
437 typedef struct ime_x {
444 typedef struct manifest_x {
445 const char *package; /**< package name*/
446 const char *version; /**< package version*/
447 const char *installlocation; /**< package install location*/
448 const char *ns; /**<name space*/
449 const char *removable; /**< package removable flag*/
450 const char *preload; /**< package preload flag*/
451 const char *readonly; /**< package readonly flag*/
452 const char *update; /**< package update flag*/
453 const char *appsetting; /**< package app setting flag*/
454 const char *type; /**< package type*/
455 const char *package_size; /**< package size for external installation*/
456 const char *installed_time; /**< installed time after finishing of installation*/
457 const char *installed_storage; /**< package currently installed storage*/
458 const char *storeclient_id; /**< id of store client for installed package*/
459 const char *mainapp_id; /**< app id of main application*/
460 const char *package_url; /**< app id of main application*/
461 const char *root_path; /**< package root path*/
462 const char *nodisplay_setting; /**< package no display setting menu*/
463 struct icon_x *icon; /**< package icon*/
464 struct label_x *label; /**< package label*/
465 struct author_x *author; /**< package author*/
466 struct description_x *description; /**< package description*/
467 struct license_x *license; /**< package license*/
468 struct privileges_x *privileges; /**< package privileges*/
469 struct uiapplication_x *uiapplication; /**< package's ui application*/
470 struct serviceapplication_x *serviceapplication; /**< package's service application*/
471 struct daemon_x *daemon; /**< package daemon*/
472 struct theme_x *theme; /**< package theme*/
473 struct font_x *font; /**< package font*/
474 struct ime_x *ime; /**< package ime*/
475 struct compatibility_x *compatibility; /**< package compatibility*/
476 struct deviceprofile_x *deviceprofile; /**< package device profile*/
480 * @fn char *pkgmgr_parser_get_manifest_file(const char *pkgid)
481 * @brief This API gets the manifest file of the package.
483 * @par This API is for package-manager installer backends.
484 * @par Sync (or) Async : Synchronous API
486 * @param[in] pkgid pointer to package ID
487 * @return manifest file path on success, NULL on failure
489 * @post Free the manifest file pointer that is returned by API
491 static int get_manifest_file(const char *pkgid)
493 char *manifest = NULL;
494 manifest = pkgmgr_parser_get_manifest_file(pkgid);
495 if (manifest == NULL)
497 printf("Manifest File Path is %s\n", manifest);
503 char *pkgmgr_parser_get_manifest_file(const char *pkgid);
506 * @fn int pkgmgr_parser_parse_manifest_for_installation(const char *manifest, char *const tagv[])
507 * @brief This API parses the manifest file of the package after installation and stores the data in DB.
509 * @par This API is for package-manager installer backends.
510 * @par Sync (or) Async : Synchronous API
512 * @param[in] manifest pointer to package manifest file
513 * @param[in] tagv array of xml tags or NULL
514 * @return 0 if success, error code(<0) if fail
515 * @retval PMINFO_R_OK success
516 * @retval PMINFO_R_EINVAL invalid argument
517 * @retval PMINFO_R_ERROR internal error
521 static int parse_manifest_file_for_installation(const char *manifest)
524 ret = pkgmgr_parser_parse_manifest_for_installation(manifest, NULL);
531 int pkgmgr_parser_parse_manifest_for_installation(const char *manifest, char *const tagv[]);
534 * @fn int pkgmgr_parser_parse_manifest_for_upgrade(const char *manifest, char *const tagv[])
535 * @brief This API parses the manifest file of the package after upgrade and stores the data in DB.
537 * @par This API is for package-manager installer backends.
538 * @par Sync (or) Async : Synchronous API
540 * @param[in] manifest pointer to package manifest file
541 * @param[in] tagv array of xml tags or NULL
542 * @return 0 if success, error code(<0) if fail
543 * @retval PMINFO_R_OK success
544 * @retval PMINFO_R_EINVAL invalid argument
545 * @retval PMINFO_R_ERROR internal error
549 static int parse_manifest_file_for_upgrade(const char *manifest)
552 ret = pkgmgr_parser_parse_manifest_for_upgrade(manifest, NULL);
559 int pkgmgr_parser_parse_manifest_for_upgrade(const char *manifest, char *const tagv[]);
562 * @fn int pkgmgr_parser_parse_manifest_for_uninstallation(const char *manifest, char *const tagv[])
563 * @brief This API parses the manifest file of the package after uninstallation and deletes the data from DB.
565 * @par This API is for package-manager installer backends.
566 * @par Sync (or) Async : Synchronous API
568 * @param[in] manifest pointer to package manifest file
569 * @param[in] tagv array of xml tags or NULL
570 * @return 0 if success, error code(<0) if fail
571 * @retval PMINFO_R_OK success
572 * @retval PMINFO_R_EINVAL invalid argument
573 * @retval PMINFO_R_ERROR internal error
577 static int parse_manifest_file_for_uninstallation(const char *manifest)
580 ret = pkgmgr_parser_parse_manifest_for_uninstallation(manifest, NULL);
587 int pkgmgr_parser_parse_manifest_for_uninstallation(const char *manifest, char *const tagv[]);
590 * @fn int pkgmgr_parser_check_manifest_validation(const char *manifest)
591 * @brief This API validates the manifest file against the manifest schema.
593 * @par This API is for package-manager installer backends.
594 * @par Sync (or) Async : Synchronous API
596 * @param[in] manifest pointer to package manifest file
597 * @return 0 if success, error code(<0) if fail
598 * @retval PMINFO_R_OK success
599 * @retval PMINFO_R_EINVAL invalid argument
600 * @retval PMINFO_R_ERROR internal error
604 static int validate_manifest_file(const char *manifest)
607 ret = pkgmgr_parser_check_manifest_validation(manifest);
614 int pkgmgr_parser_check_manifest_validation(const char *manifest);
617 * @fn void pkgmgr_parser_free_manifest_xml(manifest_x *mfx)
618 * @brief This API will free the manifest pointer by recursively freeing all sub elements.
620 * @par This API is for package-manager installer backends.
621 * @par Sync (or) Async : Synchronous API
623 * @param[in] mfx pointer to parsed manifest data
624 * @pre pkgmgr_parser_process_manifest_xml()
627 static int parse_manifest_file(const char *manifest)
629 manifest_x *mfx = NULL
630 mfx = pkgmgr_parser_process_manifest_xml(manifest);
633 printf("Parsing Manifest Success\n");
634 pkgmgr_parser_free_manifest_xml(mfx);
639 void pkgmgr_parser_free_manifest_xml(manifest_x *mfx);
642 * @fn manifest_x *pkgmgr_parser_process_manifest_xml(const char *manifest)
643 * @brief This API parses the manifest file and stores all the data in the manifest structure.
645 * @par This API is for package-manager installer backends.
646 * @par Sync (or) Async : Synchronous API
648 * @param[in] manifest pointer to package manifest file
649 * @return manifest pointer on success, NULL on failure
651 * @post pkgmgr_parser_free_manifest_xml()
653 static int parse_manifest_file(const char *manifest)
655 manifest_x *mfx = NULL
656 mfx = pkgmgr_parser_process_manifest_xml(manifest);
659 printf("Parsing Manifest Success\n");
660 pkgmgr_parser_free_manifest_xml(mfx);
665 manifest_x *pkgmgr_parser_process_manifest_xml(const char *manifest);
668 * @fn manifest_x *pkgmgr_parser_get_manifest_info(const char *pkigid)
669 * @brief This API gets the manifest info from DB and stores all the data in the manifest structure.
671 * @par This API is for package-manager installer backends.
672 * @par Sync (or) Async : Synchronous API
674 * @param[in] pkgid package id for package
675 * @return manifest pointer on success, NULL on failure
677 * @post pkgmgr_parser_free_manifest_xml()
679 static int get_manifest_info(const char *pkgid)
681 manifest_x *mfx = NULL
682 mfx = pkgmgr_parser_get_manifest_info(pkgid);
685 printf("Parsing Manifest Success\n");
686 pkgmgr_parser_free_manifest_xml(mfx);
691 manifest_x *pkgmgr_parser_get_manifest_info(const char *pkigid);
693 /* These APIs are intended to call parser directly */
694 typedef int (*ps_iter_fn) (const char *tag, int type, void *userdata);
696 int pkgmgr_parser_has_parser(const char *tag, int *type);
697 int pkgmgr_parser_get_list(ps_iter_fn iter_fn, void *data);
700 * @fn int pkgmgr_parser_run_parser_for_installation(xmlDocPtr docPtr, const char *tag, const char *pkgid)
701 * @brief This API calls the parser directly by supplying the xml docptr. It is used during package installation
703 * @par This API is for package-manager installer backends.
704 * @par Sync (or) Async : Synchronous API
706 * @param[in] docPtr XML doxument pointer
707 * @param[in] tag the xml tag corresponding to the parser that will parse the docPtr
708 * @param[in] pkgid the package id
709 * @return 0 if success, error code(<0) if fail
710 * @retval PMINFO_R_OK success
711 * @retval PMINFO_R_EINVAL invalid argument
712 * @retval PMINFO_R_ERROR internal error
716 static int parse_docptr_for_installation(xmlDocPtr docPtr)
719 ret = pkgmgr_parser_run_parser_for_installation(docPtr, "theme", "com.samsung.test");
726 int pkgmgr_parser_run_parser_for_installation(xmlDocPtr docPtr, const char *tag, const char *pkgid);
729 * @fn int pkgmgr_parser_run_parser_for_upgrade(xmlDocPtr docPtr, const char *tag, const char *pkgid)
730 * @brief This API calls the parser directly by supplying the xml docptr. It is used during package upgrade
732 * @par This API is for package-manager installer backends.
733 * @par Sync (or) Async : Synchronous API
735 * @param[in] docPtr XML doxument pointer
736 * @param[in] tag the xml tag corresponding to the parser that will parse the docPtr
737 * @param[in] pkgid the package id
738 * @return 0 if success, error code(<0) if fail
739 * @retval PMINFO_R_OK success
740 * @retval PMINFO_R_EINVAL invalid argument
741 * @retval PMINFO_R_ERROR internal error
745 static int parse_docptr_for_upgrade(xmlDocPtr docPtr)
748 ret = pkgmgr_parser_run_parser_for_upgrade(docPtr, "theme", "com.samsung.test");
755 int pkgmgr_parser_run_parser_for_upgrade(xmlDocPtr docPtr, const char *tag, const char *pkgid);
758 * @fn int pkgmgr_parser_run_parser_for_uninstallation(xmlDocPtr docPtr, const char *tag, const char *pkgid)
759 * @brief This API calls the parser directly by supplying the xml docptr. It is used during package uninstallation
761 * @par This API is for package-manager installer backends.
762 * @par Sync (or) Async : Synchronous API
764 * @param[in] docPtr XML doxument pointer
765 * @param[in] tag the xml tag corresponding to the parser that will parse the docPtr
766 * @param[in] pkgid the package id
767 * @return 0 if success, error code(<0) if fail
768 * @retval PMINFO_R_OK success
769 * @retval PMINFO_R_EINVAL invalid argument
770 * @retval PMINFO_R_ERROR internal error
774 static int parse_docptr_for_uninstallation(xmlDocPtr docPtr)
777 ret = pkgmgr_parser_run_parser_for_uninstallation(docPtr, "theme", "com.samsung.test");
784 int pkgmgr_parser_run_parser_for_uninstallation(xmlDocPtr docPtr, const char *tag, const char *pkgid);
787 * @fn int pkgmgr_parser_create_desktop_file(manifest_x *mfx)
788 * @brief This API generates the application desktop file
790 * @par This API is for package-manager installer backends.
791 * @par Sync (or) Async : Synchronous API
793 * @param[in] mfx manifest pointer
794 * @return 0 if success, error code(<0) if fail
795 * @retval PMINFO_R_OK success
796 * @retval PMINFO_R_EINVAL invalid argument
797 * @retval PMINFO_R_ERROR internal error
798 * @pre pkgmgr_parser_process_manifest_xml()
799 * @post pkgmgr_parser_free_manifest_xml()
801 static int create_desktop_file(char *manifest)
804 manifest_x *mfx = NULL;
805 mfx = pkgmgr_parser_process_manifest_xml(manifest);
806 ret = pkgmgr_parser_create_desktop_file(mfx);
809 pkgmgr_parser_free_manifest_xml(mfx);
814 int pkgmgr_parser_create_desktop_file(manifest_x *mfx);
820 #endif /* __PKGMGR_PARSER_H__ */