Files
gf/os/gview/gview_instance.go

32 lines
790 B
Go
Raw Normal View History

// 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 gview
2019-07-29 21:01:19 +08:00
import "github.com/gogf/gf/container/gmap"
const (
// Default group name for instance usage.
2019-08-19 21:02:44 +08:00
DEFAULT_NAME = "default"
)
2019-06-19 09:06:52 +08:00
var (
// Instances map.
instances = gmap.NewStrAnyMap(true)
)
// Instance returns an instance of View with default settings.
2019-06-11 20:57:43 +08:00
// The parameter <name> is the name for the instance.
func Instance(name ...string) *View {
2019-08-19 21:02:44 +08:00
key := DEFAULT_NAME
2019-07-28 17:37:13 +08:00
if len(name) > 0 && name[0] != "" {
key = name[0]
}
return instances.GetOrSetFuncLock(key, func() interface{} {
return New()
}).(*View)
}