2005-03-22 15:21:12 -05:00
|
|
|
/*
|
|
|
|
* conflict.h
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2010-03-14 20:46:59 -04:00
|
|
|
* Copyright (c) 2006-2010 Pacman Development Team <pacman-dev@archlinux.org>
|
2009-07-01 03:08:33 -04:00
|
|
|
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2005-03-22 15:21:12 -05:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-12-10 23:55:22 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-03-22 15:21:12 -05:00
|
|
|
*/
|
|
|
|
#ifndef _ALPM_CONFLICT_H
|
|
|
|
#define _ALPM_CONFLICT_H
|
|
|
|
|
2006-11-20 04:10:23 -05:00
|
|
|
#include "alpm.h"
|
2007-03-05 17:13:33 -05:00
|
|
|
#include "db.h"
|
|
|
|
#include "package.h"
|
2005-03-22 15:21:12 -05:00
|
|
|
|
2007-11-18 08:25:43 -05:00
|
|
|
struct __pmconflict_t {
|
2008-01-11 01:01:58 -05:00
|
|
|
char *package1;
|
|
|
|
char *package2;
|
2009-08-31 10:20:18 -04:00
|
|
|
char *reason;
|
2007-11-18 08:25:43 -05:00
|
|
|
};
|
|
|
|
|
2007-11-18 04:29:55 -05:00
|
|
|
struct __pmfileconflict_t {
|
2008-01-11 01:01:58 -05:00
|
|
|
char *target;
|
2007-11-18 04:29:55 -05:00
|
|
|
pmfileconflicttype_t type;
|
2008-01-11 01:01:58 -05:00
|
|
|
char *file;
|
|
|
|
char *ctarget;
|
2006-11-20 04:10:23 -05:00
|
|
|
};
|
2006-02-05 04:27:26 -05:00
|
|
|
|
2009-08-31 10:20:18 -04:00
|
|
|
pmconflict_t *_alpm_conflict_new(const char *package1, const char *package2, const char *reason);
|
2008-01-25 15:31:20 -05:00
|
|
|
pmconflict_t *_alpm_conflict_dup(const pmconflict_t *conflict);
|
2008-01-11 01:01:58 -05:00
|
|
|
void _alpm_conflict_free(pmconflict_t *conflict);
|
2007-11-18 08:25:43 -05:00
|
|
|
int _alpm_conflict_isin(pmconflict_t *needle, alpm_list_t *haystack);
|
2007-11-20 03:57:38 -05:00
|
|
|
alpm_list_t *_alpm_innerconflicts(alpm_list_t *packages);
|
|
|
|
alpm_list_t *_alpm_outerconflicts(pmdb_t *db, alpm_list_t *packages);
|
2009-01-02 11:43:05 -05:00
|
|
|
alpm_list_t *_alpm_db_find_fileconflicts(pmdb_t *db, pmtrans_t *trans,
|
|
|
|
alpm_list_t *upgrade, alpm_list_t *remove);
|
2005-03-22 15:21:12 -05:00
|
|
|
|
2008-01-11 01:01:58 -05:00
|
|
|
void _alpm_fileconflict_free(pmfileconflict_t *conflict);
|
|
|
|
|
2005-03-22 15:21:12 -05:00
|
|
|
#endif /* _ALPM_CONFLICT_H */
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|