source: git/src/img.h @ a72ed95

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-datawalls-data-hanging-as-warning
Last change on this file since a72ed95 was 5dc3775, checked in by Olly Betts <olly@…>, 10 years ago

src/img.h: Improve documentation for img_ERROR_INFO.

  • Property mode set to 100644
File size: 9.4 KB
RevLine 
[421b7d2]1/* img.h
[d1b1380]2 * Header file for routines to read and write Survex ".3d" image files
[4f70ebc]3 * Copyright (C) Olly Betts 1993,1994,1997,2001,2002,2003,2004,2005,2006,2010,2011,2012,2013,2014
[846746e]4 *
[89231c4]5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
[846746e]9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
[89231c4]12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
[846746e]14 *
[89231c4]15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
[d7d7fa7]17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
[d1b1380]18 */
19
20#ifndef IMG_H
21# define IMG_H
22
[1ee204e]23/* Define IMG_API_VERSION if you want more recent versions of the img API.
24 *
25 * 0 (default)  The old API.  date1 and date2 give the survey date as time_t.
26 *              Set to 0 for "unknown".
27 * 1            days1 and days2 give survey dates as days since 1st Jan 1900.
28 *              Set to -1 for "unknown".
29 */
30#ifndef IMG_API_VERSION
31# define IMG_API_VERSION 0
32#elif IMG_API_VERSION > 1
33# error IMG_API_VERSION > 1 too new
34#endif
35
[8df22e9]36#ifdef __cplusplus
[f2daf3b]37extern "C" {
38#endif
39
[0d2b588]40#include <stdio.h>
[dfb7670]41#include <time.h> /* for time_t */
[0d2b588]42
[d1b1380]43# define img_BAD   -2
44# define img_STOP  -1
45# define img_MOVE   0
46# define img_LINE   1
[437caf3]47/* NB: img_CROSS is never output and ignored on input.
[0ff23cb]48 * Put crosses where labels are. */
49/* # define img_CROSS  2 */
[d1b1380]50# define img_LABEL  3
[ee05463]51# define img_XSECT  4
[d7d7fa7]52# define img_XSECT_END 5
[5dc3775]53/* Loop closure information for the *preceeding* traverse (img_MOVE + one or
54 * more img_LINEs). */
[c61aa79]55# define img_ERROR_INFO 6
[5c3c61a]56
[ab42a9c]57/* Leg flags */
[5c3c61a]58# define img_FLAG_SURFACE   0x01
59# define img_FLAG_DUPLICATE 0x02
[95c3272]60# define img_FLAG_SPLAY     0x04
[d1b1380]61
[ab42a9c]62/* Station flags */
[5cb0e72]63# define img_SFLAG_SURFACE     0x01
64# define img_SFLAG_UNDERGROUND 0x02
[dfb4240]65# define img_SFLAG_ENTRANCE    0x04
66# define img_SFLAG_EXPORTED    0x08
67# define img_SFLAG_FIXED       0x10
[a2c33ae]68# define img_SFLAG_ANON        0x20
[dcbcae0]69# define img_SFLAG_WALL        0x40
[5cb0e72]70
[0c50ce3]71/* File-wide flags */
72# define img_FFLAG_EXTENDED 0x80
73
[8490ad9]74/* When writing img_XSECT, img_XFLAG_END in pimg->flags means this is the last
75 * img_XSECT in this tube:
76 */
[ee05463]77# define img_XFLAG_END      0x01
78
[eb5aea0]79# define img_STYLE_UNKNOWN   -1
80# define img_STYLE_NORMAL     0
81# define img_STYLE_DIVING     1
82# define img_STYLE_CARTESIAN  2
83# define img_STYLE_CYLPOLAR   3
[ac28f4f]84# define img_STYLE_NOSURVEY   4
[eb5aea0]85
[be97baf]86/* 3D coordinates (in metres) */
[0ed0e16]87typedef struct {
[a9f5117]88   double x, y, z;
[0ed0e16]89} img_point;
[421b7d2]90
[d1b1380]91typedef struct {
[6f6356c4]92   /* members you can access when reading (don't touch when writing) */
[23f7ea7]93   char *label;
[5c3c61a]94   int flags;
[a2ad284]95   char *title;
[43d63e57]96   /* If the coordinate system was specified, this contains a PROJ4 string
97    * describing it.  If not, this member will be NULL.
98    */
99   char *cs;
[ec812baa]100   /* Older .3d format versions stored a human readable datestamp string.
101    * Format versions >= 8 versions store a string consisting of "@" followed
102    * by the number of seconds since midnight UTC on 1/1/1970.  Some foreign
103    * formats contain a human readable string, others no date information
104    * (which results in "?" being returned).
[42bd3576]105    */
[a2ad284]106   char *datestamp;
[4f70ebc]107   /* The datestamp as a time_t (or (time_t)-1 if not available).
108    *
109    * For 3d format versions >= 8, this is a reliable value and in UTC.  Older
110    * 3d format versions store a human readable time, which img will attempt
111    * to decode, but it may fail, particularly with handling timezones.  Even
112    * if it does work, beware that times in local time where DST applies are
113    * inherently ambiguous around when the clocks go back.
114    *
115    * CMAP XYZ files contain a timestamp.  It's probably in localtime (but
116    * without any timezone information) and the example files are all pre-2000
117    * and have two digit years.  We do our best to turn these into a useful
118    * time_t value.
119    */
120   time_t datestamp_numeric;
[eef68f9]121   char separator; /* character used to separate survey levels ('.' usually) */
[1ee204e]122#if IMG_API_VERSION == 0
[b5a3219]123   time_t date1, date2;
[1ee204e]124#else /* IMG_API_VERSION == 1 */
125   int days1, days2;
126#endif
[ee7af72]127   double l, r, u, d;
[5dc3775]128   /* Error information - valid when img_ERROR_INFO is returned: */
[c61aa79]129   int n_legs;
130   double length;
131   double E, H, V;
132   /* The filename actually opened (e.g. may have ".3d" added). */
133   char * filename_opened;
[eef68f9]134   int is_extended_elevation;
[eb5aea0]135   /* The style of the data - one of the img_STYLE_* constants above */
136   int style;
137
[5c3c61a]138   /* all other members are for internal use only */
[a420b49]139   FILE *fh;          /* file handle of image file */
[0ff23cb]140   char *label_buf;
[23f7ea7]141   size_t buf_len;
[d69255f]142   size_t label_len;
[1fad6d4]143   int fRead;        /* 1 for reading, 0 for writing */
[f2588ca]144   long start;
[0da6e60]145   /* version of file format:
[f1c7c9c7]146    *  -4 => CMAP .xyz file, shot format
147    *  -3 => CMAP .xyz file, station format
[ad4eaf3f]148    *  -2 => Compass .plt file
[0da6e60]149    *  -1 => .pos file
150    *   0 => 0.01 ascii
151    *   1 => 0.01 binary,
152    *   2 => byte actions and flags
[ad4eaf3f]153    *   3 => prefixes for legs; compressed prefixes
[b5a3219]154    *   4 => survey date
[f4c5932]155    *   5 => LRUD info
[c61aa79]156    *   6 => error info
[1ee204e]157    *   7 => more compact dates with wider range
[ec812baa]158    *   8 => lots of changes
[0da6e60]159    */
[5c3c61a]160   int version;
[76bbb7c9]161   char *survey;
162   size_t survey_len;
163   int pending; /* for old style text format files and survey filtering */
164   img_point mv;
[1ee204e]165#if IMG_API_VERSION == 0
[ee05463]166   time_t olddate1, olddate2;
[1ee204e]167#else /* IMG_API_VERSION == 1 */
168   int olddays1, olddays2;
169#endif
[eb5aea0]170   int oldstyle;
[d1b1380]171} img;
172
[5c3c61a]173/* Which version of the file format to output (defaults to newest) */
174extern unsigned int img_output_version;
175
[2bb17c9]176/* Minimum supported value for img_output_version: */
177#define IMG_VERSION_MIN 1
178
179/* Maximum supported value for img_output_version: */
[ec812baa]180#define IMG_VERSION_MAX 8
[2bb17c9]181
[0ed0e16]182/* Open a .3d file for reading
[d1b1380]183 * fnm is the filename
184 * Returns pointer to an img struct or NULL
185 */
[a2ad284]186#define img_open(F) img_open_survey((F), NULL)
[76bbb7c9]187
188/* Open a .3d file for reading
189 * fnm is the filename
190 * Returns pointer to an img struct or NULL
191 * survey points to a survey name to restrict reading to (or NULL for all
192 * survey data in the file)
193 */
[a2ad284]194img *img_open_survey(const char *fnm, const char *survey);
[d1b1380]195
196/* Open a .3d file for output
197 * fnm is the filename
[0c50ce3]198 * title is the title
199 * flags contains a bitwise-or of any file-wide flags - currently only one
200 * is available: img_FFLAG_EXTENDED.  (The third parameter used to be
201 * 'fBinary', but has been ignored for many years, so the parameter has
202 * been repurposed for flags - for this reason, img.c deliberately ignores bit
203 * 1 being set, but callers should be written/updated not to set it).
204 *
[ad9a5cd]205 * Returns pointer to an img struct or NULL for error (check img_error()
206 * for details)
[d1b1380]207 */
[43d63e57]208#define img_open_write(F, T, S) img_open_write_cs(F, T, NULL, S)
209
210/* Open a .3d file for output in a specified coordinate system
211 * fnm is the filename
212 * title is the title
213 * cs is a PROJ4 string describing the coordinate system (or NULL)
214 * flags contains a bitwise-or of any file-wide flags - currently only one
215 * is available: img_FFLAG_EXTENDED.
216 *
217 * Returns pointer to an img struct or NULL for error (check img_error()
218 * for details)
219 */
220img *img_open_write_cs(const char *fnm, const char *title, const char * cs,
221                       int flags);
[d1b1380]222
[0ed0e16]223/* Read an item from a .3d file
[d1b1380]224 * pimg is a pointer to an img struct returned by img_open()
[0ed0e16]225 * coordinates are returned in p
[23f7ea7]226 * flags and label name are returned in fields in pimg
[d1b1380]227 * Returns img_XXXX as #define-d above
228 */
[23f7ea7]229int img_read_item(img *pimg, img_point *p);
[d1b1380]230
[0ed0e16]231/* Write a item to a .3d file
[d1b1380]232 * pimg is a pointer to an img struct returned by img_open_write()
233 * code is one of the img_XXXX #define-d above
[ee05463]234 * flags is the leg, station, or xsect flags
235 * (meaningful for img_LINE, img_LABEL, and img_XSECT respectively)
[95c3272]236 * s is the label (only meaningful for img_LABEL)
[0ed0e16]237 * x, y, z are the coordinates
[d1b1380]238 */
[95c3272]239void img_write_item(img *pimg, int code, int flags, const char *s,
[a9f5117]240                    double x, double y, double z);
[f2588ca]241
[c61aa79]242/* Write error information for the current traverse
243 * n_legs is the number of legs in the traverse
244 * length is the traverse length (in m)
245 * E is the ratio of the observed misclosure to the theoretical one
246 * H is the ratio of the observed horizontal misclosure to the theoretical one
247 * V is the ratio of the observed vertical misclosure to the theoretical one
248 */
249void img_write_errors(img *pimg, int n_legs, double length,
250                      double E, double H, double V);
251
[f2588ca]252/* rewind a .3d file opened for reading so the data can be read in
253 * several passes
254 * pimg is a pointer to an img struct returned by img_open()
[9f3e5df]255 * Returns: non-zero for success, zero for error (check img_error() for
256 *   details)
[f2588ca]257 */
[9f3e5df]258int img_rewind(img *pimg);
[f2588ca]259
[d1b1380]260/* Close a .3d file
261 * pimg is a pointer to an img struct returned by img_open() or
262 *   img_open_write()
[ad9a5cd]263 * Returns: non-zero for success, zero for error (check img_error() for
264 *   details)
[d1b1380]265 */
[ad9a5cd]266int img_close(img *pimg);
[d1b1380]267
268/* Codes returned by img_error */
[a420b49]269typedef enum {
270   IMG_NONE = 0, IMG_FILENOTFOUND, IMG_OUTOFMEMORY,
[ad9a5cd]271   IMG_CANTOPENOUT, IMG_BADFORMAT, IMG_DIRECTORY,
[6c1c4f3]272   IMG_READERROR, IMG_WRITEERROR, IMG_TOONEW
[a420b49]273} img_errcode;
[d1b1380]274
275/* Read the error code
[a405bc1]276 * If img_open(), img_open_survey() or img_open_write() returns NULL, or
277 * img_rewind() or img_close() returns 0, or img_read_item() returns img_BAD
278 * then you can call this function to discover why.
279 */
[a420b49]280img_errcode img_error(void);
[d1b1380]281
[8df22e9]282#ifdef __cplusplus
[f2daf3b]283}
284#endif
285
[d1b1380]286#endif
Note: See TracBrowser for help on using the repository browser.