88ba635780
--HG-- extra : convert_revision : xtraeme%40gmail.com-20091128044321-6kmhrrxggv2h681w
122 lines
3.3 KiB
C
122 lines
3.3 KiB
C
/*-
|
|
* Copyright (c) 2009 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.h>
|
|
|
|
int
|
|
xbps_remove_obsoletes(prop_dictionary_t oldd, prop_dictionary_t newd)
|
|
{
|
|
prop_object_iterator_t iter, iter2;
|
|
prop_object_t obj, obj2;
|
|
prop_string_t oldstr, newstr;
|
|
const char *array_str = "files";
|
|
char *buf = NULL;
|
|
int rv = 0;
|
|
bool found, dolinks = false;
|
|
|
|
iter = iter2 = NULL;
|
|
obj = obj2 = NULL;
|
|
oldstr = newstr = NULL;
|
|
|
|
again:
|
|
iter = xbps_get_array_iter_from_dict(oldd, array_str);
|
|
if (iter == NULL)
|
|
return errno;
|
|
iter2 = xbps_get_array_iter_from_dict(newd, array_str);
|
|
if (iter2 == NULL) {
|
|
prop_object_iterator_release(iter);
|
|
return errno;
|
|
}
|
|
/*
|
|
* Check for obsolete files, i.e files/links available in
|
|
* the old package list not found in new package list.
|
|
*/
|
|
while ((obj = prop_object_iterator_next(iter))) {
|
|
found = false;
|
|
oldstr = prop_dictionary_get(obj, "file");
|
|
if (oldstr == NULL) {
|
|
rv = errno;
|
|
goto out;
|
|
}
|
|
while ((obj2 = prop_object_iterator_next(iter2))) {
|
|
newstr = prop_dictionary_get(obj2, "file");
|
|
if (newstr == NULL) {
|
|
rv = errno;
|
|
goto out;
|
|
}
|
|
if (prop_string_equals(oldstr, newstr)) {
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
prop_object_iterator_reset(iter2);
|
|
if (found)
|
|
continue;
|
|
|
|
/*
|
|
* Obsolete file found, remove it.
|
|
*/
|
|
buf = xbps_xasprintf(".%s", prop_string_cstring_nocopy(oldstr));
|
|
if (buf == NULL) {
|
|
rv = errno;
|
|
goto out;
|
|
}
|
|
if (remove(buf) == -1) {
|
|
printf("WARNING: couldn't remove obsolete %s: %s\n",
|
|
dolinks ? "link" : "file",
|
|
prop_string_cstring_nocopy(oldstr));
|
|
free(buf);
|
|
continue;
|
|
}
|
|
printf("Removed obsolete %s: %s\n",
|
|
dolinks ? "link" : "file",
|
|
prop_string_cstring_nocopy(oldstr));
|
|
free(buf);
|
|
}
|
|
if (!dolinks) {
|
|
/*
|
|
* Now look for obsolete links.
|
|
*/
|
|
dolinks = true;
|
|
array_str = "links";
|
|
prop_object_iterator_release(iter2);
|
|
prop_object_iterator_release(iter);
|
|
iter = iter2 = NULL;
|
|
goto again;
|
|
}
|
|
|
|
out:
|
|
prop_object_iterator_release(iter2);
|
|
prop_object_iterator_release(iter);
|
|
|
|
return rv;
|
|
}
|