mirror of
https://github.com/slimtoolkit/slim.git
synced 2025-06-03 04:00:23 +00:00

Similarly to the compose mode, this series of squashed commits adds support for Kubernetes as an execution environment for the target container image. The branch is a few months old, so it has been squashed to a single commit to reduce the complexity of the rebase & merge. Below are the messages from the squashed commits: [Refactoring] Group all Node.js inspect flags into a single DTO With the upcoming addition of Kubernetes support, we need to figure out a way of sharing code between the existing container.Insepector and the new pod.Inspector. In particular, it can be done through shared config objects. [Refactoring] Extract fat image building into a separate function [Refactoring] Extract fat image inspection into a separate subroutine. Bring in Kubernetes client-go dependency Fix github.com/getkin/kin-openapi usage - got broken by version bump Finding K8s workloads Inspecting fat kubernetes workload image Injecting sensor into K8s workload - initial phase Introduce `kubectl` client Injecting sensor into pod (cont.) Get artifacts from the pod [Refactoring] Extract building slim images into a subroutine Put the rest of the build.handler logic to the kubernetes build subroutine Applying Kubernetes manifest(s) [Refactoring] Revamped Kubernetes Workload Finder [Refactoring] Reshape Kubernetes logic Scale down Kubernetes workloads after slimming Restore Kubernetes workload to the original state if no manifest is used [Refactoring] Introduce HTTPProbeOptions struct and refactor the code Basic Kubernetes workload monitoring - CAMEnter, CAMTimeout, CAMSignal, CAMExec Fix (workaround) for kubectl cp missing file permissions master rebase [Refactoring] Remove unused HTTP Probe Proxy flags Fix HTTP probe having no ports Use latest set of e2e tests HTTP probe for Kubernetes workloads Refine Kubernetes-related flag names Bump down Kubernetes deps to v1.22 to keep Go at v1.16
100 lines
2.0 KiB
Go
100 lines
2.0 KiB
Go
//+build !jsoniter_sloppy
|
|
|
|
package jsoniter
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
func (iter *Iterator) skipNumber() {
|
|
if !iter.trySkipNumber() {
|
|
iter.unreadByte()
|
|
if iter.Error != nil && iter.Error != io.EOF {
|
|
return
|
|
}
|
|
iter.ReadFloat64()
|
|
if iter.Error != nil && iter.Error != io.EOF {
|
|
iter.Error = nil
|
|
iter.ReadBigFloat()
|
|
}
|
|
}
|
|
}
|
|
|
|
func (iter *Iterator) trySkipNumber() bool {
|
|
dotFound := false
|
|
for i := iter.head; i < iter.tail; i++ {
|
|
c := iter.buf[i]
|
|
switch c {
|
|
case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
|
|
case '.':
|
|
if dotFound {
|
|
iter.ReportError("validateNumber", `more than one dot found in number`)
|
|
return true // already failed
|
|
}
|
|
if i+1 == iter.tail {
|
|
return false
|
|
}
|
|
c = iter.buf[i+1]
|
|
switch c {
|
|
case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
|
|
default:
|
|
iter.ReportError("validateNumber", `missing digit after dot`)
|
|
return true // already failed
|
|
}
|
|
dotFound = true
|
|
default:
|
|
switch c {
|
|
case ',', ']', '}', ' ', '\t', '\n', '\r':
|
|
if iter.head == i {
|
|
return false // if - without following digits
|
|
}
|
|
iter.head = i
|
|
return true // must be valid
|
|
}
|
|
return false // may be invalid
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (iter *Iterator) skipString() {
|
|
if !iter.trySkipString() {
|
|
iter.unreadByte()
|
|
iter.ReadString()
|
|
}
|
|
}
|
|
|
|
func (iter *Iterator) trySkipString() bool {
|
|
for i := iter.head; i < iter.tail; i++ {
|
|
c := iter.buf[i]
|
|
if c == '"' {
|
|
iter.head = i + 1
|
|
return true // valid
|
|
} else if c == '\\' {
|
|
return false
|
|
} else if c < ' ' {
|
|
iter.ReportError("trySkipString",
|
|
fmt.Sprintf(`invalid control character found: %d`, c))
|
|
return true // already failed
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (iter *Iterator) skipObject() {
|
|
iter.unreadByte()
|
|
iter.ReadObjectCB(func(iter *Iterator, field string) bool {
|
|
iter.Skip()
|
|
return true
|
|
})
|
|
}
|
|
|
|
func (iter *Iterator) skipArray() {
|
|
iter.unreadByte()
|
|
iter.ReadArrayCB(func(iter *Iterator) bool {
|
|
iter.Skip()
|
|
return true
|
|
})
|
|
}
|