graphvent/lockable.go

268 lines
8.5 KiB
Go

package graphvent
import (
2023-08-15 18:23:06 -06:00
"github.com/google/uuid"
)
2023-08-15 18:23:06 -06:00
type ReqState byte
2023-08-11 16:00:36 -06:00
const (
Unlocked = ReqState(0)
Unlocking = ReqState(1)
Locked = ReqState(2)
Locking = ReqState(3)
2023-08-15 18:23:06 -06:00
AbortingLock = ReqState(4)
2023-08-11 16:00:36 -06:00
)
type LockableExt struct{
State ReqState `gv:"state"`
ReqID *uuid.UUID `gv:"req_id"`
Owner *NodeID `gv:"owner"`
PendingOwner *NodeID `gv:"pending_owner"`
Requirements map[NodeID]ReqState `gv:"requirements"`
}
2023-07-25 21:43:15 -06:00
func (ext *LockableExt) Type() ExtType {
return LockableExtType
}
func NewLockableExt(requirements []NodeID) *LockableExt {
2023-08-11 16:00:36 -06:00
var reqs map[NodeID]ReqState = nil
if requirements != nil {
reqs = map[NodeID]ReqState{}
for _, id := range(requirements) {
reqs[id] = Unlocked
}
}
2023-07-26 11:56:10 -06:00
return &LockableExt{
2023-08-15 18:23:06 -06:00
State: Unlocked,
Owner: nil,
PendingOwner: nil,
Requirements: reqs,
2023-07-26 11:56:10 -06:00
}
}
// Send the signal to unlock a node from itself
2023-08-15 18:23:06 -06:00
func UnlockLockable(ctx *Context, owner *Node, target NodeID) (uuid.UUID, error) {
msgs := Messages{}
2023-08-15 18:23:06 -06:00
signal := NewLockSignal("unlock")
msgs = msgs.Add(ctx, owner.ID, owner.Key, signal, target)
return signal.Header().ID, ctx.Send(msgs)
}
// Send the signal to lock a node from itself
2023-08-15 18:23:06 -06:00
func LockLockable(ctx *Context, owner *Node, target NodeID) (uuid.UUID, error) {
msgs := Messages{}
2023-08-15 18:23:06 -06:00
signal := NewLockSignal("lock")
msgs = msgs.Add(ctx, owner.ID, owner.Key, signal, target)
return signal.Header().ID, ctx.Send(msgs)
}
func (ext *LockableExt) HandleErrorSignal(ctx *Context, node *Node, source NodeID, signal *ErrorSignal) Messages {
2023-08-15 18:23:06 -06:00
str := signal.Error
ctx.Log.Logf("lockable", "ERROR_SIGNAL: %s->%s %+v", source, node.ID, str)
2023-08-15 18:23:06 -06:00
msgs := Messages {}
switch str {
case "not_unlocked":
if ext.State == Locking {
ext.State = AbortingLock
ext.Requirements[source] = Unlocked
for id, state := range(ext.Requirements) {
if state == Locked {
2023-08-11 16:00:36 -06:00
ext.Requirements[id] = Unlocking
msgs = msgs.Add(ctx, node.ID, node.Key, NewLockSignal("unlock"), id)
}
2023-08-11 16:00:36 -06:00
}
}
2023-08-15 18:23:06 -06:00
case "not_locked":
panic("RECEIVED not_locked, meaning a node thought it held a lock it didn't")
case "not_requirement":
}
2023-08-15 18:23:06 -06:00
return msgs
}
func (ext *LockableExt) HandleLinkSignal(ctx *Context, node *Node, source NodeID, signal *LinkSignal) Messages {
msgs := Messages {}
if ext.State == Unlocked {
switch signal.Action {
case "add":
_, exists := ext.Requirements[signal.NodeID]
if exists == true {
msgs = msgs.Add(ctx, node.ID, node.Key, NewErrorSignal(signal.ID, "already_requirement"), source)
} else {
if ext.Requirements == nil {
ext.Requirements = map[NodeID]ReqState{}
}
ext.Requirements[signal.NodeID] = Unlocked
msgs = msgs.Add(ctx, node.ID, node.Key, NewErrorSignal(signal.ID, "req_added"), source)
}
case "remove":
_, exists := ext.Requirements[signal.NodeID]
if exists == false {
msgs = msgs.Add(ctx, node.ID, node.Key, NewErrorSignal(signal.ID, "not_requirement"), source)
} else {
delete(ext.Requirements, signal.NodeID)
msgs = msgs.Add(ctx, node.ID, node.Key, NewErrorSignal(signal.ID, "req_removed"), source)
}
default:
msgs = msgs.Add(ctx, node.ID, node.Key, NewErrorSignal(signal.ID, "unknown_action"), source)
}
} else {
msgs = msgs.Add(ctx, node.ID, node.Key, NewErrorSignal(signal.ID, "not_unlocked"), source)
}
return msgs
}
2023-08-15 18:23:06 -06:00
// Handle a LockSignal and update the extensions owner/requirement states
func (ext *LockableExt) HandleLockSignal(ctx *Context, node *Node, source NodeID, signal *LockSignal) Messages {
ctx.Log.Logf("lockable", "LOCK_SIGNAL: %s->%s %+v", source, node.ID, signal.State)
2023-08-15 18:23:06 -06:00
msgs := Messages{}
switch signal.State {
case "locked":
2023-08-15 18:23:06 -06:00
state, found := ext.Requirements[source]
if found == false {
msgs = msgs.Add(ctx, node.ID, node.Key, NewErrorSignal(signal.ID, "not_requirement"), source)
2023-08-15 18:23:06 -06:00
} else if state == Locking {
if ext.State == Locking {
2023-08-11 16:00:36 -06:00
ext.Requirements[source] = Locked
2023-08-15 18:23:06 -06:00
reqs := 0
locked := 0
for _, s := range(ext.Requirements) {
reqs += 1
if s == Locked {
locked += 1
}
2023-08-15 18:23:06 -06:00
}
2023-08-15 18:23:06 -06:00
if locked == reqs {
ext.State = Locked
ext.Owner = ext.PendingOwner
msgs = msgs.Add(ctx, node.ID, node.Key, NewLockSignal("locked"), *ext.Owner)
2023-08-15 18:23:06 -06:00
} else {
ctx.Log.Logf("lockable", "PARTIAL LOCK: %s - %d/%d", node.ID, locked, reqs)
}
2023-08-15 18:23:06 -06:00
} else if ext.State == AbortingLock {
ext.Requirements[source] = Unlocking
msgs = msgs.Add(ctx, node.ID, node.Key, NewLockSignal("unlock"), source)
}
}
2023-08-15 18:23:06 -06:00
case "unlocked":
state, found := ext.Requirements[source]
if found == false {
msgs = msgs.Add(ctx, node.ID, node.Key, NewErrorSignal(signal.ID, "not_requirement"), source)
2023-08-15 18:23:06 -06:00
} else if state == Unlocking {
ext.Requirements[source] = Unlocked
reqs := 0
unlocked := 0
for _, s := range(ext.Requirements) {
reqs += 1
if s == Unlocked {
unlocked += 1
}
2023-08-11 16:00:36 -06:00
}
2023-08-15 18:23:06 -06:00
if unlocked == reqs {
old_state := ext.State
ext.State = Unlocked
if old_state == Unlocking {
ext.Owner = ext.PendingOwner
ext.ReqID = nil
msgs = msgs.Add(ctx, node.ID, node.Key, NewLockSignal("unlocked"), *ext.Owner)
2023-08-15 18:23:06 -06:00
} else if old_state == AbortingLock {
msgs = msgs.Add(ctx ,node.ID, node.Key, NewErrorSignal(*ext.ReqID, "not_unlocked"), *ext.PendingOwner)
2023-08-15 18:23:06 -06:00
ext.PendingOwner = ext.Owner
}
} else {
ctx.Log.Logf("lockable", "PARTIAL UNLOCK: %s - %d/%d", node.ID, unlocked, reqs)
2023-08-15 18:23:06 -06:00
}
}
case "lock":
2023-08-15 18:23:06 -06:00
if ext.State == Unlocked {
if len(ext.Requirements) == 0 {
2023-08-15 18:23:06 -06:00
ext.State = Locked
new_owner := source
ext.PendingOwner = &new_owner
ext.Owner = &new_owner
msgs = msgs.Add(ctx, node.ID, node.Key, NewLockSignal("locked"), new_owner)
} else {
2023-08-15 18:23:06 -06:00
ext.State = Locking
id := signal.ID
ext.ReqID = &id
2023-08-15 18:23:06 -06:00
new_owner := source
ext.PendingOwner = &new_owner
for id, state := range(ext.Requirements) {
2023-08-11 16:00:36 -06:00
if state != Unlocked {
ctx.Log.Logf("lockable", "REQ_NOT_UNLOCKED_WHEN_LOCKING")
}
2023-08-11 16:00:36 -06:00
ext.Requirements[id] = Locking
2023-08-15 18:23:06 -06:00
lock_signal := NewLockSignal("lock")
msgs = msgs.Add(ctx, node.ID, node.Key, lock_signal, id)
}
2023-08-15 18:23:06 -06:00
}
} else {
msgs = msgs.Add(ctx, node.ID, node.Key, NewErrorSignal(signal.ID, "not_unlocked"), source)
2023-08-15 18:23:06 -06:00
}
case "unlock":
if ext.State == Locked {
if len(ext.Requirements) == 0 {
ext.State = Unlocked
new_owner := source
ext.PendingOwner = nil
ext.Owner = nil
msgs = msgs.Add(ctx, node.ID, node.Key, NewLockSignal("unlocked"), new_owner)
2023-08-15 18:23:06 -06:00
} else if source == *ext.Owner {
ext.State = Unlocking
id := signal.ID
ext.ReqID = &id
2023-08-15 18:23:06 -06:00
ext.PendingOwner = nil
for id, state := range(ext.Requirements) {
if state != Locked {
ctx.Log.Logf("lockable", "REQ_NOT_LOCKED_WHEN_UNLOCKING")
2023-08-15 18:23:06 -06:00
}
ext.Requirements[id] = Unlocking
lock_signal := NewLockSignal("unlock")
msgs = msgs.Add(ctx, node.ID, node.Key, lock_signal, id)
}
}
2023-08-15 18:23:06 -06:00
} else {
msgs = msgs.Add(ctx, node.ID, node.Key, NewErrorSignal(signal.ID, "not_locked"), source)
}
default:
ctx.Log.Logf("lockable", "LOCK_ERR: unkown state %s", signal.State)
}
2023-08-15 18:23:06 -06:00
return msgs
}
// LockableExts process Up/Down signals by forwarding them to owner, dependency, and requirement nodes
// LockSignal and LinkSignal Direct signals are processed to update the requirement/dependency/lock state
func (ext *LockableExt) Process(ctx *Context, node *Node, source NodeID, signal Signal) Messages {
messages := Messages{}
switch signal.Header().Direction {
case Up:
if ext.Owner != nil {
if *ext.Owner != node.ID {
messages = messages.Add(ctx, node.ID, node.Key, signal, *ext.Owner)
2023-07-09 14:30:30 -06:00
}
2023-07-27 12:20:49 -06:00
}
case Down:
for requirement, _ := range(ext.Requirements) {
messages = messages.Add(ctx, node.ID, node.Key, signal, requirement)
2023-07-27 12:20:49 -06:00
}
case Direct:
switch sig := signal.(type) {
case *LinkSignal:
messages = ext.HandleLinkSignal(ctx, node, source, sig)
case *LockSignal:
messages = ext.HandleLockSignal(ctx, node, source, sig)
case *ErrorSignal:
messages = ext.HandleErrorSignal(ctx, node, source, sig)
2023-07-27 16:21:27 -06:00
default:
}
default:
2023-07-24 17:07:27 -06:00
}
return messages
2023-07-25 21:43:15 -06:00
}