hunter/context.go

84 lines
1.9 KiB
Go
Raw Normal View History

2020-04-07 10:55:41 +00:00
package hunter
2020-04-08 07:18:29 +00:00
import "github.com/474420502/requests"
2020-04-07 10:55:41 +00:00
// TaskContext 上下文
type TaskContext struct {
hunter *Hunter
curPath string
curTaskID string
2020-04-08 07:18:29 +00:00
workflow *requests.Workflow
parent ITaskNode
current ITaskNode
2020-04-07 10:55:41 +00:00
}
// NewContext 任务上下文
func NewContext() *TaskContext {
return &TaskContext{}
}
// AddTask 添加到当前子任务队列
func (cxt *TaskContext) AddTask(itask ITask) {
if children := cxt.current.Children(); children == nil {
cxt.current.SetChildren(cxt.hunter.createQueue())
2020-04-07 10:55:41 +00:00
}
2020-04-08 07:18:29 +00:00
bt := &BaseTask{task: itask}
cxt.current.Children().Push(bt)
2020-04-07 10:55:41 +00:00
}
// AddParentTask 添加到当前任务队列
func (cxt *TaskContext) AddParentTask(itask ITask) {
2020-04-08 07:18:29 +00:00
bt := &BaseTask{task: itask}
cxt.current.Parent().Children().Push(bt)
2020-04-07 17:18:33 +00:00
}
// GetShare 获取share的数据, 存储用的
func (cxt *TaskContext) GetShare(key string) interface{} {
if v, ok := cxt.hunter.share[key]; ok {
2020-04-07 17:18:33 +00:00
return v
}
return nil
}
// SetShare 设置share的数据, 存储用的
func (cxt *TaskContext) SetShare(key string, value interface{}) {
cxt.hunter.share[key] = value
2020-04-07 10:55:41 +00:00
}
2020-04-08 07:18:29 +00:00
// Session Get return session *requests.Session
func (cxt *TaskContext) Session() *requests.Session {
if cxt.hunter.Session() == nil {
cxt.hunter.SetSession(requests.NewSession())
2020-04-08 07:18:29 +00:00
}
return cxt.hunter.Session()
2020-04-08 07:18:29 +00:00
}
// Workflow Get return Workflow *requests.Workflow. not exists, return nil
func (cxt *TaskContext) Workflow() *requests.Workflow {
return cxt.workflow
}
// SetWorkflow Set Workflow *requests.Workflow
func (cxt *TaskContext) SetWorkflow(workflow *requests.Workflow) {
cxt.workflow = workflow
}
// TaskID Get Task ID
func (cxt *TaskContext) TaskID() string {
return cxt.curTaskID
}
// Path curren Task tree path.
func (cxt *TaskContext) Path() string {
return cxt.curPath
}
2020-04-08 07:18:29 +00:00
// Hunt Hunt() = cxt.Workflow().Execute()
func (cxt *TaskContext) Hunt() (*requests.Response, error) {
return cxt.workflow.Execute()
}