summaryrefslogtreecommitdiff
path: root/qa/qt/qmc_event/qmc_event.cpp
blob: 3b32e57f4224286a01eaf07d40581d7a33f0901f (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
//
// Test event tracing functionality in libqmc
//
// Caller can setup deterministic output by calling
// "pmstore sample.event.reset 1" beforehand.
//

#include <errno.h>
#include <QTextStream>
#include <qmc_context.h>
#include <qmc_group.h>
#include <qmc_metric.h>
#include <qmc_indom.h>

QTextStream cerr(stderr);
QTextStream cout(stdout);

int
main(int argc, char* argv[])
{
    int		sts = 0;
    int		c;

    __pmSetProgname(argv[0]);
    while ((c = getopt(argc, argv, "D:?")) != EOF) {
	switch (c) {
	case 'D':
	    sts = __pmParseDebug(optarg);
            if (sts < 0) {
		pmprintf("%s: unrecognized debug flag specification (%s)\n",
			 pmProgname, optarg);
                sts = 1;
            }
            else {
                pmDebug |= sts;
		sts = 0;
	    }
            break;
	case '?':
	default:
	    sts = 1;
	    break;
	}
    }

    if (sts) {
	pmprintf("Usage: %s\n", pmProgname);
	pmflush();
	exit(1);
        /*NOTREACHED*/
    }

    cerr << "*** Create a single fetch group ***" << endl;
    QmcGroup group;
    pmflush();

    cerr << endl << "*** Event metric ***" << endl;
    QmcMetric* sample_records = group.addMetric("sample.event.records");
    if (sample_records->status() < 0)
	sts = 1;
    else
	sample_records->dump(cerr);
    pmflush();

    QmcMetric* sample_seconds = group.addMetric("sample.seconds");
    if (sample_seconds->status() < 0)
	sts = 1;
    else
	sample_seconds->dump(cerr);
    pmflush();

    //
    // pmdasample provides a 4-phase fetch pattern for sample.event
    //
    for (int i = 0; i < 4; i++) {
	sleep(1);
	cerr << endl << "*** Group Fetch " << i << " ***" << endl;
	group.fetch();
	sample_records->dump(cerr);
	sample_seconds->dump(cerr);
    }

    cerr << endl << "*** Exiting ***" << endl;
    return sts;
}