2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* handle.h
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2007-12-10 23:55:22 -05:00
|
|
|
* Copyright (c) 2002-2007 by Judd Vinet <jvinet@zeroflux.org>
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2005-03-14 20:51:43 -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-14 20:51:43 -05:00
|
|
|
*/
|
|
|
|
#ifndef _ALPM_HANDLE_H
|
|
|
|
#define _ALPM_HANDLE_H
|
|
|
|
|
2007-11-16 21:18:45 -05:00
|
|
|
#include <stdio.h>
|
2007-06-03 23:57:38 -04:00
|
|
|
#include <sys/types.h>
|
2007-03-05 17:13:33 -05:00
|
|
|
|
|
|
|
#include "alpm_list.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "db.h"
|
2006-11-20 04:10:23 -05:00
|
|
|
#include "log.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
#include "alpm.h"
|
2006-11-20 04:10:23 -05:00
|
|
|
#include "trans.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-11-20 04:10:23 -05:00
|
|
|
typedef struct _pmhandle_t {
|
2007-07-09 15:22:01 -04:00
|
|
|
/* internal usage */
|
|
|
|
uid_t uid; /* current UID */ /* TODO is this used? */
|
|
|
|
pmdb_t *db_local; /* local db pointer */
|
|
|
|
alpm_list_t *dbs_sync; /* List of (pmdb_t *) */
|
|
|
|
FILE *logstream; /* log file stream pointer */
|
|
|
|
int lckfd; /* lock file descriptor if one exists */
|
2005-03-14 20:51:43 -05:00
|
|
|
pmtrans_t *trans;
|
2007-11-16 21:18:45 -05:00
|
|
|
|
2007-07-09 15:22:01 -04:00
|
|
|
/* callback functions */
|
|
|
|
alpm_cb_log logcb; /* Log callback function */
|
|
|
|
alpm_cb_download dlcb; /* Download callback function */
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2007-07-09 15:22:01 -04:00
|
|
|
/* filesystem paths */
|
|
|
|
char *root; /* Root path, default '/' */
|
|
|
|
char *dbpath; /* Base path to pacman's DBs */
|
|
|
|
char *logfile; /* Name of the log file */
|
|
|
|
char *lockfile; /* Name of the lock file */
|
|
|
|
alpm_list_t *cachedirs; /* Paths to pacman cache directories */
|
|
|
|
|
|
|
|
/* package lists */
|
|
|
|
alpm_list_t *noupgrade; /* List of packages NOT to be upgraded */
|
|
|
|
alpm_list_t *noextract; /* List of packages NOT to extract */ /*TODO is this used?*/
|
|
|
|
alpm_list_t *ignorepkg; /* List of packages to ignore */
|
|
|
|
alpm_list_t *holdpkg; /* List of packages which 'hold' pacman */
|
2007-11-09 20:13:28 -05:00
|
|
|
alpm_list_t *ignoregrp; /* List of groups to ignore */
|
2007-07-09 15:22:01 -04:00
|
|
|
|
|
|
|
/* options */
|
|
|
|
unsigned short usesyslog; /* Use syslog instead of logfile? */ /* TODO move to frontend */
|
2006-11-20 04:10:23 -05:00
|
|
|
unsigned short nopassiveftp; /* Don't use PASV ftp connections */
|
2007-07-09 15:22:01 -04:00
|
|
|
time_t upgradedelay; /* Time to wait before upgrading a package */
|
|
|
|
char *xfercommand; /* External download command */
|
2007-10-19 13:17:53 -04:00
|
|
|
unsigned short usedelta; /* Download deltas if possible */
|
2005-03-14 20:51:43 -05:00
|
|
|
} pmhandle_t;
|
|
|
|
|
2007-11-04 13:05:22 -05:00
|
|
|
/* global handle variable */
|
2006-10-20 21:27:35 -04:00
|
|
|
extern pmhandle_t *handle;
|
|
|
|
|
2007-02-21 01:44:14 -05:00
|
|
|
pmhandle_t *_alpm_handle_new();
|
2007-04-26 20:29:12 -04:00
|
|
|
void _alpm_handle_free(pmhandle_t *handle);
|
2005-03-14 20:51:43 -05:00
|
|
|
|
|
|
|
#endif /* _ALPM_HANDLE_H */
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|