blob: 2bd51370ad28867bec442ab2cb72c49e9652dc36 [file] [log] [blame]
John Kacur8b40f522009-09-24 18:02:18 +02001#ifndef __PERF_CACHE_H
2#define __PERF_CACHE_H
Ingo Molnar07800602009-04-20 15:00:56 +02003
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -03004#include <stdbool.h>
Ingo Molnar07800602009-04-20 15:00:56 +02005#include "util.h"
6#include "strbuf.h"
Ingo Molnarf37a2912009-07-01 12:37:06 +02007#include "../perf.h"
Ingo Molnar07800602009-04-20 15:00:56 +02008
Vincent Legollcfed95a2009-10-13 10:18:16 +02009#define CMD_EXEC_PATH "--exec-path"
10#define CMD_PERF_DIR "--perf-dir="
11#define CMD_WORK_TREE "--work-tree="
12#define CMD_DEBUGFS_DIR "--debugfs-dir="
13
Ingo Molnar07800602009-04-20 15:00:56 +020014#define PERF_DIR_ENVIRONMENT "PERF_DIR"
15#define PERF_WORK_TREE_ENVIRONMENT "PERF_WORK_TREE"
Ingo Molnar07800602009-04-20 15:00:56 +020016#define EXEC_PATH_ENVIRONMENT "PERF_EXEC_PATH"
Arnaldo Carvalho de Meloa41794c2010-05-18 18:29:23 -030017#define DEFAULT_PERF_DIR_ENVIRONMENT ".perf"
Jason Baron5beeded2009-07-21 14:16:29 -040018#define PERF_DEBUGFS_ENVIRONMENT "PERF_DEBUGFS_DIR"
Ingo Molnar07800602009-04-20 15:00:56 +020019
20typedef int (*config_fn_t)(const char *, const char *, void *);
21extern int perf_default_config(const char *, const char *, void *);
Ingo Molnar07800602009-04-20 15:00:56 +020022extern int perf_config(config_fn_t fn, void *);
Ingo Molnar07800602009-04-20 15:00:56 +020023extern int perf_config_int(const char *, const char *);
Ingo Molnar07800602009-04-20 15:00:56 +020024extern int perf_config_bool(const char *, const char *);
Ingo Molnar07800602009-04-20 15:00:56 +020025extern int config_error_nonbool(const char *);
Stephane Eranian45de34b2010-06-01 21:25:01 +020026extern const char *perf_config_dirname(const char *, const char *);
Ingo Molnar07800602009-04-20 15:00:56 +020027
28/* pager.c */
29extern void setup_pager(void);
30extern const char *pager_program;
31extern int pager_in_use(void);
32extern int pager_use_color;
33
Arnaldo Carvalho de Melo5d06e692010-05-20 22:01:10 -030034extern int use_browser;
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -030035
Namhyung Kimf9f526e2012-09-28 18:32:03 +090036#if defined(NEWT_SUPPORT) || defined(GTK2_SUPPORT)
Arnaldo Carvalho de Melo229ade92011-01-31 18:08:39 -020037void setup_browser(bool fallback_to_pager);
Arnaldo Carvalho de Melof3a1f0e2010-03-22 13:10:25 -030038void exit_browser(bool wait_for_ok);
Namhyung Kim281ef542012-04-30 13:55:08 +090039
Namhyung Kim1254b512012-09-28 18:32:02 +090040#ifdef NEWT_SUPPORT
41int ui__init(void);
42void ui__exit(bool wait_for_ok);
43#else
Namhyung Kimdc41b9b2012-04-30 13:55:09 +090044static inline int ui__init(void)
Namhyung Kim281ef542012-04-30 13:55:08 +090045{
Namhyung Kimdc41b9b2012-04-30 13:55:09 +090046 return -1;
Namhyung Kim281ef542012-04-30 13:55:08 +090047}
Irina Tirdea1d037ca2012-09-11 01:15:03 +030048static inline void ui__exit(bool wait_for_ok __maybe_unused) {}
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -030049#endif
50
Namhyung Kimf9f526e2012-09-28 18:32:03 +090051#ifdef GTK2_SUPPORT
52int perf_gtk__init(void);
53void perf_gtk__exit(bool wait_for_ok);
54#else
Namhyung Kimdc41b9b2012-04-30 13:55:09 +090055static inline int perf_gtk__init(void)
Pekka Enbergc31a9452012-03-19 15:13:29 -030056{
Namhyung Kimdc41b9b2012-04-30 13:55:09 +090057 return -1;
Pekka Enbergc31a9452012-03-19 15:13:29 -030058}
Irina Tirdea1d037ca2012-09-11 01:15:03 +030059static inline void perf_gtk__exit(bool wait_for_ok __maybe_unused) {}
Pekka Enbergc31a9452012-03-19 15:13:29 -030060#endif
Namhyung Kimf9f526e2012-09-28 18:32:03 +090061
62#else /* NEWT_SUPPORT || GTK2_SUPPORT */
63
64static inline void setup_browser(bool fallback_to_pager)
65{
66 if (fallback_to_pager)
67 setup_pager();
68}
69static inline void exit_browser(bool wait_for_ok __maybe_unused) {}
70#endif /* NEWT_SUPPORT || GTK2_SUPPORT */
Pekka Enbergc31a9452012-03-19 15:13:29 -030071
Ingo Molnar07800602009-04-20 15:00:56 +020072char *alias_lookup(const char *alias);
73int split_cmdline(char *cmdline, const char ***argv);
74
75#define alloc_nr(x) (((x)+16)*3/2)
76
77/*
78 * Realloc the buffer pointed at by variable 'x' so that it can hold
79 * at least 'nr' entries; the number of entries currently allocated
80 * is 'alloc', using the standard growing factor alloc_nr() macro.
81 *
82 * DO NOT USE any expression with side-effect for 'x' or 'alloc'.
83 */
84#define ALLOC_GROW(x, nr, alloc) \
85 do { \
86 if ((nr) > alloc) { \
87 if (alloc_nr(alloc) < (nr)) \
88 alloc = (nr); \
89 else \
90 alloc = alloc_nr(alloc); \
91 x = xrealloc((x), alloc * sizeof(*(x))); \
92 } \
93 } while(0)
94
95
96static inline int is_absolute_path(const char *path)
97{
98 return path[0] == '/';
99}
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200100
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200101const char *make_nonrelative_path(const char *path);
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200102char *strip_path_suffix(const char *path, const char *suffix);
103
104extern char *mkpath(const char *fmt, ...) __attribute__((format (printf, 1, 2)));
105extern char *perf_path(const char *fmt, ...) __attribute__((format (printf, 1, 2)));
106
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200107extern char *perf_pathdup(const char *fmt, ...)
108 __attribute__((format (printf, 1, 2)));
109
Namhyung Kimd6e66832012-09-28 18:32:08 +0900110#ifndef HAVE_STRLCPY
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200111extern size_t strlcpy(char *dest, const char *src, size_t size);
Kirill A. Shutemovf4e7ac02010-08-21 03:38:20 +0300112#endif
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200113
John Kacur8b40f522009-09-24 18:02:18 +0200114#endif /* __PERF_CACHE_H */