blob: 6e35cdfb5fa9e19dbddfb872ab11669d77d89efc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/*
* Copyright (c) 2013 Red Hat.
* Copyright (c) 1997 Silicon Graphics, Inc. All Rights Reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
#include "pmapi.h"
#include "impl.h"
#include "pmda.h"
/* yacc/lex routines */
extern char lastinput(void);
extern void yyerror(const char *);
extern void yywarn(char *);
extern int yywrap(void);
extern int yylex(void);
extern int markpos(void);
extern void locateError(void);
/* utiltity routines */
extern void setup_context(void);
extern void reset_profile(void);
extern char *strcons(char *, char *);
extern char *strnum(int);
extern void initmetriclist(void);
extern void addmetriclist(pmID);
extern void initarglist(void);
extern void addarglist(char *);
extern void doargs(void);
extern void printindom(FILE *, __pmInResult *);
extern void dohelp(int, int);
extern void dostatus(void);
extern int fillResult(pmResult *, int);
extern void _dbDumpResult(FILE *, pmResult *, pmDesc *);
/* pmda exerciser routines */
extern void opendso(char *, char *, int);
extern void closedso(void);
extern void dodso(int);
extern void openpmda(char *);
extern void closepmda(void);
extern void dopmda(int);
extern void watch(char *);
extern void open_unix_socket(char *);
extern void open_inet_socket(int);
extern void open_ipv6_socket(int);
/*
* connection states
*/
#define NO_CONN -1
#define CONN_DSO 0
#define CONN_DAEMON 1
extern int connmode;
/* parameters for action routines ... */
typedef struct {
int number;
char *name;
pmID pmid;
pmInDom indom;
int numpmid;
pmID *pmidlist;
int argc;
char **argv;
} param_t;
extern param_t param;
/* the single profile */
extern __pmProfile *profile;
extern int profile_changed;
/* status info */
extern char *myPmdaName;
/* help text formats */
#define HELP_USAGE 0
#define HELP_FULL 1
/* timing information */
extern int timer;
/* get descriptor for fetch or not */
extern int get_desc;
/* namespace pathnames */
extern char *pmnsfile;
extern char *cmd_namespace;
|