45e828773f3f139dfbd519b6736a4ef1215c004e
[openafs.git] / src / ptserver / display.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
10 #include <afsconfig.h>
11 #include <afs/param.h>
12
13 RCSID("$Header$");
14
15 #include <afs/stds.h>
16 #include <sys/types.h>
17 #ifdef AFS_NT40_ENV
18 #include <winsock2.h>
19 #else
20 #include <netinet/in.h>
21 #endif
22 #include <stdio.h>
23 #include "ptserver.h"
24
25
26 #ifdef PR_REMEMBER_TIMES
27
28 # include <time.h>
29
30
31 static char *pr_TimeToString (time_t clock)
32 {   struct tm *tm;
33     static char buffer[32];
34     static int this_year = 0;
35     char year[6];
36
37     if (clock == 0) return "time-not-set  ";
38     if (!this_year) {
39         time_t now = time(0);
40         tm = localtime (&now);
41         this_year = tm->tm_year;
42     }
43     tm = localtime(&clock);
44     if (tm->tm_year != this_year)
45         strftime (buffer, 32, "%m/%d/%Y %T", tm);
46     else
47         strftime (buffer, 32, "%m/%d %T", tm);
48     return buffer;
49 }
50 #endif
51
52 #define host(a) (hostOrder ? (a) : ntohl(a))
53  
54 static void PrintEntries (f, hostOrder, indent, e, n)
55   FILE *f;
56   int hostOrder;                        /* structures in host order */
57   int indent;
58   struct prentry *e;
59   int n;
60 {
61     int i;
62     int newline;
63
64     newline = 0;
65     for (i=0; i<n; i++) {
66         if (e->entries[i] == 0) break;
67
68         if (i==0) fprintf (f, "%*sids ", indent, "");
69         else if (newline == 0) fprintf (f, "%*s", indent+4, "");
70
71         if (host(e->entries[i]) == PRBADID) fprintf (f, " EMPTY");
72         else fprintf (f, "%6d", host(e->entries[i]));
73         newline = 1;
74         if (i%10 == 9) {
75             fprintf (f, "\n");
76             newline = 0;
77         }
78         else fprintf (f, " ");
79     }
80     if (newline) fprintf (f, "\n");
81 }
82
83 int pr_PrintEntry (f, hostOrder, ea, e, indent)
84   FILE *f;
85   int hostOrder;                        /* structures in host order */
86   afs_int32 ea;
87   struct prentry *e;
88   int indent;
89 {
90     int i;
91
92     if (e->cellid) fprintf (f, "cellid == %d\n", host(e->cellid));
93     for (i=0; i<sizeof(e->reserved)/sizeof(e->reserved[0]); i++)
94         if (e->reserved[i])
95             fprintf (f, "reserved field [%d] not zero: %d\n",
96                      i, host(e->reserved[i]));
97
98     fprintf (f, "%*s", indent, "");
99     fprintf (f, "Entry at %d: flags 0x%x, id %di, next %d.\n",
100              ea, host(e->flags), host(e->id), host(e->next));
101 #ifdef PR_REMEMBER_TIMES
102     fprintf (f, "%*s", indent, "");
103     fprintf (f, "c:%s ", pr_TimeToString(host(e->createTime)));
104     fprintf (f, "a:%s ", pr_TimeToString(host(e->addTime)));
105     fprintf (f, "r:%s ", pr_TimeToString(host(e->removeTime)));
106     fprintf (f, "n:%s\n", pr_TimeToString(host(e->changeTime)));
107 #endif
108     if (host(e->flags) & PRCONT)
109         PrintEntries (f, hostOrder, indent, e, COSIZE);
110     else { /* regular entry */
111         PrintEntries (f, hostOrder, indent, e, PRSIZE);
112         fprintf (f, "%*s", indent, "");
113         fprintf (f, "hash (id %d name %d).  Owner %di, creator %di\n",
114                  host(e->nextID), host(e->nextName),
115                  host(e->owner), host(e->creator));
116         fprintf (f, "%*s", indent, "");
117         fprintf (f, "quota groups %d, foreign users %d.  Mem: %d, inst: %d\n",
118                  host(e->ngroups), host(e->nusers),
119                  host(e->count), host(e->instance));
120         fprintf (f, "%*s", indent, "");
121         fprintf (f, "Owned chain %d, next owned %d, inst ptrs(%d %d %d).\n",
122                  host(e->owned), host(e->nextOwned),
123                  host(e->parent), host(e->sibling), host(e->child));
124         fprintf (f, "%*s", indent, "");
125         if (strlen (e->name) >= PR_MAXNAMELEN)
126             fprintf (f, "NAME TOO LONG: ");
127         fprintf (f, "Name is '%.*s'\n", PR_MAXNAMELEN, e->name);
128     }
129     return 0;
130 }