encodings.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. This file is part of libXMLRPC - a C library for xml-encoded function calls.
  3. Author: Dan Libby (dan@libby.com)
  4. Epinions.com may be contacted at feedback@epinions-inc.com
  5. */
  6. /*
  7. Copyright 2000 Epinions, Inc.
  8. Subject to the following 3 conditions, Epinions, Inc. permits you, free
  9. of charge, to (a) use, copy, distribute, modify, perform and display this
  10. software and associated documentation files (the "Software"), and (b)
  11. permit others to whom the Software is furnished to do so as well.
  12. 1) The above copyright notice and this permission notice shall be included
  13. without modification in all copies or substantial portions of the
  14. Software.
  15. 2) THE SOFTWARE IS PROVIDED "AS IS", WITHOUT ANY WARRANTY OR CONDITION OF
  16. ANY KIND, EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION ANY
  17. IMPLIED WARRANTIES OF ACCURACY, MERCHANTABILITY, FITNESS FOR A PARTICULAR
  18. PURPOSE OR NONINFRINGEMENT.
  19. 3) IN NO EVENT SHALL EPINIONS, INC. BE LIABLE FOR ANY DIRECT, INDIRECT,
  20. SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OR LOST PROFITS ARISING OUT
  21. OF OR IN CONNECTION WITH THE SOFTWARE (HOWEVER ARISING, INCLUDING
  22. NEGLIGENCE), EVEN IF EPINIONS, INC. IS AWARE OF THE POSSIBILITY OF SUCH
  23. DAMAGES.
  24. */
  25. #ifdef HAVE_CONFIG_H
  26. #include "config.h"
  27. #endif
  28. #ifndef PHP_WIN32
  29. #include <php_config.h>
  30. #else
  31. #include <config.w32.h>
  32. #include <stdlib.h>
  33. #endif
  34. static const char rcsid[] = "#(@) $Id$";
  35. #include <errno.h>
  36. #ifdef HAVE_GICONV_H
  37. #include <giconv.h>
  38. #else
  39. #include <iconv.h>
  40. #endif
  41. #include "encodings.h"
  42. #ifndef ICONV_CSNMAXLEN
  43. #define ICONV_CSNMAXLEN 64
  44. #endif
  45. static char* convert(const char* src, int src_len, int *new_len, const char* from_enc, const char* to_enc) {
  46. char* outbuf = 0;
  47. if(src && src_len && from_enc && to_enc) {
  48. size_t outlenleft = src_len;
  49. size_t inlenleft = src_len;
  50. int outlen = src_len;
  51. iconv_t ic;
  52. char* out_ptr = 0;
  53. if(strlen(to_enc) >= ICONV_CSNMAXLEN || strlen(from_enc) >= ICONV_CSNMAXLEN) {
  54. return NULL;
  55. }
  56. ic = iconv_open(to_enc, from_enc);
  57. if(ic != (iconv_t)-1) {
  58. size_t st;
  59. outbuf = (char*)malloc(outlen + 1);
  60. if(outbuf) {
  61. out_ptr = (char*)outbuf;
  62. while(inlenleft) {
  63. st = iconv(ic, (char**)&src, &inlenleft, &out_ptr, &outlenleft);
  64. if(st == -1) {
  65. if(errno == E2BIG) {
  66. int diff = out_ptr - outbuf;
  67. outlen += inlenleft;
  68. outlenleft += inlenleft;
  69. outbuf = (char*)realloc(outbuf, outlen + 1);
  70. if(!outbuf) {
  71. break;
  72. }
  73. out_ptr = outbuf + diff;
  74. }
  75. else {
  76. free(outbuf);
  77. outbuf = 0;
  78. break;
  79. }
  80. }
  81. }
  82. }
  83. iconv_close(ic);
  84. }
  85. outlen -= outlenleft;
  86. if(new_len) {
  87. *new_len = outbuf ? outlen : 0;
  88. }
  89. if(outbuf) {
  90. outbuf[outlen] = 0;
  91. }
  92. }
  93. return outbuf;
  94. }
  95. /* returns a new string that must be freed */
  96. char* utf8_encode(const char *s, int len, int *newlen, const char* encoding)
  97. {
  98. return convert(s, len, newlen, encoding, "UTF-8");
  99. }
  100. /* returns a new string, possibly decoded */
  101. char* utf8_decode(const char *s, int len, int *newlen, const char* encoding)
  102. {
  103. return convert(s, len, newlen, "UTF-8", encoding);
  104. }