nginx http handler 프로 세 스
2205 단어 nginx-이해
ngx_http_handler 시작
void
ngx_http_core_run_phases(ngx_http_request_t *r) //
{
ngx_int_t rc;
ngx_http_phase_handler_t *ph;
ngx_http_core_main_conf_t *cmcf;
cmcf = ngx_http_get_module_main_conf(r, ngx_http_core_module);
ph = cmcf->phase_engine.handlers;
while (ph[r->phase_handler].checker) {
rc = ph[r->phase_handler].checker(r, &ph[r->phase_handler]);
if (rc == NGX_OK) {
return;
}
}
}
위의 코드 는 cmcf->phaseengine.handlers,먼저 ngxhttp_phase_handler_t 의 구조
struct ngx_http_phase_handler_s {
ngx_http_phase_handler_pt checker; //
ngx_http_handler_pt handler; //
ngx_uint_t next; //
};
다음은 모듈 의 처리 함수 입 니 다.push 에서 cmcf->phases[각 단계]의 배열 에서(gzip 을 예 로 들 면):
static ngx_int_t
ngx_http_gzip_static_init(ngx_conf_t *cf)
{
ngx_http_handler_pt *h;
ngx_http_core_main_conf_t *cmcf;
cmcf = ngx_http_conf_get_module_main_conf(cf, ngx_http_core_module);
h = ngx_array_push(&cmcf->phases[NGX_HTTP_CONTENT_PHASE].handlers);
if (h == NULL) {
return NGX_ERROR;
}
*h = ngx_http_gzip_static_handler;
return NGX_OK;
}
다음은 모든 handler 함수 에서 처리 하고 ngx 로 돌아 가 는 것 입 니 다.OK,다음 반환 ngx 를 실행 하고 싶 습 니 다.again
if (gzcf->enable == NGX_HTTP_GZIP_STATIC_OFF) { //config
return NGX_DECLINED;
}
if (gzcf->enable == NGX_HTTP_GZIP_STATIC_ON) {
rc = ngx_http_gzip_ok(r);
} else {
/* always */
rc = NGX_OK;
}
NGX 에 대하 여HTTP_CONTENT_PHASE 단계 에 또 하나의 단독 우선 순위 가 매우 높 은 처리 함수 가 있 습 니 다.
ngx_int_t
ngx_http_core_content_phase(ngx_http_request_t *r,
ngx_http_phase_handler_t *ph){
....
if (r->content_handler) {
r->write_event_handler = ngx_http_request_empty_handler;
ngx_http_finalize_request(r, r->content_handler(r));//clcf->handler postconfiguration
return NGX_OK;
}
rc = ph->handler(r); // array