41

GitHub - flouthoc/envelop.c: Thread-less, event-loop based tiny http-server from...

 5 years ago
source link: https://github.com/flouthoc/envelop.c
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

README.md

envelop.c

Thread-less, event-loop based toy http-server from scratch. This project focuses on practical implementation of EPOLL for learning purpose.

drawing

Build

gcc -o envelop envelop.c
Starts server on default port: 3000
./envelop

Hit

http://127.0.0.1:3000/hello

Add your own Routes

See the Routes function Here

What is event-loop ?

Its an infinite loop which looks for any available events and performs required action on them.

Psuedo Code for event loop.
for (1){

	event = getReadyEvents();
    if(event == "task1"){
    	perform task1;
    }else if(event == "task2"){
    	perform task2;
    }
}
Theory

is a programming construct that waits for and dispatches events or messages in a program. It works by making a request to some internal or external "event provider" (that generally blocks the request until an event has arrived), and then it calls the relevant event handler ("dispatches the event"). The event-loop may be used in conjunction with a reactor, if the event provider follows the file interface, which can be selected or 'polled' (the Unix system call, not actual polling). The event loop almost always operates asynchronously with the message originator.

Epoll


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK