Nginx 원본 을 위 한 ngxalloc. c 첨가 ngxrealloc 와 ngxprealloc 방법


필요:
Nginx 소스 코드 에 ngx 가 제공 되 지 않 았 기 때 문 입 니 다.realloc 와 ngxprealloc 방법 은 2011 년 10 월 에 Tengine (타 오 바 오 판 Nginx) 소스 코드 에 이 두 가지 방법의 실현 에 기 여 했 습 니 다.
 
해결 방안:
솔 루 션 을 소개 하기 전에 realloc 의 기능 정 의 를 소개 해 야 합 니 다.
 
Linux 에서 man realloc 의 결과 에 따 르 면
DESCRIPTION
realloc() changes the size of the memory block pointed to by ptr to size bytes. The contents will be unchanged to the minimum of the old and new sizes; newly allocated memory will be uninitialized. If ptr is NULL, the call is equivalent to malloc(size); if size is equal to zero, the call is equivalent to free(ptr). Unless ptr is NULL, it must have been returned by an earlier call to malloc(), calloc() or realloc(). If the area pointed to was moved, a free(ptr) is done.
RETURN VALUE
realloc() returns a pointer to the newly allocated memory, which is suitably aligned for any kind of variable and may be different from ptr, or NULL if the request fails. If size was equal to 0, either NULL or a pointer suitable to be passed to free() is returned. If realloc() fails the original block is left untouched; it is not freed or moved.
 다음 소개 코드 구현:
 
// ngx_realloc       	
//            new  ,   C realloc        p      ,
//     null        nginx    ,   debug    nginx debug             
void *
ngx_realloc(void *p, size_t size, ngx_log_t *log)
{
    void *new;

    new = realloc(p, size);
    if (new == NULL) {
        ngx_log_error(NGX_LOG_EMERG, log, ngx_errno,
                      "realloc(%p:%uz) failed", p, size);
    }

    ngx_log_debug2(NGX_LOG_DEBUG_ALLOC, log, 0, "realloc: %p:%uz", new, size);

    return new;
}

  // ngx_prealloc 코드 구현 및 분석
void *
ngx_prealloc(ngx_pool_t *pool, void *p, size_t old_size, size_t new_size)
{
    void *new;

    //   p  ,     pool                   	
    if (p == NULL) {
        return ngx_palloc(pool, new_size);
    }

    //               0,           pool   ,
    //   ,    pool d.last              ;
    //   ,  ngx_pfree    pool     ;
    //     null。	
    if (new_size == 0) {
        if ((u_char *) p + old_size == pool->d.last) {
           pool->d.last = p;
        } else {
           ngx_pfree(pool, p);
        }
	
        return NULL;
    }

    //              pool   ,  pool    
    //               ,    pool d.last  
    //                  。
    if ((u_char *) p + old_size == pool->d.last
		&& (u_char *) p + new_size <= pool->d.end)
    {
        pool->d.last = (u_char *) p + new_size;
        return p;
    }
	
    //           ,     ngx_palloc pool   
    //       ,                   ,
    //       ,       。
    new = ngx_palloc(pool, new_size);
    if (new == NULL) {
        return NULL;
    }
	
    ngx_memcpy(new, p, old_size);
	
    ngx_pfree(pool, p);
	
    return new;
}

 
 
ok, 모두 소개 완료.

좋은 웹페이지 즐겨찾기