You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
725 B
38 lines
725 B
package et_print
|
|
|
|
import (
|
|
"gitea.anxinyun.cn/container/common_models"
|
|
"log"
|
|
"node/stages"
|
|
)
|
|
|
|
type PrintHandler struct {
|
|
stage *stages.Stage
|
|
}
|
|
|
|
func (the *PrintHandler) GetStage() stages.Stage {
|
|
return *the.stage
|
|
}
|
|
|
|
func NewPrintHandler() *PrintHandler {
|
|
the := &PrintHandler{
|
|
stage: stages.NewStage("测试打印"),
|
|
}
|
|
|
|
the.stage.AddProcess(the.printDatas)
|
|
return the
|
|
}
|
|
|
|
func (the *PrintHandler) printDatas(data []*common_models.ProcessData) []*common_models.ProcessData {
|
|
for _, processData := range data {
|
|
the.print(processData)
|
|
}
|
|
return data
|
|
}
|
|
|
|
func (the *PrintHandler) print(p *common_models.ProcessData) *common_models.ProcessData {
|
|
|
|
log.Printf("处理设备[%s]数据", p.DeviceData.Name)
|
|
|
|
return p
|
|
}
|
|
|