1 /* Plugin connection declarations
2 Copyright (C) 2014-2023 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 #ifndef CC1_PLUGIN_CONNECTION_HH
21 #define CC1_PLUGIN_CONNECTION_HH
24 #include "callbacks.hh"
28 // The connection class represents one side of the connection
29 // between the gdb-side library and the gcc plugin. It handles the
30 // low-level details of reading and writing data.
42 connection (int fd
, int aux_fd
)
49 virtual ~connection () = default;
51 connection (const connection
&) = delete;
52 connection
&operator= (const connection
&) = delete;
54 // Send a single character. This is used to introduce various
55 // higher-level protocol elements.
59 status
send (const void *buf
, int len
);
61 // Read a single byte from the connection and verify that it
62 // matches the argument C.
63 status
require (char c
);
66 status
get (void *buf
, int len
);
68 // This is called after a query (remote function call) has been
69 // sent to the remote. It waits for a response packet. The
70 // response character is read before returning. Any query packets
71 // sent from the remote while waiting for a response are handled
73 status
wait_for_result ()
75 return do_wait (true);
78 // Read and respond to query packets sent by the remote. This
79 // function returns when the connection is closed.
80 status
wait_for_query ()
82 return do_wait (false);
85 // Register a callback with this connection. NAME is the name of
86 // the method being registered. FUNC is the function. It must
87 // know how to decode its own arguments. When a query packet is
88 // received by one of the wait_* methods, the corresponding
89 // callback is invoked.
90 void add_callback (const char *name
, callback_ftype
*func
)
92 m_callbacks
.add_callback (name
, func
);
95 virtual void print (const char *)
101 // Helper function for the wait_* methods.
102 status
do_wait (bool);
104 // The file descriptor.
107 // An auxiliary file descriptor, or -1 if none.
110 // Callbacks associated with this connection.
111 callbacks m_callbacks
;
115 #endif // CC1_PLUGIN_CONNECTION_HH