2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* util.h
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2006-01-02 14:55:35 -05:00
|
|
|
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
|
2006-10-15 15:31:03 -04:00
|
|
|
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
|
|
|
|
* Copyright (c) 2005 by Christian Hamar <krics@linuxforum.hu>
|
|
|
|
* Copyright (c) 2006 by David Kimpe <dnaku@frugalware.org>
|
|
|
|
* Copyright (c) 2005, 2006 by Miklos Vajna <vmiklos@frugalware.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
|
|
|
|
* along with this program; if not, write to the Free Software
|
2007-11-16 21:18:45 -05:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
2005-03-14 20:51:43 -05:00
|
|
|
* USA.
|
|
|
|
*/
|
|
|
|
#ifndef _ALPM_UTIL_H
|
|
|
|
#define _ALPM_UTIL_H
|
|
|
|
|
2007-10-23 00:52:55 -04:00
|
|
|
#include "config.h"
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
#include <stdio.h>
|
2007-11-06 23:50:21 -05:00
|
|
|
#include <string.h>
|
2007-09-06 20:03:38 -04:00
|
|
|
#include <stdarg.h>
|
2007-04-29 12:47:02 -04:00
|
|
|
#include <time.h>
|
2007-11-04 19:02:25 -05:00
|
|
|
#include <sys/stat.h> /* struct stat */
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
#ifdef ENABLE_NLS
|
2007-10-23 00:33:47 -04:00
|
|
|
#include <libintl.h> /* here so it doesn't need to be included elsewhere */
|
|
|
|
/* define _() as shortcut for gettext() */
|
2006-10-15 15:31:03 -04:00
|
|
|
#define _(str) dgettext ("libalpm", str)
|
|
|
|
#else
|
|
|
|
#define _(s) s
|
|
|
|
#endif
|
|
|
|
|
2007-10-30 00:32:58 -04:00
|
|
|
#define ALLOC_FAIL(s) do { _alpm_log(PM_LOG_ERROR, _("alloc failure: could not allocate %zd bytes\n"), s); } while(0)
|
2007-10-29 02:00:52 -04:00
|
|
|
|
|
|
|
#define MALLOC(p, s, action) do { p = calloc(1, s); if(p == NULL) { ALLOC_FAIL(s); action; } } while(0)
|
|
|
|
#define CALLOC(p, l, s, action) do { p = calloc(l, s); if(p == NULL) { ALLOC_FAIL(s); action; } } while(0)
|
2007-11-06 23:50:21 -05:00
|
|
|
#define STRDUP(r, s, action) do { r = strdup(s); if(r == NULL) { ALLOC_FAIL(strlen(s)); action; } } while(0)
|
2007-10-29 02:00:52 -04:00
|
|
|
|
|
|
|
#define FREE(p) do { if(p) { free(p); p = NULL; } } while(0)
|
2007-10-23 00:33:47 -04:00
|
|
|
|
|
|
|
#define ASSERT(cond, action) do { if(!(cond)) { action; } } while(0)
|
|
|
|
|
2007-03-03 03:13:59 -05:00
|
|
|
int _alpm_makepath(const char *path);
|
|
|
|
int _alpm_copyfile(const char *src, const char *dest);
|
2005-03-14 20:51:43 -05:00
|
|
|
char *_alpm_strtrim(char *str);
|
2007-05-18 02:24:59 -04:00
|
|
|
char *_alpm_strreplace(const char *str, const char *needle, const char *replace);
|
2007-05-31 02:51:28 -04:00
|
|
|
int _alpm_lckmk();
|
|
|
|
int _alpm_lckrm();
|
2006-10-25 14:15:25 -04:00
|
|
|
int _alpm_unpack(const char *archive, const char *prefix, const char *fn);
|
2007-03-03 03:13:59 -05:00
|
|
|
int _alpm_rmrf(const char *path);
|
2007-06-07 20:55:13 -04:00
|
|
|
int _alpm_logaction(unsigned short usesyslog, FILE *f, const char *fmt, va_list args);
|
2007-03-03 03:13:59 -05:00
|
|
|
int _alpm_ldconfig(const char *root);
|
2007-02-13 03:15:38 -05:00
|
|
|
int _alpm_str_cmp(const void *s1, const void *s2);
|
2007-08-20 13:28:51 -04:00
|
|
|
char *_alpm_filecache_find(const char *filename);
|
|
|
|
const char *_alpm_filecache_setup(void);
|
2007-11-04 19:02:25 -05:00
|
|
|
int _alpm_lstat(const char *path, struct stat *buf);
|
2007-02-13 03:15:38 -05:00
|
|
|
|
2007-07-12 15:20:43 -04:00
|
|
|
#ifndef HAVE_STRVERSCMP
|
2007-10-22 04:43:34 -04:00
|
|
|
int strverscmp(const char *, const char *);
|
2007-07-12 15:20:43 -04:00
|
|
|
#endif
|
|
|
|
#ifndef HAVE_STRSEP
|
|
|
|
char *strsep(char **, const char *);
|
2006-10-15 15:31:03 -04:00
|
|
|
#endif
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-01-30 02:47:19 -05:00
|
|
|
/* check exported library symbols with: nm -C -D <lib> */
|
|
|
|
#define SYMEXPORT __attribute__((visibility("default")))
|
2007-10-07 16:00:24 -04:00
|
|
|
#define SYMHIDDEN __attribute__((visibility("internal")))
|
2007-01-30 02:47:19 -05:00
|
|
|
|
2007-10-19 13:17:53 -04:00
|
|
|
/* max percent of package size to download deltas */
|
|
|
|
#define MAX_DELTA_RATIO 0.7
|
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
#endif /* _ALPM_UTIL_H */
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|