gd_io.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /*
  2. * io.c
  3. *
  4. * Implements the simple I/O 'helper' routines.
  5. *
  6. * Not really essential, but these routines were used extensively in GD,
  7. * so they were moved here. They also make IOCtx calls look better...
  8. *
  9. * Written (or, at least, moved) 1999, Philip Warner.
  10. *
  11. */
  12. #include <math.h>
  13. #include <string.h>
  14. #include <stdlib.h>
  15. #include "gd.h"
  16. /* Use this for commenting out debug-print statements. */
  17. /* Just use the first '#define' to allow all the prints... */
  18. /*#define IO_DBG(s) (s) */
  19. #define IO_DBG(s)
  20. #define GD_IO_EOF_CHK(r) \
  21. if (r == EOF) { \
  22. return 0; \
  23. } \
  24. /*
  25. * Write out a word to the I/O context pointer
  26. */
  27. void Putword (int w, gdIOCtx * ctx)
  28. {
  29. unsigned char buf[2];
  30. buf[0] = w & 0xff;
  31. buf[1] = (w / 256) & 0xff;
  32. (ctx->putBuf) (ctx, (char *) buf, 2);
  33. }
  34. void Putchar (int c, gdIOCtx * ctx)
  35. {
  36. (ctx->putC) (ctx, c & 0xff);
  37. }
  38. void gdPutC (const unsigned char c, gdIOCtx * ctx)
  39. {
  40. (ctx->putC) (ctx, c);
  41. }
  42. void gdPutWord (int w, gdIOCtx * ctx)
  43. {
  44. IO_DBG (php_gd_error("Putting word..."));
  45. (ctx->putC) (ctx, (unsigned char) (w >> 8));
  46. (ctx->putC) (ctx, (unsigned char) (w & 0xFF));
  47. IO_DBG (php_gd_error("put."));
  48. }
  49. void gdPutInt (int w, gdIOCtx * ctx)
  50. {
  51. IO_DBG (php_gd_error("Putting int..."));
  52. (ctx->putC) (ctx, (unsigned char) (w >> 24));
  53. (ctx->putC) (ctx, (unsigned char) ((w >> 16) & 0xFF));
  54. (ctx->putC) (ctx, (unsigned char) ((w >> 8) & 0xFF));
  55. (ctx->putC) (ctx, (unsigned char) (w & 0xFF));
  56. IO_DBG (php_gd_error("put."));
  57. }
  58. int gdGetC (gdIOCtx * ctx)
  59. {
  60. return ((ctx->getC) (ctx));
  61. }
  62. int gdGetByte (int *result, gdIOCtx * ctx)
  63. {
  64. int r;
  65. r = (ctx->getC) (ctx);
  66. GD_IO_EOF_CHK(r);
  67. *result = r;
  68. return 1;
  69. }
  70. int gdGetWord (int *result, gdIOCtx * ctx)
  71. {
  72. int r;
  73. r = (ctx->getC) (ctx);
  74. GD_IO_EOF_CHK(r);
  75. *result = r << 8;
  76. r = (ctx->getC) (ctx);
  77. GD_IO_EOF_CHK(r);
  78. *result += r;
  79. return 1;
  80. }
  81. int gdGetInt (int *result, gdIOCtx * ctx)
  82. {
  83. int r;
  84. r = (ctx->getC) (ctx);
  85. GD_IO_EOF_CHK(r);
  86. *result = r << 24;
  87. r = (ctx->getC) (ctx);
  88. GD_IO_EOF_CHK(r);
  89. *result += r << 16;
  90. r = (ctx->getC) (ctx);
  91. if (r == EOF) {
  92. return 0;
  93. }
  94. *result += r << 8;
  95. r = (ctx->getC) (ctx);
  96. GD_IO_EOF_CHK(r);
  97. *result += r;
  98. return 1;
  99. }
  100. int gdPutBuf (const void *buf, int size, gdIOCtx * ctx)
  101. {
  102. IO_DBG (php_gd_error("Putting buf..."));
  103. return (ctx->putBuf) (ctx, buf, size);
  104. IO_DBG (php_gd_error("put."));
  105. }
  106. int gdGetBuf (void *buf, int size, gdIOCtx * ctx)
  107. {
  108. return (ctx->getBuf) (ctx, buf, size);
  109. }
  110. int gdSeek (gdIOCtx * ctx, const int pos)
  111. {
  112. IO_DBG (php_gd_error("Seeking..."));
  113. return ((ctx->seek) (ctx, pos));
  114. IO_DBG (php_gd_error("Done."));
  115. }
  116. long gdTell (gdIOCtx * ctx)
  117. {
  118. IO_DBG (php_gd_error("Telling..."));
  119. return ((ctx->tell) (ctx));
  120. IO_DBG (php_gd_error ("told."));
  121. }