Skip to content
Snippets Groups Projects
Select Git revision
  • ecedd41439800c254bc9e202364d2105a5bbfc5b
  • master default
  • dbck-q-n-d-link
  • foutput-text_stat-override
  • generations
  • text-stat-sha256
  • use-nettle
  • import-nettle
  • refactor-cached_get_text
  • refactor-cached_get_text-part-2
  • add-text_store
  • introduce-generation_position
  • remove-reclamation
  • dbfile-temp-filenames
  • sstrdup
  • dbfile_open_read-check-magic
  • adns_dist
  • liboop_dist
  • search
  • isc
  • dbdbckmultiplechoice
  • last.cvs.revision
  • 2.1.2
  • 2.1.1
  • 2.1.0
  • adns_1_0
  • liboop_0_9
  • 2.0.7
  • search_bp
  • 2.0.6
  • 2.0.5
  • isc_1_01
  • Protocol-A-10.4
  • 2.0.4
  • 2.0.3
  • 2.0.2
  • 2.0.1
  • 2.0.0
  • isc_1_00
  • isc_merge_1999_05_01
  • isc_merge_1999_04_21
41 results

isc-parse.c

Blame
  • dynamic_buffer.c 3.04 KiB
    /*\
    ||| This file a part of Pike, and is copyright by Fredrik Hubinette
    ||| Pike is distributed as GPL (General Public License)
    ||| See the files COPYING and DISCLAIMER for more information.
    \*/
    #include "global.h"
    #include "dynamic_buffer.h"
    #include "stralloc.h"
    #include "error.h"
    #include "pike_memory.h"
    
    static dynamic_buffer buff;
    
    char *low_make_buf_space(INT32 space, dynamic_buffer *buf)
    {
      char *ret;
    #ifdef DEBUG
      if(!buf->s.str) fatal("ARRRRGH! Deadly Trap!\n");
    #endif
    
      if(buf->s.len+space >= buf->bufsize)
      {
        if(!buf->bufsize) buf->bufsize=1;
    
        do{
          buf->bufsize*=2;
        }while(buf->s.len+space >= buf->bufsize);
    
        buf->s.str=(char *)realloc(buf->s.str, buf->bufsize);
        if(!buf->s.str)
          error("Out of memory.\n");
      }
      ret = buf->s.str + buf->s.len;
      buf->s.len += space;
      return ret;
    }
    
    void low_my_putchar(char b,dynamic_buffer *buf)
    {
    #ifdef DEBUG
      if(!buf->s.str)
        fatal("Error in internal buffering.\n");
    #endif
      low_make_buf_space(1,buf)[0]=b;
    }
    
    void low_my_binary_strcat(const char *b,INT32 l,dynamic_buffer *buf)
    {
    #ifdef DEBUG
      if(!buf->s.str)
        fatal("Error in internal buffering.\n");
    #endif
    
      MEMCPY(low_make_buf_space(l,buf),b,l);
    }
    
    void initialize_buf(dynamic_buffer *buf)
    {
      buf->s.str=(char *)xalloc((buf->bufsize=BUFFER_BEGIN_SIZE));
      *(buf->s.str)=0;
      buf->s.len=0;
    }
    
    void low_reinit_buf(dynamic_buffer *buf)
    {
      if(!buf->s.str)
      {
        initialize_buf(buf);
      }else{
        *(buf->s.str)=0;
        buf->s.len=0;
      }
    }
    
    void low_init_buf_with_string(string s, dynamic_buffer *buf)
    {
      if(buf->s.str) { free(buf->s.str); buf->s.str=NULL; } 
      buf->s=s;
      if(!buf->s.str) initialize_buf(buf);
      /* if the string is an old buffer, this realloc will set the old
         the bufsize back */
      for(buf->bufsize=BUFFER_BEGIN_SIZE;buf->bufsize<buf->s.len;buf->bufsize*=2);
      buf->s.str=realloc(buf->s.str,buf->bufsize);
    #ifdef DEBUG
      if(!buf->s.str)
        fatal("Realloc failed.\n");
    #endif
    }
    
    string complex_free_buf(void)
    {
      string tmp;
      if(!buff.s.str) return buff.s;
      my_putchar(0);
      buff.s.len--;
      tmp=buff.s;
      buff.s.str=0;
      return tmp;
    }
    
    void toss_buffer(dynamic_buffer *buf)
    {
      if(buf->s.str) free(buf->s.str);
      buf->s.str=0;
    }
    
    char *simple_free_buf(void)
    {
      if(!buff.s.str) return 0;
      return complex_free_buf().str;
    }
    
    struct pike_string *low_free_buf(dynamic_buffer *buf)
    {
      struct pike_string *q;
      if(!buf->s.str) return 0;
      q=make_shared_binary_string(buf->s.str,buf->s.len);
      free(buf->s.str);
      buf->s.str=0;
      buf->s.len=0;
      return q;
    }
    
    struct pike_string *free_buf(void) { return low_free_buf(&buff); }
    char *make_buf_space(INT32 space) { return low_make_buf_space(space,&buff); }
    void my_putchar(char b) { low_my_putchar(b,&buff); }
    void my_binary_strcat(const char *b,INT32 l) { low_my_binary_strcat(b,l,&buff); }
    void my_strcat(const char *b) { my_binary_strcat(b,strlen(b)); }
    void init_buf(void) { low_reinit_buf(&buff); }
    void init_buf_with_string(string s) { low_init_buf_with_string(s,&buff); }
    char *return_buf(void)
    {
      my_putchar(0);
      return buff.s.str;
    }
    /* int my_get_buf_size() {  return buff->s.len; } */