mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
improve package gins/gfile/intlog
This commit is contained in:
parent
99adb7cdc4
commit
f1f575fd5c
@ -7,6 +7,12 @@
|
||||
default = "127.0.0.1:6379,0"
|
||||
cache = "127.0.0.1:6379,1"
|
||||
|
||||
# Logger.
|
||||
[logger]
|
||||
Path = "/tmp/log/gf-app"
|
||||
Level = "all"
|
||||
Stdout = true
|
||||
|
||||
[viewer]
|
||||
delimiters = ["${", "}"]
|
||||
autoencode = true
|
@ -2,18 +2,30 @@ package main
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/frame/g"
|
||||
"github.com/gogf/gf/net/ghttp"
|
||||
"github.com/gogf/gf/frame/gins"
|
||||
"github.com/gogf/gf/os/glog"
|
||||
)
|
||||
|
||||
func main() {
|
||||
//g.Server().Run()
|
||||
s := g.Server()
|
||||
s.BindHandler("/aaa", func(r *ghttp.Request) {
|
||||
r.Cookie.Set("theme", "default")
|
||||
r.Session.Set("name", "john")
|
||||
content := `Config:{{.Config.redis.cache}}, Cookie:{{.Cookie.theme}}, Session:{{.Session.name}}, Query:{{.Query.name}}`
|
||||
r.Response.WriteTplContent(content, nil)
|
||||
})
|
||||
s.SetPort(8199)
|
||||
s.Run()
|
||||
func getNameLogger(name, path string) *glog.Logger {
|
||||
inst := gins.Get(name)
|
||||
if inst == nil {
|
||||
logger := g.Log(name)
|
||||
logConf := map[string]interface{}{
|
||||
"Path": path,
|
||||
"Level": "ALL",
|
||||
}
|
||||
if err := logger.SetConfigWithMap(logConf); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return logger
|
||||
}
|
||||
return inst.(*glog.Logger)
|
||||
}
|
||||
|
||||
func main() {
|
||||
alog := getNameLogger("logger.日志1", "c:/logger1")
|
||||
alog.Print(1)
|
||||
|
||||
blog := getNameLogger("logger.日志2", "c:/logger2")
|
||||
blog.Print(2)
|
||||
}
|
||||
|
@ -46,6 +46,11 @@ func Create(value interface{}, safe ...bool) Var {
|
||||
return v
|
||||
}
|
||||
|
||||
// Clone does a shallow copy of current Var and returns a pointer to this Var.
|
||||
func (v *Var) Clone() *Var {
|
||||
return New(v.Val(), v.safe)
|
||||
}
|
||||
|
||||
// Set sets <value> to <v>, and returns the old value.
|
||||
func (v *Var) Set(value interface{}) (old interface{}) {
|
||||
if v.safe {
|
||||
|
@ -12,7 +12,7 @@ import (
|
||||
|
||||
// TestDataPath retrieves and returns the testdata path of current package,
|
||||
// which is used for unit testing cases only.
|
||||
// The parameter <names> specifies the its sub-folders/sub-files,
|
||||
// The optional parameter <names> specifies the its sub-folders/sub-files,
|
||||
// which will be joined with current system separator and returned with the path.
|
||||
func TestDataPath(names ...string) string {
|
||||
path := CallerDirectory() + string(filepath.Separator) + "testdata"
|
||||
|
@ -69,3 +69,31 @@ func Example_patternViolenceCheck() {
|
||||
// Output:
|
||||
// Users Count: 101
|
||||
}
|
||||
|
||||
func Example_mapSliceChange() {
|
||||
jsonContent := `{"map":{"key":"value"}, "slice":[59,90]}`
|
||||
j, _ := gjson.LoadJson(jsonContent)
|
||||
m := j.GetMap("map")
|
||||
fmt.Println(m)
|
||||
|
||||
// Change the key-value pair.
|
||||
m["key"] = "john"
|
||||
|
||||
// It changes the underlying key-value pair.
|
||||
fmt.Println(j.GetMap("map"))
|
||||
|
||||
s := j.GetArray("slice")
|
||||
fmt.Println(s)
|
||||
|
||||
// Change the value of specified index.
|
||||
s[0] = 100
|
||||
|
||||
// It changes the underlying slice.
|
||||
fmt.Println(j.GetArray("slice"))
|
||||
|
||||
// output:
|
||||
// map[key:value]
|
||||
// map[key:john]
|
||||
// [59 90]
|
||||
// [100 90]
|
||||
}
|
||||
|
@ -132,7 +132,7 @@ func formatSubStack(st stack, buffer *bytes.Buffer) {
|
||||
continue
|
||||
}
|
||||
// Avoid GF stacks if not in GF development.
|
||||
if !intlog.IsGFDebug() {
|
||||
if !intlog.IsEnabled() {
|
||||
if strings.Contains(file, "github.com/gogf/gf/") {
|
||||
continue
|
||||
}
|
||||
|
@ -31,8 +31,14 @@ func init() {
|
||||
}
|
||||
}
|
||||
|
||||
// IsGFDebug checks and returns whether current process is in GF development.
|
||||
func IsGFDebug() bool {
|
||||
// SetEnabled enables/disables the internal logging manually.
|
||||
// Note that this function is not current safe, be aware of the DATA RACE.
|
||||
func SetEnabled(enabled bool) {
|
||||
isGFDebug = enabled
|
||||
}
|
||||
|
||||
// IsEnabled checks and returns whether current process is in GF development.
|
||||
func IsEnabled() bool {
|
||||
return isGFDebug
|
||||
}
|
||||
|
||||
|
47
os/gcfg/gcfg_z_example_pattern_test.go
Normal file
47
os/gcfg/gcfg_z_example_pattern_test.go
Normal file
@ -0,0 +1,47 @@
|
||||
// Copyright 2020 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
||||
//
|
||||
// This Source Code Form is subject to the terms of the MIT License.
|
||||
// If a copy of the MIT was not distributed with this file,
|
||||
// You can obtain one at https://github.com/gogf/gf.
|
||||
|
||||
package gcfg_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/gogf/gf/frame/g"
|
||||
"github.com/gogf/gf/internal/intlog"
|
||||
"github.com/gogf/gf/os/gcfg"
|
||||
)
|
||||
|
||||
func Example_mapSliceChange() {
|
||||
intlog.SetEnabled(false)
|
||||
defer intlog.SetEnabled(true)
|
||||
// For testing/example only.
|
||||
content := `{"map":{"key":"value"}, "slice":[59,90]}`
|
||||
gcfg.SetContent(content)
|
||||
defer gcfg.RemoveContent()
|
||||
|
||||
m := g.Cfg().GetMap("map")
|
||||
fmt.Println(m)
|
||||
|
||||
// Change the key-value pair.
|
||||
m["key"] = "john"
|
||||
|
||||
// It changes the underlying key-value pair.
|
||||
fmt.Println(g.Cfg().GetMap("map"))
|
||||
|
||||
s := g.Cfg().GetArray("slice")
|
||||
fmt.Println(s)
|
||||
|
||||
// Change the value of specified index.
|
||||
s[0] = 100
|
||||
|
||||
// It changes the underlying slice.
|
||||
fmt.Println(g.Cfg().GetArray("slice"))
|
||||
|
||||
// output:
|
||||
// map[key:value]
|
||||
// map[key:john]
|
||||
// [59 90]
|
||||
// [100 90]
|
||||
}
|
@ -8,14 +8,10 @@
|
||||
package gfile
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"errors"
|
||||
"github.com/gogf/gf/text/gstr"
|
||||
"os"
|
||||
"os/exec"
|
||||
"os/user"
|
||||
"path/filepath"
|
||||
"runtime"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
@ -386,52 +382,14 @@ func ExtName(path string) string {
|
||||
return strings.TrimLeft(Ext(path), ".")
|
||||
}
|
||||
|
||||
// Home returns absolute path of current user's home directory.
|
||||
func Home() (string, error) {
|
||||
u, err := user.Current()
|
||||
if nil == err {
|
||||
return u.HomeDir, nil
|
||||
// TempDir retrieves and returns the temporary directory of current system.
|
||||
// It return "/tmp" is current in *nix system, or else it returns os.TempDir().
|
||||
// The optional parameter <names> specifies the its sub-folders/sub-files,
|
||||
// which will be joined with current system separator and returned with the path.
|
||||
func TempDir(names ...string) string {
|
||||
path := tempDir
|
||||
for _, name := range names {
|
||||
path += Separator + name
|
||||
}
|
||||
if "windows" == runtime.GOOS {
|
||||
return homeWindows()
|
||||
}
|
||||
return homeUnix()
|
||||
}
|
||||
|
||||
func homeUnix() (string, error) {
|
||||
if home := os.Getenv("HOME"); home != "" {
|
||||
return home, nil
|
||||
}
|
||||
var stdout bytes.Buffer
|
||||
cmd := exec.Command("sh", "-c", "eval echo ~$USER")
|
||||
cmd.Stdout = &stdout
|
||||
if err := cmd.Run(); err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
result := strings.TrimSpace(stdout.String())
|
||||
if result == "" {
|
||||
return "", errors.New("blank output when reading home directory")
|
||||
}
|
||||
|
||||
return result, nil
|
||||
}
|
||||
|
||||
func homeWindows() (string, error) {
|
||||
drive := os.Getenv("HOMEDRIVE")
|
||||
path := os.Getenv("HOMEPATH")
|
||||
home := drive + path
|
||||
if drive == "" || path == "" {
|
||||
home = os.Getenv("USERPROFILE")
|
||||
}
|
||||
if home == "" {
|
||||
return "", errors.New("HOMEDRIVE, HOMEPATH, and USERPROFILE are blank")
|
||||
}
|
||||
|
||||
return home, nil
|
||||
}
|
||||
|
||||
// See os.TempDir().
|
||||
func TempDir() string {
|
||||
return tempDir
|
||||
return path
|
||||
}
|
||||
|
80
os/gfile/gfile_home.go
Normal file
80
os/gfile/gfile_home.go
Normal file
@ -0,0 +1,80 @@
|
||||
// Copyright 2020 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
||||
//
|
||||
// This Source Code Form is subject to the terms of the MIT License.
|
||||
// If a copy of the MIT was not distributed with this file,
|
||||
// You can obtain one at https://github.com/gogf/gf.
|
||||
|
||||
package gfile
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"errors"
|
||||
"os"
|
||||
"os/exec"
|
||||
"os/user"
|
||||
"runtime"
|
||||
"strings"
|
||||
)
|
||||
|
||||
// Home returns absolute path of current user's home directory.
|
||||
// The optional parameter <names> specifies the its sub-folders/sub-files,
|
||||
// which will be joined with current system separator and returned with the path.
|
||||
func Home(names ...string) (string, error) {
|
||||
path, err := getHomePath()
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
for _, name := range names {
|
||||
path += Separator + name
|
||||
}
|
||||
return path, nil
|
||||
}
|
||||
|
||||
// getHomePath returns absolute path of current user's home directory.
|
||||
func getHomePath() (string, error) {
|
||||
u, err := user.Current()
|
||||
if nil == err {
|
||||
return u.HomeDir, nil
|
||||
}
|
||||
if "windows" == runtime.GOOS {
|
||||
return homeWindows()
|
||||
}
|
||||
return homeUnix()
|
||||
}
|
||||
|
||||
// homeUnix retrieves and returns the home on unix system.
|
||||
func homeUnix() (string, error) {
|
||||
if home := os.Getenv("HOME"); home != "" {
|
||||
return home, nil
|
||||
}
|
||||
var stdout bytes.Buffer
|
||||
cmd := exec.Command("sh", "-c", "eval echo ~$USER")
|
||||
cmd.Stdout = &stdout
|
||||
if err := cmd.Run(); err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
||||
result := strings.TrimSpace(stdout.String())
|
||||
if result == "" {
|
||||
return "", errors.New("blank output when reading home directory")
|
||||
}
|
||||
|
||||
return result, nil
|
||||
}
|
||||
|
||||
// homeWindows retrieves and returns the home on windows system.
|
||||
func homeWindows() (string, error) {
|
||||
var (
|
||||
drive = os.Getenv("HOMEDRIVE")
|
||||
path = os.Getenv("HOMEPATH")
|
||||
home = drive + path
|
||||
)
|
||||
if drive == "" || path == "" {
|
||||
home = os.Getenv("USERPROFILE")
|
||||
}
|
||||
if home == "" {
|
||||
return "", errors.New("HOMEDRIVE, HOMEPATH, and USERPROFILE are blank")
|
||||
}
|
||||
|
||||
return home, nil
|
||||
}
|
@ -80,6 +80,9 @@ func (l *Logger) SetConfigWithMap(m map[string]interface{}) error {
|
||||
if m == nil || len(m) == 0 {
|
||||
return errors.New("configuration cannot be empty")
|
||||
}
|
||||
// The m now is a shallow copy of m.
|
||||
// A little tricky, isn't it?
|
||||
m = gutil.CopyMap(m)
|
||||
// Change string configuration to int value for level.
|
||||
levelKey, levelValue := gutil.MapPossibleItemByKey(m, "Level")
|
||||
if levelValue != nil {
|
||||
|
@ -61,6 +61,9 @@ func (view *View) SetConfigWithMap(m map[string]interface{}) error {
|
||||
if m == nil || len(m) == 0 {
|
||||
return errors.New("configuration cannot be empty")
|
||||
}
|
||||
// The m now is a shallow copy of m.
|
||||
// A little tricky, isn't it?
|
||||
m = gutil.CopyMap(m)
|
||||
// Most common used configuration support for single view path.
|
||||
_, v1 := gutil.MapPossibleItemByKey(m, "paths")
|
||||
_, v2 := gutil.MapPossibleItemByKey(m, "path")
|
||||
|
@ -18,12 +18,18 @@ import (
|
||||
var pattern = `(\w+).+\-\-\s*(.+)`
|
||||
var src = `GF is best! -- John`
|
||||
|
||||
func Benchmark_GF(b *testing.B) {
|
||||
func Benchmark_GF_IsMatchString(b *testing.B) {
|
||||
for i := 0; i < b.N; i++ {
|
||||
gregex.IsMatchString(pattern, src)
|
||||
}
|
||||
}
|
||||
|
||||
func Benchmark_GF_MatchString(b *testing.B) {
|
||||
for i := 0; i < b.N; i++ {
|
||||
gregex.MatchString(pattern, src)
|
||||
}
|
||||
}
|
||||
|
||||
func Benchmark_Compile(b *testing.B) {
|
||||
var wcdRegexp = regexp.MustCompile(pattern)
|
||||
for i := 0; i < b.N; i++ {
|
||||
|
@ -4,7 +4,6 @@
|
||||
// If a copy of the MIT was not distributed with this file,
|
||||
// You can obtain one at https://github.com/gogf/gf.
|
||||
|
||||
// Package gutil provides utility functions.
|
||||
package gutil
|
||||
|
||||
import (
|
||||
@ -17,8 +16,9 @@ var (
|
||||
replaceCharReg, _ = regexp.Compile(`[\-\.\_\s]+`)
|
||||
)
|
||||
|
||||
// MapCopy does memory from map <data> to <copy>.
|
||||
func MapCopy(data map[string]interface{}) (copy map[string]interface{}) {
|
||||
// CopyMap does a shallow copy from map <data> to <copy> for most commonly used map type
|
||||
// map[string]interface{}.
|
||||
func CopyMap(data map[string]interface{}) (copy map[string]interface{}) {
|
||||
copy = make(map[string]interface{}, len(data))
|
||||
for k, v := range data {
|
||||
copy[k] = v
|
||||
|
15
util/gutil/gutil_slice.go
Normal file
15
util/gutil/gutil_slice.go
Normal file
@ -0,0 +1,15 @@
|
||||
// Copyright 2017 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
||||
//
|
||||
// This Source Code Form is subject to the terms of the MIT License.
|
||||
// If a copy of the MIT was not distributed with this file,
|
||||
// You can obtain one at https://github.com/gogf/gf.
|
||||
|
||||
package gutil
|
||||
|
||||
// CopySlice does a shallow copy of slice <data> for most commonly used slice type
|
||||
// []interface{}.
|
||||
func CopySlice(data []interface{}) []interface{} {
|
||||
newData := make([]interface{}, len(data))
|
||||
copy(newData, data)
|
||||
return newData
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user