summaryrefslogtreecommitdiff
path: root/gdb/registry.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2012-09-13 14:35:12 +0000
committerPedro Alves <palves@redhat.com>2012-09-13 14:35:12 +0000
commitfe513f6eddf053e1aa9d0a06e3692d7e17599892 (patch)
tree2b709197eecd0d1acd3c55024a420f789482a164 /gdb/registry.c
parent0f0f8a7ca3e1d074dd3089f3d864e8916dc7003a (diff)
downloadgdb-fe513f6eddf053e1aa9d0a06e3692d7e17599892.tar.gz
2012-09-13 Pedro Alves <palves@redhat.com>
* Makefile.in (COMMON_OBS): Add registry.o. * registry.c: New file. * registry.h (struct registry_container): Declare. (registry_data_callback): New typedef. (struct registry_data, struct registry_data_registration, struct registry_data_registry): New type. (register_data_with_cleanup, registry_alloc_data) (registry_callback_adaptor, registry_clear_data) (registry_container_free_data, registry_set_data, registry_data): Declare. (DEFINE_REGISTRY): Refactor structures and functions as shims over the new common structures and functions. (DECLARE_REGISTRY): Declare struct TAG ## _data. Use the tagged callback typedefs.
Diffstat (limited to 'gdb/registry.c')
-rw-r--r--gdb/registry.c116
1 files changed, 116 insertions, 0 deletions
diff --git a/gdb/registry.c b/gdb/registry.c
new file mode 100644
index 00000000000..c01929b3653
--- /dev/null
+++ b/gdb/registry.c
@@ -0,0 +1,116 @@
+/* Support functions for general registry objects.
+
+ Copyright (C) 2011, 2012
+ 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 3 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, see <http://www.gnu.org/licenses/>. */
+
+#include "defs.h"
+#include "registry.h"
+#include "gdb_assert.h"
+#include "gdb_string.h"
+
+const struct registry_data *
+register_data_with_cleanup (struct registry_data_registry *registry,
+ registry_data_callback save,
+ registry_data_callback free)
+{
+ struct registry_data_registration **curr;
+
+ /* Append new registration. */
+ for (curr = &registry->registrations;
+ *curr != NULL;
+ curr = &(*curr)->next)
+ ;
+
+ *curr = XMALLOC (struct registry_data_registration);
+ (*curr)->next = NULL;
+ (*curr)->data = XMALLOC (struct registry_data);
+ (*curr)->data->index = registry->num_registrations++;
+ (*curr)->data->save = save;
+ (*curr)->data->free = free;
+
+ return (*curr)->data;
+}
+
+void
+registry_alloc_data (struct registry_data_registry *registry,
+ struct registry_fields *fields)
+{
+ gdb_assert (fields->data == NULL);
+ fields->num_data = registry->num_registrations;
+ fields->data = XCALLOC (fields->num_data, void *);
+}
+
+void
+registry_clear_data (struct registry_data_registry *data_registry,
+ registry_callback_adaptor adaptor,
+ struct registry_container *container,
+ struct registry_fields *fields)
+{
+ struct registry_data_registration *registration;
+ int i;
+
+ gdb_assert (fields->data != NULL);
+
+ /* Process all the save handlers. */
+
+ for (registration = data_registry->registrations, i = 0;
+ i < fields->num_data;
+ registration = registration->next, i++)
+ if (fields->data[i] != NULL && registration->data->save != NULL)
+ adaptor (registration->data->save, container, fields->data[i]);
+
+ /* Now process all the free handlers. */
+
+ for (registration = data_registry->registrations, i = 0;
+ i < fields->num_data;
+ registration = registration->next, i++)
+ if (fields->data[i] != NULL && registration->data->free != NULL)
+ adaptor (registration->data->free, container, fields->data[i]);
+
+ memset (fields->data, 0, fields->num_data * sizeof (void *));
+}
+
+void
+registry_container_free_data (struct registry_data_registry *data_registry,
+ registry_callback_adaptor adaptor,
+ struct registry_container *container,
+ struct registry_fields *fields)
+{
+ void ***rdata = &fields->data;
+ gdb_assert (*rdata != NULL);
+ registry_clear_data (data_registry, adaptor, container, fields);
+ xfree (*rdata);
+ *rdata = NULL;
+}
+
+void
+registry_set_data (struct registry_fields *fields,
+ const struct registry_data *data,
+ void *value)
+{
+ gdb_assert (data->index < fields->num_data);
+ fields->data[data->index] = value;
+}
+
+void *
+registry_data (struct registry_fields *fields,
+ const struct registry_data *data)
+{
+ gdb_assert (data->index < fields->num_data);
+ return fields->data[data->index];
+}