Files
CHORUS/vendor/github.com/polydawn/refmt/obj/unmarshalSliceWildcard.go
anthonyrawlins 9bdcbe0447 Integrate BACKBEAT SDK and resolve KACHING license validation
Major integrations and fixes:
- Added BACKBEAT SDK integration for P2P operation timing
- Implemented beat-aware status tracking for distributed operations
- Added Docker secrets support for secure license management
- Resolved KACHING license validation via HTTPS/TLS
- Updated docker-compose configuration for clean stack deployment
- Disabled rollback policies to prevent deployment failures
- Added license credential storage (CHORUS-DEV-MULTI-001)

Technical improvements:
- BACKBEAT P2P operation tracking with phase management
- Enhanced configuration system with file-based secrets
- Improved error handling for license validation
- Clean separation of KACHING and CHORUS deployment stacks

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-06 07:56:26 +10:00

88 lines
3.0 KiB
Go

package obj
import (
"reflect"
. "github.com/polydawn/refmt/tok"
)
type unmarshalMachineSliceWildcard struct {
target_rv reflect.Value // target slice handle
working_rv reflect.Value // working slice (target is set to this at end)
value_rt reflect.Type
valueZero_rv reflect.Value // a zero of the slice's value type (for kicking append)
valueMach UnmarshalMachine
phase unmarshalMachineArrayWildcardPhase
index int
}
func (mach *unmarshalMachineSliceWildcard) Reset(slab *unmarshalSlab, rv reflect.Value, rt reflect.Type) error {
mach.target_rv = rv
mach.working_rv = rv
mach.value_rt = rt.Elem()
mach.valueZero_rv = reflect.Zero(mach.value_rt)
mach.valueMach = slab.requisitionMachine(mach.value_rt)
mach.phase = unmarshalMachineArrayWildcardPhase_initial
mach.index = 0
return nil
}
func (mach *unmarshalMachineSliceWildcard) Step(driver *Unmarshaller, slab *unmarshalSlab, tok *Token) (done bool, err error) {
switch mach.phase {
case unmarshalMachineArrayWildcardPhase_initial:
return mach.step_Initial(driver, slab, tok)
case unmarshalMachineArrayWildcardPhase_acceptValueOrClose:
return mach.step_AcceptValueOrClose(driver, slab, tok)
}
panic("unreachable")
}
func (mach *unmarshalMachineSliceWildcard) step_Initial(_ *Unmarshaller, slab *unmarshalSlab, tok *Token) (done bool, err error) {
// If it's a special state, start an object.
// (Or, blow up if its a special state that's silly).
switch tok.Type {
case TMapOpen:
return true, ErrMalformedTokenStream{tok.Type, "start of array"}
case TArrOpen:
// Great. Consumed.
mach.phase = unmarshalMachineArrayWildcardPhase_acceptValueOrClose
// Initialize the slice.
mach.target_rv.Set(reflect.MakeSlice(mach.target_rv.Type(), 0, 0))
return false, nil
case TMapClose:
return true, ErrMalformedTokenStream{tok.Type, "start of array"}
case TArrClose:
return true, ErrMalformedTokenStream{tok.Type, "start of array"}
case TNull:
mach.target_rv.Set(reflect.Zero(mach.target_rv.Type()))
return true, nil
default:
return true, ErrMalformedTokenStream{tok.Type, "start of array"}
}
}
func (mach *unmarshalMachineSliceWildcard) step_AcceptValueOrClose(driver *Unmarshaller, slab *unmarshalSlab, tok *Token) (done bool, err error) {
// Either form of open token are valid, but
// - an arrClose is ours
// - and a mapClose is clearly invalid.
switch tok.Type {
case TMapClose:
// no special checks for ends of wildcard slice; no such thing as incomplete.
return true, ErrMalformedTokenStream{tok.Type, "start of value or end of array"}
case TArrClose:
mach.target_rv.Set(mach.working_rv)
// release the slab row we requisitioned for our value machine.
slab.release()
return true, nil
}
// Grow the slice if necessary.
mach.working_rv = reflect.Append(mach.working_rv, mach.valueZero_rv)
// Recurse on a handle to the next index.
rv := mach.working_rv.Index(mach.index)
mach.index++
return false, driver.Recurse(tok, rv, mach.value_rt, mach.valueMach)
// Step simply remains `step_AcceptValueOrClose` -- arrays don't have much state machine.
}