2009-11-14 15:14:55 +00:00
|
|
|
#ifndef CCACHE_H
|
|
|
|
#define CCACHE_H
|
|
|
|
|
2010-01-20 19:45:04 +00:00
|
|
|
#define CCACHE_VERSION "3.0pre0"
|
2002-03-26 14:46:43 +00:00
|
|
|
|
2002-03-31 09:02:21 +00:00
|
|
|
#include "config.h"
|
2010-02-17 19:53:05 +00:00
|
|
|
#include "mdfour.h"
|
2002-03-26 14:46:43 +00:00
|
|
|
|
2010-02-26 21:15:26 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2005-07-25 07:05:46 +00:00
|
|
|
#include <sys/file.h>
|
2010-02-26 21:15:26 +00:00
|
|
|
#include <unistd.h>
|
2010-02-26 21:34:56 +00:00
|
|
|
#include <stdarg.h>
|
2009-11-01 18:39:58 +00:00
|
|
|
|
2009-11-02 17:11:35 +00:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#define ATTR_FORMAT(x, y, z) __attribute__((format (x, y, z)))
|
|
|
|
#else
|
|
|
|
#define ATTR_FORMAT(x, y, z)
|
|
|
|
#endif
|
|
|
|
|
2010-01-20 18:29:59 +00:00
|
|
|
#ifndef MYNAME
|
2002-03-30 00:24:23 +00:00
|
|
|
#define MYNAME "ccache"
|
2010-01-20 18:29:59 +00:00
|
|
|
#endif
|
2002-03-30 00:24:23 +00:00
|
|
|
|
2009-11-14 15:14:55 +00:00
|
|
|
/* statistics fields in storage order */
|
2002-03-30 10:43:26 +00:00
|
|
|
enum stats {
|
|
|
|
STATS_NONE=0,
|
|
|
|
STATS_STDOUT,
|
|
|
|
STATS_STATUS,
|
|
|
|
STATS_ERROR,
|
|
|
|
STATS_TOCACHE,
|
|
|
|
STATS_PREPROCESSOR,
|
|
|
|
STATS_COMPILER,
|
|
|
|
STATS_MISSING,
|
2009-11-14 15:14:55 +00:00
|
|
|
STATS_CACHEHIT_CPP,
|
2002-03-30 10:43:26 +00:00
|
|
|
STATS_ARGS,
|
|
|
|
STATS_LINK,
|
|
|
|
STATS_NUMFILES,
|
|
|
|
STATS_TOTALSIZE,
|
|
|
|
STATS_MAXFILES,
|
|
|
|
STATS_MAXSIZE,
|
2002-04-01 02:59:06 +00:00
|
|
|
STATS_NOTC,
|
|
|
|
STATS_DEVICE,
|
|
|
|
STATS_NOINPUT,
|
2002-04-08 00:43:58 +00:00
|
|
|
STATS_MULTIPLE,
|
2002-04-10 07:52:52 +00:00
|
|
|
STATS_CONFTEST,
|
2002-04-24 12:07:37 +00:00
|
|
|
STATS_UNSUPPORTED,
|
2003-01-07 05:06:07 +00:00
|
|
|
STATS_OUTSTDOUT,
|
2009-11-14 15:14:55 +00:00
|
|
|
STATS_CACHEHIT_DIR,
|
2010-02-22 07:36:40 +00:00
|
|
|
STATS_NOOUTPUT,
|
|
|
|
STATS_EMPTYOUTPUT,
|
2002-03-30 10:43:26 +00:00
|
|
|
|
|
|
|
STATS_END
|
|
|
|
};
|
|
|
|
|
2009-11-08 19:13:27 +00:00
|
|
|
void hash_start(struct mdfour *md);
|
|
|
|
void hash_string(struct mdfour *md, const char *s);
|
|
|
|
void hash_int(struct mdfour *md, int x);
|
2009-11-14 15:14:55 +00:00
|
|
|
int hash_fd(struct mdfour *md, int fd);
|
|
|
|
int hash_file(struct mdfour *md, const char *fname);
|
2009-11-08 19:13:27 +00:00
|
|
|
char *hash_result(struct mdfour *md);
|
2009-11-14 15:14:55 +00:00
|
|
|
void hash_result_as_bytes(struct mdfour *md, unsigned char *out);
|
2010-02-22 21:58:41 +00:00
|
|
|
void hash_buffer(struct mdfour *md, const char *s, size_t len);
|
2002-03-26 14:46:43 +00:00
|
|
|
|
2009-11-02 17:11:35 +00:00
|
|
|
void cc_log(const char *format, ...) ATTR_FORMAT(printf, 1, 2);
|
2009-11-12 18:58:09 +00:00
|
|
|
void fatal(const char *format, ...) ATTR_FORMAT(printf, 1, 2);
|
2002-03-26 14:46:43 +00:00
|
|
|
|
|
|
|
void copy_fd(int fd_in, int fd_out);
|
2009-12-06 15:14:45 +00:00
|
|
|
int copy_file(const char *src, const char *dest, int compress_dest);
|
|
|
|
int move_file(const char *src, const char *dest, int compress_dest);
|
2009-11-01 18:39:58 +00:00
|
|
|
int test_if_compressed(const char *filename);
|
2002-03-26 14:46:43 +00:00
|
|
|
|
2002-03-26 22:25:14 +00:00
|
|
|
int create_dir(const char *dir);
|
2009-11-14 15:14:55 +00:00
|
|
|
const char *tmp_string(void);
|
|
|
|
int create_hash_dir(char **dir, const char *hash, const char *cache_dir);
|
2009-11-01 18:39:58 +00:00
|
|
|
int create_cachedirtag(const char *dir);
|
2009-11-02 17:11:35 +00:00
|
|
|
void x_asprintf(char **ptr, const char *format, ...) ATTR_FORMAT(printf, 2, 3);
|
2002-03-27 01:38:55 +00:00
|
|
|
char *x_strdup(const char *s);
|
2009-11-14 15:14:55 +00:00
|
|
|
char *x_strndup(const char *s, size_t n);
|
2002-03-28 05:37:27 +00:00
|
|
|
void *x_realloc(void *ptr, size_t size);
|
|
|
|
void *x_malloc(size_t size);
|
|
|
|
void traverse(const char *dir, void (*fn)(const char *, struct stat *));
|
2003-09-25 06:11:28 +00:00
|
|
|
char *str_basename(const char *s);
|
2002-03-30 10:43:26 +00:00
|
|
|
char *dirname(char *s);
|
2010-02-28 15:22:51 +00:00
|
|
|
char *remove_extension(const char *path);
|
2009-11-14 15:14:55 +00:00
|
|
|
int read_lock_fd(int fd);
|
|
|
|
int write_lock_fd(int fd);
|
2002-03-30 10:43:26 +00:00
|
|
|
size_t file_size(struct stat *st);
|
|
|
|
int safe_open(const char *fname);
|
2002-03-31 05:01:05 +00:00
|
|
|
char *x_realpath(const char *path);
|
2003-01-07 05:39:37 +00:00
|
|
|
char *gnu_getcwd(void);
|
2003-09-25 05:41:17 +00:00
|
|
|
int create_empty_file(const char *fname);
|
2004-09-06 12:59:12 +00:00
|
|
|
const char *get_home_directory(void);
|
2009-11-26 22:36:19 +00:00
|
|
|
char *get_cwd();
|
|
|
|
size_t common_dir_prefix_length(const char *s1, const char *s2);
|
|
|
|
char *get_relative_path(const char *from, const char *to);
|
2010-02-17 19:08:13 +00:00
|
|
|
void update_mtime(const char *path);
|
2002-03-30 10:43:26 +00:00
|
|
|
|
|
|
|
void stats_update(enum stats stat);
|
|
|
|
void stats_zero(void);
|
|
|
|
void stats_summary(void);
|
|
|
|
void stats_tocache(size_t size);
|
|
|
|
void stats_read(const char *stats_file, unsigned counters[STATS_END]);
|
2009-11-01 18:39:58 +00:00
|
|
|
int stats_set_limits(long maxfiles, long maxsize);
|
2002-03-30 10:43:26 +00:00
|
|
|
size_t value_units(const char *s);
|
2010-02-27 13:01:14 +00:00
|
|
|
char *format_size(size_t v);
|
2002-03-30 10:43:26 +00:00
|
|
|
void stats_set_sizes(const char *dir, size_t num_files, size_t total_size);
|
|
|
|
|
2009-11-08 19:13:27 +00:00
|
|
|
int unify_hash(struct mdfour *hash, const char *fname);
|
2002-04-01 00:23:31 +00:00
|
|
|
|
2002-04-06 06:48:28 +00:00
|
|
|
#ifndef HAVE_VASPRINTF
|
2009-11-02 17:11:35 +00:00
|
|
|
int vasprintf(char **, const char *, va_list) ATTR_FORMAT(printf, 2, 0);
|
2002-04-06 06:48:28 +00:00
|
|
|
#endif
|
2003-09-25 06:11:28 +00:00
|
|
|
#ifndef HAVE_ASPRINTF
|
2009-11-02 17:11:35 +00:00
|
|
|
int asprintf(char **ptr, const char *, ...) ATTR_FORMAT(printf, 2, 3);
|
2003-09-25 06:11:28 +00:00
|
|
|
#endif
|
2002-03-31 14:26:49 +00:00
|
|
|
|
2002-04-06 06:48:28 +00:00
|
|
|
#ifndef HAVE_SNPRINTF
|
2009-11-02 17:11:35 +00:00
|
|
|
int snprintf(char *, size_t, const char *, ...) ATTR_FORMAT(printf, 3, 4);
|
2002-04-06 06:48:28 +00:00
|
|
|
#endif
|
2002-03-30 10:43:26 +00:00
|
|
|
|
|
|
|
void cleanup_dir(const char *dir, size_t maxfiles, size_t maxsize);
|
|
|
|
void cleanup_all(const char *dir);
|
2002-06-03 03:22:17 +00:00
|
|
|
void wipe_all(const char *dir);
|
2002-03-26 22:25:14 +00:00
|
|
|
|
2009-11-07 08:09:39 +00:00
|
|
|
int execute(char **argv,
|
2002-03-27 00:39:06 +00:00
|
|
|
const char *path_stdout,
|
|
|
|
const char *path_stderr);
|
2003-02-16 02:28:35 +00:00
|
|
|
char *find_executable(const char *name, const char *exclude_name);
|
2002-03-26 14:46:43 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char **argv;
|
|
|
|
int argc;
|
|
|
|
} ARGS;
|
|
|
|
|
|
|
|
|
2003-02-16 02:28:35 +00:00
|
|
|
ARGS *args_init(int , char **);
|
2002-03-26 14:46:43 +00:00
|
|
|
void args_add(ARGS *args, const char *s);
|
2003-02-16 02:28:35 +00:00
|
|
|
void args_add_prefix(ARGS *args, const char *s);
|
2002-03-27 08:40:13 +00:00
|
|
|
void args_pop(ARGS *args, int n);
|
2003-02-08 05:49:22 +00:00
|
|
|
void args_strip(ARGS *args, const char *prefix);
|
2003-02-16 02:28:35 +00:00
|
|
|
void args_remove_first(ARGS *args);
|
2002-03-27 08:40:13 +00:00
|
|
|
|
2002-04-06 06:45:31 +00:00
|
|
|
#if HAVE_COMPAR_FN_T
|
|
|
|
#define COMPAR_FN_T __compar_fn_t
|
|
|
|
#else
|
|
|
|
typedef int (*COMPAR_FN_T)(const void *, const void *);
|
|
|
|
#endif
|
2004-09-06 12:24:05 +00:00
|
|
|
|
|
|
|
/* work with silly DOS binary open */
|
|
|
|
#ifndef O_BINARY
|
|
|
|
#define O_BINARY 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* mkstemp() on some versions of cygwin don't handle binary files, so
|
|
|
|
override */
|
|
|
|
#ifdef __CYGWIN__
|
|
|
|
#undef HAVE_MKSTEMP
|
|
|
|
#endif
|
2009-11-14 15:14:55 +00:00
|
|
|
|
|
|
|
#endif /* ifndef CCACHE_H */
|