Fix test-cp-name-parser build, unused variable
[deliverable/binutils-gdb.git] / gdb / remote-notif.h
CommitLineData
722247f1
YQ
1/* Remote notification in GDB protocol
2
42a4f53d 3 Copyright (C) 1988-2019 Free Software Foundation, Inc.
722247f1
YQ
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (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, see <http://www.gnu.org/licenses/>. */
19
20#ifndef REMOTE_NOTIF_H
21#define REMOTE_NOTIF_H
22
32603266 23#include <memory>
0747795c 24#include "common/queue.h"
722247f1
YQ
25
26/* An event of a type of async remote notification. */
27
28struct notif_event
29{
32603266
TT
30 virtual ~notif_event ()
31 {
32 }
722247f1
YQ
33};
34
32603266
TT
35/* A unique pointer holding a notif_event. */
36
37typedef std::unique_ptr<notif_event> notif_event_up;
38
f48ff2a7
YQ
39/* ID of the notif_client. */
40
41enum REMOTE_NOTIF_ID
42{
43 REMOTE_NOTIF_STOP = 0,
44 REMOTE_NOTIF_LAST,
45};
46
6b8edb51
PA
47struct remote_target;
48
722247f1
YQ
49/* A client to a sort of async remote notification. */
50
51typedef struct notif_client
52{
53 /* The name of notification packet. */
54 const char *name;
55
56 /* The packet to acknowledge a previous reply. */
57 const char *ack_command;
58
59 /* Parse BUF to get the expected event and update EVENT. This
60 function may throw exception if contents in BUF is not the
61 expected event. */
6b8edb51 62 void (*parse) (remote_target *remote,
bb277751 63 struct notif_client *self, const char *buf,
722247f1
YQ
64 struct notif_event *event);
65
66 /* Send field <ack_command> to remote, and do some checking. If
67 something wrong, throw an exception. */
6b8edb51 68 void (*ack) (remote_target *remote,
bb277751 69 struct notif_client *self, const char *buf,
722247f1
YQ
70 struct notif_event *event);
71
72 /* Check this notification client can get pending events in
73 'remote_notif_process'. */
6b8edb51
PA
74 int (*can_get_pending_events) (remote_target *remote,
75 struct notif_client *self);
722247f1
YQ
76
77 /* Allocate an event. */
32603266 78 notif_event_up (*alloc_event) ();
722247f1 79
f48ff2a7
YQ
80 /* Id of this notif_client. */
81 const enum REMOTE_NOTIF_ID id;
722247f1
YQ
82} *notif_client_p;
83
5965e028
YQ
84DECLARE_QUEUE_P (notif_client_p);
85
86/* State on remote async notification. */
87
88struct remote_notif_state
89{
6b8edb51
PA
90 /* The remote target. */
91 remote_target *remote;
92
5965e028
YQ
93 /* Notification queue. */
94
95 QUEUE(notif_client_p) *notif_queue;
96
97 /* Asynchronous signal handle registered as event loop source for when
98 the remote sent us a notification. The registered callback
99 will do a ACK sequence to pull the rest of the events out of
100 the remote side into our event queue. */
101
102 struct async_event_handler *get_pending_events_token;
f48ff2a7
YQ
103
104/* One pending event for each notification client. This is where we
105 keep it until it is acknowledged. When there is a notification
106 packet, parse it, and create an object of 'struct notif_event' to
107 assign to it. This field is unchanged until GDB starts to ack
108 this notification (which is done by
109 remote.c:remote_notif_pending_replies). */
110
111 struct notif_event *pending_event[REMOTE_NOTIF_LAST];
5965e028
YQ
112};
113
bb277751
TT
114void remote_notif_ack (remote_target *remote, notif_client *nc,
115 const char *buf);
6b8edb51
PA
116struct notif_event *remote_notif_parse (remote_target *remote,
117 notif_client *nc,
bb277751 118 const char *buf);
722247f1 119
5965e028 120void handle_notification (struct remote_notif_state *notif_state,
bb277751 121 const char *buf);
722247f1 122
5965e028
YQ
123void remote_notif_process (struct remote_notif_state *state,
124 struct notif_client *except);
6b8edb51 125remote_notif_state *remote_notif_state_allocate (remote_target *remote);
5965e028 126void remote_notif_state_xfree (struct remote_notif_state *state);
722247f1 127
722247f1
YQ
128extern struct notif_client notif_client_stop;
129
99f0a309 130extern int notif_debug;
722247f1
YQ
131
132#endif /* REMOTE_NOTIF_H */
This page took 0.711629 seconds and 4 git commands to generate.