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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
// Copyright 2015 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package marbl
import (
"crypto/rand"
"encoding/hex"
"net/http"
"sync"
"github.com/google/martian/log"
"golang.org/x/net/websocket"
)
// Handler exposes marbl logs over websockets.
type Handler struct {
mu sync.RWMutex
subs map[string]chan<- []byte
}
// NewHandler instantiates a Handler with an empty set of subscriptions.
func NewHandler() *Handler {
return &Handler{
subs: make(map[string]chan<- []byte),
}
}
// Write writes frames to all websocket subscribers and returns the number
// of bytes written and an error.
func (h *Handler) Write(b []byte) (int, error) {
h.mu.RLock()
defer h.mu.RUnlock()
for id, framec := range h.subs {
select {
case framec <- b:
default:
log.Errorf("logstream: buffer full for connection, dropping")
close(framec)
delete(h.subs, id)
}
}
return len(b), nil
}
func (h *Handler) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
websocket.Server{Handler: h.streamLogs}.ServeHTTP(rw, req)
}
func (h *Handler) streamLogs(conn *websocket.Conn) {
defer conn.Close()
id, err := newID()
if err != nil {
log.Errorf("logstream: failed to create ID: %v", err)
return
}
framec := make(chan []byte, 16384)
h.subscribe(id, framec)
defer h.unsubscribe(id)
for b := range framec {
if err := websocket.Message.Send(conn, b); err != nil {
log.Errorf("logstream: failed to send message: %v", err)
return
}
}
}
func newID() (string, error) {
src := make([]byte, 8)
if _, err := rand.Read(src); err != nil {
return "", err
}
return hex.EncodeToString(src), nil
}
func (h *Handler) unsubscribe(id string) {
h.mu.Lock()
defer h.mu.Unlock()
delete(h.subs, id)
}
func (h *Handler) subscribe(id string, framec chan<- []byte) {
h.mu.Lock()
defer h.mu.Unlock()
h.subs[id] = framec
}
|