2005-03-22 20:21:12 +00:00
|
|
|
/*
|
|
|
|
* conflict.h
|
2007-11-16 20:18:45 -06:00
|
|
|
*
|
2007-12-10 22:55:22 -06:00
|
|
|
* Copyright (c) 2002-2007 by Judd Vinet <jvinet@zeroflux.org>
|
2007-11-16 20:18:45 -06:00
|
|
|
*
|
2005-03-22 20:21:12 +00: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 22:55:22 -06:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-03-22 20:21:12 +00:00
|
|
|
*/
|
|
|
|
#ifndef _ALPM_CONFLICT_H
|
|
|
|
#define _ALPM_CONFLICT_H
|
|
|
|
|
2006-11-20 09:10:23 +00:00
|
|
|
#include "alpm.h"
|
2007-03-05 22:13:33 +00:00
|
|
|
#include "db.h"
|
|
|
|
#include "package.h"
|
2005-03-22 20:21:12 +00:00
|
|
|
|
2007-11-18 14:25:43 +01:00
|
|
|
struct __pmconflict_t {
|
2008-01-11 00:01:58 -06:00
|
|
|
char *package1;
|
|
|
|
char *package2;
|
2007-11-18 14:25:43 +01:00
|
|
|
};
|
|
|
|
|
2007-11-18 10:29:55 +01:00
|
|
|
struct __pmfileconflict_t {
|
2008-01-11 00:01:58 -06:00
|
|
|
char *target;
|
2007-11-18 10:29:55 +01:00
|
|
|
pmfileconflicttype_t type;
|
2008-01-11 00:01:58 -06:00
|
|
|
char *file;
|
|
|
|
char *ctarget;
|
2006-11-20 09:10:23 +00:00
|
|
|
};
|
2006-02-05 09:27:26 +00:00
|
|
|
|
2007-11-18 14:25:43 +01:00
|
|
|
pmconflict_t *_alpm_conflict_new(const char *package1, const char *package2);
|
2008-01-25 21:31:20 +01:00
|
|
|
pmconflict_t *_alpm_conflict_dup(const pmconflict_t *conflict);
|
2008-01-11 00:01:58 -06:00
|
|
|
void _alpm_conflict_free(pmconflict_t *conflict);
|
2007-11-18 14:25:43 +01:00
|
|
|
int _alpm_conflict_isin(pmconflict_t *needle, alpm_list_t *haystack);
|
2007-11-20 09:57:38 +01:00
|
|
|
alpm_list_t *_alpm_innerconflicts(alpm_list_t *packages);
|
|
|
|
alpm_list_t *_alpm_outerconflicts(pmdb_t *db, alpm_list_t *packages);
|
2007-11-18 10:29:55 +01:00
|
|
|
alpm_list_t *_alpm_db_find_fileconflicts(pmdb_t *db, pmtrans_t *trans, char *root);
|
2005-03-22 20:21:12 +00:00
|
|
|
|
2008-01-11 00:01:58 -06:00
|
|
|
void _alpm_fileconflict_free(pmfileconflict_t *conflict);
|
|
|
|
|
2005-03-22 20:21:12 +00:00
|
|
|
#endif /* _ALPM_CONFLICT_H */
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|