-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnet_log.go
132 lines (113 loc) · 2.61 KB
/
net_log.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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
// Copyright 2014 beego Author. 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 logs
import (
"bytes"
"io"
"net"
"sync"
)
// ConnWriter implements LoggerInterface.
// it writes messages in keep-live tcp connection.
type ConnWriter struct {
sync.Mutex
writer io.WriteCloser
rec chan *LogRecord
format string
ReconnectOnMsg bool `json:"reconnectOnMsg"`
Reconnect bool `json:"reconnect"`
Net string `json:"net"`
Addr string `json:"addr"`
Level Level `json:"level"`
}
// NewConn create new ConnWrite returning as LoggerInterface.
func NewConn(Net, Addr, format string, level Level) *ConnWriter {
if format == "" {
format = "[%D %T] [%L] (%S) %M"
}
w := &ConnWriter{
rec: make(chan *LogRecord, LogBufferLength),
format: format,
Net: Net,
Addr: Addr,
Level: level,
}
go func() {
defer recoverPanic()
defer func() {
_ = w.connect()
}()
for {
select {
case rec, ok := <-w.rec:
if !ok {
return
}
w.write(rec)
}
}
}()
return w
}
func (c *ConnWriter) LogWrite(rec *LogRecord) {
c.rec <- rec
}
func (c *ConnWriter) SetFormat(format string) {
c.format = format
}
func (c *ConnWriter) connect() error {
if c.writer != nil {
_=c.writer.Close()
c.writer = nil
}
conn, err := net.Dial(c.Net, c.Addr)
if err != nil {
return err
}
if tcpConn, ok := conn.(*net.TCPConn); ok {
_=tcpConn.SetKeepAlive(true)
}
c.writer = conn
return nil
}
func (c *ConnWriter) needToConnectOnMsg() bool {
if c.Reconnect {
c.Reconnect = false
return true
}
if c.writer == nil {
return true
}
return c.ReconnectOnMsg
}
func (c *ConnWriter) Write(p []byte) (n int, err error) {
c.Lock()
if c.needToConnectOnMsg() {
_=c.connect()
}
n, err = c.writer.Write(append(p, '\n'))
if err != nil {
_=c.connect()
return 0, err
}
c.Unlock()
return n, nil
}
// This is the SocketLogWriter's output method
func (c *ConnWriter) write(rec *LogRecord) {
bt := bytes.NewBufferString(FormatLogRecord(c.format, rec))
_, _ = c.Write(bt.Bytes())
}
func (c *ConnWriter) Close() {
}