String.c
上传用户:liugui
上传日期:2007-01-04
资源大小:822k
文件大小:3k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: String.c,v 1.7 1998/07/22 20:36:55 wessels Exp $
  3.  *
  4.  * DEBUG: section 67    String
  5.  * AUTHOR: Duane Wessels
  6.  *
  7.  * SQUID Internet Object Cache  http://squid.nlanr.net/Squid/
  8.  * ----------------------------------------------------------
  9.  *
  10.  *  Squid is the result of efforts by numerous individuals from the
  11.  *  Internet community.  Development is led by Duane Wessels of the
  12.  *  National Laboratory for Applied Network Research and funded by the
  13.  *  National Science Foundation.  Squid is Copyrighted (C) 1998 by
  14.  *  Duane Wessels and the University of California San Diego.  Please
  15.  *  see the COPYRIGHT file for full details.  Squid incorporates
  16.  *  software developed and/or copyrighted by other sources.  Please see
  17.  *  the CREDITS file for full details.
  18.  *
  19.  *  This program is free software; you can redistribute it and/or modify
  20.  *  it under the terms of the GNU General Public License as published by
  21.  *  the Free Software Foundation; either version 2 of the License, or
  22.  *  (at your option) any later version.
  23.  *  
  24.  *  This program is distributed in the hope that it will be useful,
  25.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  26.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27.  *  GNU General Public License for more details.
  28.  *  
  29.  *  You should have received a copy of the GNU General Public License
  30.  *  along with this program; if not, write to the Free Software
  31.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
  32.  *
  33.  */
  34. #include "squid.h"
  35. static void
  36. stringInitBuf(String * s, size_t sz)
  37. {
  38.     s->buf = memAllocBuf(sz, &sz);
  39.     assert(sz < 65536);
  40.     s->size = sz;
  41. }
  42. void
  43. stringInit(String * s, const char *str)
  44. {
  45.     assert(s);
  46.     if (str)
  47. stringLimitInit(s, str, strlen(str));
  48.     else
  49. *s = StringNull;
  50. }
  51. void
  52. stringLimitInit(String * s, const char *str, int len)
  53. {
  54.     assert(s && str);
  55.     stringInitBuf(s, len + 1);
  56.     s->len = len;
  57.     xmemcpy(s->buf, str, len);
  58.     s->buf[len] = '';
  59. }
  60. String
  61. stringDup(const String * s)
  62. {
  63.     String dup;
  64.     assert(s);
  65.     stringInit(&dup, s->buf);
  66.     return dup;
  67. }
  68. void
  69. stringClean(String * s)
  70. {
  71.     assert(s);
  72.     if (s->buf)
  73. memFreeBuf(s->size, s->buf);
  74.     *s = StringNull;
  75. }
  76. void
  77. stringReset(String * s, const char *str)
  78. {
  79.     stringClean(s);
  80.     stringInit(s, str);
  81. }
  82. void
  83. stringAppend(String * s, const char *str, int len)
  84. {
  85.     assert(s);
  86.     assert(str && len >= 0);
  87.     if (s->len + len < s->size) {
  88. strncat(s->buf, str, len);
  89. s->len += len;
  90.     } else {
  91. String snew = StringNull;
  92. snew.len = s->len + len;
  93. stringInitBuf(&snew, snew.len + 1);
  94. if (s->buf)
  95.     xmemcpy(snew.buf, s->buf, s->len);
  96. if (len)
  97.     xmemcpy(snew.buf + s->len, str, len);
  98. snew.buf[snew.len] = '';
  99. stringClean(s);
  100. *s = snew;
  101.     }
  102. }