This file is indexed.

/usr/include/qof/qofobject.h is in libqof-dev 0.8.4-1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/********************************************************************\
 * qofobject.h -- the Core Object Description Interface             *
 *                                                                  *
 * 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, contact:                        *
 *                                                                  *
 * Free Software Foundation           Voice:  +1-617-542-5942       *
 * 51 Franklin Street, Fifth Floor    Fax:    +1-617-542-2652       *
 * Boston, MA  02110-1301,  USA       gnu@gnu.org                   *
 *                                                                  *
\********************************************************************/
/** @addtogroup Object
    QOF Objects provide the means for describing a QofEntity to
    allow a storage backend to load and write a QofBook. 
	While an entity can be thought of as an identified instance 
	of some thing, the QOF Object describes how that entity 
	can be created, how to find other entities of the same type,
	whether the object can be cached in the backend and how to
	compare entities of the same type.
	
	- QofObject describes how to relate one entity to another.
	- QofClass describes how to get and set data within the entity.

    To work with your own QOF Objects, you can use the QOF
    Generator to create sample objects and a mini-application
    with the SQL-type query interface.
    http://qof-gen.sourceforge.net/

    @{ */
/** @file qofobject.h
 *  @brief the Core Object Description Interface
 *  @author Copyright (c) 2001,2002 Derek Atkins <warlord@MIT.EDU>
 *  @author Copyright (c) 2006 Neil Williams <linux@codehelp.co.uk>
 */

#ifndef QOF_OBJECT_H_
#define QOF_OBJECT_H_

#include "qofbook.h"
#include "qofid.h"
#include "qofchoice.h"

/** Defines the version of the core object object registration
 * interface.  Only object modules compiled against this version
 * of the interface will load properly
 */
#define QOF_OBJECT_VERSION 4

#define QOF_MOD_OBJECT "qof-object"

typedef struct _QofObject QofObject;
typedef void (*QofForeachCB) (gpointer obj, gpointer user_data);
typedef void (*QofForeachTypeCB) (QofObject * type, gpointer user_data);
typedef void (*QofForeachBackendTypeCB) (QofIdTypeConst type,
										 gpointer backend_data,
										 gpointer user_data);

/** This is the QofObject Class descriptor 
 */
struct _QofObject
{
	gint interface_version;		/* of this object interface */
	QofIdType e_type;			/* the Object's QOF_ID */
	const gchar *type_label;	/* "Printable" type-label string */

  /** Create a new instance of this object type.  This routine might be
   *  NULL if the object type doesn't provide a way of creating new 
   *  instances. 
   */
	gpointer (*create) (QofBook *);

  /** book_begin is called from within the Book routines to create
   * module-specific hooks in a book whenever a book is created.
   */
	void (*book_begin) (QofBook *);

  /** book_end is called when the book is being closed, to clean
   * up (and free memory).
   */
	void (*book_end) (QofBook *);

  /** Determine if there are any dirty items in this book */
	gboolean (*is_dirty) (QofCollection *);

  /** Mark this object's book clean (for after a load) */
	void (*mark_clean) (QofCollection *);

  /** Traverse over all of the items in the collection, calling
   *  the callback on each item.  The third argument can be any 
   *  arbitrary caller-supplied data, and is passed to the callback. 
   *  Although (*foreach) may be NULL, allmost all objects should
   *  provide this routine, as without it, little of interest can 
    * be done.
   */
	void (*foreach) (QofCollection *, QofEntityForeachCB, gpointer);

  /** Given a particular item of this type, return a printable string. 
   */
	const gchar *(*printable) (gpointer instance);

  /** Given a pair of items of this type, this routine returns value 
   *  indicating which item is 'newer'.  This routine is used by storage
   *  backends to determine if the local or the remote copy of a 
   *  particular item is the latest, 'uptodate' version.  Tis routine
   *  should return an integer less than, equal to, or greater than zero
   *  if 'instance_left' is found to be, respecitvely, earlier than, equal
   *  to or later than than 'instance_right'.
   */
	gint (*version_cmp) (gpointer instance_left, gpointer instance_right);
};

/* -------------------------------------------------------------- */

/** @name Initialize the object registration subsystem */
/** @{ */
void qof_object_initialize (void);
void qof_object_shutdown (void);
/** @} */

/** Register new types of object objects */
gboolean qof_object_register (const QofObject * object);

/** Lookup an object definition */
const QofObject *qof_object_lookup (QofIdTypeConst type_name);

/** Create an instance of the indicated type, returning a pointer to that
 *  instance.  This routine just calls the (*new) callback on the object
 *  definition.  
 */
gpointer qof_object_new_instance (QofIdTypeConst type_name, QofBook * book);

/** Get the printable label for a type.  This label is *not*
 * translated; you must use _() on it if you want a translated version.
 */
const gchar *qof_object_get_type_label (QofIdTypeConst type_name);

/** @return a Human-readable string name for an instance */
const gchar *qof_object_printable (QofIdTypeConst type_name,
								   gpointer instance);

/** Invoke the callback 'cb' on every object class definition.
 *  The user_data pointer is passed back to the callback.
 */
void qof_object_foreach_type (QofForeachTypeCB cb, gpointer user_data);

/** Invoke the callback 'cb' on every instance ov a particular
 *  object type.  It is presumed that the 'book' stores or somehow
 *  identifies a colllection of instances; thus the callback will 
 *  be invoked only for those instances stored in the book.
 */
void qof_object_foreach (QofIdTypeConst type_name, QofBook * book,
						 QofEntityForeachCB cb, gpointer user_data);

/** Register and lookup backend-specific data for this particular object */
gboolean qof_object_register_backend (QofIdTypeConst type_name,
									  const gchar * backend_name,
									  gpointer be_data);

gpointer qof_object_lookup_backend (QofIdTypeConst type_name,
									const gchar * backend_name);

void qof_object_foreach_backend (const char *backend_name,
								 QofForeachBackendTypeCB cb,
								 gpointer user_data);
/** @} */

#endif /* QOF_OBJECT_H_ */