2019-08-27 10:52:32 -06:00
|
|
|
package protocol
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"strings"
|
2019-09-03 11:06:23 -06:00
|
|
|
"sync"
|
2019-08-27 10:52:32 -06:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"golang.org/x/tools/internal/jsonrpc2"
|
|
|
|
)
|
|
|
|
|
|
|
|
type loggingStream struct {
|
|
|
|
stream jsonrpc2.Stream
|
2020-04-07 15:35:36 -06:00
|
|
|
logMu sync.Mutex
|
2019-08-27 10:52:32 -06:00
|
|
|
log io.Writer
|
|
|
|
}
|
|
|
|
|
|
|
|
// LoggingStream returns a stream that does LSP protocol logging too
|
|
|
|
func LoggingStream(str jsonrpc2.Stream, w io.Writer) jsonrpc2.Stream {
|
2020-04-07 15:35:36 -06:00
|
|
|
return &loggingStream{stream: str, log: w}
|
2019-08-27 10:52:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *loggingStream) Read(ctx context.Context) ([]byte, int64, error) {
|
|
|
|
data, count, err := s.stream.Read(ctx)
|
|
|
|
if err == nil {
|
2020-04-07 15:35:36 -06:00
|
|
|
s.logMu.Lock()
|
|
|
|
defer s.logMu.Unlock()
|
2019-08-27 10:52:32 -06:00
|
|
|
logIn(s.log, data)
|
|
|
|
}
|
|
|
|
return data, count, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *loggingStream) Write(ctx context.Context, data []byte) (int64, error) {
|
2020-04-07 15:35:36 -06:00
|
|
|
s.logMu.Lock()
|
|
|
|
defer s.logMu.Unlock()
|
2019-08-27 10:52:32 -06:00
|
|
|
logOut(s.log, data)
|
|
|
|
count, err := s.stream.Write(ctx, data)
|
|
|
|
return count, err
|
|
|
|
}
|
|
|
|
|
|
|
|
type req struct {
|
|
|
|
method string
|
|
|
|
start time.Time
|
|
|
|
}
|
|
|
|
|
2019-09-03 11:06:23 -06:00
|
|
|
type mapped struct {
|
|
|
|
mu sync.Mutex
|
|
|
|
clientCalls map[string]req
|
|
|
|
serverCalls map[string]req
|
|
|
|
}
|
|
|
|
|
|
|
|
var maps = &mapped{
|
|
|
|
sync.Mutex{},
|
|
|
|
make(map[string]req),
|
|
|
|
make(map[string]req),
|
|
|
|
}
|
|
|
|
|
|
|
|
// these 4 methods are each used exactly once, but it seemed
|
|
|
|
// better to have the encapsulation rather than ad hoc mutex
|
|
|
|
// code in 4 places
|
|
|
|
func (m *mapped) client(id string, del bool) req {
|
|
|
|
m.mu.Lock()
|
|
|
|
defer m.mu.Unlock()
|
|
|
|
v := m.clientCalls[id]
|
|
|
|
if del {
|
|
|
|
delete(m.clientCalls, id)
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mapped) server(id string, del bool) req {
|
|
|
|
m.mu.Lock()
|
|
|
|
defer m.mu.Unlock()
|
|
|
|
v := m.serverCalls[id]
|
|
|
|
if del {
|
|
|
|
delete(m.serverCalls, id)
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mapped) setClient(id string, r req) {
|
|
|
|
m.mu.Lock()
|
|
|
|
defer m.mu.Unlock()
|
|
|
|
m.clientCalls[id] = r
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mapped) setServer(id string, r req) {
|
|
|
|
m.mu.Lock()
|
|
|
|
defer m.mu.Unlock()
|
|
|
|
m.serverCalls[id] = r
|
|
|
|
}
|
2019-08-27 10:52:32 -06:00
|
|
|
|
|
|
|
const eor = "\r\n\r\n\r\n"
|
|
|
|
|
2020-04-16 19:12:43 -06:00
|
|
|
func logCommon(outfd io.Writer, data []byte) (jsonrpc2.Message, time.Time, string) {
|
2019-08-27 10:52:32 -06:00
|
|
|
if outfd == nil {
|
|
|
|
return nil, time.Time{}, ""
|
|
|
|
}
|
2020-04-16 19:12:43 -06:00
|
|
|
v, err := jsonrpc2.DecodeMessage(data)
|
2019-08-27 10:52:32 -06:00
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(outfd, "Unmarshal %v\n", err)
|
|
|
|
panic(err) // do better
|
|
|
|
}
|
|
|
|
tm := time.Now()
|
|
|
|
tmfmt := tm.Format("15:04:05.000 PM")
|
2020-04-16 19:12:43 -06:00
|
|
|
return v, tm, tmfmt
|
2019-08-27 10:52:32 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// logOut and logIn could be combined. "received"<->"Sending", serverCalls<->clientCalls
|
|
|
|
// but it wouldn't be a lot shorter or clearer and "shutdown" is a special case
|
|
|
|
|
|
|
|
// Writing a message to the client, log it
|
|
|
|
func logOut(outfd io.Writer, data []byte) {
|
2020-04-16 19:12:43 -06:00
|
|
|
msg, tm, tmfmt := logCommon(outfd, data)
|
|
|
|
if msg == nil {
|
2019-08-27 10:52:32 -06:00
|
|
|
return
|
|
|
|
}
|
2020-04-16 19:12:43 -06:00
|
|
|
|
2019-08-27 10:52:32 -06:00
|
|
|
buf := strings.Builder{}
|
|
|
|
fmt.Fprintf(&buf, "[Trace - %s] ", tmfmt) // common beginning
|
2020-04-16 19:12:43 -06:00
|
|
|
switch msg := msg.(type) {
|
|
|
|
case *jsonrpc2.Call:
|
|
|
|
id := fmt.Sprint(msg.ID())
|
|
|
|
fmt.Fprintf(&buf, "Received request '%s - (%s)'.\n", msg.Method(), id)
|
|
|
|
fmt.Fprintf(&buf, "Params: %s%s", msg.Params(), eor)
|
|
|
|
maps.setServer(id, req{method: msg.Method(), start: tm})
|
|
|
|
case *jsonrpc2.Notification:
|
|
|
|
fmt.Fprintf(&buf, "Received notification '%s'.\n", msg.Method())
|
|
|
|
fmt.Fprintf(&buf, "Params: %s%s", msg.Params(), eor)
|
|
|
|
case *jsonrpc2.Response:
|
|
|
|
id := fmt.Sprint(msg.ID())
|
|
|
|
if err := msg.Err(); err != nil {
|
|
|
|
fmt.Fprintf(outfd, "[Error - %s] Received #%s %s%s", tmfmt, id, err, eor)
|
|
|
|
return
|
|
|
|
}
|
2019-09-03 11:06:23 -06:00
|
|
|
cc := maps.client(id, true)
|
|
|
|
elapsed := tm.Sub(cc.start)
|
2019-08-27 10:52:32 -06:00
|
|
|
fmt.Fprintf(&buf, "Received response '%s - (%s)' in %dms.\n",
|
2019-09-03 11:06:23 -06:00
|
|
|
cc.method, id, elapsed/time.Millisecond)
|
2020-04-16 19:12:43 -06:00
|
|
|
fmt.Fprintf(&buf, "Result: %s%s", msg.Result(), eor)
|
2019-08-27 10:52:32 -06:00
|
|
|
}
|
|
|
|
outfd.Write([]byte(buf.String()))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Got a message from the client, log it
|
|
|
|
func logIn(outfd io.Writer, data []byte) {
|
2020-04-16 19:12:43 -06:00
|
|
|
msg, tm, tmfmt := logCommon(outfd, data)
|
|
|
|
if msg == nil {
|
2019-08-27 10:52:32 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
buf := strings.Builder{}
|
|
|
|
fmt.Fprintf(&buf, "[Trace - %s] ", tmfmt) // common beginning
|
2020-04-16 19:12:43 -06:00
|
|
|
switch msg := msg.(type) {
|
|
|
|
case *jsonrpc2.Call:
|
|
|
|
id := fmt.Sprint(msg.ID())
|
|
|
|
fmt.Fprintf(&buf, "Sending request '%s - (%s)'.\n", msg.Method(), id)
|
|
|
|
fmt.Fprintf(&buf, "Params: %s%s", msg.Params(), eor)
|
|
|
|
maps.setServer(id, req{method: msg.Method(), start: tm})
|
|
|
|
case *jsonrpc2.Notification:
|
|
|
|
fmt.Fprintf(&buf, "Sending notification '%s'.\n", msg.Method())
|
|
|
|
fmt.Fprintf(&buf, "Params: %s%s", msg.Params(), eor)
|
|
|
|
case *jsonrpc2.Response:
|
|
|
|
id := fmt.Sprint(msg.ID())
|
|
|
|
if err := msg.Err(); err != nil {
|
|
|
|
fmt.Fprintf(outfd, "[Error - %s] Sent #%s %s%s", tmfmt, id, err, eor)
|
|
|
|
return
|
2019-10-10 08:59:39 -06:00
|
|
|
}
|
2020-04-16 19:12:43 -06:00
|
|
|
cc := maps.client(id, true)
|
|
|
|
elapsed := tm.Sub(cc.start)
|
|
|
|
fmt.Fprintf(&buf, "Sending response '%s - (%s)' in %dms.\n",
|
|
|
|
cc.method, id, elapsed/time.Millisecond)
|
|
|
|
fmt.Fprintf(&buf, "Result: %s%s", msg.Result(), eor)
|
2019-08-27 10:52:32 -06:00
|
|
|
}
|
|
|
|
outfd.Write([]byte(buf.String()))
|
|
|
|
}
|