/usr/include/getdata/dirfile.h is in libgetdata-dev 0.7.3-6ubuntu1.
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 | // Copyright (C) 2008-2010 D. V. Wiebe
//
///////////////////////////////////////////////////////////////////////////
//
// This file is part of the GetData project.
//
// GetData 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.
//
// GetData 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 GetData; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
//
#ifndef GETDATA_DIRFILE_H
#define GETDATA_DIRFILE_H
// We don't want the legacy API since its symbols clash with us.
#ifndef GD_NO_LEGACY_API
# define GD_NO_LEGACY_API
#endif
// We use the C89 API since C++ compilers aren't required to support the
// C99 _Complex keyword
#ifndef GD_C89_API
# define GD_C89_API
#endif
#include <getdata.h>
#include <getdata/fragment.h>
#include <getdata/entry.h>
#include <getdata/rawentry.h>
#include <getdata/lincomentry.h>
#include <getdata/linterpentry.h>
#include <getdata/bitentry.h>
#include <getdata/sbitentry.h>
#include <getdata/phaseentry.h>
#include <getdata/indexentry.h>
#include <getdata/polynomentry.h>
#include <getdata/constentry.h>
#include <getdata/carrayentry.h>
#include <getdata/stringentry.h>
#include <getdata/multiplyentry.h>
#include <getdata/divideentry.h>
#include <getdata/recipentry.h>
namespace GetData {
class Entry;
class RawEntry;
class Dirfile {
friend class Entry;
friend class RawEntry;
friend class LincomEntry;
friend class LinterpEntry;
friend class BitEntry;
friend class SBitEntry;
friend class MultiplyEntry;
friend class DivideEntry;
friend class RecipEntry;
friend class PhaseEntry;
friend class PolynomEntry;
friend class ConstEntry;
friend class CarrayEntry;
friend class StringEntry;
friend class IndexEntry;
friend class Fragment;
public:
Dirfile();
Dirfile(const char *dirfilename, unsigned long flags = GD_RDONLY,
gd_parser_callback_t sehandler = NULL, void* extra = NULL);
Dirfile(DIRFILE *D);
~Dirfile();
int Add(GetData::Entry &entry) const;
int AddSpec(const char *spec, int fragment_index = 0) const;
int AlterSpec(const char* spec, int recode = 0) const;
off_t BoF(const char *field_code) const;
size_t CarrayLen(const char *field_code) const;
const gd_carray_t *Carrays(DataType type = Float64) const;
int Close();
const void *Constants(DataType type = Float64) const;
int Delete(const char* field_code, int flags = 0) const;
int Discard();
GetData::Entry* Entry(const char *field_code) const;
off_t EoF(const char *field_code) const;
int Error() const;
const char *ErrorString();
const char *ErrorString(size_t n) gd_deprecated;
const char **FieldList() const;
const char **FieldListByType(EntryType type) const;
int Flush(const char *field_code = NULL) const;
GetData::Fragment *Fragment(int index) const;
int FragmentIndex(const char* field_code) const;
double FrameNum(const char* field_code, double value,
off_t frame_start = 0, off_t frame_end = 0) const;
int GetCarray(const char *field_code, DataType type, void *data_out,
unsigned int start = 0, size_t len = 0) const;
int GetConstant(const char *field_code, DataType type, void *data_out)
const;
size_t GetData(const char *field_code, off_t first_frame,
off_t first_sample, size_t num_frames, size_t num_samples,
DataType type, void* data_out) const;
size_t GetString(const char *field_code, size_t len, char *data_out)
const;
int Include(const char *file, int fragment_index = 0,
unsigned long flags = 0) const;
int MAdd(GetData::Entry &entry, const char *parent) const;
int MAddSpec(const char *spec, const char *parent) const;
int MAlterSpec(const char *line, const char *parent, int recode = 0)
const;
const gd_carray_t *MCarrays(const char *parent, DataType type = Float64)
const;
const void *MConstants(const char *parent, DataType type = Float64) const;
int MetaFlush() const;
const char **MFieldList(const char *parent) const;
const char **MFieldListByType(const char *parent, EntryType type) const;
const char **MStrings(const char *parent) const;
const char **MVectorList(const char *parent) const;
unsigned int NFields() const;
unsigned int NFieldsByType(EntryType type) const;
unsigned int NMFields(const char *parent) const;
unsigned int NMFieldsByType(const char *parent, EntryType type) const;
unsigned int NMVectors(const char *parent) const;
const char* Name() const;
DataType NativeType(const char* field_code) const;
int NFragments() const;
off_t NFrames() const;
unsigned int NVectors() const;
int PutCarray(const char *field_code, DataType type, const void *data_in,
unsigned int start = 0, size_t len = 0) const;
int PutConstant(const char *field_code, DataType type,
const void *data_in) const;
size_t PutData(const char *field_code, off_t first_frame,
off_t first_sample, size_t num_frames, size_t num_samples,
DataType type, const void* data_in) const;
size_t PutString(const char *field_code, const char *data_in) const;
GetData::RawEntry *Reference(const char* field_code = NULL) const;
const char *ReferenceFilename() const;
unsigned int SamplesPerFrame(const char *field_code) const;
void SetCallback(gd_parser_callback_t sehandler, void* extra = NULL)
const;
int Standards(int version = GD_VERSION_CURRENT) const;
const char **Strings() const;
int UnInclude(int fragment_index, int del = 0) const;
int Validate(const char* field_code) const;
const char **VectorList() const;
private:
DIRFILE* D;
char *error_string;
};
}
#endif
|