920d2a4419
Add show_VARIABLE functions, update add_setshow call. * varobj.c (_initialize_varobj, show_varobjdebug): Add and update. * valprint.c (_initialize_valprint, show_print_max) (show_stop_print_at_null, show_repeat_count_threshold) (show_prettyprint_structs, show_unionprint) (show_prettyprint_arrays, show_addressprint, show_input_radix) (show_output_radix): Ditto. * valops.c (_initialize_valops, show_overload_resolution): Ditto. * utils.c (initialize_utils, show_chars_per_line) (show_lines_per_page, show_demangle, show_pagination_enabled) (show_sevenbit_strings, show_asm_demangle): Ditto * tui/tui-win.c (_initialize_tui_win, show_tui_border_kind) (show_tui_border_mode, show_tui_active_border_mode): Ditto. * top.c (init_main, show_new_async_prompt) (show_async_command_editing_p, show_write_history_p) (show_history_size, show_history_filename, show_caution) (show_annotation_level, init_main): Ditto. * target.c (initialize_targets, show_targetdebug) (show_trust_readonly): Ditto. * symfile.c (_initialize_symfile, show_symbol_reloading) (show_ext_args, show_download_write_size) (show_debug_file_directory): Ditto. * source.c (_initialize_source, show_lines_to_list): Ditto. * solib.c (_initialize_solib, show_auto_solib_add) (show_solib_search_path): Ditto. * p-valprint.c (_initialize_pascal_valprint) (show_pascal_static_field_print): Ditto. * printcmd.c (_initialize_printcmd, show_max_symbolic_offset) (show_print_symbol_filename): Add and update. * parse.c (_initialize_parse, show_expressiondebug): Dito. * observer.c (_initialize_observer, show_observer_debug): Dito. * maint.c (_initialize_maint_cmds, show_watchdog) (show_maintenance_profile_p): Dito. * linux-nat.c (_initialize_linux_nat, show_debug_linux_nat): Dito. * infrun.c (_initialize_infrun, show_debug_infrun) (show_stop_on_solib_events, show_follow_fork_mode_string) (show_scheduler_mode, show_step_stop_if_no_debug): Ditto. * infcall.c (_initialize_infcall, show_coerce_float_to_double_p) (show_unwind_on_signal_p): Ditto. * gdbtypes.c (build_gdbtypes, show_opaque_type_resolution) (_initialize_gdbtypes, show_overload_debug): Ditto. * gdb-events.c, gdb-events.sh (_initialize_gdb_events) (show_gdb_events_debug): Ditto. * gdbarch.c, gdbarch.sh (show_gdbarch_debug) (_initialize_gdbarch): Ditto. * frame.c (_initialize_frame, show_backtrace_past_main) (show_backtrace_past_entry, show_backtrace_limit) (show_frame_debug): Ditto. * exec.c (_initialize_exec, show_write_files): Ditto. * dwarf2read.c (_initialize_dwarf2_read) (show_dwarf2_max_cache_age): Ditto. * demangle.c (_initialize_demangler) (show_demangling_style_names): Ditto. * dcache.c (_initialize_dcache, show_dcache_enabled_p): Ditto. * cp-valprint.c (show_static_field_print) (_initialize_cp_valprint, show_vtblprint, show_objectprint): Ditto. * corefile.c (_initialize_core, show_gnutarget_string): Ditto. * cli/cli-logging.c (_initialize_cli_logging) (show_logging_overwrite, show_logging_redirect) (show_logging_filename): Ditto. * cli/cli-cmds.c (show_info_verbose, show_history_expansion_p) (init_cli_cmds, show_baud_rate, show_remote_debug) (show_remote_timeout, show_max_user_call_depth): Ditto. * charset.c (show_host_charset_name, show_target_charset_name) (initialize_charset): Ditto. * breakpoint.c (show_can_use_hw_watchpoints) (show_pending_break_support, _initialize_breakpoint): Ditto.
219 lines
6.7 KiB
C
219 lines
6.7 KiB
C
/* GDB Notifications to Observers.
|
|
|
|
Copyright 2003, 2004 Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
/* An observer is an entity who is interested in being notified when GDB
|
|
reaches certain states, or certain events occur in GDB. The entity being
|
|
observed is called the Subject. To receive notifications, the observer
|
|
attaches a callback to the subject. One subject can have several
|
|
observers.
|
|
|
|
This file implements an internal generic low-level event notification
|
|
mechanism based on the Observer paradigm described in the book "Design
|
|
Patterns". This generic event notification mechansim is then re-used
|
|
to implement the exported high-level notification management routines
|
|
for all possible notifications.
|
|
|
|
The current implementation of the generic observer provides support
|
|
for contextual data. This contextual data is given to the subject
|
|
when attaching the callback. In return, the subject will provide
|
|
this contextual data back to the observer as a parameter of the
|
|
callback.
|
|
|
|
FIXME: The current support for the contextual data is only partial,
|
|
as it lacks a mechanism that would deallocate this data when the
|
|
callback is detached. This is not a problem so far, as this contextual
|
|
data is only used internally to hold a function pointer. Later on,
|
|
if a certain observer needs to provide support for user-level
|
|
contextual data, then the generic notification mechanism will need
|
|
need to be enhanced to allow the observer to provide a routine to
|
|
deallocate the data when attaching the callback.
|
|
|
|
This file is currently maintained by hand, but the long term plan
|
|
if the number of different notifications starts growing is to create
|
|
a new script (observer.sh) that would generate this file, and the
|
|
associated documentation. */
|
|
|
|
#include "defs.h"
|
|
#include "observer.h"
|
|
#include "command.h"
|
|
#include "gdbcmd.h"
|
|
|
|
static int observer_debug;
|
|
static void
|
|
show_observer_debug (struct ui_file *file, int from_tty,
|
|
struct cmd_list_element *c, const char *value)
|
|
{
|
|
fprintf_filtered (file, _("Observer debugging is %s.\n"), value);
|
|
}
|
|
|
|
/* The internal generic observer. */
|
|
|
|
typedef void (generic_observer_notification_ftype) (const void *data,
|
|
const void *args);
|
|
|
|
struct observer
|
|
{
|
|
generic_observer_notification_ftype *notify;
|
|
/* No memory management needed for the following field for now. */
|
|
void *data;
|
|
};
|
|
|
|
/* A list of observers, maintained by the subject. A subject is
|
|
actually represented by its list of observers. */
|
|
|
|
struct observer_list
|
|
{
|
|
struct observer_list *next;
|
|
struct observer *observer;
|
|
};
|
|
|
|
/* Allocate a struct observer_list, intended to be used as a node
|
|
in the list of observers maintained by a subject. */
|
|
|
|
static struct observer_list *
|
|
xalloc_observer_list_node (void)
|
|
{
|
|
struct observer_list *node = XMALLOC (struct observer_list);
|
|
node->observer = XMALLOC (struct observer);
|
|
return node;
|
|
}
|
|
|
|
/* The opposite of xalloc_observer_list_node, frees the memory for
|
|
the given node. */
|
|
|
|
static void
|
|
xfree_observer_list_node (struct observer_list *node)
|
|
{
|
|
xfree (node->observer);
|
|
xfree (node);
|
|
}
|
|
|
|
/* Attach the callback NOTIFY to a SUBJECT. The DATA is also stored,
|
|
in order for the subject to provide it back to the observer during
|
|
a notification. */
|
|
|
|
static struct observer *
|
|
generic_observer_attach (struct observer_list **subject,
|
|
generic_observer_notification_ftype * notify,
|
|
void *data)
|
|
{
|
|
struct observer_list *observer_list = xalloc_observer_list_node ();
|
|
|
|
observer_list->next = *subject;
|
|
observer_list->observer->notify = notify;
|
|
observer_list->observer->data = data;
|
|
*subject = observer_list;
|
|
|
|
return observer_list->observer;
|
|
}
|
|
|
|
/* Remove the given OBSERVER from the SUBJECT. Once detached, OBSERVER
|
|
should no longer be used, as it is no longer valid. */
|
|
|
|
static void
|
|
generic_observer_detach (struct observer_list **subject,
|
|
const struct observer *observer)
|
|
{
|
|
struct observer_list *previous_node = NULL;
|
|
struct observer_list *current_node = *subject;
|
|
|
|
while (current_node != NULL)
|
|
{
|
|
if (current_node->observer == observer)
|
|
{
|
|
if (previous_node != NULL)
|
|
previous_node->next = current_node->next;
|
|
else
|
|
*subject = current_node->next;
|
|
xfree_observer_list_node (current_node);
|
|
return;
|
|
}
|
|
previous_node = current_node;
|
|
current_node = current_node->next;
|
|
}
|
|
|
|
/* We should never reach this point. However, this should not be
|
|
a very serious error, so simply report a warning to the user. */
|
|
warning (_("Failed to detach observer"));
|
|
}
|
|
|
|
/* Send a notification to all the observers of SUBJECT. ARGS is passed to
|
|
all observers as an argument to the notification callback. */
|
|
|
|
static void
|
|
generic_observer_notify (struct observer_list *subject, const void *args)
|
|
{
|
|
struct observer_list *current_node = subject;
|
|
|
|
while (current_node != NULL)
|
|
{
|
|
(*current_node->observer->notify) (current_node->observer->data, args);
|
|
current_node = current_node->next;
|
|
}
|
|
}
|
|
|
|
|
|
/* The following code is only used to unit-test the observers from our
|
|
testsuite. DO NOT USE IT within observer.c (or anywhere else for
|
|
that matter)! */
|
|
|
|
/* If we define these variables and functions as `static', the
|
|
compiler will optimize them out. */
|
|
|
|
int observer_test_first_observer = 0;
|
|
int observer_test_second_observer = 0;
|
|
int observer_test_third_observer = 0;
|
|
|
|
void
|
|
observer_test_first_notification_function (struct bpstats *bs)
|
|
{
|
|
observer_test_first_observer++;
|
|
}
|
|
|
|
void
|
|
observer_test_second_notification_function (struct bpstats *bs)
|
|
{
|
|
observer_test_second_observer++;
|
|
}
|
|
|
|
void
|
|
observer_test_third_notification_function (struct bpstats *bs)
|
|
{
|
|
observer_test_third_observer++;
|
|
}
|
|
|
|
extern initialize_file_ftype _initialize_observer; /* -Wmissing-prototypes */
|
|
|
|
void
|
|
_initialize_observer (void)
|
|
{
|
|
add_setshow_zinteger_cmd ("observer", class_maintenance,
|
|
&observer_debug, _("\
|
|
Set observer debugging."), _("\
|
|
Show observer debugging."), _("\
|
|
When non-zero, observer debugging is enabled."),
|
|
NULL,
|
|
show_observer_debug,
|
|
&setdebuglist, &showdebuglist);
|
|
}
|
|
|
|
#include "observer.inc"
|