blob: cff18c617d137f26020018afc08598788cc3aebf [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 Kim281ef542012-04-30 13:55:08 +090036#if defined(NO_NEWT_SUPPORT) && defined(NO_GTK2_SUPPORT)
Arnaldo Carvalho de Melo229ade92011-01-31 18:08:39 -020037static inline void setup_browser(bool fallback_to_pager)
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -030038{
Arnaldo Carvalho de Melo229ade92011-01-31 18:08:39 -020039 if (fallback_to_pager)
40 setup_pager();
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -030041}
Arnaldo Carvalho de Melof3a1f0e2010-03-22 13:10:25 -030042static inline void exit_browser(bool wait_for_ok __used) {}
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -030043#else
Arnaldo Carvalho de Melo229ade92011-01-31 18:08:39 -020044void setup_browser(bool fallback_to_pager);
Arnaldo Carvalho de Melof3a1f0e2010-03-22 13:10:25 -030045void exit_browser(bool wait_for_ok);
Namhyung Kim281ef542012-04-30 13:55:08 +090046
47#ifdef NO_NEWT_SUPPORT
Namhyung Kimdc41b9b2012-04-30 13:55:09 +090048static inline int ui__init(void)
Namhyung Kim281ef542012-04-30 13:55:08 +090049{
Namhyung Kimdc41b9b2012-04-30 13:55:09 +090050 return -1;
Namhyung Kim281ef542012-04-30 13:55:08 +090051}
52static inline void ui__exit(bool wait_for_ok __used) {}
53#else
Namhyung Kimdc41b9b2012-04-30 13:55:09 +090054int ui__init(void);
Namhyung Kim281ef542012-04-30 13:55:08 +090055void ui__exit(bool wait_for_ok);
Arnaldo Carvalho de Melof9224c52010-03-11 20:12:44 -030056#endif
57
Pekka Enbergc31a9452012-03-19 15:13:29 -030058#ifdef NO_GTK2_SUPPORT
Namhyung Kimdc41b9b2012-04-30 13:55:09 +090059static inline int perf_gtk__init(void)
Pekka Enbergc31a9452012-03-19 15:13:29 -030060{
Namhyung Kimdc41b9b2012-04-30 13:55:09 +090061 return -1;
Pekka Enbergc31a9452012-03-19 15:13:29 -030062}
Namhyung Kim281ef542012-04-30 13:55:08 +090063static inline void perf_gtk__exit(bool wait_for_ok __used) {}
Pekka Enbergc31a9452012-03-19 15:13:29 -030064#else
Namhyung Kimdc41b9b2012-04-30 13:55:09 +090065int perf_gtk__init(void);
Namhyung Kim281ef542012-04-30 13:55:08 +090066void perf_gtk__exit(bool wait_for_ok);
Pekka Enbergc31a9452012-03-19 15:13:29 -030067#endif
Namhyung Kim281ef542012-04-30 13:55:08 +090068#endif /* NO_NEWT_SUPPORT && NO_GTK2_SUPPORT */
Pekka Enbergc31a9452012-03-19 15:13:29 -030069
Ingo Molnar07800602009-04-20 15:00:56 +020070char *alias_lookup(const char *alias);
71int split_cmdline(char *cmdline, const char ***argv);
72
73#define alloc_nr(x) (((x)+16)*3/2)
74
75/*
76 * Realloc the buffer pointed at by variable 'x' so that it can hold
77 * at least 'nr' entries; the number of entries currently allocated
78 * is 'alloc', using the standard growing factor alloc_nr() macro.
79 *
80 * DO NOT USE any expression with side-effect for 'x' or 'alloc'.
81 */
82#define ALLOC_GROW(x, nr, alloc) \
83 do { \
84 if ((nr) > alloc) { \
85 if (alloc_nr(alloc) < (nr)) \
86 alloc = (nr); \
87 else \
88 alloc = alloc_nr(alloc); \
89 x = xrealloc((x), alloc * sizeof(*(x))); \
90 } \
91 } while(0)
92
93
94static inline int is_absolute_path(const char *path)
95{
96 return path[0] == '/';
97}
Ingo Molnar6f06ccb2009-04-20 15:22:22 +020098
Ingo Molnar6f06ccb2009-04-20 15:22:22 +020099const char *make_nonrelative_path(const char *path);
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200100char *strip_path_suffix(const char *path, const char *suffix);
101
102extern char *mkpath(const char *fmt, ...) __attribute__((format (printf, 1, 2)));
103extern char *perf_path(const char *fmt, ...) __attribute__((format (printf, 1, 2)));
104
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200105extern char *perf_pathdup(const char *fmt, ...)
106 __attribute__((format (printf, 1, 2)));
107
Kirill A. Shutemovf4e7ac02010-08-21 03:38:20 +0300108#ifdef NO_STRLCPY
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200109extern size_t strlcpy(char *dest, const char *src, size_t size);
Kirill A. Shutemovf4e7ac02010-08-21 03:38:20 +0300110#endif
Ingo Molnar6f06ccb2009-04-20 15:22:22 +0200111
John Kacur8b40f522009-09-24 18:02:18 +0200112#endif /* __PERF_CACHE_H */