2023-05-29 19:17:52 -06:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2023-05-30 21:50:59 -06:00
|
|
|
"log"
|
2023-05-29 19:17:52 -06:00
|
|
|
"errors"
|
|
|
|
"reflect"
|
2023-05-29 23:54:52 -06:00
|
|
|
"sort"
|
2023-06-02 17:31:29 -06:00
|
|
|
"sync"
|
2023-05-29 19:17:52 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
// Update the events listeners, and notify the parent to do the same
|
2023-06-02 17:31:29 -06:00
|
|
|
func (event * BaseEvent) update(signal GraphSignal) {
|
2023-06-01 22:42:47 -06:00
|
|
|
event.signal <- signal
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
if event.parent != nil && signal.Type() != "abort"{
|
2023-06-03 01:38:35 -06:00
|
|
|
SendUpdate(event.parent, signal)
|
2023-06-02 17:31:29 -06:00
|
|
|
} else if signal.Type() == "abort" {
|
|
|
|
for _, child := range(event.Children()) {
|
2023-06-03 01:38:35 -06:00
|
|
|
SendUpdate(child, signal)
|
2023-06-02 17:31:29 -06:00
|
|
|
}
|
2023-05-29 19:17:52 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type EventInfo interface {
|
|
|
|
}
|
|
|
|
|
|
|
|
type BaseEventInfo interface {
|
|
|
|
EventInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
type EventQueueInfo struct {
|
|
|
|
EventInfo
|
|
|
|
priority int
|
|
|
|
state string
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewEventQueueInfo(priority int) * EventQueueInfo {
|
|
|
|
info := &EventQueueInfo{
|
|
|
|
priority: priority,
|
|
|
|
state: "queued",
|
|
|
|
}
|
|
|
|
|
|
|
|
return info
|
|
|
|
}
|
|
|
|
|
|
|
|
// Event is the interface that event tree nodes must implement
|
|
|
|
type Event interface {
|
|
|
|
GraphNode
|
|
|
|
Children() []Event
|
2023-06-02 17:31:29 -06:00
|
|
|
LockChildren()
|
|
|
|
UnlockChildren()
|
|
|
|
InfoType() reflect.Type
|
2023-05-29 19:17:52 -06:00
|
|
|
ChildInfo(event Event) EventInfo
|
|
|
|
Parent() Event
|
2023-06-02 17:31:29 -06:00
|
|
|
LockParent()
|
|
|
|
UnlockParent()
|
|
|
|
Action(action string) (func()(string, error), bool)
|
2023-06-03 01:38:35 -06:00
|
|
|
Handler(signal_type string) (func(GraphSignal) (string, error), bool)
|
2023-05-29 19:17:52 -06:00
|
|
|
RequiredResources() []Resource
|
2023-05-29 23:54:52 -06:00
|
|
|
DoneResource() Resource
|
2023-06-02 17:31:29 -06:00
|
|
|
|
|
|
|
finish() error
|
|
|
|
|
|
|
|
addChild(child Event, info EventInfo)
|
|
|
|
setParent(parent Event)
|
2023-05-29 19:17:52 -06:00
|
|
|
}
|
|
|
|
|
2023-06-03 01:38:35 -06:00
|
|
|
func (event * BaseEvent) Handler(signal_type string) (func(GraphSignal)(string, error), bool) {
|
2023-06-02 17:31:29 -06:00
|
|
|
handler, exists := event.handlers[signal_type]
|
|
|
|
return handler, exists
|
|
|
|
}
|
|
|
|
|
|
|
|
func FindChild(event Event, id string) Event {
|
|
|
|
if id == event.ID() {
|
|
|
|
return event
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, child := range event.Children() {
|
|
|
|
result := FindChild(child, id)
|
|
|
|
if result != nil {
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func CheckInfoType(event Event, info EventInfo) bool {
|
|
|
|
if event.InfoType() == nil || info == nil {
|
|
|
|
if event.InfoType() == nil && info == nil {
|
|
|
|
return true
|
|
|
|
} else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return event.InfoType() == reflect.TypeOf(info)
|
2023-05-29 23:54:52 -06:00
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
func AddChild(event Event, child Event, info EventInfo) error {
|
|
|
|
if CheckInfoType(event, info) == false {
|
|
|
|
return errors.New("AddChild got wrong type")
|
|
|
|
}
|
|
|
|
|
|
|
|
event.LockParent()
|
|
|
|
if event.Parent() != nil {
|
|
|
|
event.UnlockParent()
|
|
|
|
return errors.New("Parent already registered")
|
2023-05-30 20:45:16 -06:00
|
|
|
}
|
2023-06-02 17:31:29 -06:00
|
|
|
|
|
|
|
event.LockChildren()
|
|
|
|
|
|
|
|
for _, c := range(event.Children()) {
|
|
|
|
if c.ID() == child.ID() {
|
|
|
|
event.UnlockChildren()
|
|
|
|
event.UnlockParent()
|
|
|
|
return errors.New("Child already in event")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// After all the checks are done, update the state of child + parent, then unlock and update
|
|
|
|
child.setParent(event)
|
|
|
|
event.addChild(child, info)
|
|
|
|
|
|
|
|
event.UnlockChildren()
|
|
|
|
event.UnlockParent()
|
|
|
|
|
2023-06-03 01:38:35 -06:00
|
|
|
update := NewSignal(event, "child_added")
|
|
|
|
update.description = child.Name()
|
2023-06-02 17:31:29 -06:00
|
|
|
SendUpdate(event, NewSignal(event, "child_added"))
|
2023-05-29 23:54:52 -06:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
func RunEvent(event Event) error {
|
|
|
|
log.Printf("EVENT_RUN: %s", event.Name())
|
2023-06-03 01:38:35 -06:00
|
|
|
go SendUpdate(event, NewSignal(event, "event_start"))
|
2023-06-02 17:31:29 -06:00
|
|
|
next_action := "start"
|
|
|
|
var err error = nil
|
|
|
|
for next_action != "" {
|
|
|
|
action, exists := event.Action(next_action)
|
|
|
|
if exists == false {
|
|
|
|
error_str := fmt.Sprintf("%s is not a valid action", next_action)
|
|
|
|
return errors.New(error_str)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("EVENT_ACTION: %s - %s", event.Name(), next_action)
|
|
|
|
next_action, err = action()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("EVENT_RUN_DONE: %s", event.Name())
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func AbortEvent(event Event) error {
|
|
|
|
signal := NewSignal(event, "abort")
|
|
|
|
SendUpdate(event, signal)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func LockResources(event Event) error {
|
2023-05-29 23:54:52 -06:00
|
|
|
locked_resources := []Resource{}
|
2023-06-01 13:11:32 -06:00
|
|
|
var lock_err error = nil
|
2023-05-29 23:54:52 -06:00
|
|
|
for _, resource := range(event.RequiredResources()) {
|
2023-06-02 17:31:29 -06:00
|
|
|
err := LockResource(resource, event)
|
2023-05-29 23:54:52 -06:00
|
|
|
if err != nil {
|
2023-06-01 13:11:32 -06:00
|
|
|
lock_err = err
|
|
|
|
break
|
2023-05-29 23:54:52 -06:00
|
|
|
}
|
2023-05-30 00:00:14 -06:00
|
|
|
locked_resources = append(locked_resources, resource)
|
2023-05-29 23:54:52 -06:00
|
|
|
}
|
|
|
|
|
2023-06-01 13:11:32 -06:00
|
|
|
if lock_err != nil {
|
2023-05-29 23:54:52 -06:00
|
|
|
for _, resource := range(locked_resources) {
|
2023-06-02 17:31:29 -06:00
|
|
|
UnlockResource(resource, event)
|
2023-05-29 23:54:52 -06:00
|
|
|
}
|
2023-06-01 13:11:32 -06:00
|
|
|
return lock_err
|
2023-06-02 17:31:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, resource := range(locked_resources) {
|
|
|
|
NotifyResourceLocked(resource)
|
2023-05-29 23:54:52 -06:00
|
|
|
}
|
2023-06-01 13:11:32 -06:00
|
|
|
|
2023-05-29 23:54:52 -06:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
func FinishEvent(event Event) error {
|
|
|
|
// TODO make more 'safe' like LockResources, or make UnlockResource not return errors
|
2023-06-01 13:48:38 -06:00
|
|
|
log.Printf("EVENT_FINISH: %s", event.Name())
|
2023-05-30 00:00:14 -06:00
|
|
|
for _, resource := range(event.RequiredResources()) {
|
2023-06-02 17:31:29 -06:00
|
|
|
err := UnlockResource(resource, event)
|
2023-05-30 00:00:14 -06:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2023-06-02 17:31:29 -06:00
|
|
|
NotifyResourceUnlocked(resource)
|
2023-05-30 00:00:14 -06:00
|
|
|
}
|
2023-06-01 22:42:47 -06:00
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
err := UnlockResource(event.DoneResource(), event)
|
2023-06-01 13:48:38 -06:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-06-01 22:42:47 -06:00
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
NotifyResourceUnlocked(event.DoneResource())
|
2023-06-01 22:42:47 -06:00
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
err = event.finish()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-06-01 22:42:47 -06:00
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
SendUpdate(event, NewSignal(event, "event_done"))
|
|
|
|
return nil
|
2023-05-29 23:54:52 -06:00
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
// BaseEvent is the most basic event that can exist in the event tree.
|
|
|
|
// On start it automatically transitions to completion.
|
|
|
|
// It can optionally require events, which will all need to be locked to start it
|
|
|
|
// It can optionally create resources, which will be locked by default and unlocked on completion
|
|
|
|
// This node by itself doesn't implement any special behaviours for children, so they will be ignored.
|
|
|
|
// When starter, this event automatically transitions to completion and unlocks all it's resources(including created)
|
|
|
|
type BaseEvent struct {
|
|
|
|
BaseNode
|
|
|
|
done_resource Resource
|
|
|
|
required_resources []Resource
|
|
|
|
children []Event
|
|
|
|
child_info map[string]EventInfo
|
|
|
|
child_lock sync.Mutex
|
|
|
|
actions map[string]func() (string, error)
|
2023-06-03 01:38:35 -06:00
|
|
|
handlers map[string]func(GraphSignal) (string, error)
|
2023-06-02 17:31:29 -06:00
|
|
|
parent Event
|
|
|
|
parent_lock sync.Mutex
|
|
|
|
abort chan string
|
2023-05-30 20:45:16 -06:00
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
func (event * BaseEvent) Action(action string) (func() (string, error), bool) {
|
|
|
|
action_fn, exists := event.actions[action]
|
|
|
|
return action_fn, exists
|
2023-05-29 19:17:52 -06:00
|
|
|
}
|
|
|
|
|
2023-05-30 20:45:16 -06:00
|
|
|
func NewBaseEvent(name string, description string, required_resources []Resource) (BaseEvent) {
|
2023-05-29 19:17:52 -06:00
|
|
|
done_resource := NewResource("event_done", "signal that event is done", []Resource{})
|
2023-05-30 20:45:16 -06:00
|
|
|
event := BaseEvent{
|
2023-05-29 19:17:52 -06:00
|
|
|
BaseNode: BaseNode{
|
|
|
|
name: name,
|
|
|
|
description: description,
|
2023-05-31 00:37:51 -06:00
|
|
|
id: randid(),
|
2023-06-02 17:31:29 -06:00
|
|
|
signal: make(chan GraphSignal, 100),
|
2023-06-01 22:42:47 -06:00
|
|
|
listeners: map[chan GraphSignal] chan GraphSignal{},
|
2023-05-29 19:17:52 -06:00
|
|
|
},
|
|
|
|
parent: nil,
|
|
|
|
children: []Event{},
|
2023-06-02 17:31:29 -06:00
|
|
|
child_info: map[string]EventInfo{},
|
2023-05-29 23:54:52 -06:00
|
|
|
done_resource: done_resource,
|
2023-05-29 19:17:52 -06:00
|
|
|
required_resources: required_resources,
|
2023-05-30 21:50:59 -06:00
|
|
|
actions: map[string]func()(string, error){},
|
2023-06-03 01:38:35 -06:00
|
|
|
handlers: map[string]func(GraphSignal)(string, error){},
|
2023-05-30 20:45:16 -06:00
|
|
|
abort: make(chan string, 1),
|
2023-05-29 19:17:52 -06:00
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
LockResource(event.done_resource, &event)
|
|
|
|
|
2023-06-01 22:42:47 -06:00
|
|
|
event.actions["wait"] = func() (string, error) {
|
|
|
|
signal := <- event.signal
|
|
|
|
if signal.Type() == "abort" {
|
|
|
|
return "", errors.New("State machine aborted by signal")
|
|
|
|
} else if signal.Type() == "do_action" {
|
|
|
|
return signal.Description(), nil
|
|
|
|
} else {
|
2023-06-02 17:31:29 -06:00
|
|
|
signal_fn, exists := event.Handler(signal.Type())
|
2023-06-01 22:42:47 -06:00
|
|
|
if exists == true {
|
2023-06-03 01:38:35 -06:00
|
|
|
return signal_fn(signal)
|
2023-06-01 22:42:47 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// ignore signals other than "abort" and "do_action"
|
|
|
|
return "wait", nil
|
|
|
|
}
|
|
|
|
|
2023-05-30 20:45:16 -06:00
|
|
|
return event
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewEvent(name string, description string, required_resources []Resource) (* BaseEvent) {
|
|
|
|
event := NewBaseEvent(name, description, required_resources)
|
|
|
|
event_ptr := &event
|
|
|
|
|
2023-05-30 21:50:59 -06:00
|
|
|
event_ptr.actions["start"] = func() (string, error) {
|
2023-05-29 23:54:52 -06:00
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
|
2023-05-30 20:45:16 -06:00
|
|
|
return event_ptr
|
2023-05-29 19:17:52 -06:00
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
func (event * BaseEvent) finish() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (event * BaseEvent) InfoType() reflect.Type {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-06-01 22:42:47 -06:00
|
|
|
// EventQueue is a basic event that can have children.
|
|
|
|
// On start, it attempts to start it's children from the highest 'priority'
|
|
|
|
type EventQueue struct {
|
|
|
|
BaseEvent
|
|
|
|
listened_resources map[string]Resource
|
2023-06-02 17:31:29 -06:00
|
|
|
queue_lock sync.Mutex
|
2023-06-01 22:42:47 -06:00
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
func (queue * EventQueue) finish() error {
|
2023-06-01 22:42:47 -06:00
|
|
|
for _, resource := range(queue.listened_resources) {
|
|
|
|
resource.UnregisterChannel(queue.signal)
|
|
|
|
}
|
2023-06-02 17:31:29 -06:00
|
|
|
return nil
|
2023-06-01 22:42:47 -06:00
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
func (queue * EventQueue) InfoType() reflect.Type {
|
|
|
|
return reflect.TypeOf((*EventQueueInfo)(nil))
|
|
|
|
}
|
2023-06-01 22:42:47 -06:00
|
|
|
|
2023-05-29 23:54:52 -06:00
|
|
|
func NewEventQueue(name string, description string, required_resources []Resource) (* EventQueue) {
|
2023-05-29 19:17:52 -06:00
|
|
|
queue := &EventQueue{
|
2023-05-30 20:45:16 -06:00
|
|
|
BaseEvent: NewBaseEvent(name, description, []Resource{}),
|
2023-06-01 22:42:47 -06:00
|
|
|
listened_resources: map[string]Resource{},
|
2023-05-29 19:17:52 -06:00
|
|
|
}
|
|
|
|
|
2023-05-30 21:50:59 -06:00
|
|
|
queue.actions["start"] = func() (string, error) {
|
2023-05-29 23:54:52 -06:00
|
|
|
return "queue_event", nil
|
|
|
|
}
|
|
|
|
|
2023-05-30 21:50:59 -06:00
|
|
|
queue.actions["queue_event"] = func() (string, error) {
|
2023-05-30 00:00:14 -06:00
|
|
|
// Copy the events to sort the list
|
2023-06-02 17:31:29 -06:00
|
|
|
queue.LockChildren()
|
2023-05-29 23:54:52 -06:00
|
|
|
copied_events := make([]Event, len(queue.Children()))
|
|
|
|
copy(copied_events, queue.Children())
|
|
|
|
less := func(i int, j int) bool {
|
|
|
|
info_i := queue.ChildInfo(copied_events[i]).(*EventQueueInfo)
|
|
|
|
info_j := queue.ChildInfo(copied_events[j]).(*EventQueueInfo)
|
|
|
|
return info_i.priority < info_j.priority
|
|
|
|
}
|
|
|
|
sort.SliceStable(copied_events, less)
|
|
|
|
|
|
|
|
wait := false
|
2023-06-01 22:42:47 -06:00
|
|
|
needed_resources := map[string]Resource{}
|
2023-05-29 23:54:52 -06:00
|
|
|
for _, event := range(copied_events) {
|
2023-06-01 22:42:47 -06:00
|
|
|
// make sure all the required resources are registered to update the event
|
2023-06-01 13:11:32 -06:00
|
|
|
for _, resource := range(event.RequiredResources()) {
|
2023-06-01 22:42:47 -06:00
|
|
|
needed_resources[resource.ID()] = resource
|
2023-06-01 13:11:32 -06:00
|
|
|
}
|
|
|
|
|
2023-05-29 23:54:52 -06:00
|
|
|
info := queue.ChildInfo(event).(*EventQueueInfo)
|
|
|
|
if info.state == "queued" {
|
|
|
|
wait = true
|
|
|
|
// Try to lock it
|
2023-06-02 17:31:29 -06:00
|
|
|
err := LockResources(event)
|
2023-05-29 23:54:52 -06:00
|
|
|
// start in new goroutine
|
|
|
|
if err != nil {
|
2023-06-03 01:54:14 -06:00
|
|
|
//log.Printf("Failed to lock %s: %s", event.Name(), err)
|
2023-05-29 23:54:52 -06:00
|
|
|
} else {
|
|
|
|
info.state = "running"
|
2023-06-01 13:11:32 -06:00
|
|
|
log.Printf("EVENT_START: %s", event.Name())
|
2023-05-30 20:45:16 -06:00
|
|
|
go func(event Event, info * EventQueueInfo, queue Event) {
|
2023-06-01 13:11:32 -06:00
|
|
|
log.Printf("EVENT_GOROUTINE: %s", event.Name())
|
2023-06-02 17:31:29 -06:00
|
|
|
err := RunEvent(event)
|
2023-06-01 13:11:32 -06:00
|
|
|
if err != nil {
|
|
|
|
log.Printf("EVENT_ERROR: %s", err)
|
|
|
|
}
|
2023-05-29 23:54:52 -06:00
|
|
|
info.state = "done"
|
2023-06-02 17:31:29 -06:00
|
|
|
FinishEvent(event)
|
2023-05-29 23:54:52 -06:00
|
|
|
}(event, info, queue)
|
|
|
|
}
|
|
|
|
} else if info.state == "running" {
|
|
|
|
wait = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
|
2023-06-01 22:42:47 -06:00
|
|
|
for _, resource := range(needed_resources) {
|
2023-06-03 01:38:35 -06:00
|
|
|
_, exists := queue.listened_resources[resource.ID()]
|
|
|
|
if exists == false {
|
|
|
|
log.Printf("REGISTER_RESOURCE: %s - %s", queue.Name(), resource.Name())
|
|
|
|
queue.listened_resources[resource.ID()] = resource
|
|
|
|
resource.RegisterChannel(queue.signal)
|
|
|
|
}
|
2023-06-01 22:42:47 -06:00
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
queue.UnlockChildren()
|
|
|
|
|
2023-05-29 23:54:52 -06:00
|
|
|
if wait == true {
|
|
|
|
return "wait", nil
|
|
|
|
} else {
|
|
|
|
return "", nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-30 21:50:59 -06:00
|
|
|
queue.actions["event_done"] = func() (string, error) {
|
2023-05-30 20:45:16 -06:00
|
|
|
return "queue_event", nil
|
|
|
|
}
|
|
|
|
|
2023-06-01 13:11:32 -06:00
|
|
|
queue.actions["resource_update"] = func() (string, error) {
|
2023-05-30 21:50:59 -06:00
|
|
|
return "queue_event", nil
|
|
|
|
}
|
|
|
|
|
2023-06-03 01:38:35 -06:00
|
|
|
queue.handlers["arena_connected"] = func(signal GraphSignal) (string, error) {
|
|
|
|
return "queue_event", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
queue.handlers["child_added"] = func(signal GraphSignal) (string, error) {
|
2023-05-29 23:54:52 -06:00
|
|
|
return "queue_event", nil
|
|
|
|
}
|
2023-05-29 19:17:52 -06:00
|
|
|
|
2023-06-03 01:38:35 -06:00
|
|
|
queue.handlers["lock_changed"] = func(signal GraphSignal) (string, error) {
|
2023-06-01 22:42:47 -06:00
|
|
|
return "queue_event", nil
|
|
|
|
}
|
|
|
|
|
2023-06-03 01:38:35 -06:00
|
|
|
queue.handlers["event_done"] = func(signal GraphSignal) (string, error) {
|
2023-06-01 22:42:47 -06:00
|
|
|
return "queue_event", nil
|
|
|
|
}
|
|
|
|
|
2023-05-29 23:54:52 -06:00
|
|
|
return queue
|
2023-05-29 19:17:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func (event * BaseEvent) Parent() Event {
|
|
|
|
return event.parent
|
|
|
|
}
|
|
|
|
|
|
|
|
func (event * BaseEvent) RequiredResources() []Resource {
|
|
|
|
return event.required_resources
|
|
|
|
}
|
|
|
|
|
2023-05-29 23:54:52 -06:00
|
|
|
func (event * BaseEvent) DoneResource() Resource {
|
|
|
|
return event.done_resource
|
2023-05-29 19:17:52 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func (event * BaseEvent) Children() []Event {
|
|
|
|
return event.children
|
|
|
|
}
|
|
|
|
|
|
|
|
func (event * BaseEvent) ChildInfo(idx Event) EventInfo {
|
2023-06-02 17:31:29 -06:00
|
|
|
val, ok := event.child_info[idx.ID()]
|
2023-05-29 19:17:52 -06:00
|
|
|
if ok == false {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return val
|
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
func (event * BaseEvent) LockChildren() {
|
|
|
|
event.child_lock.Lock()
|
2023-05-29 19:17:52 -06:00
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
func (event * BaseEvent) UnlockChildren() {
|
|
|
|
event.child_lock.Unlock()
|
2023-05-29 19:17:52 -06:00
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
func (event * BaseEvent) LockParent() {
|
|
|
|
event.parent_lock.Lock()
|
2023-05-29 19:17:52 -06:00
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
func (event * BaseEvent) UnlockParent() {
|
|
|
|
event.parent_lock.Unlock()
|
2023-05-29 19:17:52 -06:00
|
|
|
}
|
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
func (event * BaseEvent) setParent(parent Event) {
|
|
|
|
event.parent = parent
|
|
|
|
}
|
2023-05-29 19:17:52 -06:00
|
|
|
|
2023-06-02 17:31:29 -06:00
|
|
|
func (event * BaseEvent) addChild(child Event, info EventInfo) {
|
|
|
|
event.children = append(event.children, child)
|
|
|
|
event.child_info[child.ID()] = info
|
2023-05-29 19:17:52 -06:00
|
|
|
}
|