2016-03-17 20:06:04 +08:00
|
|
|
---
|
|
|
|
title: Design Concept
|
|
|
|
---
|
|
|
|
|
|
|
|
Mongoose is a multi-protocol networking library that implements non-blocking,
|
2016-03-18 19:58:07 +08:00
|
|
|
asyncronous IO and provides event-based API. It has three basic data
|
|
|
|
structures:
|
2016-03-17 20:06:04 +08:00
|
|
|
|
2016-03-18 19:58:07 +08:00
|
|
|
- `struct mg_mgr` is an event manager that holds all active connections
|
|
|
|
- `struct mg_connection` describes a connection
|
|
|
|
- `struct mbuf` describes data buffer (received or sent data)
|
2016-03-17 20:06:04 +08:00
|
|
|
|
|
|
|
Connections could be either *listening*, *outbound* or *inbound*. Outbound
|
2016-03-18 19:58:07 +08:00
|
|
|
connections are created by `mg_connect()` call. Listening connections are
|
|
|
|
created by `mg_bind()` call. Inbound connections are those accepted by a
|
|
|
|
listening connection. Each connection is described by `struct mg_connection`
|
|
|
|
structure, which has a number of fields like socket, event handler function,
|
|
|
|
send/receive buffer, flags, et cetera.
|
2016-03-17 20:06:04 +08:00
|
|
|
|
|
|
|
Mongoose usage pattern is to declare and initialize event manager, create
|
2016-03-18 19:58:07 +08:00
|
|
|
connections and create an event loop by calling `mg_mgr_poll()` in a loop.
|
|
|
|
`mg_mgr_poll()` iterates over all sockets, accepts new connections, sends and
|
|
|
|
receives data, closes connections, and calls event handler functions for the
|
|
|
|
respective events.
|