package ice import ( "encoding/json" "fmt" "io" "net/http" "strings" "sync/atomic" "time" kit "shylinux.com/x/toolkits" "shylinux.com/x/toolkits/logs" ) type Any = interface{} type List = []Any type Map = map[string]Any type Maps = map[string]string type Handler func(m *Message, arg ...string) type Messages = map[string]*Message type Contexts = map[string]*Context type Commands = map[string]*Command type Actions = map[string]*Action type Configs = map[string]*Config type Caches = map[string]*Cache type Cache struct { Name string Help string Value string } type Config struct { Name string Help string Value Any } type Action struct { Name string Help string Hand Handler List List } type Command struct { Name string Help string Actions Actions Hand Handler RawHand Any List List Meta Map } type Context struct { Name string Help string Caches Caches Configs Configs Commands Commands Contexts Contexts context *Context root *Context server Server id int32 } type Server interface { Begin(m *Message, arg ...string) Start(m *Message, arg ...string) Close(m *Message, arg ...string) } func (c *Context) Cap(key string, arg ...Any) string { kit.If(len(arg) > 0, func() { c.Caches[key].Value = kit.Format(arg[0]) }) return c.Caches[key].Value } func (c *Context) Cmd(m *Message, key string, arg ...string) *Message { return c._command(m, c.Commands[key], key, arg...) } func (c *Context) Prefix(arg ...string) string { return kit.Keys(c.Cap(CTX_FOLLOW), arg) } func (c *Context) Server() Server { return c.server } func (c *Context) ID() int32 { return atomic.AddInt32(&c.id, 1) } func (c *Context) Register(s *Context, x Server, cmd ...string) *Context { kit.For(cmd, func(cmd string) { if s, ok := Info.Index[cmd].(*Context); ok { panic(kit.Format("%s %s registed by %v", ErrWarn, cmd, s.Name)) } Info.Index[cmd] = s }) kit.If(c.Contexts == nil, func() { c.Contexts = Contexts{} }) c.Contexts[s.Name] = s s.root = c.root s.context = c s.server = x return s } func (c *Context) MergeCommands(Commands Commands) *Context { for key, cmd := range Commands { if cmd.Hand == nil && cmd.RawHand == nil { if cmd.RawHand = logs.FileLines(2); cmd.Actions != nil { if action, ok := cmd.Actions[SELECT]; ok { cmd.Name = kit.Select(strings.Replace(action.Name, SELECT, key, 1), cmd.Name) cmd.Help = kit.Select(action.Help, cmd.Help) } } } } configs := Configs{} for k := range Commands { configs[k] = &Config{Value: kit.Data()} } return c.Merge(&Context{Commands: Commands, Configs: configs}) } func (c *Context) Merge(s *Context) *Context { kit.If(c.Commands == nil, func() { c.Commands = Commands{} }) kit.If(c.Commands[CTX_INIT] == nil, func() { c.Commands[CTX_INIT] = &Command{Hand: func(m *Message, arg ...string) { Info.Load(m) }} }) kit.If(c.Commands[CTX_EXIT] == nil, func() { c.Commands[CTX_EXIT] = &Command{Hand: func(m *Message, arg ...string) { Info.Save(m) }} }) merge := func(pre *Command, init bool, key string, cmd *Command, cb Handler) { if cb == nil { return } last := pre.Hand pre.Hand = func(m *Message, arg ...string) { kit.If(init, func() { last(m, arg...) }) defer kit.If(!init, func() { last(m, arg...) }) _key, _cmd := m._key, m._cmd defer func() { m._key, m._cmd = _key, _cmd }() m._key, m._cmd = key, cmd cb(m, arg...) } } for key, cmd := range s.Commands { if pre, ok := c.Commands[key]; ok && s != c { switch key { case CTX_INIT: merge(pre, true, key, cmd, cmd.Hand) continue case CTX_EXIT: merge(pre, false, key, cmd, cmd.Hand) continue } } c.Commands[key] = cmd kit.If(cmd.Meta == nil, func() { cmd.Meta = kit.Dict() }) kit.If(cmd.List == nil, func() { cmd.List = SplitCmd(cmd.Name, cmd.Actions) }) for sub, action := range cmd.Actions { if pre, ok := c.Commands[sub]; ok && s == c { kit.Switch(sub, CTX_INIT, func() { merge(pre, true, key, cmd, action.Hand) }, CTX_EXIT, func() { merge(pre, false, key, cmd, action.Hand) }, ) } if s == c { for _, h := range Info.merges { init, exit := h(c, key, cmd, sub, action) merge(c.Commands[CTX_INIT], true, key, cmd, init) merge(c.Commands[CTX_EXIT], false, key, cmd, exit) } } if help := kit.Split(action.Help, " ::"); len(help) > 0 { if kit.Value(cmd.Meta, kit.Keys("_trans", strings.TrimPrefix(sub, "_")), help[0]); len(help) > 1 { kit.Value(cmd.Meta, kit.Keys("_title", sub), help[1]) } } if action.Hand == nil { continue } kit.If(action.List == nil, func() { action.List = SplitCmd(action.Name, nil) }) kit.If(len(action.List) > 0, func() { cmd.Meta[sub] = action.List }) } } kit.If(c.Configs == nil, func() { c.Configs = Configs{} }) for k, v := range s.Configs { c.Configs[k] = v } return c } func (c *Context) Begin(m *Message, arg ...string) *Context { kit.If(c.Caches == nil, func() { c.Caches = Caches{} }) c.Caches[CTX_STREAM] = &Cache{Name: CTX_STREAM, Value: ""} c.Caches[CTX_STATUS] = &Cache{Name: CTX_STATUS, Value: CTX_BEGIN} c.Caches[CTX_FOLLOW] = &Cache{Name: CTX_FOLLOW, Value: c.Name} kit.If(c.context != nil && c.context != Index, func() { c.Cap(CTX_FOLLOW, kit.Keys(c.context.Cap(CTX_FOLLOW), c.Name)) }) kit.If(c.server != nil, func() { c.server.Begin(m, arg...) }) return c.Merge(c) } func (c *Context) Start(m *Message, arg ...string) bool { m.Log(c.Cap(CTX_STATUS, CTX_START), c.Cap(CTX_FOLLOW)) kit.If(c.server != nil, func() { m.Go(func() { c.server.Start(m, arg...) }, m.Prefix()) }) return true } func (c *Context) Close(m *Message, arg ...string) bool { m.Log(c.Cap(CTX_STATUS, CTX_CLOSE), c.Cap(CTX_FOLLOW)) kit.If(c.server != nil, func() { c.server.Close(m, arg...) }) return true } type Message struct { time time.Time code int Hand bool meta map[string][]string data Map message *Message root *Message _source string _target string source *Context target *Context _cmd *Command _key string _sub string W http.ResponseWriter R *http.Request O io.Writer I io.Reader } func (m *Message) Time(arg ...Any) string { t := m.time if len(arg) > 0 { switch arg := arg[0].(type) { case string: if d, e := time.ParseDuration(arg); e == nil { t, arg = t.Add(d), arg[1:] } } } f := MOD_TIME if len(arg) > 0 { switch p := arg[0].(type) { case string: if f = p; len(arg) > 1 { f = fmt.Sprintf(f, arg[1:]...) } } } return t.Format(f) } func (m *Message) Target() *Context { return m.target } func (m *Message) Source() *Context { return m.source } func (m *Message) Message() *Message { return m.message } func (m *Message) Commands(key string) *Command { return m.Target().Commands[key] } func (m *Message) Actions(key string) *Action { return m._cmd.Actions[key] } func (m *Message) Spawn(arg ...Any) *Message { msg := &Message{ time: time.Now(), code: int(m.target.root.ID()), meta: map[string][]string{}, data: Map{}, message: m, root: m.root, _target: logs.FileLine(2), source: m.target, target: m.target, _cmd: m._cmd, _key: m._key, _sub: m._sub, W: m.W, R: m.R, O: m.O, I: m.I, } for _, val := range arg { switch val := val.(type) { case []byte: json.Unmarshal(val, &msg.meta) case Option: msg.Option(val.Name, val.Value) case Maps: kit.For(val, func(k, v string) { msg.Option(k, v) }) case Map: kit.For(val, func(k string, v Any) { msg.Option(k, v) }) case *Context: msg.target = val case *Command: msg._cmd = val case string: msg._key = val case http.ResponseWriter: msg.W = val case *http.Request: msg.R = val } } return msg } func (m *Message) Start(key string, arg ...string) *Message { return m.Search(key+PT, func(p *Context, s *Context) { s.Start(m.Spawn(s), arg...) }) } func (m *Message) Travel(cb Any) *Message { target := m.target defer func() { m.target = target }() list := []*Context{m.root.target} for i := 0; i < len(list); i++ { switch cb := cb.(type) { case func(*Context, *Context): cb(list[i].context, list[i]) case func(*Context, *Context, string, *Command): m.target = list[i] kit.For(kit.SortedKey(list[i].Commands), func(k string) { cb(list[i].context, list[i], k, list[i].Commands[k]) }) case func(*Context, *Context, string, *Config): m.target = list[i] kit.For(kit.SortedKey(list[i].Configs), func(k string) { cb(list[i].context, list[i], k, list[i].Configs[k]) }) default: m.ErrorNotImplement(cb) } kit.For(kit.SortedKey(list[i].Contexts), func(k string) { list = append(list, list[i].Contexts[k]) }) } return m } func (m *Message) Search(key string, cb Any) *Message { if key == "" { return m } p := m.target.root if key = strings.TrimPrefix(key, "ice."); key == PT { p, key = m.target, "" } else if key == ".." { p, key = m.target.context, "" } else if key == "..." { p, key = m.target.root, "" } else if strings.Contains(key, PT) { ls := strings.Split(key, PT) for _, p = range []*Context{m.target.root, m.target, m.source} { if p == nil { continue } for _, k := range ls[:len(ls)-1] { if p = p.Contexts[k]; p == nil { break } } if p != nil { break } } if p == nil { return m } key = ls[len(ls)-1] } else if ctx, ok := Info.Index[key].(*Context); ok { p = ctx } else { p = m.target } switch cb := cb.(type) { case func(key string, cmd *Command): if key == "" { for k, v := range p.Commands { cb(k, v) } break } if cmd, ok := p.Commands[key]; ok { cb(key, cmd) } case func(p *Context, s *Context, key string, cmd *Command): if key == "" { for k, v := range p.Commands { cb(p.context, p, k, v) } break } for _, p := range []*Context{p, m.target, m.source} { for s := p; s != nil; s = s.context { if cmd, ok := s.Commands[key]; ok { cb(s.context, s, key, cmd) return m } } } case func(p *Context, s *Context, key string, conf *Config): if key == "" { for k, v := range p.Configs { cb(p.context, p, k, v) } break } for _, p := range []*Context{p, m.target, m.source} { for s := p; s != nil; s = s.context { if cmd, ok := s.Configs[key]; ok { cb(s.context, s, key, cmd) return m } } } case func(p *Context, s *Context, key string): cb(p.context, p, key) case func(p *Context, s *Context): cb(p.context, p) default: m.ErrorNotImplement(cb) } return m } func (m *Message) Cmd(arg ...Any) *Message { return m._command(arg...) } func (m *Message) Cmds(arg ...Any) *Message { return m.Go(func() { m._command(arg...) }) } func (m *Message) Cmdx(arg ...Any) string { res := kit.Select("", m._command(arg...).meta[MSG_RESULT], 0) return kit.Select("", res, res != ErrWarn) } func (m *Message) Cmdy(arg ...Any) *Message { return m.Copy(m._command(arg...)) } func (m *Message) Confv(arg ...Any) (val Any) { if m.Spawn().Warn(Info.Important && m.Option("_lock") == "") { m.Warn(true, "what unsafe lock", m.PrefixKey(), m.FormatStack(1, 100)) } run := func(conf *Config) { if len(arg) == 1 { val = conf.Value return } else if len(arg) > 2 { if arg[1] == nil || arg[1] == "" { conf.Value = arg[2] } else { kit.Value(conf.Value, arg[1:]...) } } val = kit.Value(conf.Value, arg[1]) } key := kit.Format(arg[0]) kit.If(key == "", func() { key = m._key }) if conf, ok := m.target.Configs[key]; ok { run(conf) } else if conf, ok := m.source.Configs[key]; ok { run(conf) } else { m.Search(key, func(p *Context, s *Context, key string, conf *Config) { run(conf) }) } return } func (m *Message) Conf(arg ...Any) string { return kit.Format(m.Confv(arg...)) } func (m *Message) Capi(key string, val ...Any) int { kit.If(len(val) > 0, func() { m.Cap(key, kit.Int(m.Cap(key))+kit.Int(val[0])) }) return kit.Int(m.Cap(key)) } func (m *Message) Capv(arg ...Any) Any { key := "" switch val := arg[0].(type) { case string: key, arg = val, arg[1:] } for _, s := range []*Context{m.target} { for c := s; c != nil; c = c.context { if caps, ok := c.Caches[key]; ok { kit.If(len(arg) > 0, func() { caps.Value = kit.Format(arg[0]) }) return caps.Value } } } return nil } func (m *Message) Cap(arg ...Any) string { return kit.Format(m.Capv(arg...)) }