1 /* Connect implementation
2 Copyright (C) 2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include <cc1plugin-config.h>
23 #include <sys/types.h>
26 #include "marshall.hh"
27 #include "connection.hh"
30 cc1_plugin::connection::~connection ()
35 cc1_plugin::connection::print (const char *)
40 cc1_plugin::connection::send (char c
)
42 if (write (m_fd
, &c
, 1) != 1)
48 cc1_plugin::connection::send (const void *buf
, int len
)
50 if (write (m_fd
, buf
, len
) != len
)
56 cc1_plugin::connection::require (char c
)
60 if (read (m_fd
, &result
, 1) != 1
68 cc1_plugin::connection::get (void *buf
, int len
)
70 if (read (m_fd
, buf
, len
) != len
)
76 cc1_plugin::connection::do_wait (bool want_result
)
84 FD_SET (m_fd
, &read_set
);
86 FD_SET (m_aux_fd
, &read_set
);
88 int nfds
= select (FD_SETSIZE
, &read_set
, NULL
, NULL
, NULL
);
96 // We have to check the stderr fd first, to avoid a possible
97 // blocking scenario when do_wait is called reentrantly. In
98 // such a call, if we handle the primary fd first, then we may
99 // re-enter this function, read from gcc's stderr, causing the
100 // outer invocation of this function to block when trying to
102 if (m_aux_fd
!= -1 && FD_ISSET (m_aux_fd
, &read_set
))
105 int n
= read (m_aux_fd
, buf
, sizeof (buf
) - 1);
115 if (FD_ISSET (m_fd
, &read_set
))
117 int n
= read (m_fd
, &result
, 1);
119 return want_result
? FAIL
: OK
;
126 // The reply is ready; the caller will unmarshall it.
127 return want_result
? OK
: FAIL
;
130 // While waiting for a reply, the other side made a method
133 // Use an argument_wrapper here to simplify management
134 // of the string's lifetime.
135 argument_wrapper
<char *> method_name
;
137 if (!method_name
.unmarshall (this))
140 callback_ftype
*callback
141 = m_callbacks
.find_callback (method_name
);
142 // The call to CALLBACK is where we may end up in a
144 if (callback
== NULL
|| !callback (this))