6c92f85d10
Bring the Nexus/Praxis/Hexis integration in line with MAVEN_ECOSYSTEM_ARCHITECTURE.md: - Praxis over HTTP: drop the in-process praxis.db open (praxisstore/ praxistools) and call praxisd's /api/v1/tools/* API via a new praxisClient. Honors the "no component reads another's DB" invariant (AC#12). PraxisConfig.DBPath -> URL. - Hexis confirmation gate: mutating capabilities (ReadOnly=false) now park a bound pendingHexis confirmation and require a spoken "да" before executing; read-only run immediately (AC#7, no auto attention->action). - Capability safety: >1 verb match is ambiguous -> ask instead of firing the first; ambiguous Nexus resolution asks for clarification (AC#2). - Correlation IDs on Hexis execute, recorded in the cross-service trace. - Bug: importance arrives as JSON float64 over HTTP, not int. - Tests: confirm-gate, decline, read-only, and ambiguity paths. Build: vendor/ bakes in the hexis client (replace-directed at a sibling repo outside the Docker context); Dockerfile builds from vendor and no longer `go mod download`s the unreachable replace paths. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
27 lines
874 B
Go
27 lines
874 B
Go
//go:build amd64 || arm64
|
|
|
|
package websocket
|
|
|
|
func mask(b []byte, key uint32) uint32 {
|
|
// TODO: Will enable in v1.9.0.
|
|
return maskGo(b, key)
|
|
/*
|
|
if len(b) > 0 {
|
|
return maskAsm(&b[0], len(b), key)
|
|
}
|
|
return key
|
|
*/
|
|
}
|
|
|
|
// @nhooyr: I am not confident that the amd64 or the arm64 implementations of this
|
|
// function are perfect. There are almost certainly missing optimizations or
|
|
// opportunities for simplification. I'm confident there are no bugs though.
|
|
// For example, the arm64 implementation doesn't align memory like the amd64.
|
|
// Or the amd64 implementation could use AVX512 instead of just AVX2.
|
|
// The AVX2 code I had to disable anyway as it wasn't performing as expected.
|
|
// See https://github.com/nhooyr/websocket/pull/326#issuecomment-1771138049
|
|
//
|
|
//go:noescape
|
|
//lint:ignore U1000 disabled till v1.9.0
|
|
func maskAsm(b *byte, len int, key uint32) uint32
|