tif_apple.c
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:7k
源码类别:

打印编程

开发平台:

Visual C++

  1. /* $Header: /cvs/maptools/cvsroot/libtiff/libtiff/tif_apple.c,v 1.3 2005/12/21 12:23:13 joris Exp $ */
  2. /*
  3.  * Copyright (c) 1988-1997 Sam Leffler
  4.  * Copyright (c) 1991-1997 Silicon Graphics, Inc.
  5.  *
  6.  * Permission to use, copy, modify, distribute, and sell this software and 
  7.  * its documentation for any purpose is hereby granted without fee, provided
  8.  * that (i) the above copyright notices and this permission notice appear in
  9.  * all copies of the software and related documentation, and (ii) the names of
  10.  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  11.  * publicity relating to the software without the specific, prior written
  12.  * permission of Sam Leffler and Silicon Graphics.
  13.  * 
  14.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  15.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  16.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  17.  * 
  18.  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  19.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  20.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  21.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  22.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  23.  * OF THIS SOFTWARE.
  24.  */
  25. /*
  26.  * TIFF Library Macintosh-specific routines.
  27.  *
  28.  * These routines use only Toolbox and high-level File Manager traps.
  29.  * They make no calls to the THINK C "unix" compatibility library.  Also,
  30.  * malloc is not used directly but it is still referenced internally by
  31.  * the ANSI library in rare cases.  Heap fragmentation by the malloc ring
  32.  * buffer is therefore minimized.
  33.  *
  34.  * O_RDONLY and O_RDWR are treated identically here.  The tif_mode flag is
  35.  * checked in TIFFWriteCheck().
  36.  *
  37.  * Create below fills in a blank creator signature and sets the file type
  38.  * to 'TIFF'.  It is much better for the application to do this by Create'ing
  39.  * the file first and TIFFOpen'ing it later.
  40.  * ---------
  41.  * This code has been "Carbonized", and may not work with older MacOS versions.
  42.  * If so, grab the tif_apple.c out of an older libtiff distribution, like
  43.  * 3.5.5 from www.libtiff.org.
  44.  */
  45. #include "tiffiop.h"
  46. #include <Errors.h>
  47. #include <Files.h>
  48. #include <Memory.h>
  49. #include <Script.h>
  50. #if defined(__PPCC__) || defined(__SC__) || defined(__MRC__) || defined(applec)
  51. #define CtoPstr c2pstr
  52. #endif
  53. static tsize_t
  54. _tiffReadProc(thandle_t fd, tdata_t buf, tsize_t size)
  55. {
  56. return (FSRead((short) fd, (long*) &size, (char*) buf) == noErr ?
  57.     size : (tsize_t) -1);
  58. }
  59. static tsize_t
  60. _tiffWriteProc(thandle_t fd, tdata_t buf, tsize_t size)
  61. {
  62. return (FSWrite((short) fd, (long*) &size, (char*) buf) == noErr ?
  63.     size : (tsize_t) -1);
  64. }
  65. static toff_t
  66. _tiffSeekProc(thandle_t fd, toff_t off, int whence)
  67. {
  68. long fpos, size;
  69. if (GetEOF((short) fd, &size) != noErr)
  70. return EOF;
  71. (void) GetFPos((short) fd, &fpos);
  72. switch (whence) {
  73. case SEEK_CUR:
  74. if (off + fpos > size)
  75. SetEOF((short) fd, off + fpos);
  76. if (SetFPos((short) fd, fsFromMark, off) != noErr)
  77. return EOF;
  78. break;
  79. case SEEK_END:
  80. if (off > 0)
  81. SetEOF((short) fd, off + size);
  82. if (SetFPos((short) fd, fsFromStart, off + size) != noErr)
  83. return EOF;
  84. break;
  85. case SEEK_SET:
  86. if (off > size)
  87. SetEOF((short) fd, off);
  88. if (SetFPos((short) fd, fsFromStart, off) != noErr)
  89. return EOF;
  90. break;
  91. }
  92. return (toff_t)(GetFPos((short) fd, &fpos) == noErr ? fpos : EOF);
  93. }
  94. static int
  95. _tiffMapProc(thandle_t fd, tdata_t* pbase, toff_t* psize)
  96. {
  97. return (0);
  98. }
  99. static void
  100. _tiffUnmapProc(thandle_t fd, tdata_t base, toff_t size)
  101. {
  102. }
  103. static int
  104. _tiffCloseProc(thandle_t fd)
  105. {
  106. return (FSClose((short) fd));
  107. }
  108. static toff_t
  109. _tiffSizeProc(thandle_t fd)
  110. {
  111. long size;
  112. if (GetEOF((short) fd, &size) != noErr) {
  113. TIFFErrorExt(fd, "_tiffSizeProc", "%s: Cannot get file size");
  114. return (-1L);
  115. }
  116. return ((toff_t) size);
  117. }
  118. /*
  119.  * Open a TIFF file descriptor for read/writing.
  120.  */
  121. TIFF*
  122. TIFFFdOpen(int fd, const char* name, const char* mode)
  123. {
  124. TIFF* tif;
  125. tif = TIFFClientOpen(name, mode, (thandle_t) fd,
  126.     _tiffReadProc, _tiffWriteProc, _tiffSeekProc, _tiffCloseProc,
  127.     _tiffSizeProc, _tiffMapProc, _tiffUnmapProc);
  128. if (tif)
  129. tif->tif_fd = fd;
  130. return (tif);
  131. }
  132. static void ourc2pstr( char* inString )
  133. {
  134. int sLen = strlen( inString );
  135. BlockMoveData( inString, &inString[1], sLen );
  136. inString[0] = sLen;
  137. }
  138. /*
  139.  * Open a TIFF file for read/writing.
  140.  */
  141. TIFF*
  142. TIFFOpen(const char* name, const char* mode)
  143. {
  144. static const char module[] = "TIFFOpen";
  145. Str255 pname;
  146. FInfo finfo;
  147. short fref;
  148. OSErr err;
  149. FSSpec fSpec;
  150. strcpy((char*) pname, name);
  151. ourc2pstr((char*) pname);
  152. err = FSMakeFSSpec( 0, 0, pname, &fSpec );
  153. switch (_TIFFgetMode(mode, module)) {
  154. default:
  155. return ((TIFF*) 0);
  156. case O_RDWR | O_CREAT | O_TRUNC:
  157. if (FSpGetFInfo(&fSpec, &finfo) == noErr)
  158. FSpDelete(&fSpec);
  159. /* fall through */
  160. case O_RDWR | O_CREAT:
  161. if ((err = FSpGetFInfo(&fSpec, &finfo)) == fnfErr) {
  162. if (FSpCreate(&fSpec, '    ', 'TIFF', smSystemScript) != noErr)
  163. goto badCreate;
  164. if (FSpOpenDF(&fSpec, fsRdWrPerm, &fref) != noErr)
  165. goto badOpen;
  166. } else if (err == noErr) {
  167. if (FSpOpenDF(&fSpec, fsRdWrPerm, &fref) != noErr)
  168. goto badOpen;
  169. } else
  170. goto badOpen;
  171. break;
  172. case O_RDONLY:
  173. if (FSpOpenDF(&fSpec, fsRdPerm, &fref) != noErr)
  174. goto badOpen;
  175. break;
  176. case O_RDWR:
  177. if (FSpOpenDF(&fSpec, fsRdWrPerm, &fref) != noErr)
  178. goto badOpen;
  179. break;
  180. }
  181. return (TIFFFdOpen((int) fref, name, mode));
  182. badCreate:
  183. TIFFErrorExt(0, module, "%s: Cannot create", name);
  184. return ((TIFF*) 0);
  185. badOpen:
  186. TIFFErrorExt(0, module, "%s: Cannot open", name);
  187. return ((TIFF*) 0);
  188. }
  189. void
  190. _TIFFmemset(tdata_t p, int v, tsize_t c)
  191. {
  192. memset(p, v, (size_t) c);
  193. }
  194. void
  195. _TIFFmemcpy(tdata_t d, const tdata_t s, tsize_t c)
  196. {
  197. memcpy(d, s, (size_t) c);
  198. }
  199. int
  200. _TIFFmemcmp(const tdata_t p1, const tdata_t p2, tsize_t c)
  201. {
  202. return (memcmp(p1, p2, (size_t) c));
  203. }
  204. tdata_t
  205. _TIFFmalloc(tsize_t s)
  206. {
  207. return (NewPtr((size_t) s));
  208. }
  209. void
  210. _TIFFfree(tdata_t p)
  211. {
  212. DisposePtr(p);
  213. }
  214. tdata_t
  215. _TIFFrealloc(tdata_t p, tsize_t s)
  216. {
  217. Ptr n = p;
  218. SetPtrSize(p, (size_t) s);
  219. if (MemError() && (n = NewPtr((size_t) s)) != NULL) {
  220. BlockMove(p, n, GetPtrSize(p));
  221. DisposePtr(p);
  222. }
  223. return ((tdata_t) n);
  224. }
  225. static void
  226. appleWarningHandler(const char* module, const char* fmt, va_list ap)
  227. {
  228. if (module != NULL)
  229. fprintf(stderr, "%s: ", module);
  230. fprintf(stderr, "Warning, ");
  231. vfprintf(stderr, fmt, ap);
  232. fprintf(stderr, ".n");
  233. }
  234. TIFFErrorHandler _TIFFwarningHandler = appleWarningHandler;
  235. static void
  236. appleErrorHandler(const char* module, const char* fmt, va_list ap)
  237. {
  238. if (module != NULL)
  239. fprintf(stderr, "%s: ", module);
  240. vfprintf(stderr, fmt, ap);
  241. fprintf(stderr, ".n");
  242. }
  243. TIFFErrorHandler _TIFFerrorHandler = appleErrorHandler;