Skip to content

Commit d2f6b9a

Browse files
committed
Optimize code of util and logging to avoid circular dependency
Signed-off-by: Eric Zhao <[email protected]>
1 parent de7eedb commit d2f6b9a

File tree

3 files changed

+20
-8
lines changed

3 files changed

+20
-8
lines changed

logging/logging.go

+15-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package logging
22

33
import (
44
"fmt"
5-
"github.com/sentinel-group/sentinel-golang/util"
65
"log"
76
"os"
87
"sync"
@@ -54,9 +53,11 @@ func GetDefaultLogger() *SentinelLogger {
5453

5554
// outputFile is the full path(absolute path)
5655
func NewSentinelFileLogger(outputFile, namespace string, flag int) *SentinelLogger {
57-
var logFile *os.File
5856
logDir := addSeparatorIfNeeded(LogBaseDir())
59-
util.CreateDirIfNotExists(logDir)
57+
err := createDirIfNotExists(logDir)
58+
if err != nil {
59+
log.Printf("Failed to create the log directory: %+v", err)
60+
}
6061
logFile, err := os.OpenFile(logDir+outputFile, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0777)
6162
if err != nil {
6263
// TODO: do not fatal here
@@ -68,6 +69,17 @@ func NewSentinelFileLogger(outputFile, namespace string, flag int) *SentinelLogg
6869
}
6970
}
7071

72+
func createDirIfNotExists(dirname string) error {
73+
if _, err := os.Stat(dirname); err != nil {
74+
if os.IsNotExist(err) {
75+
return os.MkdirAll(dirname, os.ModePerm)
76+
} else {
77+
return err
78+
}
79+
}
80+
return nil
81+
}
82+
7183
type Logger interface {
7284
Debug(v ...interface{})
7385
Debugf(format string, v ...interface{})

util/auto_recover.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import (
55
"github.com/sentinel-group/sentinel-golang/logging"
66
)
77

8-
func WithRecoverGo(f func(), logger *logging.SentinelLogger) {
8+
func RunWithRecover(f func(), logger *logging.SentinelLogger) {
99
defer func() {
1010
if err := recover(); err != nil {
11-
logger.Errorf("Panic:%+v.", errors.Errorf("%+v", err))
11+
logger.Errorf("Unexpected panic: %+v", errors.Errorf("%+v", err))
1212
}
1313
}()
1414
f()
15-
}
15+
}

util/util_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
)
77

88
func TestWithRecoverGo(t *testing.T) {
9-
go WithRecoverGo(func() {
9+
go RunWithRecover(func() {
1010
panic("internal error!\n")
1111
}, logging.GetDefaultLogger())
12-
}
12+
}

0 commit comments

Comments
 (0)