Imported Upstream version 3.1.0
[debian/amanda] / ndmp-src / ndmp0_pp.c
1 /*
2  * Copyright (c) 1998,1999,2000
3  *      Traakan, Inc., Los Altos, CA
4  *      All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice unmodified, this list of conditions, and the following
11  *    disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28
29 /*
30  * Project:  NDMJOB
31  * Ident:    $Id: $
32  *
33  * Description:
34  *
35  */
36
37
38 #include "ndmos.h"              /* rpc/rpc.h */
39 #include "ndmprotocol.h"
40
41
42
43
44 int
45 ndmp0_pp_header (void *data, char *buf)
46 {
47         ndmp0_header *          mh = (ndmp0_header *) data;
48
49         if (mh->message_type == NDMP0_MESSAGE_REQUEST) {
50                 sprintf (buf, "C %s %lu",
51                         ndmp0_message_to_str (mh->message),
52                         mh->sequence);
53         } else if (mh->message_type == NDMP0_MESSAGE_REPLY) {
54                 sprintf (buf, "R %s %lu (%lu)",
55                         ndmp0_message_to_str (mh->message),
56                         mh->reply_sequence,
57                         mh->sequence);
58                 if (mh->error != NDMP0_NO_ERR) {
59                         sprintf (NDMOS_API_STREND(buf), " %s",
60                                 ndmp0_error_to_str (mh->error));
61                         return 0;       /* no body */
62                 }
63         } else {
64                 strcpy (buf, "??? INVALID MESSAGE TYPE");
65                 return -1;      /* no body */
66         }
67         return 1;       /* body */
68 }
69
70 int
71 ndmp0_pp_request (ndmp0_message msg, void *data, int lineno, char *buf)
72 {
73     switch (msg) {
74     default:
75         strcpy (buf, "<<INVALID MSG>>");
76         return -1;
77
78     case NDMP0_CONNECT_OPEN:
79       NDMP_PP_WITH(ndmp0_connect_open_request)
80         sprintf (buf, "version=%d", p->protocol_version);
81       NDMP_PP_ENDWITH
82       break;
83
84     case NDMP0_CONNECT_CLOSE:
85         *buf = 0;       /* no body */
86         return 0;
87
88     case NDMP0_NOTIFY_CONNECTED:
89       NDMP_PP_WITH(ndmp0_notify_connected_request)
90         sprintf (buf, "reason=%s protocol_version=%d text_reason='%s'",
91                 ndmp0_connect_reason_to_str(p->reason),
92                 p->protocol_version,
93                 p->text_reason);
94       NDMP_PP_ENDWITH
95       break;
96     }
97     return 1;   /* one line in buf */
98 }
99
100 int
101 ndmp0_pp_reply (ndmp0_message msg, void *data, int lineno, char *buf)
102 {
103     switch (msg) {
104     default:
105         strcpy (buf, "<<INVALID MSG>>");
106         return -1;
107
108     case NDMP0_CONNECT_OPEN:
109       NDMP_PP_WITH(ndmp0_error)
110         sprintf (buf, "error=%s", ndmp0_error_to_str(*p));
111       NDMP_PP_ENDWITH
112       break;
113
114     case NDMP0_NOTIFY_CONNECTED:
115         strcpy (buf, "<<ILLEGAL REPLY>>");
116         break;
117     }
118
119     return 1;   /* one line in buf */
120 }