/usr/include/cpl_frame.h is in libcpl-dev 5.3.1-1.
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 | /* $Id: cpl_frame.h,v 1.18 2010/11/11 10:31:52 llundin Exp $
*
* This file is part of the ESO Common Pipeline Library
* Copyright (C) 2001-2005 European Southern Observatory
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* $Author: llundin $
* $Date: 2010/11/11 10:31:52 $
* $Revision: 1.18 $
* $Name: cpl-5_3_0-BRANCH $
*/
#ifndef CPL_FRAME_H
#define CPL_FRAME_H
#include <stdio.h>
#include <cpl_error.h>
CPL_BEGIN_DECLS
/**
* @ingroup cpl_frame
*
* @brief
* The frame data type.
*/
typedef struct _cpl_frame_ cpl_frame;
/**
* @ingroup cpl_frame
*
* @brief
* Supported frame types
*
* Defines the possible values for the frame's type attribute.
*/
enum _cpl_frame_type_ {
/**
* Undefined frame type
* @hideinitializer
*/
CPL_FRAME_TYPE_NONE = 1 << 0,
/**
* Image frame type identifier
* @hideinitializer
*/
CPL_FRAME_TYPE_IMAGE = 1 << 1,
/**
* Matrix frame type identifier
* @hideinitializer
*/
CPL_FRAME_TYPE_MATRIX = 1 << 2,
/**
* Table frame type identifier
* @hideinitializer
*/
CPL_FRAME_TYPE_TABLE = 1 << 3,
/**
* paf frame type identifier
* @hideinitializer
*/
CPL_FRAME_TYPE_PAF = 1 << 4,
/**
* identifier for any other type
* @hideinitializer
*/
CPL_FRAME_TYPE_ANY = 1 << 5
};
/**
* @ingroup cpl_frame
*
* @brief
* The frame type data type.
*/
typedef enum _cpl_frame_type_ cpl_frame_type;
/**
* @ingroup cpl_frame
*
* @brief
* Supported frame groups.
*
* Defines the possible values for the frame's group attribute.
*/
enum _cpl_frame_group_ {
/**
* The frame does not belong to any supported group.
*/
CPL_FRAME_GROUP_NONE,
/**
* The frame is associated to unprocessed data.
*/
CPL_FRAME_GROUP_RAW,
/**
* The frame is associated to calibration data.
*/
CPL_FRAME_GROUP_CALIB,
/**
* The frame is associated to processed data.
*/
CPL_FRAME_GROUP_PRODUCT
};
/**
* @ingroup cpl_frame
*
* @brief
* The frame group data type.
*/
typedef enum _cpl_frame_group_ cpl_frame_group;
/**
* @ingroup cpl_frame
*
* @brief
* Supported frame processing levels.
*
* @note
* The processing levels are just flags and it is left to the application
* to trigger the appropriate action for the different levels.
*/
enum _cpl_frame_level_ {
/**
* Undefined processing level
*/
CPL_FRAME_LEVEL_NONE,
/**
* Temporary product. The corresponding file will be deleted when
* the processing chain is completed.
*/
CPL_FRAME_LEVEL_TEMPORARY,
/**
* Intermediate product. The corresponding file is only kept on request.
* The default is to delete these products at the end of the processing
* chain.
*/
CPL_FRAME_LEVEL_INTERMEDIATE,
/**
* Final data product, which is always written to a file at the end of
* the processing chain.
*/
CPL_FRAME_LEVEL_FINAL
};
/**
* @ingroup cpl_frame
*
* @brief
* The frame level data type.
*/
typedef enum _cpl_frame_level_ cpl_frame_level;
/*
* Identifier strings for the different frame groups.
*/
/**
* @ingroup cpl_frame
*
* @brief
* Frame group tag for unprocessed data.
*/
#define CPL_FRAME_GROUP_RAW_ID "RAW"
/**
* @ingroup cpl_frame
*
* @brief
* Frame group tag for calibration data.
*/
#define CPL_FRAME_GROUP_CALIB_ID "CALIB"
/**
* @ingroup cpl_frame
*
* @brief
* Frame group tag for processed data.
*/
#define CPL_FRAME_GROUP_PRODUCT_ID "PRODUCT"
/*
* Create, copy and destroy operations
*/
cpl_frame *cpl_frame_new(void) CPL_ATTR_ALLOC;
cpl_frame *cpl_frame_duplicate(const cpl_frame *other) CPL_ATTR_ALLOC;
void cpl_frame_delete(cpl_frame *self);
/*
* Modifying and non-modifying operations
*/
const char *cpl_frame_get_filename(const cpl_frame *self);
const char *cpl_frame_get_tag(const cpl_frame *self);
cpl_frame_type cpl_frame_get_type(const cpl_frame *self);
cpl_frame_group cpl_frame_get_group(const cpl_frame *self);
cpl_frame_level cpl_frame_get_level(const cpl_frame *self);
/*
* Assignment operations
*/
cpl_error_code cpl_frame_set_filename(cpl_frame *self, const char *filename);
cpl_error_code cpl_frame_set_tag(cpl_frame *self, const char *tag);
cpl_error_code cpl_frame_set_type(cpl_frame *self, cpl_frame_type type);
cpl_error_code cpl_frame_set_group(cpl_frame *self, cpl_frame_group group);
cpl_error_code cpl_frame_set_level(cpl_frame *self, cpl_frame_level level);
/*
* Others
*/
int cpl_frame_get_nextensions(const cpl_frame *self);
void cpl_frame_dump(const cpl_frame *frame, FILE *stream);
CPL_END_DECLS
#endif /* CPL_FRAME_H */
|