evio/examples/http-server/main.go

158 lines
3.7 KiB
Go
Raw Normal View History

2017-10-28 03:01:03 +03:00
package main
import (
"fmt"
"log"
"strconv"
"strings"
"time"
2017-10-29 00:58:59 +03:00
"github.com/tidwall/evio"
2017-10-28 03:01:03 +03:00
)
type request struct {
2017-10-28 22:23:13 +03:00
proto, method string
path, query string
head, body string
remoteAddr string
2017-10-28 03:01:03 +03:00
}
type conn struct {
2017-10-30 00:05:23 +03:00
addr evio.Addr
2017-10-29 00:58:59 +03:00
is evio.InputStream
2017-10-28 03:01:03 +03:00
}
func main() {
2017-10-29 00:58:59 +03:00
var events evio.Events
2017-10-28 03:01:03 +03:00
var conns = make(map[int]*conn)
2017-10-29 00:58:59 +03:00
events.Serving = func(wakefn func(id int) bool) (action evio.Action) {
2017-10-28 03:01:03 +03:00
log.Print("http server started on port 8080")
return
}
2017-10-30 00:05:23 +03:00
events.Opened = func(id int, addr evio.Addr) (out []byte, opts evio.Options, action evio.Action) {
2017-10-28 03:01:03 +03:00
conns[id] = &conn{addr: addr}
2017-10-30 00:05:23 +03:00
log.Printf("%s: opened", addr.Remote.String())
2017-10-28 03:01:03 +03:00
return
}
2017-10-29 00:58:59 +03:00
events.Closed = func(id int) (action evio.Action) {
2017-10-28 03:01:03 +03:00
c := conns[id]
2017-10-30 00:05:23 +03:00
log.Printf("%s: closed", c.addr.Remote.String())
2017-10-28 03:01:03 +03:00
delete(conns, id)
return
}
2017-10-29 00:58:59 +03:00
events.Data = func(id int, in []byte) (out []byte, action evio.Action) {
2017-10-28 03:01:03 +03:00
c := conns[id]
2017-10-28 22:23:13 +03:00
data := c.is.Begin(in)
// process the pipeline
2017-10-28 03:01:03 +03:00
var req request
for {
leftover, err := parsereq(data, &req)
if err != nil {
// bad thing happened
2017-10-28 22:23:13 +03:00
out = appendresp(out, "500 Error", "", err.Error()+"\n")
2017-10-29 00:58:59 +03:00
action = evio.Close
2017-10-28 03:01:03 +03:00
break
} else if len(leftover) == len(data) {
// request not ready, yet
break
}
// handle the request
2017-10-30 00:05:23 +03:00
req.remoteAddr = c.addr.Remote.String()
2017-10-28 22:23:13 +03:00
out = appendhandle(out, &req)
2017-10-28 03:01:03 +03:00
data = leftover
}
2017-10-28 22:23:13 +03:00
c.is.End(data)
2017-10-28 03:01:03 +03:00
return
}
2017-10-29 00:58:59 +03:00
log.Fatal(evio.Serve(events, "tcp://0.0.0.0:8080"))
2017-10-28 03:01:03 +03:00
}
2017-10-28 22:23:13 +03:00
// appendhandle handles the incoming request and appends the response to
// the provided bytes, which is then returned to the caller.
func appendhandle(b []byte, req *request) []byte {
return appendresp(b, "200 OK", "", "Hello World!\n")
2017-10-28 03:01:03 +03:00
}
2017-10-28 22:23:13 +03:00
// appendresp will append a valid http response to the provide bytes.
// The status param should be the code plus text such as "200 OK".
// The head parameter should be a series of lines ending with "\r\n" or empty.
func appendresp(b []byte, status, head, body string) []byte {
2017-10-28 03:01:03 +03:00
b = append(b, "HTTP/1.1"...)
b = append(b, ' ')
b = append(b, status...)
b = append(b, '\r', '\n')
b = append(b, "Date: "...)
b = time.Now().AppendFormat(b, "Mon, 02 Jan 2006 15:04:05 GMT")
b = append(b, '\r', '\n')
if len(body) > 0 {
b = append(b, "Content-Length: "...)
b = strconv.AppendInt(b, int64(len(body)), 10)
b = append(b, '\r', '\n')
}
b = append(b, head...)
b = append(b, '\r', '\n')
if len(body) > 0 {
b = append(b, body...)
}
return b
}
2017-10-28 22:23:13 +03:00
// parsereq is a very simple http request parser. This operation
// waits for the entire payload to be buffered before returning a
// valid request.
2017-10-28 03:01:03 +03:00
func parsereq(data []byte, req *request) (leftover []byte, err error) {
var s int
var n int
var top string
var clen int
var i int
for ; i < len(data); i++ {
if i > 1 && data[i] == '\n' && data[i-1] == '\r' {
line := string(data[s : i-1])
s = i + 1
if n == 0 {
top = line
parts := strings.Split(top, " ")
if len(parts) != 3 {
return data, fmt.Errorf("malformed request '%s'", top)
}
req.method = parts[0]
req.path = parts[1]
req.proto = parts[2]
2017-10-28 22:23:13 +03:00
for i := 0; i < len(req.path); i++ {
if req.path[i] == '?' {
req.query = req.path[i+1:]
req.path = req.path[:i]
break
}
}
2017-10-28 03:01:03 +03:00
} else if line == "" {
req.head = string(data[len(top)+2 : i+1])
i++
if clen > 0 {
if len(data[i:]) < clen {
break
}
req.body = string(data[i : i+clen])
i += clen
}
return data[i:], nil
} else {
if strings.HasPrefix(line, "Content-Length:") {
n, err := strconv.ParseInt(strings.TrimSpace(line[len("Content-Length:"):]), 10, 64)
if err == nil {
clen = int(n)
}
}
}
n++
}
}
// not enough data
return data, nil
}