lbmr: restore removed code.
[metze/wireshark/wip.git] / sync_pipe_write.c
1 /* sync_pipe_write.c
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #include <config.h>
23
24 #include <string.h>
25
26 #include <glib.h>
27
28 #include <wsutil/file_util.h>
29
30 #include "sync_pipe.h"
31
32 /****************************************************************************************************************/
33 /* sync_pipe handling */
34
35
36 /* write a single message header to the recipient pipe */
37 ssize_t
38 pipe_write_header(int pipe_fd, char indicator, int length)
39 {
40     guchar header[1+3]; /* indicator + 3-byte len */
41
42
43     g_assert(length <= SP_MAX_MSG_LEN);
44
45     /* write header (indicator + 3-byte len) */
46     header[0] = indicator;
47     header[1] = (length >> 16) & 0xFF;
48     header[2] = (length >> 8) & 0xFF;
49     header[3] = (length >> 0) & 0xFF;
50
51     /* write header */
52     return ws_write(pipe_fd, header, sizeof header);
53 }
54
55
56 /* write a message to the recipient pipe in the standard format
57    (3 digit message length (excluding length and indicator field),
58    1 byte message indicator and the rest is the message).
59    If msg is NULL, the message has only a length and indicator. */
60 void
61 pipe_write_block(int pipe_fd, char indicator, const char *msg)
62 {
63     ssize_t ret;
64     int len;
65
66     /*g_warning("write %d enter", pipe_fd);*/
67
68     if(msg != NULL) {
69         len = (int) strlen(msg) + 1;    /* including the terminating '\0'! */
70     } else {
71         len = 0;
72     }
73
74     /* write header (indicator + 3-byte len) */
75     ret = pipe_write_header(pipe_fd, indicator, len);
76     if(ret == -1) {
77         return;
78     }
79
80     /* write value (if we have one) */
81     if(len) {
82         /*g_warning("write %d indicator: %c value len: %u msg: %s", pipe_fd, indicator, len, msg);*/
83         ret = ws_write(pipe_fd, msg, len);
84         if(ret == -1) {
85             return;
86         }
87     } else {
88         /*g_warning("write %d indicator: %c no value", pipe_fd, indicator);*/
89     }
90
91     /*g_warning("write %d leave", pipe_fd);*/
92 }
93
94
95 void
96 sync_pipe_errmsg_to_parent(int pipe_fd, const char *error_msg,
97                            const char *secondary_error_msg)
98 {
99
100     /* first write a "master header" with the length of the two messages plus their "slave headers" */
101     pipe_write_header(pipe_fd, SP_ERROR_MSG, (int) (strlen(error_msg) + 1 + 4 + strlen(secondary_error_msg) + 1 + 4));
102     pipe_write_block(pipe_fd, SP_ERROR_MSG, error_msg);
103     pipe_write_block(pipe_fd, SP_ERROR_MSG, secondary_error_msg);
104 }
105
106 /*
107  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
108  *
109  * Local variables:
110  * c-basic-offset: 4
111  * tab-width: 8
112  * indent-tabs-mode: nil
113  * End:
114  *
115  * vi: set shiftwidth=4 tabstop=8 expandtab:
116  * :indentSize=4:tabSize=8:noTabs=true:
117  */