-
Notifications
You must be signed in to change notification settings - Fork 1
/
logger.go
147 lines (121 loc) · 3.95 KB
/
logger.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
// Copyright (c) 2012-present The upper.io/db authors. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package db
import (
"context"
"fmt"
"log"
"regexp"
"strings"
"time"
)
const (
fmtLogSessID = `Session ID: %05d`
fmtLogTxID = `Transaction ID: %05d`
fmtLogQuery = `Query: %s`
fmtLogArgs = `Arguments: %#v`
fmtLogRowsAffected = `Rows affected: %d`
fmtLogLastInsertID = `Last insert ID: %d`
fmtLogError = `Error: %v`
fmtLogTimeTaken = `Time taken: %0.5fs`
fmtLogContext = `Context: %v`
)
var (
reInvisibleChars = regexp.MustCompile(`[\s\r\n\t]+`)
reColumnCompareExclude = regexp.MustCompile(`[^a-zA-Z0-9]`)
)
// QueryStatus represents the status of a query after being executed.
type QueryStatus struct {
SessID uint64
TxID uint64
RowsAffected *int64
LastInsertID *int64
Query string
Args []interface{}
Err error
Start time.Time
End time.Time
Context context.Context
}
// String returns a formatted log message.
func (q *QueryStatus) String() string {
lines := make([]string, 0, 8)
if q.SessID > 0 {
lines = append(lines, fmt.Sprintf(fmtLogSessID, q.SessID))
}
if q.TxID > 0 {
lines = append(lines, fmt.Sprintf(fmtLogTxID, q.TxID))
}
if query := q.Query; query != "" {
query = reInvisibleChars.ReplaceAllString(query, ` `)
query = strings.TrimSpace(query)
lines = append(lines, fmt.Sprintf(fmtLogQuery, query))
}
if len(q.Args) > 0 {
lines = append(lines, fmt.Sprintf(fmtLogArgs, q.Args))
}
if q.RowsAffected != nil {
lines = append(lines, fmt.Sprintf(fmtLogRowsAffected, *q.RowsAffected))
}
if q.LastInsertID != nil {
lines = append(lines, fmt.Sprintf(fmtLogLastInsertID, *q.LastInsertID))
}
if q.Err != nil {
lines = append(lines, fmt.Sprintf(fmtLogError, q.Err))
}
lines = append(lines, fmt.Sprintf(fmtLogTimeTaken, float64(q.End.UnixNano()-q.Start.UnixNano())/float64(1e9)))
if q.Context != nil {
lines = append(lines, fmt.Sprintf(fmtLogContext, q.Context))
}
return strings.Join(lines, "\n")
}
// EnvEnableDebug can be used by adapters to determine if the user has enabled
// debugging.
//
// If the user sets the `UPPERIO_DB_DEBUG` environment variable to a
// non-empty value, all generated statements will be printed at runtime to
// the standard logger.
//
// Example:
//
// UPPERIO_DB_DEBUG=1 go test
//
// UPPERIO_DB_DEBUG=1 ./go-program
const (
EnvEnableDebug = `UPPERIO_DB_DEBUG`
)
// Logger represents a logging collector. You can pass a logging collector to
// db.DefaultSettings.SetLogger(myCollector) to make it collect db.QueryStatus messages
// after executing a query.
type Logger interface {
Log(*QueryStatus)
}
type defaultLogger struct {
}
func (lg *defaultLogger) Log(m *QueryStatus) {
log.Printf("\n\t%s\n\n", strings.Replace(m.String(), "\n", "\n\t", -1))
}
var _ = Logger(&defaultLogger{})
func init() {
if envEnabled(EnvEnableDebug) {
DefaultSettings.SetLogging(true)
}
}