pngmem.c
上传用户:jnfxsk
上传日期:2022-06-16
资源大小:3675k
文件大小:17k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. /* pngmem.c - stub functions for memory allocation
  2.  *
  3.  * libpng version 1.2.8 - December 3, 2004
  4.  * For conditions of distribution and use, see copyright notice in png.h
  5.  * Copyright (c) 1998-2004 Glenn Randers-Pehrson
  6.  * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger)
  7.  * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.)
  8.  *
  9.  * This file provides a location for all memory allocation.  Users who
  10.  * need special memory handling are expected to supply replacement
  11.  * functions for png_malloc() and png_free(), and to use
  12.  * png_create_read_struct_2() and png_create_write_struct_2() to
  13.  * identify the replacement functions.
  14.  */
  15. #define PNG_INTERNAL
  16. #include "png.h"
  17. /* Borland DOS special memory handler */
  18. #if defined(__TURBOC__) && !defined(_Windows) && !defined(__FLAT__)
  19. /* if you change this, be sure to change the one in png.h also */
  20. /* Allocate memory for a png_struct.  The malloc and memset can be replaced
  21.    by a single call to calloc() if this is thought to improve performance. */
  22. png_voidp /* PRIVATE */
  23. png_create_struct(int type)
  24. {
  25. #ifdef PNG_USER_MEM_SUPPORTED
  26.    return (png_create_struct_2(type, png_malloc_ptr_NULL, png_voidp_NULL));
  27. }
  28. /* Alternate version of png_create_struct, for use with user-defined malloc. */
  29. png_voidp /* PRIVATE */
  30. png_create_struct_2(int type, png_malloc_ptr malloc_fn, png_voidp mem_ptr)
  31. {
  32. #endif /* PNG_USER_MEM_SUPPORTED */
  33.    png_size_t size;
  34.    png_voidp struct_ptr;
  35.    if (type == PNG_STRUCT_INFO)
  36.      size = png_sizeof(png_info);
  37.    else if (type == PNG_STRUCT_PNG)
  38.      size = png_sizeof(png_struct);
  39.    else
  40.      return (png_get_copyright(NULL));
  41. #ifdef PNG_USER_MEM_SUPPORTED
  42.    if(malloc_fn != NULL)
  43.    {
  44.       png_struct dummy_struct;
  45.       png_structp png_ptr = &dummy_struct;
  46.       png_ptr->mem_ptr=mem_ptr;
  47.       struct_ptr = (*(malloc_fn))(png_ptr, (png_uint_32)size);
  48.    }
  49.    else
  50. #endif /* PNG_USER_MEM_SUPPORTED */
  51.       struct_ptr = (png_voidp)farmalloc(size);
  52.    if (struct_ptr != NULL)
  53.       png_memset(struct_ptr, 0, size);
  54.    return (struct_ptr);
  55. }
  56. /* Free memory allocated by a png_create_struct() call */
  57. void /* PRIVATE */
  58. png_destroy_struct(png_voidp struct_ptr)
  59. {
  60. #ifdef PNG_USER_MEM_SUPPORTED
  61.    png_destroy_struct_2(struct_ptr, png_free_ptr_NULL, png_voidp_NULL);
  62. }
  63. /* Free memory allocated by a png_create_struct() call */
  64. void /* PRIVATE */
  65. png_destroy_struct_2(png_voidp struct_ptr, png_free_ptr free_fn,
  66.     png_voidp mem_ptr)
  67. {
  68. #endif
  69.    if (struct_ptr != NULL)
  70.    {
  71. #ifdef PNG_USER_MEM_SUPPORTED
  72.       if(free_fn != NULL)
  73.       {
  74.          png_struct dummy_struct;
  75.          png_structp png_ptr = &dummy_struct;
  76.          png_ptr->mem_ptr=mem_ptr;
  77.          (*(free_fn))(png_ptr, struct_ptr);
  78.          return;
  79.       }
  80. #endif /* PNG_USER_MEM_SUPPORTED */
  81.       farfree (struct_ptr);
  82.    }
  83. }
  84. /* Allocate memory.  For reasonable files, size should never exceed
  85.  * 64K.  However, zlib may allocate more then 64K if you don't tell
  86.  * it not to.  See zconf.h and png.h for more information. zlib does
  87.  * need to allocate exactly 64K, so whatever you call here must
  88.  * have the ability to do that.
  89.  *
  90.  * Borland seems to have a problem in DOS mode for exactly 64K.
  91.  * It gives you a segment with an offset of 8 (perhaps to store its
  92.  * memory stuff).  zlib doesn't like this at all, so we have to
  93.  * detect and deal with it.  This code should not be needed in
  94.  * Windows or OS/2 modes, and only in 16 bit mode.  This code has
  95.  * been updated by Alexander Lehmann for version 0.89 to waste less
  96.  * memory.
  97.  *
  98.  * Note that we can't use png_size_t for the "size" declaration,
  99.  * since on some systems a png_size_t is a 16-bit quantity, and as a
  100.  * result, we would be truncating potentially larger memory requests
  101.  * (which should cause a fatal error) and introducing major problems.
  102.  */
  103. png_voidp PNGAPI
  104. png_malloc(png_structp png_ptr, png_uint_32 size)
  105. {
  106.    png_voidp ret;
  107.    if (png_ptr == NULL || size == 0)
  108.       return (NULL);
  109. #ifdef PNG_USER_MEM_SUPPORTED
  110.    if(png_ptr->malloc_fn != NULL)
  111.        ret = ((png_voidp)(*(png_ptr->malloc_fn))(png_ptr, (png_size_t)size));
  112.    else
  113.        ret = (png_malloc_default(png_ptr, size));
  114.    if (ret == NULL && (png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
  115.        png_error(png_ptr, "Out of memory!");
  116.    return (ret);
  117. }
  118. png_voidp PNGAPI
  119. png_malloc_default(png_structp png_ptr, png_uint_32 size)
  120. {
  121.    png_voidp ret;
  122. #endif /* PNG_USER_MEM_SUPPORTED */
  123. #ifdef PNG_MAX_MALLOC_64K
  124.    if (size > (png_uint_32)65536L)
  125.    {
  126.       png_warning(png_ptr, "Cannot Allocate > 64K");
  127.       ret = NULL;
  128.    }
  129.    else
  130. #endif
  131.    if (size != (size_t)size)
  132.      ret = NULL;
  133.    else if (size == (png_uint_32)65536L)
  134.    {
  135.       if (png_ptr->offset_table == NULL)
  136.       {
  137.          /* try to see if we need to do any of this fancy stuff */
  138.          ret = farmalloc(size);
  139.          if (ret == NULL || ((png_size_t)ret & 0xffff))
  140.          {
  141.             int num_blocks;
  142.             png_uint_32 total_size;
  143.             png_bytep table;
  144.             int i;
  145.             png_byte huge * hptr;
  146.             if (ret != NULL)
  147.             {
  148.                farfree(ret);
  149.                ret = NULL;
  150.             }
  151.             if(png_ptr->zlib_window_bits > 14)
  152.                num_blocks = (int)(1 << (png_ptr->zlib_window_bits - 14));
  153.             else
  154.                num_blocks = 1;
  155.             if (png_ptr->zlib_mem_level >= 7)
  156.                num_blocks += (int)(1 << (png_ptr->zlib_mem_level - 7));
  157.             else
  158.                num_blocks++;
  159.             total_size = ((png_uint_32)65536L) * (png_uint_32)num_blocks+16;
  160.             table = farmalloc(total_size);
  161.             if (table == NULL)
  162.             {
  163. #ifndef PNG_USER_MEM_SUPPORTED
  164.                if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
  165.                   png_error(png_ptr, "Out Of Memory."); /* Note "O" and "M" */
  166.                else
  167.                   png_warning(png_ptr, "Out Of Memory.");
  168. #endif
  169.                return (NULL);
  170.             }
  171.             if ((png_size_t)table & 0xfff0)
  172.             {
  173. #ifndef PNG_USER_MEM_SUPPORTED
  174.                if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
  175.                   png_error(png_ptr,
  176.                     "Farmalloc didn't return normalized pointer");
  177.                else
  178.                   png_warning(png_ptr,
  179.                     "Farmalloc didn't return normalized pointer");
  180. #endif
  181.                return (NULL);
  182.             }
  183.             png_ptr->offset_table = table;
  184.             png_ptr->offset_table_ptr = farmalloc(num_blocks *
  185.                png_sizeof (png_bytep));
  186.             if (png_ptr->offset_table_ptr == NULL)
  187.             {
  188. #ifndef PNG_USER_MEM_SUPPORTED
  189.                if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
  190.                   png_error(png_ptr, "Out Of memory."); /* Note "O" and "M" */
  191.                else
  192.                   png_warning(png_ptr, "Out Of memory.");
  193. #endif
  194.                return (NULL);
  195.             }
  196.             hptr = (png_byte huge *)table;
  197.             if ((png_size_t)hptr & 0xf)
  198.             {
  199.                hptr = (png_byte huge *)((long)(hptr) & 0xfffffff0L);
  200.                hptr = hptr + 16L;  /* "hptr += 16L" fails on Turbo C++ 3.0 */
  201.             }
  202.             for (i = 0; i < num_blocks; i++)
  203.             {
  204.                png_ptr->offset_table_ptr[i] = (png_bytep)hptr;
  205.                hptr = hptr + (png_uint_32)65536L;  /* "+=" fails on TC++3.0 */
  206.             }
  207.             png_ptr->offset_table_number = num_blocks;
  208.             png_ptr->offset_table_count = 0;
  209.             png_ptr->offset_table_count_free = 0;
  210.          }
  211.       }
  212.       if (png_ptr->offset_table_count >= png_ptr->offset_table_number)
  213.       {
  214. #ifndef PNG_USER_MEM_SUPPORTED
  215.          if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
  216.             png_error(png_ptr, "Out of Memory."); /* Note "o" and "M" */
  217.          else
  218.             png_warning(png_ptr, "Out of Memory.");
  219. #endif
  220.          return (NULL);
  221.       }
  222.       ret = png_ptr->offset_table_ptr[png_ptr->offset_table_count++];
  223.    }
  224.    else
  225.       ret = farmalloc(size);
  226. #ifndef PNG_USER_MEM_SUPPORTED
  227.    if (ret == NULL)
  228.    {
  229.       if ((png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
  230.          png_error(png_ptr, "Out of memory."); /* Note "o" and "m" */
  231.       else
  232.          png_warning(png_ptr, "Out of memory."); /* Note "o" and "m" */
  233.    }
  234. #endif
  235.    return (ret);
  236. }
  237. /* free a pointer allocated by png_malloc().  In the default
  238.    configuration, png_ptr is not used, but is passed in case it
  239.    is needed.  If ptr is NULL, return without taking any action. */
  240. void PNGAPI
  241. png_free(png_structp png_ptr, png_voidp ptr)
  242. {
  243.    if (png_ptr == NULL || ptr == NULL)
  244.       return;
  245. #ifdef PNG_USER_MEM_SUPPORTED
  246.    if (png_ptr->free_fn != NULL)
  247.    {
  248.       (*(png_ptr->free_fn))(png_ptr, ptr);
  249.       return;
  250.    }
  251.    else png_free_default(png_ptr, ptr);
  252. }
  253. void PNGAPI
  254. png_free_default(png_structp png_ptr, png_voidp ptr)
  255. {
  256. #endif /* PNG_USER_MEM_SUPPORTED */
  257.    if (png_ptr->offset_table != NULL)
  258.    {
  259.       int i;
  260.       for (i = 0; i < png_ptr->offset_table_count; i++)
  261.       {
  262.          if (ptr == png_ptr->offset_table_ptr[i])
  263.          {
  264.             ptr = NULL;
  265.             png_ptr->offset_table_count_free++;
  266.             break;
  267.          }
  268.       }
  269.       if (png_ptr->offset_table_count_free == png_ptr->offset_table_count)
  270.       {
  271.          farfree(png_ptr->offset_table);
  272.          farfree(png_ptr->offset_table_ptr);
  273.          png_ptr->offset_table = NULL;
  274.          png_ptr->offset_table_ptr = NULL;
  275.       }
  276.    }
  277.    if (ptr != NULL)
  278.    {
  279.       farfree(ptr);
  280.    }
  281. }
  282. #else /* Not the Borland DOS special memory handler */
  283. /* Allocate memory for a png_struct or a png_info.  The malloc and
  284.    memset can be replaced by a single call to calloc() if this is thought
  285.    to improve performance noticably. */
  286. png_voidp /* PRIVATE */
  287. png_create_struct(int type)
  288. {
  289. #ifdef PNG_USER_MEM_SUPPORTED
  290.    return (png_create_struct_2(type, png_malloc_ptr_NULL, png_voidp_NULL));
  291. }
  292. /* Allocate memory for a png_struct or a png_info.  The malloc and
  293.    memset can be replaced by a single call to calloc() if this is thought
  294.    to improve performance noticably. */
  295. png_voidp /* PRIVATE */
  296. png_create_struct_2(int type, png_malloc_ptr malloc_fn, png_voidp mem_ptr)
  297. {
  298. #endif /* PNG_USER_MEM_SUPPORTED */
  299.    png_size_t size;
  300.    png_voidp struct_ptr;
  301.    if (type == PNG_STRUCT_INFO)
  302.       size = png_sizeof(png_info);
  303.    else if (type == PNG_STRUCT_PNG)
  304.       size = png_sizeof(png_struct);
  305.    else
  306.       return (NULL);
  307. #ifdef PNG_USER_MEM_SUPPORTED
  308.    if(malloc_fn != NULL)
  309.    {
  310.       png_struct dummy_struct;
  311.       png_structp png_ptr = &dummy_struct;
  312.       png_ptr->mem_ptr=mem_ptr;
  313.       struct_ptr = (*(malloc_fn))(png_ptr, size);
  314.       if (struct_ptr != NULL)
  315.          png_memset(struct_ptr, 0, size);
  316.       return (struct_ptr);
  317.    }
  318. #endif /* PNG_USER_MEM_SUPPORTED */
  319. #if defined(__TURBOC__) && !defined(__FLAT__)
  320.    struct_ptr = (png_voidp)farmalloc(size);
  321. #else
  322. # if defined(_MSC_VER) && defined(MAXSEG_64K)
  323.    struct_ptr = (png_voidp)halloc(size,1);
  324. # else
  325.    struct_ptr = (png_voidp)malloc(size);
  326. # endif
  327. #endif
  328.    if (struct_ptr != NULL)
  329.       png_memset(struct_ptr, 0, size);
  330.    return (struct_ptr);
  331. }
  332. /* Free memory allocated by a png_create_struct() call */
  333. void /* PRIVATE */
  334. png_destroy_struct(png_voidp struct_ptr)
  335. {
  336. #ifdef PNG_USER_MEM_SUPPORTED
  337.    png_destroy_struct_2(struct_ptr, png_free_ptr_NULL, png_voidp_NULL);
  338. }
  339. /* Free memory allocated by a png_create_struct() call */
  340. void /* PRIVATE */
  341. png_destroy_struct_2(png_voidp struct_ptr, png_free_ptr free_fn,
  342.     png_voidp mem_ptr)
  343. {
  344. #endif /* PNG_USER_MEM_SUPPORTED */
  345.    if (struct_ptr != NULL)
  346.    {
  347. #ifdef PNG_USER_MEM_SUPPORTED
  348.       if(free_fn != NULL)
  349.       {
  350.          png_struct dummy_struct;
  351.          png_structp png_ptr = &dummy_struct;
  352.          png_ptr->mem_ptr=mem_ptr;
  353.          (*(free_fn))(png_ptr, struct_ptr);
  354.          return;
  355.       }
  356. #endif /* PNG_USER_MEM_SUPPORTED */
  357. #if defined(__TURBOC__) && !defined(__FLAT__)
  358.       farfree(struct_ptr);
  359. #else
  360. # if defined(_MSC_VER) && defined(MAXSEG_64K)
  361.       hfree(struct_ptr);
  362. # else
  363.       free(struct_ptr);
  364. # endif
  365. #endif
  366.    }
  367. }
  368. /* Allocate memory.  For reasonable files, size should never exceed
  369.    64K.  However, zlib may allocate more then 64K if you don't tell
  370.    it not to.  See zconf.h and png.h for more information.  zlib does
  371.    need to allocate exactly 64K, so whatever you call here must
  372.    have the ability to do that. */
  373. png_voidp PNGAPI
  374. png_malloc(png_structp png_ptr, png_uint_32 size)
  375. {
  376.    png_voidp ret;
  377. #ifdef PNG_USER_MEM_SUPPORTED
  378.    if (png_ptr == NULL || size == 0)
  379.       return (NULL);
  380.    if(png_ptr->malloc_fn != NULL)
  381.        ret = ((png_voidp)(*(png_ptr->malloc_fn))(png_ptr, (png_size_t)size));
  382.    else
  383.        ret = (png_malloc_default(png_ptr, size));
  384.    if (ret == NULL && (png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
  385.        png_error(png_ptr, "Out of Memory!");
  386.    return (ret);
  387. }
  388. png_voidp PNGAPI
  389. png_malloc_default(png_structp png_ptr, png_uint_32 size)
  390. {
  391.    png_voidp ret;
  392. #endif /* PNG_USER_MEM_SUPPORTED */
  393.    if (png_ptr == NULL || size == 0)
  394.       return (NULL);
  395. #ifdef PNG_MAX_MALLOC_64K
  396.    if (size > (png_uint_32)65536L)
  397.    {
  398. #ifndef PNG_USER_MEM_SUPPORTED
  399.       if(png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
  400.          png_error(png_ptr, "Cannot Allocate > 64K");
  401.       else
  402. #endif
  403.          return NULL;
  404.    }
  405. #endif
  406.  /* Check for overflow */
  407. #if defined(__TURBOC__) && !defined(__FLAT__)
  408.  if (size != (unsigned long)size)
  409.    ret = NULL;
  410.  else
  411.    ret = farmalloc(size);
  412. #else
  413. # if defined(_MSC_VER) && defined(MAXSEG_64K)
  414.  if (size != (unsigned long)size)
  415.    ret = NULL;
  416.  else
  417.    ret = halloc(size, 1);
  418. # else
  419.  if (size != (size_t)size)
  420.    ret = NULL;
  421.  else
  422.    ret = malloc((size_t)size);
  423. # endif
  424. #endif
  425. #ifndef PNG_USER_MEM_SUPPORTED
  426.    if (ret == NULL && (png_ptr->flags&PNG_FLAG_MALLOC_NULL_MEM_OK) == 0)
  427.       png_error(png_ptr, "Out of Memory");
  428. #endif
  429.    return (ret);
  430. }
  431. /* Free a pointer allocated by png_malloc().  If ptr is NULL, return
  432.    without taking any action. */
  433. void PNGAPI
  434. png_free(png_structp png_ptr, png_voidp ptr)
  435. {
  436.    if (png_ptr == NULL || ptr == NULL)
  437.       return;
  438. #ifdef PNG_USER_MEM_SUPPORTED
  439.    if (png_ptr->free_fn != NULL)
  440.    {
  441.       (*(png_ptr->free_fn))(png_ptr, ptr);
  442.       return;
  443.    }
  444.    else png_free_default(png_ptr, ptr);
  445. }
  446. void PNGAPI
  447. png_free_default(png_structp png_ptr, png_voidp ptr)
  448. {
  449.    if (png_ptr == NULL || ptr == NULL)
  450.       return;
  451. #endif /* PNG_USER_MEM_SUPPORTED */
  452. #if defined(__TURBOC__) && !defined(__FLAT__)
  453.    farfree(ptr);
  454. #else
  455. # if defined(_MSC_VER) && defined(MAXSEG_64K)
  456.    hfree(ptr);
  457. # else
  458.    free(ptr);
  459. # endif
  460. #endif
  461. }
  462. #endif /* Not Borland DOS special memory handler */
  463. #if defined(PNG_1_0_X)
  464. #  define png_malloc_warn png_malloc
  465. #else
  466. /* This function was added at libpng version 1.2.3.  The png_malloc_warn()
  467.  * function will set up png_malloc() to issue a png_warning and return NULL
  468.  * instead of issuing a png_error, if it fails to allocate the requested
  469.  * memory.
  470.  */
  471. png_voidp PNGAPI
  472. png_malloc_warn(png_structp png_ptr, png_uint_32 size)
  473. {
  474.    png_voidp ptr;
  475.    png_uint_32 save_flags=png_ptr->flags;
  476.    png_ptr->flags|=PNG_FLAG_MALLOC_NULL_MEM_OK;
  477.    ptr = (png_voidp)png_malloc((png_structp)png_ptr, size);
  478.    png_ptr->flags=save_flags;
  479.    return(ptr);
  480. }
  481. #endif
  482. png_voidp PNGAPI
  483. png_memcpy_check (png_structp png_ptr, png_voidp s1, png_voidp s2,
  484.    png_uint_32 length)
  485. {
  486.    png_size_t size;
  487.    size = (png_size_t)length;
  488.    if ((png_uint_32)size != length)
  489.       png_error(png_ptr,"Overflow in png_memcpy_check.");
  490.    return(png_memcpy (s1, s2, size));
  491. }
  492. png_voidp PNGAPI
  493. png_memset_check (png_structp png_ptr, png_voidp s1, int value,
  494.    png_uint_32 length)
  495. {
  496.    png_size_t size;
  497.    size = (png_size_t)length;
  498.    if ((png_uint_32)size != length)
  499.       png_error(png_ptr,"Overflow in png_memset_check.");
  500.    return (png_memset (s1, value, size));
  501. }
  502. #ifdef PNG_USER_MEM_SUPPORTED
  503. /* This function is called when the application wants to use another method
  504.  * of allocating and freeing memory.
  505.  */
  506. void PNGAPI
  507. png_set_mem_fn(png_structp png_ptr, png_voidp mem_ptr, png_malloc_ptr
  508.   malloc_fn, png_free_ptr free_fn)
  509. {
  510.    png_ptr->mem_ptr = mem_ptr;
  511.    png_ptr->malloc_fn = malloc_fn;
  512.    png_ptr->free_fn = free_fn;
  513. }
  514. /* This function returns a pointer to the mem_ptr associated with the user
  515.  * functions.  The application should free any memory associated with this
  516.  * pointer before png_write_destroy and png_read_destroy are called.
  517.  */
  518. png_voidp PNGAPI
  519. png_get_mem_ptr(png_structp png_ptr)
  520. {
  521.    return ((png_voidp)png_ptr->mem_ptr);
  522. }
  523. #endif /* PNG_USER_MEM_SUPPORTED */