-
Notifications
You must be signed in to change notification settings - Fork 4
/
16_custom_server.go
54 lines (47 loc) · 1.4 KB
/
16_custom_server.go
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
// Seriál "Programovací jazyk Go"
// https://www.root.cz/serialy/programovaci-jazyk-go/
//
// Jedenáctá část
// Vývoj síťových aplikací v programovacím jazyku Go
// https://www.root.cz/clanky/vyvoj-sitovych-aplikaci-v-programovacim-jazyku-go/
//
// Repositář:
// https://github.com/tisnik/go-root/
//
// Seznam demonstračních příkladů z jedenácté části:
// https://github.com/tisnik/go-root/blob/master/article_11/README.md
//
// Demonstrační příklad číslo 16:
// Kombinace předchozích možností
//
// Dokumentace ve stylu "literate programming":
// https://tisnik.github.io/go-root/article_11/16_custom_server.html
package main
import (
"fmt"
"io"
"net/http"
"sync"
)
var counter int
var mutex = &sync.Mutex{}
func mainEndpoint(writer http.ResponseWriter, request *http.Request) {
io.WriteString(writer, "Hello world!\n")
}
func counterEndpoint(writer http.ResponseWriter, request *http.Request) {
mutex.Lock()
counter++
fmt.Fprintf(writer, "Counter: %d\n", counter)
mutex.Unlock()
}
func filesEndpoint(writer http.ResponseWriter, request *http.Request) {
url := request.URL.Path[len("/files/"):]
println("Serving file from URL: " + url)
http.ServeFile(writer, request, url)
}
func main() {
http.HandleFunc("/", mainEndpoint)
http.HandleFunc("/counter", counterEndpoint)
http.HandleFunc("/files/", filesEndpoint)
http.ListenAndServe(":8000", nil)
}