Skip to content
Snippets Groups Projects
Select Git revision
  • 2d8775e55288c29b1b7fc323ad31cf368083e461
  • master default protected
  • 9.0
  • 8.0
  • 7.8
  • 7.6
  • 7.4
  • 7.2
  • 7.0
  • 0.6
  • rosuav/latex-markdown-renderer
  • rxnpatch/rxnpatch
  • marcus/gobject-introspection
  • rxnpatch/8.0
  • rosuav/pre-listening-ports
  • nt-tools
  • rosuav/async-annotations
  • rosuav/pgsql-ssl
  • rxnpatch/rxnpatch-broken/2023-10-06T094250
  • grubba/fdlib
  • grubba/wip/sakura/8.0
  • v8.0.2000
  • v8.0.1998
  • v8.0.1996
  • v8.0.1994
  • v8.0.1992
  • v8.0.1990
  • v8.0.1988
  • v8.0.1986
  • rxnpatch/clusters/8.0/2025-04-29T124414
  • rxnpatch/2025-04-29T124414
  • v8.0.1984
  • v8.0.1982
  • v8.0.1980
  • v8.0.1978
  • v8.0.1976
  • v8.0.1974
  • v8.0.1972
  • v8.0.1970
  • v8.0.1968
  • v8.0.1966
41 results

Process.pmod

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; } */