libadmin: Tidy header includes
[openafs.git] / src / libadmin / samples / rxdebug_basic_stats.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  *
9  * Portions Copyright (c) 2003 Apple Computer, Inc.
10  */
11
12 /*
13  * This file contains sample code for the rxstats interface 
14  */
15
16 #include <afsconfig.h>
17 #include <afs/param.h>
18
19 #include <roken.h>
20
21 #ifdef AFS_NT40_ENV
22 #include <pthread.h>
23 #endif
24
25 #include <rx/rx.h>
26 #include <rx/rxstat.h>
27
28 #include <afs/afs_Admin.h>
29 #include <afs/afs_clientAdmin.h>
30 #include <afs/afs_utilAdmin.h>
31
32 #ifdef AFS_DARWIN_ENV
33 pthread_mutex_t des_init_mutex = PTHREAD_MUTEX_INITIALIZER;
34 pthread_mutex_t des_random_mutex = PTHREAD_MUTEX_INITIALIZER;
35 pthread_mutex_t rxkad_random_mutex = PTHREAD_MUTEX_INITIALIZER;
36 #endif /* AFS_DARWIN_ENV */
37
38 void
39 Usage(void)
40 {
41     fprintf(stderr, "Usage: rxdebug_basic_stats <host> <port>\n");
42     exit(1);
43 }
44
45 void
46 ParseArgs(int argc, char *argv[], char **srvrName, long *srvrPort)
47 {
48     char **argp = argv;
49
50     if (!*(++argp))
51         Usage();
52     *srvrName = *(argp++);
53     if (!*(argp))
54         Usage();
55     *srvrPort = strtol(*(argp++), NULL, 0);
56     if (*srvrPort <= 0 || *srvrPort >= 65536)
57         Usage();
58     if (*(argp))
59         Usage();
60 }
61
62 int
63 main(int argc, char *argv[])
64 {
65     int rc;
66     afs_status_t st = 0;
67     rxdebugHandle_p handle;
68     char *srvrName;
69     long srvrPort;
70     struct rx_debugStats stats;
71
72     ParseArgs(argc, argv, &srvrName, &srvrPort);
73
74     rc = afsclient_Init(&st);
75     if (!rc) {
76         fprintf(stderr, "afsclient_Init, status %d\n", st);
77         exit(1);
78     }
79
80     rc = afsclient_RXDebugOpenPort(srvrName, srvrPort, &handle, &st);
81     if (!rc) {
82         fprintf(stderr, "afsclient_RXDebugOpenPort, status %d\n", st);
83         exit(1);
84     }
85
86     rc = util_RXDebugBasicStats(handle, &stats, &st);
87     if (!rc) {
88         fprintf(stderr, "util_RXDebugBasicStats, status %d\n", st);
89         exit(1);
90     }
91
92     rc = afsclient_RXDebugClose(handle, &st);
93     if (!rc) {
94         fprintf(stderr, "afsclient_RXDebugClose, status %d\n", st);
95         exit(1);
96     }
97
98     printf("\n");
99     printf("nFreePackets:      %d\n", stats.nFreePackets);
100     printf("packetReclaims:    %d\n", stats.packetReclaims);
101     printf("callsExecuted:     %d\n", stats.callsExecuted);
102     printf("waitingForPackets: %d\n", stats.waitingForPackets);
103     printf("usedFDs:           %d\n", stats.usedFDs);
104     printf("version:           '%c'\n", stats.version);
105     printf("nWaiting:          %d\n", stats.nWaiting);
106     printf("idleThreads:       %d\n", stats.idleThreads);
107     printf("\n");
108
109     exit(0);
110 }