2017-11-10 07:05:28 +00:00
|
|
|
package context
|
|
|
|
|
2017-11-27 10:51:03 +00:00
|
|
|
import "sync"
|
|
|
|
|
2017-11-10 07:05:28 +00:00
|
|
|
type ContextKey string
|
|
|
|
|
|
|
|
func (c ContextKey) String() string {
|
|
|
|
return string(c)
|
|
|
|
}
|
2017-11-27 10:51:03 +00:00
|
|
|
|
|
|
|
func NewContext(parent Context) Context {
|
|
|
|
c := &defaultContext{
|
2017-11-27 10:58:54 +00:00
|
|
|
Context: parent,
|
2017-11-27 10:51:03 +00:00
|
|
|
}
|
|
|
|
c.attributes = make(map[string]interface{})
|
|
|
|
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
type Context interface {
|
|
|
|
SetAttribute(key string, value interface{})
|
|
|
|
GetAttribute(key string) (value interface{})
|
|
|
|
RemoveAttribute(key string)
|
|
|
|
ContainsAttribute(key string) (exist bool)
|
|
|
|
}
|
|
|
|
|
|
|
|
type defaultContext struct {
|
2017-11-27 10:58:54 +00:00
|
|
|
Context
|
2017-11-27 10:51:03 +00:00
|
|
|
attributes map[string]interface{}
|
|
|
|
|
|
|
|
mtx sync.RWMutex
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dc *defaultContext) SetAttribute(key string, value interface{}) {
|
|
|
|
dc.checkInitialized()
|
|
|
|
|
|
|
|
dc.mtx.Lock()
|
|
|
|
defer dc.mtx.Unlock()
|
|
|
|
|
|
|
|
dc.attributes[key] = value
|
|
|
|
}
|
|
|
|
|
|
|
|
func (dc *defaultContext) GetAttribute(key string) (value interface{}) {
|
|
|
|
dc.checkInitialized()
|
|
|
|
|
|
|
|
dc.mtx.RLock()
|
|
|
|
defer dc.mtx.RUnlock()
|
|
|
|
|
|
|
|
if _, ok := dc.attributes[key]; ok {
|
|
|
|
return dc.attributes[key]
|
|
|
|
}
|
|
|
|
|
2017-11-27 10:58:54 +00:00
|
|
|
if nil == dc.Context {
|
2017-11-27 10:51:03 +00:00
|
|
|
return nil
|
|
|
|
}
|
2017-11-27 10:58:54 +00:00
|
|
|
return dc.Context.GetAttribute(key)
|
2017-11-27 10:51:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (dc *defaultContext) RemoveAttribute(key string) {
|
|
|
|
dc.checkInitialized()
|
|
|
|
|
|
|
|
dc.mtx.Lock()
|
|
|
|
defer dc.mtx.Unlock()
|
|
|
|
|
|
|
|
if _, ok := dc.attributes[key]; ok {
|
|
|
|
delete(dc.attributes, key)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-11-27 10:58:54 +00:00
|
|
|
if nil == dc.Context {
|
2017-11-27 10:51:03 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-11-27 10:58:54 +00:00
|
|
|
dc.Context.RemoveAttribute(key)
|
2017-11-27 10:51:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (dc *defaultContext) ContainsAttribute(key string) (exist bool) {
|
|
|
|
dc.checkInitialized()
|
|
|
|
|
|
|
|
dc.mtx.RLock()
|
|
|
|
defer dc.mtx.RUnlock()
|
|
|
|
|
|
|
|
if _, ok := dc.attributes[key]; ok {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2017-11-27 10:58:54 +00:00
|
|
|
if nil == dc.Context {
|
2017-11-27 10:51:03 +00:00
|
|
|
return false
|
|
|
|
}
|
2017-11-27 10:58:54 +00:00
|
|
|
return dc.Context.ContainsAttribute(key)
|
2017-11-27 10:51:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (dc *defaultContext) checkInitialized() {
|
|
|
|
if nil == dc.attributes {
|
|
|
|
panic("Attribute Manager: must be initialized")
|
|
|
|
}
|
|
|
|
}
|