X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gdb%2Fremote-notif.h;h=f9b0b2c61805636a6eec1491e7cd547eac4a430f;hb=d90b8f2632cded4792f18d8bb92bacc21d93eb0a;hp=92c4bb611bd7e9f61526e12d3ee5a15e299e4d21;hpb=722247f1cb9ab5678ad078ba0ba02070cb03a34b;p=external%2Fbinutils.git diff --git a/gdb/remote-notif.h b/gdb/remote-notif.h index 92c4bb6..f9b0b2c 100644 --- a/gdb/remote-notif.h +++ b/gdb/remote-notif.h @@ -1,6 +1,6 @@ /* Remote notification in GDB protocol - Copyright (C) 1988-2012 Free Software Foundation, Inc. + Copyright (C) 1988-2019 Free Software Foundation, Inc. This file is part of GDB. @@ -20,20 +20,35 @@ #ifndef REMOTE_NOTIF_H #define REMOTE_NOTIF_H -#include "queue.h" +#include +#include /* An event of a type of async remote notification. */ struct notif_event { - /* Destructor. Release everything from SELF, but not SELF - itself. */ - void (*dtr) (struct notif_event *self); + virtual ~notif_event () + { + } }; +/* A unique pointer holding a notif_event. */ + +typedef std::unique_ptr notif_event_up; + +/* ID of the notif_client. */ + +enum REMOTE_NOTIF_ID +{ + REMOTE_NOTIF_STOP = 0, + REMOTE_NOTIF_LAST, +}; + +struct remote_target; + /* A client to a sort of async remote notification. */ -typedef struct notif_client +struct notif_client { /* The name of notification packet. */ const char *name; @@ -44,42 +59,76 @@ typedef struct notif_client /* Parse BUF to get the expected event and update EVENT. This function may throw exception if contents in BUF is not the expected event. */ - void (*parse) (struct notif_client *self, char *buf, + void (*parse) (remote_target *remote, + struct notif_client *self, const char *buf, struct notif_event *event); /* Send field to remote, and do some checking. If something wrong, throw an exception. */ - void (*ack) (struct notif_client *self, char *buf, + void (*ack) (remote_target *remote, + struct notif_client *self, const char *buf, struct notif_event *event); /* Check this notification client can get pending events in 'remote_notif_process'. */ - int (*can_get_pending_events) (struct notif_client *self); + int (*can_get_pending_events) (remote_target *remote, + struct notif_client *self); /* Allocate an event. */ - struct notif_event *(*alloc_event) (void); + notif_event_up (*alloc_event) (); + + /* Id of this notif_client. */ + const enum REMOTE_NOTIF_ID id; +}; + +/* State on remote async notification. */ - /* One pending event. This is where we keep it until it is - acknowledged. When there is a notification packet, parse it, - and create an object of 'struct notif_event' to assign to - it. This field is unchanged until GDB starts to ack this - notification (which is done by +struct remote_notif_state +{ + remote_notif_state () = default; + ~remote_notif_state (); + + DISABLE_COPY_AND_ASSIGN (remote_notif_state); + + /* The remote target. */ + remote_target *remote; + + /* Notification queue. */ + + std::list notif_queue; + + /* Asynchronous signal handle registered as event loop source for when + the remote sent us a notification. The registered callback + will do a ACK sequence to pull the rest of the events out of + the remote side into our event queue. */ + + struct async_event_handler *get_pending_events_token; + + /* One pending event for each notification client. This is where we + keep it until it is acknowledged. When there is a notification + packet, parse it, and create an object of 'struct notif_event' to + assign to it. This field is unchanged until GDB starts to ack + this notification (which is done by remote.c:remote_notif_pending_replies). */ - struct notif_event *pending_event; -} *notif_client_p; -void remote_notif_ack (struct notif_client *nc, char *buf); -struct notif_event *remote_notif_parse (struct notif_client *nc, - char *buf); + struct notif_event *pending_event[REMOTE_NOTIF_LAST] {}; +}; + +void remote_notif_ack (remote_target *remote, notif_client *nc, + const char *buf); +struct notif_event *remote_notif_parse (remote_target *remote, + notif_client *nc, + const char *buf); -void handle_notification (char *buf); +void handle_notification (struct remote_notif_state *notif_state, + const char *buf); -void remote_notif_register_async_event_handler (void); -void remote_notif_unregister_async_event_handler (void); +void remote_notif_process (struct remote_notif_state *state, + struct notif_client *except); +remote_notif_state *remote_notif_state_allocate (remote_target *remote); -void remote_notif_process (struct notif_client *except); extern struct notif_client notif_client_stop; -extern unsigned int notif_debug; +extern int notif_debug; #endif /* REMOTE_NOTIF_H */