2010-11-16 00:57:39 -05:00
|
|
|
/*
|
|
|
|
* diskspace.h
|
|
|
|
*
|
2011-01-05 23:45:15 -05:00
|
|
|
* Copyright (c) 2010-2011 Pacman Development Team <pacman-dev@archlinux.org>
|
2010-11-16 00:57:39 -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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ALPM_DISKSPACE_H
|
|
|
|
#define _ALPM_DISKSPACE_H
|
|
|
|
|
2010-11-16 21:12:26 -05:00
|
|
|
#if defined(HAVE_SYS_MOUNT_H)
|
2010-11-16 01:15:21 -05:00
|
|
|
#include <sys/mount.h>
|
2010-11-16 21:12:26 -05:00
|
|
|
#endif
|
|
|
|
#if defined(HAVE_SYS_STATVFS_H)
|
2010-11-16 01:15:21 -05:00
|
|
|
#include <sys/statvfs.h>
|
|
|
|
#endif
|
|
|
|
|
2010-11-16 00:57:39 -05:00
|
|
|
#include "alpm.h"
|
|
|
|
|
2011-02-11 11:49:30 -05:00
|
|
|
enum mount_used_level {
|
|
|
|
USED_REMOVE = 1,
|
|
|
|
USED_INSTALL = (1 << 1),
|
|
|
|
};
|
|
|
|
|
2010-11-16 01:15:21 -05:00
|
|
|
typedef struct __alpm_mountpoint_t {
|
|
|
|
/* mount point information */
|
|
|
|
char *mount_dir;
|
2011-02-07 22:33:30 -05:00
|
|
|
size_t mount_dir_len;
|
2010-11-16 01:15:21 -05:00
|
|
|
/* storage for additional disk usage calculations */
|
|
|
|
long blocks_needed;
|
|
|
|
long max_blocks_needed;
|
2011-02-11 11:49:30 -05:00
|
|
|
enum mount_used_level used;
|
2011-02-08 22:19:00 -05:00
|
|
|
int read_only;
|
2010-11-16 21:12:27 -05:00
|
|
|
FSSTATSTYPE fsp;
|
2010-11-16 01:15:21 -05:00
|
|
|
} alpm_mountpoint_t;
|
|
|
|
|
2011-06-03 13:36:13 -04:00
|
|
|
int _alpm_check_diskspace(pmhandle_t *handle);
|
2010-11-16 00:57:39 -05:00
|
|
|
|
|
|
|
#endif /* _ALPM_DISKSPACE_H */
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|