-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
gh-3: to support streaming logs using websocket
- Loading branch information
Showing
3 changed files
with
179 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,174 @@ | ||
package api | ||
|
||
import ( | ||
"io/ioutil" | ||
"log" | ||
"net/http" | ||
"os" | ||
"strconv" | ||
"text/template" | ||
"time" | ||
|
||
"github.com/gorilla/websocket" | ||
) | ||
|
||
const ( | ||
// Time allowed to write the file to the client. | ||
writeWait = 10 * time.Second | ||
|
||
// Time allowed to read the next pong message from the client. | ||
pongWait = 60 * time.Second | ||
|
||
// Send pings to client with this period. Must be less than pongWait. | ||
pingPeriod = (pongWait * 9) / 10 | ||
|
||
// Poll file for changes with this period. | ||
filePeriod = 10 * time.Second | ||
) | ||
|
||
var ( | ||
homeTempl = template.Must(template.New("").Parse(homeHTML)) | ||
filename = "/var/lib/docker/containers/1967dededef67f90df186c7569ccfa5d7d6828447bd47c4c48657c837990943a/1967dededef67f90df186c7569ccfa5d7d6828447bd47c4c48657c837990943a-json.log" | ||
upgrader = websocket.Upgrader{ | ||
ReadBufferSize: 1024, | ||
WriteBufferSize: 1024, | ||
} | ||
) | ||
|
||
func readFileIfModified(lastMod time.Time) ([]byte, time.Time, error) { | ||
fi, err := os.Stat(filename) | ||
if err != nil { | ||
return nil, lastMod, err | ||
} | ||
if !fi.ModTime().After(lastMod) { | ||
return nil, lastMod, nil | ||
} | ||
p, err := ioutil.ReadFile(filename) | ||
if err != nil { | ||
return nil, fi.ModTime(), err | ||
} | ||
return p, fi.ModTime(), nil | ||
} | ||
|
||
func reader(ws *websocket.Conn) { | ||
defer ws.Close() | ||
ws.SetReadLimit(512) | ||
ws.SetReadDeadline(time.Now().Add(pongWait)) | ||
ws.SetPongHandler(func(string) error { ws.SetReadDeadline(time.Now().Add(pongWait)); return nil }) | ||
for { | ||
_, _, err := ws.ReadMessage() | ||
if err != nil { | ||
break | ||
} | ||
} | ||
} | ||
|
||
func writer(ws *websocket.Conn, lastMod time.Time) { | ||
lastError := "" | ||
pingTicker := time.NewTicker(pingPeriod) | ||
fileTicker := time.NewTicker(filePeriod) | ||
defer func() { | ||
pingTicker.Stop() | ||
fileTicker.Stop() | ||
ws.Close() | ||
}() | ||
for { | ||
select { | ||
case <-fileTicker.C: | ||
var p []byte | ||
var err error | ||
|
||
p, lastMod, err = readFileIfModified(lastMod) | ||
|
||
if err != nil { | ||
if s := err.Error(); s != lastError { | ||
lastError = s | ||
p = []byte(lastError) | ||
} | ||
} else { | ||
lastError = "" | ||
} | ||
|
||
if p != nil { | ||
ws.SetWriteDeadline(time.Now().Add(writeWait)) | ||
if err := ws.WriteMessage(websocket.TextMessage, p); err != nil { | ||
return | ||
} | ||
} | ||
case <-pingTicker.C: | ||
ws.SetWriteDeadline(time.Now().Add(writeWait)) | ||
if err := ws.WriteMessage(websocket.PingMessage, []byte{}); err != nil { | ||
return | ||
} | ||
} | ||
} | ||
} | ||
|
||
func StreamLogs(w http.ResponseWriter, r *http.Request) { | ||
ws, err := upgrader.Upgrade(w, r, nil) | ||
if err != nil { | ||
if _, ok := err.(websocket.HandshakeError); !ok { | ||
log.Println(err) | ||
} | ||
return | ||
} | ||
|
||
var lastMod time.Time | ||
if n, err := strconv.ParseInt(r.FormValue("lastMod"), 16, 64); err == nil { | ||
lastMod = time.Unix(0, n) | ||
} | ||
|
||
go writer(ws, lastMod) | ||
reader(ws) | ||
} | ||
|
||
func Logs(w http.ResponseWriter, r *http.Request) { | ||
if r.URL.Path != "/logs" { | ||
http.Error(w, "Not found", http.StatusNotFound) | ||
return | ||
} | ||
if r.Method != "GET" { | ||
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) | ||
return | ||
} | ||
w.Header().Set("Content-Type", "text/html; charset=utf-8") | ||
p, lastMod, err := readFileIfModified(time.Time{}) | ||
if err != nil { | ||
p = []byte(err.Error()) | ||
lastMod = time.Unix(0, 0) | ||
} | ||
var v = struct { | ||
Host string | ||
Data string | ||
LastMod string | ||
}{ | ||
r.Host, | ||
string(p), | ||
strconv.FormatInt(lastMod.UnixNano(), 16), | ||
} | ||
homeTempl.Execute(w, &v) | ||
} | ||
|
||
const homeHTML = `<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>WebSocket Example</title> | ||
</head> | ||
<body> | ||
<pre id="fileData">{{.Data}}</pre> | ||
<script type="text/javascript"> | ||
(function() { | ||
var data = document.getElementById("fileData"); | ||
var conn = new WebSocket("wss://api.spinup.host/streamlogs?lastMod={{.LastMod}}"); | ||
conn.onclose = function(evt) { | ||
data.textContent = 'Connection closed'; | ||
} | ||
conn.onmessage = function(evt) { | ||
console.log('file updated'); | ||
data.textContent = evt.data; | ||
} | ||
})(); | ||
</script> | ||
</body> | ||
</html> | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters