281 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			281 lines
		
	
	
		
			7.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*-
 | 
						|
 * Copyright (c) 2009-2012 Juan Romero Pardines.
 | 
						|
 * All rights reserved.
 | 
						|
 *
 | 
						|
 * Redistribution and use in source and binary forms, with or without
 | 
						|
 * modification, are permitted provided that the following conditions
 | 
						|
 * are met:
 | 
						|
 * 1. Redistributions of source code must retain the above copyright
 | 
						|
 *    notice, this list of conditions and the following disclaimer.
 | 
						|
 * 2. Redistributions in binary form must reproduce the above copyright
 | 
						|
 *    notice, this list of conditions and the following disclaimer in the
 | 
						|
 *    documentation and/or other materials provided with the distribution.
 | 
						|
 *
 | 
						|
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 | 
						|
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 | 
						|
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 | 
						|
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 | 
						|
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 | 
						|
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 | 
						|
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 | 
						|
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 | 
						|
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 | 
						|
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 | 
						|
 */
 | 
						|
 | 
						|
#include <stdio.h>
 | 
						|
#include <stdbool.h>
 | 
						|
#include <stdlib.h>
 | 
						|
#include <string.h>
 | 
						|
#include <errno.h>
 | 
						|
 | 
						|
#include "xbps_api_impl.h"
 | 
						|
 | 
						|
/**
 | 
						|
 * @file lib/transaction_dictionary.c
 | 
						|
 * @brief Transaction handling routines
 | 
						|
 * @defgroup transaction Transaction handling functions
 | 
						|
 *
 | 
						|
 * The following image shows off the full transaction dictionary returned
 | 
						|
 * by xbps_transaction_prepare().
 | 
						|
 *
 | 
						|
 * @image html images/xbps_transaction_dictionary.png
 | 
						|
 *
 | 
						|
 * Legend:
 | 
						|
 *  - <b>Salmon bg box</b>: The transaction dictionary.
 | 
						|
 *  - <b>White bg box</b>: mandatory objects.
 | 
						|
 *  - <b>Grey bg box</b>: optional objects.
 | 
						|
 *  - <b>Green bg box</b>: possible value set in the object, only one of them
 | 
						|
 *    will be set.
 | 
						|
 *
 | 
						|
 * Text inside of white boxes are the key associated with the object, its
 | 
						|
 * data type is specified on its edge, i.e string, array, integer, dictionary.
 | 
						|
 */
 | 
						|
 | 
						|
static int
 | 
						|
compute_transaction_stats(prop_dictionary_t transd)
 | 
						|
{
 | 
						|
	prop_dictionary_t pkg_metad;
 | 
						|
	prop_object_iterator_t iter;
 | 
						|
	prop_object_t obj;
 | 
						|
	uint64_t tsize, dlsize, instsize, rmsize;
 | 
						|
	uint32_t inst_pkgcnt, up_pkgcnt, cf_pkgcnt, rm_pkgcnt;
 | 
						|
	int rv = 0;
 | 
						|
	const char *tract, *pkgname;
 | 
						|
 | 
						|
	inst_pkgcnt = up_pkgcnt = cf_pkgcnt = rm_pkgcnt = 0;
 | 
						|
	tsize = dlsize = instsize = rmsize = 0;
 | 
						|
 | 
						|
	iter = xbps_array_iter_from_dict(transd, "packages");
 | 
						|
	if (iter == NULL)
 | 
						|
		return EINVAL;
 | 
						|
 | 
						|
	while ((obj = prop_object_iterator_next(iter)) != NULL) {
 | 
						|
		/*
 | 
						|
		 * Count number of pkgs to be removed, configured,
 | 
						|
		 * installed and updated.
 | 
						|
		 */
 | 
						|
		prop_dictionary_get_cstring_nocopy(obj, "pkgname", &pkgname);
 | 
						|
		prop_dictionary_get_cstring_nocopy(obj, "transaction", &tract);
 | 
						|
 | 
						|
		if (strcmp(tract, "install") == 0)
 | 
						|
			inst_pkgcnt++;
 | 
						|
		else if (strcmp(tract, "update") == 0)
 | 
						|
			up_pkgcnt++;
 | 
						|
		else if (strcmp(tract, "configure") == 0)
 | 
						|
			cf_pkgcnt++;
 | 
						|
		else if (strcmp(tract, "remove") == 0)
 | 
						|
			rm_pkgcnt++;
 | 
						|
 | 
						|
		/*
 | 
						|
		 * Only process pkgs to be installed or updated.
 | 
						|
		 */
 | 
						|
		if (strcmp(tract, "configure") == 0)
 | 
						|
			continue;
 | 
						|
 | 
						|
		tsize = 0;
 | 
						|
		/*
 | 
						|
		 * If removing or updating a package, get installed_size
 | 
						|
		 * from pkg's metadata dictionary.
 | 
						|
		 */
 | 
						|
		if ((strcmp(tract, "remove") == 0) ||
 | 
						|
		    (strcmp(tract, "update") == 0)) {
 | 
						|
			pkg_metad =
 | 
						|
			    xbps_dictionary_from_metadata_plist(pkgname,
 | 
						|
				XBPS_PKGPROPS);
 | 
						|
			if (pkg_metad == NULL)
 | 
						|
				continue;
 | 
						|
			prop_dictionary_get_uint64(pkg_metad,
 | 
						|
			    "installed_size", &tsize);
 | 
						|
			prop_object_release(pkg_metad);
 | 
						|
			rmsize += tsize;
 | 
						|
		}
 | 
						|
		if ((strcmp(tract, "install") == 0) ||
 | 
						|
		    (strcmp(tract, "update") == 0)) {
 | 
						|
			prop_dictionary_get_uint64(obj,
 | 
						|
			    "installed_size", &tsize);
 | 
						|
			instsize += tsize;
 | 
						|
			prop_dictionary_get_uint64(obj,
 | 
						|
			    "filename-size", &tsize);
 | 
						|
			dlsize += tsize;
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if (inst_pkgcnt &&
 | 
						|
	    !prop_dictionary_set_uint32(transd, "total-install-pkgs",
 | 
						|
	    inst_pkgcnt)) {
 | 
						|
		rv = EINVAL;
 | 
						|
		goto out;
 | 
						|
	}
 | 
						|
	if (up_pkgcnt &&
 | 
						|
	    !prop_dictionary_set_uint32(transd, "total-update-pkgs",
 | 
						|
	    up_pkgcnt)) {
 | 
						|
		rv = EINVAL;
 | 
						|
		goto out;
 | 
						|
	}
 | 
						|
	if (cf_pkgcnt &&
 | 
						|
	    !prop_dictionary_set_uint32(transd, "total-configure-pkgs",
 | 
						|
	    cf_pkgcnt)) {
 | 
						|
		rv = EINVAL;
 | 
						|
		goto out;
 | 
						|
	}
 | 
						|
	if (rm_pkgcnt &&
 | 
						|
	    !prop_dictionary_set_uint32(transd, "total-remove-pkgs",
 | 
						|
	    rm_pkgcnt)) {
 | 
						|
		rv = EINVAL;
 | 
						|
		goto out;
 | 
						|
	}
 | 
						|
 | 
						|
	if (instsize > rmsize) {
 | 
						|
		instsize -= rmsize;
 | 
						|
		rmsize = 0;
 | 
						|
	} else if (rmsize > instsize) {
 | 
						|
		rmsize -= instsize;
 | 
						|
		instsize = 0;
 | 
						|
	} else
 | 
						|
		instsize = rmsize = 0;
 | 
						|
 | 
						|
	/*
 | 
						|
	 * Add object in transaction dictionary with total installed
 | 
						|
	 * size that it will take.
 | 
						|
	 */
 | 
						|
	if (!prop_dictionary_set_uint64(transd,
 | 
						|
	    "total-installed-size", instsize)) {
 | 
						|
		rv = EINVAL;
 | 
						|
		goto out;
 | 
						|
	}
 | 
						|
	/*
 | 
						|
	 * Add object in transaction dictionary with total download
 | 
						|
	 * size that needs to be sucked in.
 | 
						|
	 */
 | 
						|
	if (!prop_dictionary_set_uint64(transd,
 | 
						|
	    "total-download-size", dlsize)) {
 | 
						|
		rv = EINVAL;
 | 
						|
		goto out;
 | 
						|
	}
 | 
						|
	/*
 | 
						|
	 * Add object in transaction dictionary with total size to be
 | 
						|
	 * freed from packages to be removed.
 | 
						|
	 */
 | 
						|
	if (!prop_dictionary_set_uint64(transd,
 | 
						|
	    "total-removed-size", rmsize)) {
 | 
						|
		rv = EINVAL;
 | 
						|
		goto out;
 | 
						|
	}
 | 
						|
out:
 | 
						|
	prop_object_iterator_release(iter);
 | 
						|
 | 
						|
	return rv;
 | 
						|
}
 | 
						|
 | 
						|
int HIDDEN
 | 
						|
xbps_transaction_init(struct xbps_handle *xhp)
 | 
						|
{
 | 
						|
	prop_array_t unsorted, mdeps;
 | 
						|
 | 
						|
	if (xhp->transd != NULL)
 | 
						|
		return 0;
 | 
						|
 | 
						|
	xhp->transd = prop_dictionary_create();
 | 
						|
	if (xhp->transd == NULL)
 | 
						|
		return ENOMEM;
 | 
						|
 | 
						|
        unsorted = prop_array_create();
 | 
						|
        if (unsorted == NULL) {
 | 
						|
		prop_object_release(xhp->transd);
 | 
						|
		xhp->transd = NULL;
 | 
						|
		return ENOMEM;
 | 
						|
	}
 | 
						|
 | 
						|
        if (!xbps_add_obj_to_dict(xhp->transd, unsorted, "unsorted_deps")) {
 | 
						|
		prop_object_release(xhp->transd);
 | 
						|
		xhp->transd = NULL;
 | 
						|
		return EINVAL;
 | 
						|
	}
 | 
						|
	mdeps = prop_array_create();
 | 
						|
	if (mdeps == NULL) {
 | 
						|
		prop_object_release(xhp->transd);
 | 
						|
		xhp->transd = NULL;
 | 
						|
		return ENOMEM;
 | 
						|
	}
 | 
						|
	if (!xbps_add_obj_to_dict(xhp->transd, mdeps, "missing_deps")) {
 | 
						|
		prop_object_release(xhp->transd);
 | 
						|
		xhp->transd = NULL;
 | 
						|
		return EINVAL;
 | 
						|
	}
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 | 
						|
 | 
						|
int
 | 
						|
xbps_transaction_prepare(void)
 | 
						|
{
 | 
						|
	prop_array_t mdeps;
 | 
						|
	struct xbps_handle *xhp = xbps_handle_get();
 | 
						|
	int rv = 0;
 | 
						|
 | 
						|
	if (xhp->transd == NULL)
 | 
						|
		return ENXIO;
 | 
						|
 | 
						|
	/*
 | 
						|
	 * If there are missing deps bail out.
 | 
						|
	 */
 | 
						|
	mdeps = prop_dictionary_get(xhp->transd, "missing_deps");
 | 
						|
	if (prop_array_count(mdeps) > 0)
 | 
						|
		return ENODEV;
 | 
						|
 | 
						|
	/*
 | 
						|
	 * Check for packages to be replaced.
 | 
						|
	 */
 | 
						|
	if ((rv = xbps_transaction_package_replace(xhp->transd)) != 0) {
 | 
						|
		prop_object_release(xhp->transd);
 | 
						|
		xhp->transd = NULL;
 | 
						|
		return rv;
 | 
						|
	}
 | 
						|
	/*
 | 
						|
	 * Sort package dependencies if necessary.
 | 
						|
	 */
 | 
						|
	if ((rv = xbps_transaction_sort_pkg_deps(xhp)) != 0) {
 | 
						|
		prop_object_release(xhp->transd);
 | 
						|
		xhp->transd = NULL;
 | 
						|
		return rv;
 | 
						|
	}
 | 
						|
	/*
 | 
						|
	 * Add transaction stats for total download/installed size,
 | 
						|
	 * number of packages to be installed, updated, configured
 | 
						|
	 * and removed to the transaction dictionary.
 | 
						|
	 */
 | 
						|
	if ((rv = compute_transaction_stats(xhp->transd)) != 0) {
 | 
						|
		prop_object_release(xhp->transd);
 | 
						|
		xhp->transd = NULL;
 | 
						|
		return rv;
 | 
						|
	}
 | 
						|
	/*
 | 
						|
	 * The missing deps array is not necessary anymore.
 | 
						|
	 */
 | 
						|
	prop_dictionary_remove(xhp->transd, "missing_deps");
 | 
						|
	prop_dictionary_make_immutable(xhp->transd);
 | 
						|
 | 
						|
	return 0;
 | 
						|
}
 |