micro--go-micro
4311b73361
* docs: compare Go Micro with Google ADK in the comparison guide Adds a 'vs Agent Frameworks (Google ADK)' section: ADK builds an agent, Go Micro builds the distributed system the agent lives in (agents are services in the mesh). Covers the category difference, a feature table, when to choose each, and MCP/A2A interoperability. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01CmdEY7pYmV5zzwCjNJ4ykL * docs: replace ADK comparison slogan with concrete explanation State plainly what each tool provides (ADK builds an agent process; Go Micro builds the surrounding service mesh) instead of marketing phrasing. * lint: apply golangci-lint autofixes; exclude ST1003 and demo errcheck Mechanical, behaviour-preserving fixes applied by 'golangci-lint run --fix': gofmt, misspell (US spelling), usestdlibvars (http.Method*/Status*), unconvert, and the auto-fixable staticcheck simplifications (QF*, S1017/S1019/S1023/S1039). Config: exclude ST1003 (remaining offenders are exported API renames, e.g. web.Id, which would break compatibility) and skip errcheck for examples/ and internal/harness/ (demo code where fire-and-forget is intentional). Build and test compilation verified. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01CmdEY7pYmV5zzwCjNJ4ykL * lint: WIP cleanup checkpoint (errcheck config + partial fixes) Checkpoint of an in-progress golangci-lint cleanup (background pass). Builds cleanly; lint is not yet zero. Follow-up commit will complete the cleanup and switch CI to a blocking full-tree lint. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01CmdEY7pYmV5zzwCjNJ4ykL --------- Co-authored-by: Claude <noreply@anthropic.com>
71 行
1.3 KiB
Go
71 行
1.3 KiB
Go
package grpc
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
var (
|
|
MaxMessageSize = 1024 * 1024 * 4 // 4Mb
|
|
maxInt = int(^uint(0) >> 1)
|
|
)
|
|
|
|
func decode(r io.Reader) (uint8, []byte, error) {
|
|
header := make([]byte, 5)
|
|
|
|
// read the header
|
|
if _, err := r.Read(header); err != nil {
|
|
return uint8(0), nil, err
|
|
}
|
|
|
|
// get encoding format e.g compressed
|
|
cf := header[0]
|
|
|
|
// get message length
|
|
length := binary.BigEndian.Uint32(header[1:])
|
|
|
|
// no encoding format
|
|
if length == 0 {
|
|
return cf, nil, nil
|
|
}
|
|
|
|
//
|
|
if int64(length) > int64(maxInt) {
|
|
return cf, nil, fmt.Errorf("grpc: received message larger than max length allowed on current machine (%d vs. %d)", length, maxInt)
|
|
}
|
|
if int(length) > MaxMessageSize {
|
|
return cf, nil, fmt.Errorf("grpc: received message larger than max (%d vs. %d)", length, MaxMessageSize)
|
|
}
|
|
|
|
msg := make([]byte, int(length))
|
|
|
|
if _, err := r.Read(msg); err != nil {
|
|
if err == io.EOF {
|
|
err = io.ErrUnexpectedEOF
|
|
}
|
|
return cf, nil, err
|
|
}
|
|
|
|
return cf, msg, nil
|
|
}
|
|
|
|
func encode(cf uint8, buf []byte, w io.Writer) error {
|
|
header := make([]byte, 5)
|
|
|
|
// set compression
|
|
header[0] = cf
|
|
|
|
// write length as header
|
|
binary.BigEndian.PutUint32(header[1:], uint32(len(buf)))
|
|
|
|
// read the header
|
|
if _, err := w.Write(header); err != nil {
|
|
return err
|
|
}
|
|
|
|
// write the buffer
|
|
_, err := w.Write(buf)
|
|
return err
|
|
}
|