1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
/*
* internal-handle-repo.h - private header for handle repositories
*
* Copyright (C) 2005,2006,2007 Collabora Ltd.
* Copyright (C) 2005,2006,2007 Nokia Corporation
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*
*/
#ifndef __TP_INTERNAL_HANDLE_REPO_H__
#define __TP_INTERNAL_HANDLE_REPO_H__
#include <telepathy-glib/handle-repo.h>
G_BEGIN_DECLS
/* <-- this is no longer a gtkdoc comment because this is not public API
* TpHandleRepoIfaceClass:
* @parent_class: Fields shared with GTypeInterface
* @handle_is_valid: Implementation for tp_handle_is_valid() for this repo
* @handles_are_valid: Implementation for tp_handles_are_valid() for this repo
* @ref_handle: Implementation for tp_handle_ref() for this repo
* @unref_handle: Implementation for tp_handle_unref() for this repo
* @client_hold_handle: Implementation for tp_handle_client_hold() for this
* repo
* @client_release_handle: Implementation for tp_handle_client_release() for
* this repo
* @inspect_handle: Implementation for tp_handle_inspect() for this repo
* @ensure_handle: Implementation for tp_handle_ensure() for this repo
* @lookup_handle: Implementation for tp_handle_lookup() for this repo
* @get_qdata: Implementation for tp_handle_get_qdata() for this repo
* @set_qdata: Implementation for tp_handle_set_qdata() for this repo
*
* The class of a #TpHandleRepoIface. All implementation callbacks must be
* filled in by all implementations, and have the same semantics as the
* global function that calls them.
*/
struct _TpHandleRepoIfaceClass {
GTypeInterface parent_class;
gboolean (*handle_is_valid) (TpHandleRepoIface *self, TpHandle handle,
GError **error);
gboolean (*handles_are_valid) (TpHandleRepoIface *self,
const GArray *handles, gboolean allow_zero, GError **error);
TpHandle (*ref_handle) (TpHandleRepoIface *self, TpHandle handle);
void (*unref_handle) (TpHandleRepoIface *self, TpHandle handle);
gboolean (*client_hold_handle) (TpHandleRepoIface *self,
const gchar *client, TpHandle handle, GError **error);
gboolean (*client_release_handle) (TpHandleRepoIface *self,
const gchar *client, TpHandle handle, GError **error);
const char *(*inspect_handle) (TpHandleRepoIface *self, TpHandle handle);
TpHandle (*ensure_handle) (TpHandleRepoIface *self, const char *id,
gpointer context, GError **error);
TpHandle (*lookup_handle) (TpHandleRepoIface *self, const char *id,
gpointer context, GError **error);
void (*set_qdata) (TpHandleRepoIface *repo, TpHandle handle,
GQuark key_id, gpointer data, GDestroyNotify destroy);
gpointer (*get_qdata) (TpHandleRepoIface *repo, TpHandle handle,
GQuark key_id);
};
gpointer _tp_dynamic_handle_repo_get_normalization_data (
TpHandleRepoIface *irepo);
void _tp_dynamic_handle_repo_set_normalization_data (TpHandleRepoIface *irepo,
gpointer data,
GDestroyNotify destroy);
G_END_DECLS
#endif /*__TP_INTERNAL_HANDLE_REPO_H__ */
|