mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 20:58:47 +08:00
116 lines
3.2 KiB
Go
116 lines
3.2 KiB
Go
// 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 gmvc
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/gogf/gf/net/ghttp"
|
|
"github.com/gogf/gf/os/gview"
|
|
)
|
|
|
|
// 基于控制器注册的MVC视图基类(一个请求一个视图对象,用完即销毁)
|
|
type View struct {
|
|
mu sync.RWMutex // 并发互斥锁
|
|
view *gview.View // 底层视图对象
|
|
data gview.Params // 视图数据/模板变量
|
|
response *ghttp.Response // 数据返回对象
|
|
}
|
|
|
|
// 创建一个MVC请求中使用的视图对象
|
|
func NewView(w *ghttp.Response) *View {
|
|
return &View{
|
|
view: gview.New(),
|
|
data: make(gview.Params),
|
|
response: w,
|
|
}
|
|
}
|
|
|
|
// 批量绑定模板变量,即调用之后每个线程都会生效,因此有并发安全控制
|
|
func (view *View) Assigns(data gview.Params) {
|
|
view.mu.Lock()
|
|
for k, v := range data {
|
|
view.data[k] = v
|
|
}
|
|
view.mu.Unlock()
|
|
}
|
|
|
|
// 绑定模板变量,即调用之后每个线程都会生效,因此有并发安全控制
|
|
func (view *View) Assign(key string, value interface{}) {
|
|
view.mu.Lock()
|
|
view.data[key] = value
|
|
view.mu.Unlock()
|
|
}
|
|
|
|
// 解析模板,并返回解析后的内容
|
|
func (view *View) Parse(file string) (string, error) {
|
|
view.mu.RLock()
|
|
defer view.mu.RUnlock()
|
|
buffer, err := view.response.ParseTpl(file, view.data)
|
|
return buffer, err
|
|
}
|
|
|
|
// 直接解析模板内容,并返回解析后的内容
|
|
func (view *View) ParseContent(content string) (string, error) {
|
|
view.mu.RLock()
|
|
defer view.mu.RUnlock()
|
|
buffer, err := view.response.ParseTplContent(content, view.data)
|
|
return buffer, err
|
|
}
|
|
|
|
// 使用自定义方法对模板变量执行加锁修改操作
|
|
func (view *View) LockFunc(f func(data gview.Params)) {
|
|
view.mu.Lock()
|
|
defer view.mu.Unlock()
|
|
f(view.data)
|
|
}
|
|
|
|
// 使用自定义方法对模板变量执行加锁读取操作
|
|
func (view *View) RLockFunc(f func(data gview.Params)) {
|
|
view.mu.RLock()
|
|
defer view.mu.RUnlock()
|
|
f(view.data)
|
|
}
|
|
|
|
// BindFunc registers customized template function named <name>
|
|
// with given function <function> to current view object.
|
|
// The <name> is the function name which can be called in template content.
|
|
func (view *View) BindFunc(name string, function interface{}) {
|
|
view.view.BindFunc(name, function)
|
|
}
|
|
|
|
// BindFuncMap registers customized template functions by map to current view object.
|
|
// The key of map is the template function name
|
|
// and the value of map is the address of customized function.
|
|
func (view *View) BindFuncMap(funcMap gview.FuncMap) {
|
|
view.view.BindFuncMap(funcMap)
|
|
}
|
|
|
|
// 解析并显示指定模板
|
|
func (view *View) Display(file ...string) {
|
|
name := "index.tpl"
|
|
if len(file) > 0 {
|
|
name = file[0]
|
|
}
|
|
if content, err := view.Parse(name); err != nil {
|
|
view.response.Write("Tpl Parsing Error: " + err.Error())
|
|
} else {
|
|
view.response.Write(content)
|
|
}
|
|
}
|
|
|
|
// 解析并显示模板内容
|
|
func (view *View) DisplayContent(content string) error {
|
|
if content, err := view.ParseContent(content); err != nil {
|
|
view.response.Write("Tpl Parsing Error: " + err.Error())
|
|
return err
|
|
} else {
|
|
view.response.Write(content)
|
|
}
|
|
return nil
|
|
}
|