diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2014-10-26 12:33:50 +0400 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2014-10-26 12:33:50 +0400 |
commit | 47e6e7c84f008a53061e661f31ae96629bc694ef (patch) | |
tree | 648a07f3b5b9d67ce19b0fd72e8caa1175c98f1a /qa/src/grind_ctx.c | |
download | pcp-debian/3.9.10.tar.gz |
Debian 3.9.10debian/3.9.10debian
Diffstat (limited to 'qa/src/grind_ctx.c')
-rw-r--r-- | qa/src/grind_ctx.c | 161 |
1 files changed, 161 insertions, 0 deletions
diff --git a/qa/src/grind_ctx.c b/qa/src/grind_ctx.c new file mode 100644 index 0000000..da2832f --- /dev/null +++ b/qa/src/grind_ctx.c @@ -0,0 +1,161 @@ +/* + * Repeatedly call pmNewContext ... then pmDestroyContext ... + * + * Looking for memory leaks, malloc botches etc, especially in the + * presence of derived metrics. + * + * Copyright (c) 1997-2001 Silicon Graphics, Inc. All Rights Reserved. + * (largely borrowed from chkctx2.c) + */ + +#define SOURCE handle == 0 ? "host" : ( type == PM_CONTEXT_ARCHIVE ? "archive" : "host" ) +#define HOST handle == 0 ? "localhost" : host + +#include <pcp/pmapi.h> +#include <pcp/impl.h> + +#define NUMCTX 10 + +static void +grind(int type, char *host) +{ + int ctx[NUMCTX]; + int i; + int sts; + + for (i = 0; i < NUMCTX; i++) { + if (type == PM_CONTEXT_HOST) { + if ((sts = pmNewContext(PM_CONTEXT_HOST, host)) < 0) { + fprintf(stderr, "pmNewContext(host=%s): %s\n", host, pmErrStr(sts)); + exit(1); + } + } + else if (type == PM_CONTEXT_LOCAL) { + if ((sts = pmNewContext(PM_CONTEXT_LOCAL, host)) < 0) { + fprintf(stderr, "pmNewContext(local): %s\n", pmErrStr(sts)); + exit(1); + } + } + else { + if ((sts = pmNewContext(PM_CONTEXT_ARCHIVE, host)) < 0) { + fprintf(stderr, "pmNewContext(archive=%s): %s\n", host, pmErrStr(sts)); + exit(1); + } + } + ctx[i] = sts; + } + + for (i = NUMCTX-1; i >=0; i--) { + if ((sts = pmDestroyContext(ctx[i])) < 0) { + fprintf(stderr, "pmDestroyContext(%d): %s\n", ctx[i], pmErrStr(sts)); + } + } +} + +int +main(int argc, char **argv) +{ + int c; + int sts; + int errflag = 0; + int type = 0; + int iter = 5; + char *host = "localhost"; + char *endnum; +#ifdef PCP_DEBUG + static char *debug = "[-D N] "; +#else + static char *debug = ""; +#endif + static char *usage = "[-a archive] [-c dmfile] [-h hostname] [-L] [-n namespace] [-s iterations]"; + + __pmSetProgname(argv[0]); + + while ((c = getopt(argc, argv, "a:c:D:h:Ln:s:")) != EOF) { + switch (c) { + + case 'a': /* archive name */ + if (type != 0) { + fprintf(stderr, "%s: at most one of -a, -h and -L allowed\n", pmProgname); + errflag++; + } + type = PM_CONTEXT_ARCHIVE; + host = optarg; + break; + + case 'c': /* derived metrics config file */ + sts = pmLoadDerivedConfig(optarg); + if (sts < 0) { + fprintf(stderr, "%s: -c error: %s\n", pmProgname, pmErrStr(sts)); + exit(1); + } + break; + +#ifdef PCP_DEBUG + case 'D': /* debug flag */ + sts = __pmParseDebug(optarg); + if (sts < 0) { + fprintf(stderr, "%s: unrecognized debug flag specification (%s)\n", + pmProgname, optarg); + errflag++; + } + else + pmDebug |= sts; + break; +#endif + + case 'h': /* hostname for PMCD to contact */ + if (type != 0) { + fprintf(stderr, "%s: at most one of -a, -h and -L allowed\n", pmProgname); + errflag++; + } + host = optarg; + type = PM_CONTEXT_HOST; + break; + + case 'L': /* local mode, no PMCD */ + if (type != 0) { + fprintf(stderr, "%s: at most one of -a, -h and -L allowed\n", pmProgname); + errflag++; + } + host = NULL; + type = PM_CONTEXT_LOCAL; + break; + + case 'n': /* alternative name space file */ + if ((sts = pmLoadNameSpace(optarg)) < 0) { + fprintf(stderr, "%s: cannot load namespace from \"%s\": %s\n", pmProgname, optarg, pmErrStr(sts)); + exit(1); + } + break; + + case 's': /* iterations */ + iter = (int)strtol(optarg, &endnum, 10); + if (*endnum != '\0' || iter < 0) { + fprintf(stderr, "%s: -s requires poisitive numeric argument\n", pmProgname); + errflag++; + } + break; + + case '?': + default: + errflag++; + break; + } + } + + if (errflag) { + fprintf(stderr, "Usage: %s %s%s\n", pmProgname, debug, usage); + exit(1); + } + + if (type == 0) + type = PM_CONTEXT_HOST; /* default */ + + while (iter-- > 0) { + printf("Iteration %d\n", iter); + grind(type, host); + } + + exit(0); +} |