contributed by <judy66jo
>, <JonSyuGithub
>
中英文字間請以空白區隔
課程助教
// 處理存入work queue的運行,透過pipe喚醒work thread處理
// 寫入one byte到pipe
static int async_run(async_p async, void (*task)(void *), void *arg)
// 會讀取pipe的one byte
/* listen pipe and release thread */
static void *worker_thread_cycle(void *_async)
思考這樣的 API 設計有沒有不足?或者值得做 code refactoring 之處 jserv
// 將一個工作存入epoll
int set_fd_polling(int queue,
int fd,
int action,
long milliseconds)
// 透過 reactor_review( ) 將 epoll 中的工作抓出來執行
int reactor_review(struct Reactor *reactor)
// 用來監控整個系統工作狀態,決定工作是否中斷連線/執行
static void srv_cycle_core(server_pt server)
// 生成epoll
int epoll_create(int size)
int epoll_create1(int flags)
// 新增或移除監聽的fd或更改fd的監聽選項
int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event)
// 回傳ready的fd的數量,把fd存在events array中
int epoll_wait(int epfd, struct epoll_event *events,int maxevents, int timeout)
// 生成pipe,將read,write端fd存入array
int pipe(int pipefd[2])
// 將count byte的資料寫入pipe_write_end
ssize_t read(int fd, void *buf, size_t count);
// 從pipe_read_end讀count byte的資料
ssize_t write(int fd, const void *buf, size_t count);
// 改變動作
int sigaction(int signum, const struct sigaction *act, struct sigaction *oldact);
// The sigaction structure
struct sigaction {
void (*sa_handler)(int);
void (*sa_sigaction)(int, siginfo_t *, void *);
sigset_t sa_mask;
int sa_flags;
void (*sa_restorer)(void);
};
Signal Value Action Comment
──────────────────────────────────────────────────────────────────────
SIGINT 2 Term Interrupt from keyboard
SIGKILL 9 Term Kill signal
SIGPIPE 13 Term Broken pipe: write to pipe with no readers
SIGTERM 15 Term Termination signal
對 Web Server 送出100個 request ,且一次送出32次 request
$ ./httpd
// new terminal
$ ab -c 32 -n 100 http://localhost:8080/
Benchmark
This is ApacheBench, Version 2.3 <$Revision: 1706008 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking localhost (be patient).....done
Server Software:
Server Hostname: localhost
Server Port: 8080
Document Path: /
Document Length: 13 bytes
Concurrency Level: 32
Time taken for tests: 15.691 seconds
Complete requests: 100
Failed requests: 11
(Connect: 0, Receive: 0, Length: 11, Exceptions: 0)
Total transferred: 9900 bytes
HTML transferred: 1300 bytes
Requests per second: 6.37 [#/sec] (mean)
Time per request: 5021.135 [ms] (mean)
Time per request: 156.910 [ms] (mean, across all concurrent requests)
Transfer rate: 0.62 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 0 1 0.5 1 1
Processing: 3691 3901 144.2 3999 4000
Waiting: 0 0 0.2 0 1
Total: 3691 3901 144.5 4000 4000
Percentage of the requests served within a certain time (ms)
50% 4000
66% 4000
75% 4000
80% 4000
90% 4000
95% 4000
98% 4000
99% 4000
100% 4000 (longest request)
sysprog21
Team23