D-Bus 1.15.8
dbus-dataslot.h
1/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2/* dbus-dataslot.h storing data on objects
3 *
4 * Copyright (C) 2003 Red Hat, Inc.
5 *
6 * SPDX-License-Identifier: AFL-2.1 OR GPL-2.0-or-later
7 *
8 * Licensed under the Academic Free License version 2.1
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 *
24 */
25#ifndef DBUS_DATASLOT_H
26#define DBUS_DATASLOT_H
27
28#include <dbus/dbus-internals.h>
29
31
34
36typedef struct DBusDataSlot DBusDataSlot;
39{
40 void *data;
42};
43
45
49{
52};
53
58{
62 DBusGlobalLock lock;
63};
64
65#define _DBUS_DATA_SLOT_ALLOCATOR_INIT(x) { NULL, 0, 0, x }
66
72{
74 int n_slots;
75};
76
78 DBusGlobalLock lock);
80 int *slot_id_p);
82 int *slot_id_p);
85 DBusDataSlotList *list,
86 int slot,
87 void *data,
88 DBusFreeFunction free_data_func,
89 DBusFreeFunction *old_free_func,
90 void **old_data);
92 DBusDataSlotList *list,
93 int slot);
96
97
99
100#endif /* DBUS_DATASLOT_H */
void _dbus_data_slot_allocator_free(DBusDataSlotAllocator *allocator, int *slot_id_p)
Deallocates an ID previously allocated with _dbus_data_slot_allocator_alloc().
void _dbus_data_slot_list_clear(DBusDataSlotList *list)
Frees all data slots contained in the list, calling application-provided free functions if they exist...
dbus_bool_t _dbus_data_slot_allocator_init(DBusDataSlotAllocator *allocator, DBusGlobalLock lock)
Initializes a data slot allocator object, used to assign integer IDs for data slots.
Definition: dbus-dataslot.c:49
void _dbus_data_slot_list_init(DBusDataSlotList *list)
Initializes a slot list.
void _dbus_data_slot_list_free(DBusDataSlotList *list)
Frees the data slot list and all data slots contained in it, calling application-provided free functi...
void * _dbus_data_slot_list_get(DBusDataSlotAllocator *allocator, DBusDataSlotList *list, int slot)
Retrieves data previously set with _dbus_data_slot_list_set_data().
dbus_bool_t _dbus_data_slot_list_set(DBusDataSlotAllocator *allocator, DBusDataSlotList *list, int slot, void *data, DBusFreeFunction free_data_func, DBusFreeFunction *old_free_func, void **old_data)
Stores a pointer in the data slot list, along with an optional function to be used for freeing the da...
dbus_bool_t _dbus_data_slot_allocator_alloc(DBusDataSlotAllocator *allocator, int *slot_id_p)
Allocates an integer ID to be used for storing data in a DBusDataSlotList.
Definition: dbus-dataslot.c:72
#define DBUS_BEGIN_DECLS
Macro used prior to declaring functions in the D-Bus header files.
#define DBUS_END_DECLS
Macro used after declaring functions in the D-Bus header files.
void(* DBusFreeFunction)(void *memory)
The type of a function which frees a block of memory.
Definition: dbus-memory.h:65
dbus_uint32_t dbus_bool_t
A boolean, valid values are TRUE and FALSE.
Definition: dbus-types.h:37
int dbus_int32_t
A 32-bit signed integer on all platforms.
An allocated slot for storing data.
Definition: dbus-dataslot.h:49
int refcount
Number of uses of the slot.
Definition: dbus-dataslot.h:51
dbus_int32_t slot_id
ID of this slot.
Definition: dbus-dataslot.h:50
An allocator that tracks a set of slot IDs.
Definition: dbus-dataslot.h:58
DBusAllocatedSlot * allocated_slots
Allocated slots.
Definition: dbus-dataslot.h:59
int n_allocated_slots
number of slots malloc'd
Definition: dbus-dataslot.h:60
DBusGlobalLock lock
index of thread lock
Definition: dbus-dataslot.h:62
int n_used_slots
number of slots used
Definition: dbus-dataslot.h:61
Data structure that stores the actual user data set at a given slot.
Definition: dbus-dataslot.h:72
int n_slots
Slots we have storage for in data_slots.
Definition: dbus-dataslot.h:74
DBusDataSlot * slots
Data slots.
Definition: dbus-dataslot.h:73
DBusDataSlot is used to store application data on the connection.
Definition: dbus-dataslot.h:39
void * data
The application data.
Definition: dbus-dataslot.h:40
DBusFreeFunction free_data_func
Free the application data.
Definition: dbus-dataslot.h:41