mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 18:10:54 +00:00
update the performance
This commit is contained in:
parent
44a57e86dd
commit
bed1d9bd27
@ -72,10 +72,53 @@ func NewModeAnsiColorWriter(w io.Writer, mode outputMode) io.Writer {
|
|||||||
return w
|
return w
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
y1 = `0123456789`
|
||||||
|
y2 = `0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789`
|
||||||
|
y3 = `0000000000111111111122222222223333333333444444444455555555556666666666777777777788888888889999999999`
|
||||||
|
y4 = `0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789`
|
||||||
|
mo1 = `000000000111`
|
||||||
|
mo2 = `123456789012`
|
||||||
|
d1 = `0000000001111111111222222222233`
|
||||||
|
d2 = `1234567890123456789012345678901`
|
||||||
|
h1 = `000000000011111111112222`
|
||||||
|
h2 = `012345678901234567890123`
|
||||||
|
mi1 = `000000000011111111112222222222333333333344444444445555555555`
|
||||||
|
mi2 = `012345678901234567890123456789012345678901234567890123456789`
|
||||||
|
s1 = `000000000011111111112222222222333333333344444444445555555555`
|
||||||
|
s2 = `012345678901234567890123456789012345678901234567890123456789`
|
||||||
|
)
|
||||||
|
|
||||||
func formatTimeHeader(when time.Time) ([]byte, int) {
|
func formatTimeHeader(when time.Time) ([]byte, int) {
|
||||||
_, _, d := when.Date()
|
y, mo, d := when.Date()
|
||||||
s := when.Format("2006/01/02 15:04:05 ")
|
h, mi, s := when.Clock()
|
||||||
return []byte(s), d
|
//len("2006/01/02 15:04:05 ")==20
|
||||||
|
var buf [20]byte
|
||||||
|
|
||||||
|
//change to '3' after 984 years, LOL
|
||||||
|
buf[0] = y1[y/1000%10]
|
||||||
|
//change to '1' after 84 years, LOL
|
||||||
|
buf[1] = y2[y/100]
|
||||||
|
buf[2] = y3[y-y/100*100]
|
||||||
|
buf[3] = y4[y-y/100*100]
|
||||||
|
buf[4] = '/'
|
||||||
|
buf[5] = mo1[mo-1]
|
||||||
|
buf[6] = mo2[mo-1]
|
||||||
|
buf[7] = '/'
|
||||||
|
buf[8] = d1[d-1]
|
||||||
|
buf[9] = d2[d-1]
|
||||||
|
buf[10] = ' '
|
||||||
|
buf[11] = h1[h]
|
||||||
|
buf[12] = h2[h]
|
||||||
|
buf[13] = ':'
|
||||||
|
buf[14] = mi1[mi]
|
||||||
|
buf[15] = mi2[mi]
|
||||||
|
buf[16] = ':'
|
||||||
|
buf[17] = s1[s]
|
||||||
|
buf[18] = s2[s]
|
||||||
|
buf[19] = ' '
|
||||||
|
|
||||||
|
return buf[0:], d
|
||||||
}
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -15,9 +15,9 @@
|
|||||||
package logs
|
package logs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
"bytes"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestFormatHeader_0(t *testing.T) {
|
func TestFormatHeader_0(t *testing.T) {
|
||||||
|
Loading…
Reference in New Issue
Block a user