2 Commits

Author SHA1 Message Date
Sense T c385a6b1ea can set logger compatiable with logrus 2022-09-09 13:16:36 +00:00
Sense T ef798c1ac7 error hint 2022-09-09 11:53:46 +00:00
5 changed files with 87 additions and 8 deletions
+5
View File
@@ -10,6 +10,11 @@ type Connection struct {
TX chan<- *DataFrame
ID ID
closed bool
logger Logger
}
func (c *Connection) SetLogger(logger Logger) {
c.logger = logger
}
func (c *Connection) Read(p []byte) (int, error) {
+11
View File
@@ -0,0 +1,11 @@
package tunnel
import "fmt"
type WrongDataFrameTypeError struct {
ShouldBe Type
}
func (w WrongDataFrameTypeError) Error() string {
return fmt.Sprintf("wrong dataframe type, should be %s(%d)", w.ShouldBe, w.ShouldBe)
}
+43
View File
@@ -0,0 +1,43 @@
package tunnel
type Logger interface {
Trace(args ...interface{})
Tracef(format string, args ...interface{})
Debug(args ...interface{})
Debugf(format string, args ...interface{})
Info(args ...interface{})
Infof(format string, args ...interface{})
Error(args ...interface{})
Errorf(format string, args ...interface{})
Fatal(args ...interface{})
Fatalf(format string, args ...interface{})
Panic(args ...interface{})
Panicf(format string, args ...interface{})
}
type logger struct{}
func (l *logger) Trace(args ...interface{})
func (l *logger) Tracef(format string, args ...interface{})
func (l *logger) Debug(args ...interface{})
func (l *logger) Debugf(format string, args ...interface{})
func (l *logger) Info(args ...interface{})
func (l *logger) Infof(format string, args ...interface{})
func (l *logger) Error(args ...interface{})
func (l *logger) Errorf(format string, args ...interface{})
func (l *logger) Fatal(args ...interface{})
func (l *logger) Fatalf(format string, args ...interface{})
func (l *logger) Panic(args ...interface{})
func (l *logger) Panicf(format string, args ...interface{})
var DefaultLogger = &logger{}
+10 -4
View File
@@ -1,7 +1,6 @@
package tunnel
import (
"errors"
"io"
)
@@ -14,6 +13,7 @@ type Manager struct {
closed chan bool
newConnection chan *Connection
delConnection chan *Connection
logger Logger
}
func NewManager(tun io.ReadWriter) *Manager {
@@ -25,9 +25,14 @@ func NewManager(tun io.ReadWriter) *Manager {
accept: make(chan *DataFrame, 1024),
newConnection: make(chan *Connection),
delConnection: make(chan *Connection),
logger: DefaultLogger,
}
}
func (m *Manager) SetLogger(logger Logger) {
m.logger = logger
}
func (m *Manager) Run() {
onReceiveQueue := make(chan bool)
for {
@@ -78,14 +83,14 @@ func (m *Manager) Connect() (*Connection, error) {
connection := &Connection{
ID: df.ID,
TX: m.incoming,
logger: DefaultLogger,
}
m.newConnection <- connection
m.incoming <- df
df = <-connection.RX
if df.Type != TypeConnected {
return nil, errors.New("failed to connect")
return nil, WrongDataFrameTypeError{ShouldBe: TypeConnected}
}
return connection, nil
}
@@ -93,11 +98,12 @@ func (m *Manager) Connect() (*Connection, error) {
func (m *Manager) Accept() (*Connection, error) {
df := <-m.accept
if df.Type != TypeRequest {
return nil, errors.New("failed to accept")
return nil, WrongDataFrameTypeError{ShouldBe: TypeRequest}
}
connection := &Connection{
ID: df.ID,
TX: m.incoming,
logger: DefaultLogger,
}
m.newConnection <- connection
+14
View File
@@ -9,3 +9,17 @@ func NewID() ID {
}
type Type uint8
func (t Type) String() string {
switch t {
case TypeNormal:
return "normal"
case TypeRequest:
return "request"
case TypeConnected:
return "connected"
case TypeClosed:
return "closed"
}
return "invalid"
}