1 #ifndef __PERF_CACHE_H 2 #define __PERF_CACHE_H 3 4 #include "util.h" 5 #include "strbuf.h" 6 #include "../perf.h" 7 8 #define CMD_EXEC_PATH "--exec-path" 9 #define CMD_PERF_DIR "--perf-dir=" 10 #define CMD_WORK_TREE "--work-tree=" 11 #define CMD_DEBUGFS_DIR "--debugfs-dir=" 12 13 #define PERF_DIR_ENVIRONMENT "PERF_DIR" 14 #define PERF_WORK_TREE_ENVIRONMENT "PERF_WORK_TREE" 15 #define DEFAULT_PERF_DIR_ENVIRONMENT ".perf" 16 #define DB_ENVIRONMENT "PERF_OBJECT_DIRECTORY" 17 #define INDEX_ENVIRONMENT "PERF_INDEX_FILE" 18 #define GRAFT_ENVIRONMENT "PERF_GRAFT_FILE" 19 #define TEMPLATE_DIR_ENVIRONMENT "PERF_TEMPLATE_DIR" 20 #define CONFIG_ENVIRONMENT "PERF_CONFIG" 21 #define EXEC_PATH_ENVIRONMENT "PERF_EXEC_PATH" 22 #define CEILING_DIRECTORIES_ENVIRONMENT "PERF_CEILING_DIRECTORIES" 23 #define PERFATTRIBUTES_FILE ".perfattributes" 24 #define INFOATTRIBUTES_FILE "info/attributes" 25 #define ATTRIBUTE_MACRO_PREFIX "[attr]" 26 #define PERF_DEBUGFS_ENVIRONMENT "PERF_DEBUGFS_DIR" 27 28 typedef int (*config_fn_t)(const char *, const char *, void *); 29 extern int perf_default_config(const char *, const char *, void *); 30 extern int perf_config_from_file(config_fn_t fn, const char *, void *); 31 extern int perf_config(config_fn_t fn, void *); 32 extern int perf_parse_ulong(const char *, unsigned long *); 33 extern int perf_config_int(const char *, const char *); 34 extern unsigned long perf_config_ulong(const char *, const char *); 35 extern int perf_config_bool_or_int(const char *, const char *, int *); 36 extern int perf_config_bool(const char *, const char *); 37 extern int perf_config_string(const char **, const char *, const char *); 38 extern int perf_config_set(const char *, const char *); 39 extern int perf_config_set_multivar(const char *, const char *, const char *, int); 40 extern int perf_config_rename_section(const char *, const char *); 41 extern const char *perf_etc_perfconfig(void); 42 extern int check_repository_format_version(const char *var, const char *value, void *cb); 43 extern int perf_config_system(void); 44 extern int perf_config_global(void); 45 extern int config_error_nonbool(const char *); 46 extern const char *config_exclusive_filename; 47 48 #define MAX_PERFNAME (1000) 49 extern char perf_default_email[MAX_PERFNAME]; 50 extern char perf_default_name[MAX_PERFNAME]; 51 extern int user_ident_explicitly_given; 52 53 extern const char *perf_log_output_encoding; 54 extern const char *perf_mailmap_file; 55 56 /* IO helper functions */ 57 extern void maybe_flush_or_die(FILE *, const char *); 58 extern int copy_fd(int ifd, int ofd); 59 extern int copy_file(const char *dst, const char *src, int mode); 60 extern ssize_t write_in_full(int fd, const void *buf, size_t count); 61 extern void write_or_die(int fd, const void *buf, size_t count); 62 extern int write_or_whine(int fd, const void *buf, size_t count, const char *msg); 63 extern int write_or_whine_pipe(int fd, const void *buf, size_t count, const char *msg); 64 extern void fsync_or_die(int fd, const char *); 65 66 /* pager.c */ 67 extern void setup_pager(void); 68 extern const char *pager_program; 69 extern int pager_in_use(void); 70 extern int pager_use_color; 71 72 extern const char *editor_program; 73 extern const char *excludes_file; 74 75 char *alias_lookup(const char *alias); 76 int split_cmdline(char *cmdline, const char ***argv); 77 78 #define alloc_nr(x) (((x)+16)*3/2) 79 80 /* 81 * Realloc the buffer pointed at by variable 'x' so that it can hold 82 * at least 'nr' entries; the number of entries currently allocated 83 * is 'alloc', using the standard growing factor alloc_nr() macro. 84 * 85 * DO NOT USE any expression with side-effect for 'x' or 'alloc'. 86 */ 87 #define ALLOC_GROW(x, nr, alloc) \ 88 do { \ 89 if ((nr) > alloc) { \ 90 if (alloc_nr(alloc) < (nr)) \ 91 alloc = (nr); \ 92 else \ 93 alloc = alloc_nr(alloc); \ 94 x = xrealloc((x), alloc * sizeof(*(x))); \ 95 } \ 96 } while(0) 97 98 99 static inline int is_absolute_path(const char *path) 100 { 101 return path[0] == '/'; 102 } 103 104 const char *make_absolute_path(const char *path); 105 const char *make_nonrelative_path(const char *path); 106 const char *make_relative_path(const char *abs, const char *base); 107 int normalize_path_copy(char *dst, const char *src); 108 int longest_ancestor_length(const char *path, const char *prefix_list); 109 char *strip_path_suffix(const char *path, const char *suffix); 110 111 extern char *mkpath(const char *fmt, ...) __attribute__((format (printf, 1, 2))); 112 extern char *perf_path(const char *fmt, ...) __attribute__((format (printf, 1, 2))); 113 /* perf_mkstemp() - create tmp file honoring TMPDIR variable */ 114 extern int perf_mkstemp(char *path, size_t len, const char *template); 115 116 extern char *mksnpath(char *buf, size_t n, const char *fmt, ...) 117 __attribute__((format (printf, 3, 4))); 118 extern char *perf_snpath(char *buf, size_t n, const char *fmt, ...) 119 __attribute__((format (printf, 3, 4))); 120 extern char *perf_pathdup(const char *fmt, ...) 121 __attribute__((format (printf, 1, 2))); 122 123 extern size_t strlcpy(char *dest, const char *src, size_t size); 124 125 #endif /* __PERF_CACHE_H */ 126