This file is indexed.

/usr/include/ncbi-vdb/vdb/table.hpp is in libncbi-vdb-dev 2.8.1+dfsg-2.

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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
/*===========================================================================
*
*                            PUBLIC DOMAIN NOTICE
*               National Center for Biotechnology Information
*
*  This software/database is a "United States Government Work" under the
*  terms of the United States Copyright Act.  It was written as part of
*  the author's official duties as a United States Government employee and
*  thus cannot be copyrighted.  This software/database is freely available
*  to the public for use. The National Library of Medicine and the U.S.
*  Government have not placed any restriction on its use or reproduction.
*
*  Although all reasonable efforts have been taken to ensure the accuracy
*  and reliability of the software and data, the NLM and the U.S.
*  Government do not and cannot warrant the performance or results that
*  may be obtained by using this software or data. The NLM and the U.S.
*  Government disclaim all warranties, express or implied, including
*  warranties of performance, merchantability or fitness for any particular
*  purpose.
*
*  Please cite the author in any work or product based on this material.
*
* ===========================================================================
*
*/

#ifndef _hpp_vdb_table_
#define _hpp_vdb_table_

#ifndef _h_vdb_table_
#include <vdb/table.h>
#endif

#ifndef _h_vdb_cursor_
#include <vdb/cursor.h>
#endif


/*--------------------------------------------------------------------------
 * VTable
 *  a collection of columns indexed by row id, metadata, indices
 */
struct VTable
{
    /* AddRef
     * Release
     *  all objects are reference counted
     *  NULL references are ignored
     */
    inline rc_t AddRef ( const VTable *self ) const throw()
    { return VTableAddRef ( this ); }
    inline rc_t Release ( const VTable *self ) const throw()
    { return VTableRelease ( this ); }

    /* Locked
     *  returns true if locked
     */
    inline bool Locked () const throw()
    { return VTableLocked ( this ); }


    /* Writable
     *  returns 0 if object is writable
     *  or a reason why if not
     *
     *  "type" [ IN ] - a KDBPathType
     *  valid values are kptIndex and kptColumn
     *
     *  "path" [ IN ] - NUL terminated path
     */
     inline rc_t Writable ( uint32_t type, 
        const char * name, ... ) const throw()
     {
        va_list args;
        va_start ( args, name );
        rc_t rc = VTableVWritable ( this, type, name, args );
        va_end ( args );
        return rc;
     }
     inline rc_t Writable ( uint32_t type, 
        const char * name, va_list args ) const throw()
    { return VTableVWritable ( this, type, name, args ); }


    /* Lock
     *  apply lock
     *
     *  if object is already locked, the operation is idempotent
     *  and returns an rc state of rcLocked
     *
     *  "type" [ IN ] - a KDBPathType
     *  valid values are kptIndex and kptColumn
     *
     *  "name" [ IN ] - NUL terminated path
     */
    inline rc_t Lock ( uint32_t type, const char * name, ... ) throw()
    {
        va_list args;
        va_start ( args, name );
        rc_t rc = VTableVLock ( this, type, name, args );
        va_end ( args );
        return rc;
    }
    inline rc_t Lock ( uint32_t type, const char * name, va_list args ) throw()
    { return VTableVLock ( this, type, name, args ); }

    
    /* Unlock
     *  remove lock
     *
     *  if object is already unlocked, the operation is idempotent
     *  and returns an rc state of rcUnlocked
     *
     *  "type" [ IN ] - a KDBPathType
     *  valid values are kptIndex and kptColumn
     *
     *  "name" [ IN ] - NUL terminated path
     */
     inline rc_t Unlock ( uint32_t type, const char * name, ... ) throw()
     {
        va_list args;
        va_start ( args, name );
        rc_t rc = VTableVUnlock ( this, type, name, args );
        va_end ( args );
        return rc;
     }
    inline rc_t UnLock ( uint32_t type, const char * name, va_list args ) throw()
    { return VTableVUnlock ( this, type, name, args ); }


    /* OpenMetadataRead
     * OpenMetadataUpdate
     *  opens metadata file
     *
     *  "meta" [ OUT ] - return parameter for metadata
     */
    inline rc_t OpenMetadataRead ( struct KMetadata const **meta ) const throw()
    { return VTableOpenMetadataRead ( this, meta ); }
    inline rc_t OpenMetadataUpdate ( struct KMetadata **meta ) throw()
    { return VTableOpenMetadataUpdate ( this, meta ); }
    

    /* ColumnCreateParams
     *  sets the creation parameters for physical columns
     *
     *  "cmode" [ IN ] - creation mode
     *
     *  "checksum" [ IN ] - the type of checksum information to
     *  apply when writing blobs
     *
     *  "pgsize" [ IN, DEFAULT ZERO ] - size of internal column "pages"
     *  the default value is indicated by 0 ( zero ).
     *  NB - CURRENTLY THE ONLY SUPPORTED PAGE SIZE IS 1 ( ONE ) BYTE.
     */
    inline rc_t ColumnCreateParams ( KCreateMode cmode, 
        KChecksum checksum, size_t pgsize ) throw()
    { return VTableColumnCreateParams ( this, cmode, checksum, pgsize ); }


    /* CreateIndex
     * VCreateIndex
     *  create a new or open an existing index
     *
     *  "idx" [ OUT ] - return parameter for newly opened index
     *
     *  "type" [ IN ] - type of index to create
     *
     *  "cmode" [ IN ] - creation mode
     *
     *  "name" [ IN ] - NUL terminated string in UTF-8 giving simple name of idx
     */
    inline rc_t CreateIndex ( KIndex **idx,
        KIdxType type, KCreateMode cmode, const char *name, ... ) throw()
    {
        va_list args;
        va_start ( args, name );
        rc_t rc = VTableVCreateIndex ( this, idx, type, cmode, name, args );
        va_end ( args );
        return rc;
    }
    inline rc_t CreateIndex ( KIndex **idx,
        KIdxType type, KCreateMode cmode, const char *name, va_list args ) throw()
    { return VTableVCreateIndex ( this, idx, type, cmode, name, args ); }


    /* OpenIndexRead
     * VOpenIndexRead
     *  open an index for read
     *
     *  "idx" [ OUT ] - return parameter for newly opened index
     *
     *  "name" [ IN ] - NUL terminated string in UTF-8 giving simple name of idx
     */
    inline rc_t OpenIndexRead ( const KIndex **idx,
        const char *name, ... ) const throw()
    {
        va_list args;
        va_start ( args, name );
        rc_t rc = VTableVOpenIndexRead ( this, idx, name, args );
        va_end ( args );
        return rc;
    }
    inline rc_t OpenIndexRead ( const KIndex **idx,
        const char *name, va_list args ) const throw()
    { return VTableVOpenIndexRead ( this, idx, name, args ); }


    /* OpenIndexUpdate
     * VOpenIndexUpdate
     *  open an index for read/write
     *
     *  "idx" [ OUT ] - return parameter for newly opened index
     *
     *  "name" [ IN ] - NUL terminated string in UTF-8 giving simple name of idx
     */
    inline rc_t OpenIndexUpdate ( KIndex **idx,
        const char *name, ... ) throw()
    {
        va_list args;
        va_start ( args, name );
        rc_t rc = VTableVOpenIndexUpdate ( this, idx, name, args );
        va_end ( args );
        return rc;
    }
    inline rc_t OpenIndexUpdate ( KIndex **idx,
        const char *name, va_list args ) throw()
    { return VTableVOpenIndexUpdate ( this, idx, name, args ); }


    /* List
     *  create table listings
     */
    inline rc_t ListCol ( struct KNamelist **names ) const throw()
    { return VTableListCol ( this, names ); }


    /* ColumnDatatypes
     *  returns list of typedecls for named column
     *
     *  "col" [ IN ] - column name
     *
     *  "dflt_idx" [ OUT, NULL OKAY ] - returns the zero-based index
     *  into "typedecls" of the default datatype for the named column
     *
     *  "typedecls" [ OUT ] - list of datatypes available for named column
     */
    inline rc_t ColumnDatatypes ( const char *col,
        uint32_t *dflt_idx, struct KNamelist **typedecls ) const throw()
    { return VTableColumnDatatypes ( this, col, dflt_idx, typedecls ); }


    /* Reindex
     *  optimize column indices
     */
    inline rc_t Reindex () throw()
    { return VTableReindex ( this ); }


    /* OpenManager
     *  duplicate reference to manager
     *  NB - returned reference must be released
     */
    inline rc_t OpenManager ( struct VDBManager const **mgr ) const throw()
    { return VTableOpenManagerRead ( this, mgr ); }
    inline rc_t OpenManager ( struct VDBManager **mgr ) throw()
    { return VTableOpenManagerUpdate ( this, mgr ); }


    /* OpenParent
     *  duplicate reference to parent database
     *  NB - returned reference must be released
     */
    inline rc_t OpenParent ( struct VDatabase const **db ) const throw()
    { return VTableOpenParentRead ( this, db ); }
    inline rc_t OpenParent ( struct VDatabase **db ) throw()
    { return VTableOpenParentUpdate ( this, db ); }


    /* OpenSchema
     *  duplicate reference to table schema
     *  NB - returned reference must be released
     */
    inline rc_t OpenSchema ( struct VSchema const **schema ) const throw()
    { return  VTableOpenSchema ( this, schema ); }


    /* GetUserData
     * SetUserData
     *  store/retrieve an opaque pointer to user data
     *
     *  "data" [ OUT ] - return parameter for getting data
     *  "data" [ IN ] - parameter for setting data
     *
     *  "destroy" [ IN, NULL OKAY ] - optional destructor param
     *  invoked from destructor of "self"
     */
    inline rc_t GetUserData ( void **data ) const throw()
    { return VTableGetUserData ( this, data ); }
    inline rc_t SetUserData ( void *data,
        void ( CC * destroy ) ( void *data ) ) const throw()
    { return VTableSetUserData ( this, data, destroy ); }


    /* CreateCursor
     *  creates a cursor object onto table
     *  multiple read cursors are allowed
     *  only a single write cursor is allowed
     *
     *  "curs" [ OUT ] - return parameter for newly created cursor
     *
     *  "mode" [ IN ] - describes update behavior
     *    kcmUpdate   : allow inserts or updates
     *    kcmReplace  : replace all existing rows with newly written rows
     *    kcmInsert   : allow only inserts, i.e. new rows
     */
    inline rc_t CreateCursor ( const VCursor **curs ) const throw()
    { return VTableCreateCursorRead ( this, curs ); }
    inline rc_t CreateCursor ( VCursor **curs, KCreateMode mode ) throw()
    { return VTableCreateCursorWrite ( this, curs, mode ); }

private:
    VTable ();
    ~ VTable ();
    VTable ( const VTable& );
    VTable &operator = ( const VTable& );
};

#endif //  _hpp_vdb_table_