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="
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"
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
;
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
;
53 extern const char *perf_log_output_encoding
;
54 extern const char *perf_mailmap_file
;
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 *);
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
;
72 extern const char *editor_program
;
73 extern const char *excludes_file
;
75 char *alias_lookup(const char *alias
);
76 int split_cmdline(char *cmdline
, const char ***argv
);
78 #define alloc_nr(x) (((x)+16)*3/2)
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.
85 * DO NOT USE any expression with side-effect for 'x' or 'alloc'.
87 #define ALLOC_GROW(x, nr, alloc) \
90 if (alloc_nr(alloc) < (nr)) \
93 alloc = alloc_nr(alloc); \
94 x = xrealloc((x), alloc * sizeof(*(x))); \
99 static inline int is_absolute_path(const char *path
)
101 return path
[0] == '/';
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
);
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);
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)));
123 extern size_t strlcpy(char *dest
, const char *src
, size_t size
);
125 #endif /* __PERF_CACHE_H */