32a2d31501e90ae129cdb33ed77f3cb3605607a7
[debian/amanda] / common-src / packet.c
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 1991-1999 University of Maryland at College Park
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and its
7  * documentation for any purpose is hereby granted without fee, provided that
8  * the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the name of U.M. not be used in advertising or
11  * publicity pertaining to distribution of the software without specific,
12  * written prior permission.  U.M. makes no representations about the
13  * suitability of this software for any purpose.  It is provided "as is"
14  * without express or implied warranty.
15  *
16  * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
18  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  *
23  * Authors: the Amanda Development Team.  Its members are listed in a
24  * file named AUTHORS, in the root directory of this distribution.
25  */
26 /*
27  * $Id: packet.c,v 1.6 2004/02/13 14:00:35 martinea Exp $
28  *
29  * Routines for modifying the amanda protocol packet type
30  */
31 #include "amanda.h"
32 #include "arglist.h"
33 #include "packet.h"
34
35 /*
36  * Table of packet types and their printable forms
37  */
38 static const struct {
39     const char name[5];
40     pktype_t type;
41 } pktypes[] = {
42     { "REQ", P_REQ },
43     { "REP", P_REP },
44     { "PREP", P_PREP },
45     { "ACK", P_ACK },
46     { "NAK", P_NAK }
47 };
48 #define NPKTYPES        (sizeof(pktypes) / sizeof(pktypes[0]))
49
50 /*
51  * Initialize a packet
52  */
53 printf_arglist_function2(void pkt_init, pkt_t *, pkt, pktype_t, type,
54     const char *, fmt)
55 {
56     va_list argp;
57
58     assert(pkt != NULL);
59     assert(strcmp(pkt_type2str(type), "BOGUS") != 0);
60     assert(fmt != NULL);
61
62     pkt->type = type;
63
64     arglist_start(argp, fmt);
65     vsnprintf(pkt->body, sizeof(pkt->body), fmt, argp);
66     arglist_end(argp);
67 }
68
69 /*
70  * Append data to a packet
71  */
72 printf_arglist_function1(void pkt_cat, pkt_t *, pkt, const char *, fmt)
73 {
74     size_t len, bufsize;
75     va_list argp;
76
77     assert(pkt != NULL);
78     assert(fmt != NULL);
79
80     len = strlen(pkt->body);
81     assert(len < sizeof(pkt->body));
82
83     bufsize = sizeof(pkt->body) - len;
84     if (bufsize <= 0)
85         return;
86
87     arglist_start(argp, fmt);
88     vsnprintf(pkt->body + len, bufsize, fmt, argp);
89     arglist_end(argp);
90 }
91
92 /*
93  * Converts a string into a packet type
94  */
95 pktype_t
96 pkt_str2type(typestr)
97     const char *typestr;
98 {
99     int i;
100
101     assert(typestr != NULL);
102
103     for (i = 0; i < NPKTYPES; i++)
104         if (strcmp(typestr, pktypes[i].name) == 0)
105             return (pktypes[i].type);
106     return ((pktype_t)-1);
107 }
108
109 /*
110  * Converts a packet type into a string
111  */
112 const char *
113 pkt_type2str(type)
114     pktype_t type;
115 {
116     int i;
117
118     for (i = 0; i < NPKTYPES; i++)
119         if (pktypes[i].type == type)
120             return (pktypes[i].name);
121     return ("BOGUS");
122 }