forked from kaltura/nginx-vod-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ngx_file_reader.h
69 lines (56 loc) · 1.73 KB
/
ngx_file_reader.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#ifndef _NGX_FILE_READER_H_INCLUDED_
#define _NGX_FILE_READER_H_INCLUDED_
// includes
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
#include <nginx.h>
#if (NGX_THREADS)
#include "ngx_async_open_file_cache.h"
#endif // NGX_THREADS
// constants
#define OPEN_FILE_NO_CACHE (0x1)
// typedefs
typedef void (*ngx_async_read_callback_t)(void* context, ngx_int_t rc, ngx_buf_t* buf, ssize_t bytes_read);
typedef struct {
ngx_http_request_t *r;
ngx_file_t file;
off_t directio;
ngx_flag_t log_not_found;
ngx_log_t* log;
off_t file_size;
#if (NGX_HAVE_FILE_AIO)
ngx_flag_t use_aio;
ngx_async_read_callback_t read_callback;
void* callback_context;
ngx_buf_t* buf;
#endif // NGX_HAVE_FILE_AIO
} ngx_file_reader_state_t;
// functions
ngx_int_t ngx_file_reader_init(
ngx_file_reader_state_t* state,
ngx_async_read_callback_t read_callback,
void* callback_context,
ngx_http_request_t *r,
ngx_http_core_loc_conf_t *clcf,
ngx_str_t* path,
uint32_t flags);
#if (NGX_THREADS)
ngx_int_t ngx_file_reader_init_async(
ngx_file_reader_state_t* state,
void** context,
ngx_thread_pool_t *thread_pool,
ngx_async_open_file_callback_t open_callback,
ngx_async_read_callback_t read_callback,
void* callback_context,
ngx_http_request_t *r,
ngx_http_core_loc_conf_t *clcf,
ngx_str_t* path,
uint32_t flags);
#endif // NGX_THREADS
ngx_int_t ngx_file_reader_dump_file_part(void* context, off_t start, off_t end);
size_t ngx_file_reader_get_size(void* context);
void ngx_file_reader_get_path(void* context, ngx_str_t* path);
ngx_int_t ngx_async_file_read(ngx_file_reader_state_t* state, ngx_buf_t *buf, size_t size, off_t offset);
ngx_int_t ngx_file_reader_enable_directio(ngx_file_reader_state_t* state);
#endif // _NGX_FILE_READER_H_INCLUDED_