micro--go-micro
3e885308a0
Fixes #2988. Brings 'golangci-lint run ./...' to zero issues (was ~373): - errcheck: explicitly ignore fire-and-forget calls with '_ =' (and a small errcheck.exclude-functions list for response writes — json Encoder.Encode, http ResponseWriter.Write, fmt.Fprint*); genuine cases handled. - unused: remove dead code (unexported decls and dead test helpers) and the imports they orphaned. - staticcheck: ST1005 error strings, ST1016 receiver names, S1000/S1017/S1019/ S1023 simplifications, SA4004/SA4006/SA4010 dead code, SA1021 net.IP.Equal, SA6002 (store *[]byte in sync.Pool). - govet: fix a context leak (lostcancel) in internal/util/mdns and move t.Fatal/Fatalf out of goroutines (testinggoroutine) in tests. - ineffassign, unconvert: mechanical fixes. CI: the Lint workflow now runs a blocking full-tree 'golangci-lint run' on pushes and PRs (dropped only-new-issues now that the tree is clean). Verified: go build, go vet, test compilation, and unit tests for the behaviourally-touched packages all pass. Claude-Session: https://claude.ai/code/session_01CmdEY7pYmV5zzwCjNJ4ykL Co-authored-by: Claude <noreply@anthropic.com>
62 行
1.5 KiB
Go
62 行
1.5 KiB
Go
// Copyright 2020 Asim Aslam
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
// Original source: github.com/micro/go-plugins/v3/store/cockroach/metadata.go
|
|
|
|
package postgres
|
|
|
|
import (
|
|
"database/sql/driver"
|
|
"encoding/json"
|
|
"errors"
|
|
)
|
|
|
|
// https://github.com/upper/db/blob/master/postgresql/custom_types.go#L43
|
|
type Metadata map[string]interface{}
|
|
|
|
// Scan satisfies the sql.Scanner interface.
|
|
func (m *Metadata) Scan(src interface{}) error {
|
|
source, ok := src.([]byte)
|
|
if !ok {
|
|
return errors.New("type assertion .([]byte) failed")
|
|
}
|
|
|
|
var i interface{}
|
|
err := json.Unmarshal(source, &i)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
*m, ok = i.(map[string]interface{})
|
|
if !ok {
|
|
return errors.New("type assertion .(map[string]interface{}) failed")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Value satisfies the driver.Valuer interface.
|
|
func (m Metadata) Value() (driver.Value, error) {
|
|
j, err := json.Marshal(m)
|
|
return j, err
|
|
}
|
|
|
|
func toMetadata(m *Metadata) map[string]interface{} {
|
|
md := make(map[string]interface{})
|
|
for k, v := range *m {
|
|
md[k] = v
|
|
}
|
|
return md
|
|
}
|