Visualization Library 2.0.0-b5

A lightweight C++ OpenGL middleware for 2D/3D graphics

VL     Star     Watch     Fork     Issue

[Download] [Tutorials] [All Classes] [Grouped Classes]
tif_close.c
Go to the documentation of this file.
1 /* $Id: tif_close.c,v 1.9 2005/11/23 22:20:56 dron Exp $ */
2 
3 /*
4  * Copyright (c) 1988-1997 Sam Leffler
5  * Copyright (c) 1991-1997 Silicon Graphics, Inc.
6  *
7  * Permission to use, copy, modify, distribute, and sell this software and
8  * its documentation for any purpose is hereby granted without fee, provided
9  * that (i) the above copyright notices and this permission notice appear in
10  * all copies of the software and related documentation, and (ii) the names of
11  * Sam Leffler and Silicon Graphics may not be used in any advertising or
12  * publicity relating to the software without the specific, prior written
13  * permission of Sam Leffler and Silicon Graphics.
14  *
15  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
16  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
17  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
18  *
19  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
20  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
21  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
22  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
23  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
24  * OF THIS SOFTWARE.
25  */
26 
27 /*
28  * TIFF Library.
29  */
30 #include "tiffiop.h"
31 
32 /************************************************************************/
33 /* TIFFCleanup() */
34 /************************************************************************/
35 
45 void
47 {
48  if (tif->tif_mode != O_RDONLY)
49  /*
50  * Flush buffered data and directory (if dirty).
51  */
52  TIFFFlush(tif);
53  (*tif->tif_cleanup)(tif);
54  TIFFFreeDirectory(tif);
55 
56  if (tif->tif_dirlist)
57  _TIFFfree(tif->tif_dirlist);
58 
59  /* Clean up client info links */
60  while( tif->tif_clientinfo )
61  {
63 
64  tif->tif_clientinfo = link->next;
65  _TIFFfree( link->name );
66  _TIFFfree( link );
67  }
68 
69  if (tif->tif_rawdata && (tif->tif_flags&TIFF_MYBUFFER))
70  _TIFFfree(tif->tif_rawdata);
71  if (isMapped(tif))
72  TIFFUnmapFileContents(tif, tif->tif_base, tif->tif_size);
73 
74  /* Clean up custom fields */
75  if (tif->tif_nfields > 0)
76  {
77  size_t i;
78 
79  for (i = 0; i < tif->tif_nfields; i++)
80  {
81  TIFFFieldInfo *fld = tif->tif_fieldinfo[i];
82  if (fld->field_bit == FIELD_CUSTOM &&
83  strncmp("Tag ", fld->field_name, 4) == 0)
84  {
85  _TIFFfree(fld->field_name);
86  _TIFFfree(fld);
87  }
88  }
89 
91  }
92 
93  _TIFFfree(tif);
94 }
95 
96 /************************************************************************/
97 /* TIFFClose() */
98 /************************************************************************/
99 
110 void
112 {
113  TIFFCloseProc closeproc = tif->tif_closeproc;
114  thandle_t fd = tif->tif_clientdata;
115 
116  TIFFCleanup(tif);
117  (void) (*closeproc)(fd);
118 }
119 
#define FIELD_CUSTOM
Definition: tiffio.h:299
int(* TIFFCloseProc)(thandle_t)
Definition: tiffio.h:263
TIFFClientInfoLink * tif_clientinfo
Definition: tiffiop.h:184
tidata_t tif_rawdata
Definition: tiffiop.h:161
#define TIFFUnmapFileContents(tif, addr, size)
Definition: tiffiop.h:205
thandle_t tif_clientdata
Definition: tiffiop.h:171
typedef void(APIENTRY *GLDEBUGPROCARB)(GLenum source
Definition: tiffiop.h:95
void TIFFCleanup(TIFF *tif)
Auxiliary function to free the TIFF structure.
Definition: tif_close.c:46
png_uint_32 i
Definition: png.h:2640
void TIFFClose(TIFF *tif)
Close a previously opened TIFF file.
Definition: tif_close.c:111
char * name
Definition: tiffiop.h:77
toff_t tif_size
Definition: tiffiop.h:167
int tif_mode
Definition: tiffiop.h:98
uint32 tif_flags
Definition: tiffiop.h:99
size_t tif_nfields
Definition: tiffiop.h:181
tidata_t tif_base
Definition: tiffiop.h:166
#define isMapped(tif)
Definition: tiffiop.h:190
void TIFFFreeDirectory(TIFF *tif)
Definition: tif_dir.c:961
struct client_info * next
Definition: tiffiop.h:75
TIFFFieldInfo ** tif_fieldinfo
Definition: tiffiop.h:180
toff_t * tif_dirlist
Definition: tiffiop.h:119
TIFFVoidMethod tif_cleanup
Definition: tiffiop.h:154
TIFFCloseProc tif_closeproc
Definition: tiffiop.h:175
int TIFFFlush(TIFF *tif)
Definition: tif_flush.c:33
char * field_name
Definition: tiffio.h:309
void _TIFFfree(tdata_t p)
Definition: tif_acorn.c:467
unsigned short field_bit
Definition: tiffio.h:306
void * thandle_t
Definition: tiffio.h:96
#define TIFF_MYBUFFER
Definition: tiffiop.h:108