Matteo Scandolo | a6a3aee | 2019-11-26 13:30:14 -0700 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * Copyright 2015 gRPC authors. |
| 4 | * |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | * |
| 17 | */ |
| 18 | |
| 19 | package grpc |
| 20 | |
| 21 | import ( |
| 22 | "bytes" |
| 23 | "fmt" |
| 24 | "io" |
| 25 | "net" |
| 26 | "strings" |
| 27 | "sync" |
| 28 | "time" |
| 29 | |
| 30 | "golang.org/x/net/trace" |
| 31 | ) |
| 32 | |
| 33 | // EnableTracing controls whether to trace RPCs using the golang.org/x/net/trace package. |
| 34 | // This should only be set before any RPCs are sent or received by this program. |
| 35 | var EnableTracing bool |
| 36 | |
| 37 | // methodFamily returns the trace family for the given method. |
| 38 | // It turns "/pkg.Service/GetFoo" into "pkg.Service". |
| 39 | func methodFamily(m string) string { |
| 40 | m = strings.TrimPrefix(m, "/") // remove leading slash |
| 41 | if i := strings.Index(m, "/"); i >= 0 { |
| 42 | m = m[:i] // remove everything from second slash |
| 43 | } |
David K. Bainbridge | c415efe | 2021-08-19 13:05:21 +0000 | [diff] [blame] | 44 | if i := strings.LastIndex(m, "."); i >= 0 { |
| 45 | m = m[i+1:] // cut down to last dotted component |
| 46 | } |
Matteo Scandolo | a6a3aee | 2019-11-26 13:30:14 -0700 | [diff] [blame] | 47 | return m |
| 48 | } |
| 49 | |
| 50 | // traceInfo contains tracing information for an RPC. |
| 51 | type traceInfo struct { |
| 52 | tr trace.Trace |
| 53 | firstLine firstLine |
| 54 | } |
| 55 | |
| 56 | // firstLine is the first line of an RPC trace. |
| 57 | // It may be mutated after construction; remoteAddr specifically may change |
| 58 | // during client-side use. |
| 59 | type firstLine struct { |
| 60 | mu sync.Mutex |
| 61 | client bool // whether this is a client (outgoing) RPC |
| 62 | remoteAddr net.Addr |
| 63 | deadline time.Duration // may be zero |
| 64 | } |
| 65 | |
| 66 | func (f *firstLine) SetRemoteAddr(addr net.Addr) { |
| 67 | f.mu.Lock() |
| 68 | f.remoteAddr = addr |
| 69 | f.mu.Unlock() |
| 70 | } |
| 71 | |
| 72 | func (f *firstLine) String() string { |
| 73 | f.mu.Lock() |
| 74 | defer f.mu.Unlock() |
| 75 | |
| 76 | var line bytes.Buffer |
| 77 | io.WriteString(&line, "RPC: ") |
| 78 | if f.client { |
| 79 | io.WriteString(&line, "to") |
| 80 | } else { |
| 81 | io.WriteString(&line, "from") |
| 82 | } |
| 83 | fmt.Fprintf(&line, " %v deadline:", f.remoteAddr) |
| 84 | if f.deadline != 0 { |
| 85 | fmt.Fprint(&line, f.deadline) |
| 86 | } else { |
| 87 | io.WriteString(&line, "none") |
| 88 | } |
| 89 | return line.String() |
| 90 | } |
| 91 | |
| 92 | const truncateSize = 100 |
| 93 | |
| 94 | func truncate(x string, l int) string { |
| 95 | if l > len(x) { |
| 96 | return x |
| 97 | } |
| 98 | return x[:l] |
| 99 | } |
| 100 | |
| 101 | // payload represents an RPC request or response payload. |
| 102 | type payload struct { |
| 103 | sent bool // whether this is an outgoing payload |
| 104 | msg interface{} // e.g. a proto.Message |
| 105 | // TODO(dsymonds): add stringifying info to codec, and limit how much we hold here? |
| 106 | } |
| 107 | |
| 108 | func (p payload) String() string { |
| 109 | if p.sent { |
| 110 | return truncate(fmt.Sprintf("sent: %v", p.msg), truncateSize) |
| 111 | } |
| 112 | return truncate(fmt.Sprintf("recv: %v", p.msg), truncateSize) |
| 113 | } |
| 114 | |
| 115 | type fmtStringer struct { |
| 116 | format string |
| 117 | a []interface{} |
| 118 | } |
| 119 | |
| 120 | func (f *fmtStringer) String() string { |
| 121 | return fmt.Sprintf(f.format, f.a...) |
| 122 | } |
| 123 | |
| 124 | type stringer string |
| 125 | |
| 126 | func (s stringer) String() string { return string(s) } |