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_win3.c
Go to the documentation of this file.
1 /* $Header: /cvs/maptools/cvsroot/libtiff/libtiff/tif_win3.c,v 1.2 2005/12/21 12:23:13 joris 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 Windows 3.x-specific Routines.
29  */
30 #include "tiffiop.h"
31 #if defined(__WATCOMC__) || defined(__BORLANDC__) || defined(_MSC_VER)
32 #include <io.h> /* for open, close, etc. function prototypes */
33 #endif
34 
35 #include <windows.h>
36 #include <windowsx.h>
37 #include <memory.h>
38 
39 static tsize_t
40 _tiffReadProc(thandle_t fd, tdata_t buf, tsize_t size)
41 {
42  return (_hread(fd, buf, size));
43 }
44 
45 static tsize_t
46 _tiffWriteProc(thandle_t fd, tdata_t buf, tsize_t size)
47 {
48  return (_hwrite(fd, buf, size));
49 }
50 
51 static toff_t
52 _tiffSeekProc(thandle_t fd, toff_t off, int whence)
53 {
54  return (_llseek(fd, (off_t) off, whence));
55 }
56 
57 static int
58 _tiffCloseProc(thandle_t fd)
59 {
60  return (_lclose(fd));
61 }
62 
63 #include <sys/stat.h>
64 
65 static toff_t
66 _tiffSizeProc(thandle_t fd)
67 {
68  struct stat sb;
69  return (fstat((int) fd, &sb) < 0 ? 0 : sb.st_size);
70 }
71 
72 static int
73 _tiffMapProc(thandle_t fd, tdata_t* pbase, toff_t* psize)
74 {
75  return (0);
76 }
77 
78 static void
79 _tiffUnmapProc(thandle_t fd, tdata_t base, toff_t size)
80 {
81 }
82 
83 /*
84  * Open a TIFF file descriptor for read/writing.
85  */
86 TIFF*
87 TIFFFdOpen(int fd, const char* name, const char* mode)
88 {
89  TIFF* tif;
90 
91  tif = TIFFClientOpen(name, mode,
92  (thandle_t) fd,
93  _tiffReadProc, _tiffWriteProc, _tiffSeekProc, _tiffCloseProc,
94  _tiffSizeProc, _tiffMapProc, _tiffUnmapProc);
95  if (tif)
96  tif->tif_fd = fd;
97  return (tif);
98 }
99 
100 /*
101  * Open a TIFF file for read/writing.
102  */
103 TIFF*
104 TIFFOpen(const char* name, const char* mode)
105 {
106  static const char module[] = "TIFFOpen";
107  int m, fd;
108  OFSTRUCT of;
109  int mm = 0;
110 
111  m = _TIFFgetMode(mode, module);
112  if (m == -1)
113  return ((TIFF*)0);
114  if (m & O_CREAT) {
115  if ((m & O_TRUNC) || OpenFile(name, &of, OF_EXIST) != HFILE_ERROR)
116  mm |= OF_CREATE;
117  }
118  if (m & O_WRONLY)
119  mm |= OF_WRITE;
120  if (m & O_RDWR)
121  mm |= OF_READWRITE;
122  fd = OpenFile(name, &of, mm);
123  if (fd < 0) {
124  TIFFErrorExt(0, module, "%s: Cannot open", name);
125  return ((TIFF*)0);
126  }
127  return (TIFFFdOpen(fd, name, mode));
128 }
129 
130 tdata_t
132 {
133  return (tdata_t) GlobalAllocPtr(GHND, (DWORD) s);
134 }
135 
136 void
138 {
139  GlobalFreePtr(p);
140 }
141 
142 tdata_t
144 {
145  return (tdata_t) GlobalReAllocPtr(p, (DWORD) s, GHND);
146 }
147 
148 void
150 {
151  char* pp = (char*) p;
152 
153  while (c > 0) {
154  tsize_t chunk = 0x10000 - ((uint32) pp & 0xffff);/* What's left in segment */
155  if (chunk > 0xff00) /* No more than 0xff00 */
156  chunk = 0xff00;
157  if (chunk > c) /* No more than needed */
158  chunk = c;
159  memset(pp, v, chunk);
160  pp = (char*) (chunk + (char huge*) pp);
161  c -= chunk;
162  }
163 }
164 
165 void
167 {
168  if (c > 0xFFFF)
169  hmemcpy((void _huge*) d, (void _huge*) s, c);
170  else
171  (void) memcpy(d, s, (size_t) c);
172 }
173 
174 int
176 {
177  char* dd = (char*) d;
178  char* ss = (char*) s;
179  tsize_t chunks, chunkd, chunk;
180  int result;
181 
182  while (c > 0) {
183  chunks = 0x10000 - ((uint32) ss & 0xffff); /* What's left in segment */
184  chunkd = 0x10000 - ((uint32) dd & 0xffff); /* What's left in segment */
185  chunk = c; /* Get the largest of */
186  if (chunk > chunks) /* c, chunks, chunkd, */
187  chunk = chunks; /* 0xff00 */
188  if (chunk > chunkd)
189  chunk = chunkd;
190  if (chunk > 0xff00)
191  chunk = 0xff00;
192  result = memcmp(dd, ss, chunk);
193  if (result != 0)
194  return (result);
195  dd = (char*) (chunk + (char huge*) dd);
196  ss = (char*) (chunk + (char huge*) ss);
197  c -= chunk;
198  }
199  return (0);
200 }
201 
202 static void
203 win3WarningHandler(const char* module, const char* fmt, va_list ap)
204 {
205  char e[512] = { '\0' };
206  if (module != NULL)
207  strcat(strcpy(e, module), ":");
208  vsprintf(e+strlen(e), fmt, ap);
209  strcat(e, ".");
210  MessageBox(GetActiveWindow(), e, "LibTIFF Warning",
211  MB_OK|MB_ICONEXCLAMATION);
212 }
214 
215 static void
216 win3ErrorHandler(const char* module, const char* fmt, va_list ap)
217 {
218  char e[512] = { '\0' };
219  if (module != NULL)
220  strcat(strcpy(e, module), ":");
221  vsprintf(e+strlen(e), fmt, ap);
222  strcat(e, ".");
223  MessageBox(GetActiveWindow(), e, "LibTIFF Error", MB_OK|MB_ICONSTOP);
224 }
int32 tsize_t
Definition: tiffio.h:66
void * tdata_t
Definition: tiffio.h:67
tdata_t _TIFFrealloc(tdata_t p, tsize_t s)
Definition: tif_win3.c:143
GLfloat GLfloat p
TIFFErrorHandler _TIFFerrorHandler
Definition: tif_win3.c:225
#define NULL
Definition: ftobjs.h:61
void _TIFFfree(tdata_t p)
Definition: tif_win3.c:137
void(* TIFFErrorHandler)(const char *, const char *, va_list)
Definition: tiffio.h:259
Definition: tiffiop.h:95
void _TIFFmemset(tdata_t p, int v, tsize_t c)
Definition: tif_win3.c:149
int tif_fd
Definition: tiffiop.h:97
GLenum GLuint GLenum GLsizei const GLchar * buf
TIFF * TIFFClientOpen(const char *name, const char *mode, thandle_t clientdata, TIFFReadWriteProc readproc, TIFFReadWriteProc writeproc, TIFFSeekProc seekproc, TIFFCloseProc closeproc, TIFFSizeProc sizeproc, TIFFMapFileProc mapproc, TIFFUnmapFileProc unmapproc)
Definition: tif_open.c:141
GLenum mode
void _TIFFmemcpy(tdata_t d, const tdata_t s, tsize_t c)
Definition: tif_win3.c:166
const GLdouble * v
tdata_t _TIFFmalloc(tsize_t s)
Definition: tif_win3.c:131
const GLubyte * c
void TIFFErrorExt(thandle_t fd, const char *module, const char *fmt,...)
Definition: tif_error.c:63
const GLfloat * m
GLuint const GLchar * name
unsigned long uint32
Definition: md5.h:41
TIFF * TIFFOpen(const char *name, const char *mode)
Definition: tif_win3.c:104
GLuint64EXT * result
int _TIFFgetMode(const char *mode, const char *module)
Definition: tif_open.c:117
uint32 toff_t
Definition: tiffio.h:68
GLdouble s
TIFFErrorHandler _TIFFwarningHandler
Definition: tif_win3.c:213
int _TIFFmemcmp(const tdata_t d, const tdata_t s, tsize_t c)
Definition: tif_win3.c:175
TIFF * TIFFFdOpen(int fd, const char *name, const char *mode)
Definition: tif_win3.c:87
png_infop int chunk
Definition: png.h:2339
GLsizeiptr size
void * thandle_t
Definition: tiffio.h:96