repo
stringlengths
6
47
file_url
stringlengths
77
269
file_path
stringlengths
5
186
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-07 08:35:43
2026-01-07 08:55:24
truncated
bool
2 classes
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/tools/goctl/migrate/migrate.go
tools/goctl/migrate/migrate.go
package migrate import ( "bytes" "fmt" "go/ast" "go/format" "go/parser" "go/token" "io/fs" "os" "path/filepath" "strings" "time" "github.com/gookit/color" "github.com/spf13/cobra" "github.com/zeromicro/go-zero/tools/goctl/util/console" "github.com/zeromicro/go-zero/tools/goctl/util/ctx" ) const defaul...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/tools/goctl/migrate/cancel+polyfill.go
tools/goctl/migrate/cancel+polyfill.go
//go:build windows package migrate func cancelOnSignals() { }
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/tools/goctl/migrate/mod.go
tools/goctl/migrate/mod.go
package migrate import ( "errors" "fmt" "os" "slices" "time" "github.com/zeromicro/go-zero/tools/goctl/rpc/execx" "github.com/zeromicro/go-zero/tools/goctl/util/console" "github.com/zeromicro/go-zero/tools/goctl/util/ctx" ) const ( deprecatedGoZeroMod = "github.com/tal-tech/go-zero" deprecatedBuilderx = "...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/tools/goctl/migrate/cmd.go
tools/goctl/migrate/cmd.go
package migrate import "github.com/zeromicro/go-zero/tools/goctl/internal/cobrax" var ( boolVarVerbose bool stringVarVersion string // Cmd describes a migrate command. Cmd = cobrax.NewCommand("migrate", cobrax.WithRunE(migrate)) ) func init() { migrateCmdFlags := Cmd.Flags() migrateCmdFlags.BoolVarP(&boolVar...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/tools/goctl/migrate/version.go
tools/goctl/migrate/version.go
package migrate import ( "fmt" "io" "net/http" "strings" "time" "github.com/zeromicro/go-zero/tools/goctl/util/console" ) var client = http.Client{ Timeout: 5 * time.Second, } func getLatest(repo string, verbose bool) ([]string, error) { log := func(err error) { console.Warning("get latest versions failed...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/tools/goctl/kube/kube.go
tools/goctl/kube/kube.go
package kube import ( _ "embed" "errors" "fmt" "text/template" "github.com/gookit/color" "github.com/spf13/cobra" "github.com/zeromicro/go-zero/tools/goctl/util" "github.com/zeromicro/go-zero/tools/goctl/util/pathx" ) const ( category = "kube" deployTemplateFile = "deployment.tpl" jobTemplateFil...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/tools/goctl/kube/cmd.go
tools/goctl/kube/cmd.go
package kube import "github.com/zeromicro/go-zero/tools/goctl/internal/cobrax" var ( varStringName string varStringNamespace string varStringImage string varStringSecret string varIntRequestCpu int varIntRequestMem int varIntLimitCpu int varIntLimi...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/tools/goctl/quickstart/quickstart.go
tools/goctl/quickstart/quickstart.go
package quickstart import ( "fmt" "os" "path/filepath" "github.com/spf13/cobra" "github.com/zeromicro/go-zero/core/logx" "github.com/zeromicro/go-zero/tools/goctl/util/console" "github.com/zeromicro/go-zero/tools/goctl/util/ctx" "github.com/zeromicro/go-zero/tools/goctl/util/pathx" ) const baseDir = "greet" ...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/tools/goctl/quickstart/cmd.go
tools/goctl/quickstart/cmd.go
package quickstart import "github.com/zeromicro/go-zero/tools/goctl/internal/cobrax" const ( serviceTypeMono = "mono" serviceTypeMicro = "micro" ) var ( varStringServiceType string // Cmd describes the command to run. Cmd = cobrax.NewCommand("quickstart", cobrax.WithRunE(run)) ) func init() { Cmd.Flags().St...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/tools/goctl/quickstart/mono.go
tools/goctl/quickstart/mono.go
package quickstart import ( _ "embed" "os" "path/filepath" "github.com/zeromicro/go-zero/core/logx" "github.com/zeromicro/go-zero/tools/goctl/api/gogen" "github.com/zeromicro/go-zero/tools/goctl/pkg/golang" "github.com/zeromicro/go-zero/tools/goctl/util" "github.com/zeromicro/go-zero/tools/goctl/util/pathx" )...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/tools/goctl/quickstart/run.go
tools/goctl/quickstart/run.go
package quickstart import ( "os" "os/exec" "runtime" "github.com/zeromicro/go-zero/tools/goctl/vars" ) func goStart(dir string) { execCommand(dir, "go run .") } func goModTidy(dir string) int { log.Debug(">> go mod tidy") return execCommand(dir, "go mod tidy") } func execCommand(dir, arg string, envArgs ......
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/tools/goctl/quickstart/micro.go
tools/goctl/quickstart/micro.go
package quickstart import ( _ "embed" "os" "path/filepath" "github.com/zeromicro/go-zero/core/logx" "github.com/zeromicro/go-zero/core/service" "github.com/zeromicro/go-zero/tools/goctl/util/pathx" ) const protoName = "greet.proto" var ( //go:embed idl/greet.proto protocContent string //go:embed idl/rpc.ya...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/tools/goctl/vars/settings.go
tools/goctl/vars/settings.go
package vars const ( // ProjectName the const value of zero ProjectName = "zero" // ProjectOpenSourceURL the github url of go-zero ProjectOpenSourceURL = "github.com/zeromicro/go-zero" // OsWindows represents os windows OsWindows = "windows" // OsMac represents os mac OsMac = "darwin" // OsLinux represents os...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/gateway/server_test.go
gateway/server_test.go
package gateway import ( "context" "errors" "io" "log" "net" "net/http" "net/http/httptest" "testing" "time" "github.com/stretchr/testify/assert" "github.com/zeromicro/go-zero/core/conf" "github.com/zeromicro/go-zero/core/discov" "github.com/zeromicro/go-zero/core/logx" "github.com/zeromicro/go-zero/cor...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/gateway/config.go
gateway/config.go
package gateway import ( "github.com/zeromicro/go-zero/rest" "github.com/zeromicro/go-zero/zrpc" ) type ( // GatewayConf is the configuration for gateway. GatewayConf struct { rest.RestConf Upstreams []Upstream } // HttpClientConf is the configuration for an HTTP client. HttpClientConf struct { Target ...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/gateway/server.go
gateway/server.go
package gateway import ( "context" "fmt" "io" "net/http" "net/url" "strings" "time" "github.com/fullstorydev/grpcurl" "github.com/golang/protobuf/jsonpb" "github.com/jhump/protoreflect/grpcreflect" "github.com/zeromicro/go-zero/core/logc" "github.com/zeromicro/go-zero/core/logx" "github.com/zeromicro/go-...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/gateway/internal/eventhandler_test.go
gateway/internal/eventhandler_test.go
package internal import ( "io" "net/http/httptest" "testing" "github.com/stretchr/testify/assert" "google.golang.org/grpc/codes" "google.golang.org/grpc/metadata" "google.golang.org/grpc/status" ) func TestEventHandler(t *testing.T) { h := NewEventHandler(io.Discard, nil) h.OnResolveMethod(nil) h.OnSendHea...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/gateway/internal/requestparser.go
gateway/internal/requestparser.go
package internal import ( "bytes" "encoding/json" "io" "net/http" "github.com/fullstorydev/grpcurl" "github.com/golang/protobuf/jsonpb" "github.com/zeromicro/go-zero/rest/httpx" "github.com/zeromicro/go-zero/rest/pathvar" ) // NewRequestParser creates a new request parser from the given http.Request and reso...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/gateway/internal/headerprocessor.go
gateway/internal/headerprocessor.go
package internal import ( "fmt" "net/http" "strings" ) const ( metadataHeaderPrefix = "Grpc-Metadata-" metadataPrefix = "gateway-" ) // OpenTelemetry trace propagation headers that need to be forwarded to gRPC metadata. // These headers are used by the W3C Trace Context standard for distributed tracing. v...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/gateway/internal/eventhandler.go
gateway/internal/eventhandler.go
package internal import ( "io" "net/http" "github.com/golang/protobuf/jsonpb" "github.com/golang/protobuf/proto" "github.com/jhump/protoreflect/desc" "github.com/zeromicro/go-zero/core/logx" "google.golang.org/grpc/metadata" "google.golang.org/grpc/status" ) const ( // MetadataHeaderPrefix is the http prefi...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/gateway/internal/timeout_test.go
gateway/internal/timeout_test.go
package internal import ( "net/http" "net/http/httptest" "testing" "time" "github.com/stretchr/testify/assert" ) func TestGetTimeout(t *testing.T) { req := httptest.NewRequest("GET", "/", http.NoBody) req.Header.Set(grpcTimeoutHeader, "1s") timeout := GetTimeout(req.Header, time.Second*5) assert.Equal(t, ti...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/gateway/internal/requestparser_test.go
gateway/internal/requestparser_test.go
package internal import ( "errors" "net/http" "net/http/httptest" "strings" "testing" "github.com/golang/protobuf/proto" "github.com/stretchr/testify/assert" "github.com/zeromicro/go-zero/rest/pathvar" ) func TestNewRequestParserNoVar(t *testing.T) { req := httptest.NewRequest("GET", "/", http.NoBody) pars...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/gateway/internal/timeout.go
gateway/internal/timeout.go
package internal import ( "net/http" "time" ) const grpcTimeoutHeader = "Grpc-Timeout" // GetTimeout returns the timeout from the header, if not set, returns the default timeout. func GetTimeout(header http.Header, defaultTimeout time.Duration) time.Duration { if timeout := header.Get(grpcTimeoutHeader); len(time...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/gateway/internal/headerprocessor_test.go
gateway/internal/headerprocessor_test.go
package internal import ( "net/http" "net/http/httptest" "testing" "github.com/stretchr/testify/assert" ) func TestBuildHeadersNoValue(t *testing.T) { req := httptest.NewRequest("GET", "/", http.NoBody) req.Header.Add("a", "b") assert.Nil(t, ProcessHeaders(req.Header)) } func TestBuildHeadersWithValues(t *te...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/gateway/internal/descriptorsource.go
gateway/internal/descriptorsource.go
package internal import ( "fmt" "net/http" "strings" "github.com/fullstorydev/grpcurl" "github.com/jhump/protoreflect/desc" "google.golang.org/genproto/googleapis/api/annotations" "google.golang.org/protobuf/proto" ) type Method struct { HttpMethod string HttpPath string RpcPath string } // GetMethod...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/gateway/internal/descriptorsource_test.go
gateway/internal/descriptorsource_test.go
package internal import ( "encoding/base64" "errors" "net/http" "os" "testing" "github.com/fullstorydev/grpcurl" "github.com/jhump/protoreflect/desc" "github.com/stretchr/testify/assert" "github.com/zeromicro/go-zero/core/hash" ) const ( b64pb = `CpgBCgtoZWxsby5wcm90bxIFaGVsbG8iHQoHUmVxdWVzd...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/internal/encoding/encoding_test.go
internal/encoding/encoding_test.go
package encoding import ( "testing" "github.com/stretchr/testify/assert" ) func TestTomlToJson(t *testing.T) { tests := []struct { input string expect string }{ { input: "a = \"foo\"\nb = 1\nc = \"${FOO}\"\nd = \"abcd!@#$112\"", expect: "{\"a\":\"foo\",\"b\":1,\"c\":\"${FOO}\",\"d\":\"abcd!@#$112\"...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/internal/encoding/encoding.go
internal/encoding/encoding.go
package encoding import ( "bytes" "encoding/json" "github.com/pelletier/go-toml/v2" "github.com/zeromicro/go-zero/core/lang" "gopkg.in/yaml.v2" ) // TomlToJson converts TOML data into its JSON representation. func TomlToJson(data []byte) ([]byte, error) { var val any if err := toml.NewDecoder(bytes.NewReader(...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/internal/health/health.go
internal/health/health.go
package health import ( "fmt" "net/http" "strings" "sync" "github.com/zeromicro/go-zero/core/syncx" ) // defaultHealthManager is global comboHealthManager. var defaultHealthManager = newComboHealthManager() type ( // Probe represents readiness status of a given component. Probe interface { // MarkReady set...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/internal/health/health_test.go
internal/health/health_test.go
package health import ( "io" "net/http" "net/http/httptest" "strings" "sync" "testing" "github.com/stretchr/testify/assert" ) const probeName = "probe" func TestHealthManager(t *testing.T) { hm := NewHealthManager(probeName) assert.False(t, hm.IsReady()) hm.MarkReady() assert.True(t, hm.IsReady()) hm....
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/internal/mock/deposit.pb.go
internal/mock/deposit.pb.go
// Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.27.1 // protoc v3.8.0 // source: deposit.proto package mock import ( context "context" reflect "reflect" sync "sync" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/statu...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/internal/mock/depositserver.go
internal/mock/depositserver.go
package mock import ( "context" "time" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) // DepositServer is used for mocking. type DepositServer struct{} // Deposit handles the deposit requests. func (*DepositServer) Deposit(_ context.Context, req *DepositRequest) (*DepositResponse, error) { if...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/internal/devserver/config.go
internal/devserver/config.go
package devserver // Config is config for inner http server. type Config struct { Enabled bool `json:",default=true"` Host string `json:",optional"` Port int `json:",default=6060"` MetricsPath string `json:",default=/metrics"` HealthPath string `json:",default=/healthz"` En...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/internal/devserver/server.go
internal/devserver/server.go
package devserver import ( "encoding/json" "fmt" "net/http" "net/http/pprof" "sync" "github.com/prometheus/client_golang/prometheus/promhttp" "github.com/zeromicro/go-zero/core/logx" "github.com/zeromicro/go-zero/core/prometheus" "github.com/zeromicro/go-zero/core/threading" "github.com/zeromicro/go-zero/in...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/internal/trace/trace.go
internal/trace/trace.go
package trace import ( "context" "go.opentelemetry.io/otel/trace" ) func SpanIDFromContext(ctx context.Context) string { spanCtx := trace.SpanContextFromContext(ctx) if spanCtx.HasSpanID() { return spanCtx.SpanID().String() } return "" } func TraceIDFromContext(ctx context.Context) string { spanCtx := tra...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/internal/trace/trace_test.go
internal/trace/trace_test.go
package trace import ( "context" "net/http" "net/http/httptest" "testing" "github.com/stretchr/testify/assert" sdktrace "go.opentelemetry.io/otel/sdk/trace" semconv "go.opentelemetry.io/otel/semconv/v1.4.0" oteltrace "go.opentelemetry.io/otel/trace" ) func TestSpanIDFromContext(t *testing.T) { tracer := sdk...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/internal/profiling/profiling_test.go
internal/profiling/profiling_test.go
package profiling import ( "sync" "testing" "time" "github.com/grafana/pyroscope-go" "github.com/stretchr/testify/assert" "github.com/zeromicro/go-zero/core/conf" "github.com/zeromicro/go-zero/core/syncx" ) func TestStart(t *testing.T) { t.Run("profiling", func(t *testing.T) { var c Config assert.NoError...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/internal/profiling/profiling.go
internal/profiling/profiling.go
package profiling import ( "runtime" "sync" "time" "github.com/grafana/pyroscope-go" "github.com/zeromicro/go-zero/core/logx" "github.com/zeromicro/go-zero/core/proc" "github.com/zeromicro/go-zero/core/stat" "github.com/zeromicro/go-zero/core/threading" ) const ( defaultCheckInterval = time.Second * 10 ...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/validation/validator.go
core/validation/validator.go
package validation // Validator represents a validator. type Validator interface { // Validate validates the value. Validate() error }
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/writer_test.go
core/logx/writer_test.go
package logx import ( "bytes" "encoding/json" "errors" "log" "sync/atomic" "testing" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/mock" ) func TestNewWriter(t *testing.T) { const literal = "foo bar" var buf bytes.Buffer w := NewWriter(&buf) w.Info(literal) assert.Contains(t, buf.Str...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/richlogger.go
core/logx/richlogger.go
package logx import ( "context" "fmt" "time" "github.com/zeromicro/go-zero/core/timex" "github.com/zeromicro/go-zero/internal/trace" ) // WithCallerSkip returns a Logger with given caller skip. func WithCallerSkip(skip int) Logger { if skip <= 0 { return new(richLogger) } return &richLogger{ callerSkip:...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/lesswriter_test.go
core/logx/lesswriter_test.go
package logx import ( "strings" "testing" "github.com/stretchr/testify/assert" ) func TestLessWriter(t *testing.T) { var builder strings.Builder w := newLessWriter(&builder, 500) for i := 0; i < 100; i++ { _, err := w.Write([]byte("hello")) assert.Nil(t, err) } assert.Equal(t, "hello", builder.String())...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/lesswriter.go
core/logx/lesswriter.go
package logx import "io" type lessWriter struct { *limitedExecutor writer io.Writer } func newLessWriter(writer io.Writer, milliseconds int) *lessWriter { return &lessWriter{ limitedExecutor: newLimitedExecutor(milliseconds), writer: writer, } } func (w *lessWriter) Write(p []byte) (n int, err erro...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/rotatelogger_test.go
core/logx/rotatelogger_test.go
package logx import ( "errors" "io" "os" "path" "path/filepath" "sync/atomic" "syscall" "testing" "time" "github.com/stretchr/testify/assert" "github.com/zeromicro/go-zero/core/fs" "github.com/zeromicro/go-zero/core/stringx" ) func TestDailyRotateRuleMarkRotated(t *testing.T) { t.Run("daily rule", func(...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/syslog_test.go
core/logx/syslog_test.go
package logx import ( "encoding/json" "log" "strings" "sync/atomic" "testing" "github.com/stretchr/testify/assert" ) const testlog = "Stay hungry, stay foolish." var testobj = map[string]any{"foo": "bar"} func TestCollectSysLog(t *testing.T) { CollectSysLog() content := getContent(captureOutput(func() { ...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/lesslogger.go
core/logx/lesslogger.go
package logx // A LessLogger is a logger that controls to log once during the given duration. type LessLogger struct { *limitedExecutor } // NewLessLogger returns a LessLogger. func NewLessLogger(milliseconds int) *LessLogger { return &LessLogger{ limitedExecutor: newLimitedExecutor(milliseconds), } } // Error ...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/logwriter.go
core/logx/logwriter.go
package logx import "log" type logWriter struct { logger *log.Logger } func newLogWriter(logger *log.Logger) logWriter { return logWriter{ logger: logger, } } func (lw logWriter) Close() error { return nil } func (lw logWriter) Write(data []byte) (int, error) { lw.logger.Print(string(data)) return len(data...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/lesslogger_test.go
core/logx/lesslogger_test.go
package logx import ( "strings" "testing" "github.com/stretchr/testify/assert" ) func TestLessLogger_Error(t *testing.T) { w := new(mockWriter) old := writer.Swap(w) defer writer.Store(old) l := NewLessLogger(500) for i := 0; i < 100; i++ { l.Error("hello") } assert.Equal(t, 1, strings.Count(w.String()...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/syslog.go
core/logx/syslog.go
package logx import "log" type redirector struct{} // CollectSysLog redirects system log into logx info func CollectSysLog() { log.SetOutput(new(redirector)) } func (r *redirector) Write(p []byte) (n int, err error) { Info(string(p)) return len(p), nil }
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/config.go
core/logx/config.go
package logx type ( // A LogConf is a logging config. LogConf struct { // ServiceName represents the service name. ServiceName string `json:",optional"` // Mode represents the logging mode, default is `console`. // console: log to console. // file: log to file. // volume: used in k8s, prepend the hostnam...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/limitedexecutor_test.go
core/logx/limitedexecutor_test.go
package logx import ( "sync/atomic" "testing" "time" "github.com/stretchr/testify/assert" "github.com/zeromicro/go-zero/core/timex" ) func TestLimitedExecutor_logOrDiscard(t *testing.T) { tests := []struct { name string threshold time.Duration lastTime time.Duration discarded uint32 executed b...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/writer.go
core/logx/writer.go
package logx import ( "bytes" "encoding/json" "fmt" "io" "log" "path" "runtime/debug" "sync" "sync/atomic" "time" fatihcolor "github.com/fatih/color" "github.com/zeromicro/go-zero/core/color" "github.com/zeromicro/go-zero/core/errorx" ) type ( // Writer is the interface for writing logs. // It's desig...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/color_test.go
core/logx/color_test.go
package logx import ( "sync/atomic" "testing" "github.com/stretchr/testify/assert" "github.com/zeromicro/go-zero/core/color" ) func TestWithColor(t *testing.T) { old := atomic.SwapUint32(&encoding, plainEncodingType) defer atomic.StoreUint32(&encoding, old) output := WithColor("hello", color.BgBlue) assert....
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/util.go
core/logx/util.go
package logx import ( "fmt" "runtime" "strings" "time" ) func getCaller(callDepth int) string { _, file, line, ok := runtime.Caller(callDepth) if !ok { return "" } return prettyCaller(file, line) } func getTimestamp() string { return time.Now().Format(timeFormat) } func prettyCaller(file string, line in...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/richlogger_test.go
core/logx/richlogger_test.go
package logx import ( "context" "encoding/json" "fmt" "io" "strings" "sync/atomic" "testing" "time" "github.com/stretchr/testify/assert" "go.opentelemetry.io/otel" sdktrace "go.opentelemetry.io/otel/sdk/trace" ) func TestTraceLog(t *testing.T) { SetLevel(InfoLevel) w := new(mockWriter) old := writer.Sw...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/color.go
core/logx/color.go
package logx import ( "sync/atomic" "github.com/zeromicro/go-zero/core/color" ) // WithColor is a helper function to add color to a string, only in plain encoding. func WithColor(text string, colour color.Color) string { if atomic.LoadUint32(&encoding) == plainEncodingType { return color.WithColor(text, colour)...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/fields_test.go
core/logx/fields_test.go
package logx import ( "bytes" "context" "encoding/json" "strconv" "sync" "sync/atomic" "testing" "github.com/stretchr/testify/assert" ) func TestAddGlobalFields(t *testing.T) { var buf bytes.Buffer writer := NewWriter(&buf) old := Reset() SetWriter(writer) defer SetWriter(old) Info("hello") buf.Reset...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/rotatelogger.go
core/logx/rotatelogger.go
package logx import ( "compress/gzip" "errors" "fmt" "log" "os" "path" "path/filepath" "sort" "strings" "sync" "time" "github.com/zeromicro/go-zero/core/fs" "github.com/zeromicro/go-zero/core/lang" ) const ( hoursPerDay = 24 bufferSize = 100 defaultDirMode = 0o755 defaultFileMode = 0o600 ...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/logs_test.go
core/logx/logs_test.go
package logx import ( "context" "encoding/json" "errors" "fmt" "io" "log" "os" "reflect" "runtime" "strings" "sync" "sync/atomic" "testing" "time" "github.com/stretchr/testify/assert" "go.opentelemetry.io/otel" "go.opentelemetry.io/otel/sdk/trace" ) var ( s = []byte("Sending #11 notificat...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/sensitive.go
core/logx/sensitive.go
package logx // Sensitive is an interface that defines a method for masking sensitive information in logs. // It is typically implemented by types that contain sensitive data, // such as passwords or personal information. // Infov, Errorv, Debugv, and Slowv methods will call this method to mask sensitive data. // The ...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/logs.go
core/logx/logs.go
package logx import ( "fmt" "io" "log" "os" "path" "reflect" "runtime/debug" "sync" "sync/atomic" "github.com/zeromicro/go-zero/core/sysx" ) const callerDepth = 4 var ( timeFormat = "2006-01-02T15:04:05.000Z07:00" encoding uint32 = jsonEncodingType // maxContentLength is used to truncate the l...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/vars.go
core/logx/vars.go
package logx import ( "errors" "github.com/zeromicro/go-zero/core/syncx" ) const ( // DebugLevel logs everything DebugLevel uint32 = iota // InfoLevel does not include debugs InfoLevel // ErrorLevel includes errors, slows, stacks ErrorLevel // SevereLevel only log severe messages SevereLevel // disableLev...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/logger.go
core/logx/logger.go
package logx import ( "context" "time" ) // A Logger represents a logger. type Logger interface { // Debug logs a message at debug level. Debug(...any) // Debugf logs a message at debug level. Debugf(string, ...any) // Debugfn logs a message at debug level. Debugfn(func() any) // Debugv logs a message at deb...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/fs.go
core/logx/fs.go
package logx import ( "io" "os" ) var fileSys realFileSystem type ( fileSystem interface { Close(closer io.Closer) error Copy(writer io.Writer, reader io.Reader) (int64, error) Create(name string) (*os.File, error) Open(name string) (*os.File, error) Remove(name string) error } realFileSystem struct{...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/limitedexecutor.go
core/logx/limitedexecutor.go
package logx import ( "sync/atomic" "time" "github.com/zeromicro/go-zero/core/syncx" "github.com/zeromicro/go-zero/core/timex" ) type limitedExecutor struct { threshold time.Duration lastTime *syncx.AtomicDuration discarded uint32 } func newLimitedExecutor(milliseconds int) *limitedExecutor { return &limit...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/sensitive_test.go
core/logx/sensitive_test.go
package logx import ( "testing" "github.com/stretchr/testify/assert" ) const maskedContent = "******" type User struct { Name string Pass string } func (u User) MaskSensitive() any { return User{ Name: u.Name, Pass: maskedContent, } } type NonSensitiveUser struct { Name string Pass string } func Test...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/util_test.go
core/logx/util_test.go
package logx import ( "path/filepath" "runtime" "testing" "time" "github.com/stretchr/testify/assert" ) func TestGetCaller(t *testing.T) { _, file, _, _ := runtime.Caller(0) assert.Contains(t, getCaller(1), filepath.Base(file)) assert.True(t, len(getCaller(1<<10)) == 0) } func TestGetTimestamp(t *testing.T)...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/fields.go
core/logx/fields.go
package logx import ( "context" "sync" "sync/atomic" ) var ( globalFields atomic.Value globalFieldsLock sync.Mutex ) type fieldsKey struct{} // AddGlobalFields adds global fields. func AddGlobalFields(fields ...LogField) { globalFieldsLock.Lock() defer globalFieldsLock.Unlock() old := globalFields.Load...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/logtest/logtest.go
core/logx/logtest/logtest.go
package logtest import ( "bytes" "encoding/json" "io" "testing" "github.com/zeromicro/go-zero/core/logx" ) type Buffer struct { buf *bytes.Buffer t *testing.T } func Discard(t *testing.T) { prev := logx.Reset() logx.SetWriter(logx.NewWriter(io.Discard)) t.Cleanup(func() { logx.SetWriter(prev) }) } ...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logx/logtest/logtest_test.go
core/logx/logtest/logtest_test.go
package logtest import ( "errors" "testing" "github.com/stretchr/testify/assert" "github.com/zeromicro/go-zero/core/logx" ) func TestCollector(t *testing.T) { const input = "hello" c := NewCollector(t) logx.Info(input) assert.Equal(t, input, c.Content()) assert.Contains(t, c.String(), input) c.Reset() ass...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/cmdline/input_test.go
core/cmdline/input_test.go
package cmdline import ( "fmt" "os" "sync" "testing" "time" "github.com/stretchr/testify/assert" "github.com/zeromicro/go-zero/core/iox" "github.com/zeromicro/go-zero/core/lang" ) func TestEnterToContinue(t *testing.T) { restore, err := iox.RedirectInOut() assert.Nil(t, err) defer restore() var wg sync....
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/cmdline/input.go
core/cmdline/input.go
package cmdline import ( "bufio" "fmt" "os" "strings" ) // EnterToContinue let stdin waiting for an enter key to continue. func EnterToContinue() { fmt.Print("Press 'Enter' to continue...") bufio.NewReader(os.Stdin).ReadBytes('\n') } // ReadLine shows prompt to stdout and read a line from stdin. func ReadLine(...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/codec/gzip_test.go
core/codec/gzip_test.go
package codec import ( "bytes" "compress/gzip" "errors" "fmt" "testing" "github.com/stretchr/testify/assert" ) func TestGzip(t *testing.T) { var buf bytes.Buffer for i := 0; i < 10000; i++ { fmt.Fprint(&buf, i) } bs := Gzip(buf.Bytes()) actual, err := Gunzip(bs) assert.Nil(t, err) assert.True(t, len...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/codec/gzip.go
core/codec/gzip.go
package codec import ( "bytes" "compress/gzip" "io" ) const unzipLimit = 100 * 1024 * 1024 // 100MB // Gzip compresses bs. func Gzip(bs []byte) []byte { var b bytes.Buffer w := gzip.NewWriter(&b) w.Write(bs) w.Close() return b.Bytes() } // Gunzip uncompresses bs. func Gunzip(bs []byte) ([]byte, error) { ...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/codec/dh.go
core/codec/dh.go
package codec import ( "crypto/rand" "errors" "math/big" ) // see https://www.zhihu.com/question/29383090/answer/70435297 // see https://www.ietf.org/rfc/rfc3526.txt // 2048-bit MODP Group var ( // ErrInvalidPriKey indicates the invalid private key. ErrInvalidPriKey = errors.New("invalid private key") // ErrIn...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/codec/aesecb.go
core/codec/aesecb.go
package codec import ( "bytes" "crypto/aes" "crypto/cipher" "encoding/base64" "errors" "github.com/zeromicro/go-zero/core/logx" ) // ErrPaddingSize indicates bad padding size. var ErrPaddingSize = errors.New("padding size error") type ecb struct { b cipher.Block blockSize int } func newECB(b cipher...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/codec/hmac_test.go
core/codec/hmac_test.go
package codec import ( "fmt" "testing" "github.com/stretchr/testify/assert" ) func TestHmac(t *testing.T) { ret := Hmac([]byte("foo"), "bar") assert.Equal(t, "f9320baf0249169e73850cd6156ded0106e2bb6ad8cab01b7bbbebe6d1065317", fmt.Sprintf("%x", ret)) } func TestHmacBase64(t *testing.T) { ret := HmacBase64([]...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/codec/rsa_test.go
core/codec/rsa_test.go
package codec import ( "encoding/base64" "os" "testing" "github.com/stretchr/testify/assert" "github.com/zeromicro/go-zero/core/fs" ) const ( priKey = `-----BEGIN RSA PRIVATE KEY----- MIICXQIBAAKBgQC4TJk3onpqb2RYE3wwt23J9SHLFstHGSkUYFLe+nl1dEKHbD+/ Zt95L757J3xGTrwoTc7KCTxbrgn+stn0w52BNjj/kIE2ko4lbh/v8Fl14AyVR9...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/codec/dh_test.go
core/codec/dh_test.go
package codec import ( "math/big" "testing" "github.com/stretchr/testify/assert" ) func TestDiffieHellman(t *testing.T) { key1, err := GenerateKey() assert.Nil(t, err) key2, err := GenerateKey() assert.Nil(t, err) pubKey1, err := ComputeKey(key1.PubKey, key2.PriKey) assert.Nil(t, err) pubKey2, err := Comp...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/codec/aesecb_test.go
core/codec/aesecb_test.go
package codec import ( "crypto/aes" "encoding/base64" "testing" "github.com/stretchr/testify/assert" ) func TestAesEcb(t *testing.T) { var ( key = []byte("q4t7w!z%C*F-JaNdRgUjXn2r5u8x/A?D") val = []byte("helloworld") valLong = []byte("helloworldlong..") badKey1 = []byte("aaaaaaaaa") // more th...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/codec/hmac.go
core/codec/hmac.go
package codec import ( "crypto/hmac" "crypto/sha256" "encoding/base64" "io" ) // Hmac returns HMAC bytes for body with the given key. func Hmac(key []byte, body string) []byte { h := hmac.New(sha256.New, key) io.WriteString(h, body) return h.Sum(nil) } // HmacBase64 returns the base64 encoded string of HMAC f...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/codec/rsa.go
core/codec/rsa.go
package codec import ( "crypto/rand" "crypto/rsa" "crypto/x509" "encoding/base64" "encoding/pem" "errors" "os" ) var ( // ErrPrivateKey indicates the invalid private key. ErrPrivateKey = errors.New("private key error") // ErrPublicKey indicates the invalid public key. ErrPublicKey = errors.New("failed to p...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/fieldoptions.go
core/mapping/fieldoptions.go
package mapping import "fmt" const notSymbol = '!' type ( // use context and OptionalDep option to determine the value of Optional // nothing to do with context.Context fieldOptionsWithContext struct { Inherit bool FromString bool Optional bool Options []string Default string EnvVar str...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/marshaler.go
core/mapping/marshaler.go
package mapping import ( "fmt" "reflect" "slices" "strings" ) const ( emptyTag = "" tagKVSeparator = ":" ) // Marshal marshals the given val and returns the map that contains the fields. // optional=another is not implemented, and it's hard to implement and not commonly used. // support anonymous field, ...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/valuer_test.go
core/mapping/valuer_test.go
package mapping import ( "testing" "github.com/stretchr/testify/assert" ) func TestMapValuerWithInherit_Value(t *testing.T) { input := map[string]any{ "discovery": map[string]any{ "host": "localhost", "port": 8080, }, "component": map[string]any{ "name": "test", }, } valuer := recursiveValuer{ ...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/yamlunmarshaler_test.go
core/mapping/yamlunmarshaler_test.go
package mapping import ( "reflect" "strings" "testing" "github.com/stretchr/testify/assert" "k8s.io/utils/io" ) func TestUnmarshalYamlBytes(t *testing.T) { var c struct { Name string } content := []byte(`Name: liao`) assert.Nil(t, UnmarshalYamlBytes(content, &c)) assert.Equal(t, "liao", c.Name) } func ...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/fieldoptions_test.go
core/mapping/fieldoptions_test.go
package mapping import ( "reflect" "testing" "github.com/stretchr/testify/assert" ) type Bar struct { Val string `json:"val"` } func TestFieldOptionOptionalDep(t *testing.T) { var bar Bar rt := reflect.TypeOf(bar) for i := 0; i < rt.NumField(); i++ { field := rt.Field(i) val, opt, err := parseKeyAndOptio...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/utils.go
core/mapping/utils.go
package mapping import ( "encoding/json" "errors" "fmt" "math" "reflect" "slices" "strconv" "strings" "sync" "github.com/zeromicro/go-zero/core/lang" "github.com/zeromicro/go-zero/core/stringx" ) const ( defaultOption = "default" envOption = "env" inheritOption = "inherit" stringOpt...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/tomlunmarshaler_test.go
core/mapping/tomlunmarshaler_test.go
package mapping import ( "strings" "testing" "github.com/stretchr/testify/assert" ) func TestUnmarshalToml(t *testing.T) { const input = `a = "foo" b = 1 c = "${FOO}" d = "abcd!@#$112" ` var val struct { A string `json:"a"` B int `json:"b"` C string `json:"c"` D string `json:"d"` } assert.NoError(t...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/jsonunmarshaler.go
core/mapping/jsonunmarshaler.go
package mapping import ( "io" "github.com/zeromicro/go-zero/core/jsonx" ) const jsonTagKey = "json" var jsonUnmarshaler = NewUnmarshaler(jsonTagKey) // UnmarshalJsonBytes unmarshals content into v. func UnmarshalJsonBytes(content []byte, v any, opts ...UnmarshalOption) error { return unmarshalJsonBytes(content,...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/marshaler_test.go
core/mapping/marshaler_test.go
package mapping import ( "testing" "github.com/stretchr/testify/assert" ) func TestMarshal(t *testing.T) { v := struct { Name string `path:"name"` Address string `json:"address,options=[beijing,shanghai]"` Age int `json:"age"` Anonymous bool }{ Name: "kevin", Address: "shanghai...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/yamlunmarshaler.go
core/mapping/yamlunmarshaler.go
package mapping import ( "io" "github.com/zeromicro/go-zero/internal/encoding" ) // UnmarshalYamlBytes unmarshals content into v. func UnmarshalYamlBytes(content []byte, v any, opts ...UnmarshalOption) error { b, err := encoding.YamlToJson(content) if err != nil { return err } return UnmarshalJsonBytes(b, v...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/tomlunmarshaler.go
core/mapping/tomlunmarshaler.go
package mapping import ( "io" "github.com/zeromicro/go-zero/internal/encoding" ) // UnmarshalTomlBytes unmarshals TOML bytes into the given v. func UnmarshalTomlBytes(content []byte, v any, opts ...UnmarshalOption) error { b, err := encoding.TomlToJson(content) if err != nil { return err } return UnmarshalJ...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/utils_test.go
core/mapping/utils_test.go
package mapping import ( "reflect" "testing" "github.com/stretchr/testify/assert" ) const testTagName = "key" type Foo struct { Str string StrWithTag string `key:"stringwithtag"` StrWithTagAndOption string `key:"stringwithtag,string"` } func TestDerefInt(t *testing.T) { i := 1 s :=...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/unmarshaler_test.go
core/mapping/unmarshaler_test.go
package mapping import ( "encoding/json" "errors" "fmt" "reflect" "strconv" "strings" "testing" "time" "unicode" "github.com/google/uuid" "github.com/stretchr/testify/assert" "github.com/zeromicro/go-zero/core/jsonx" "github.com/zeromicro/go-zero/core/stringx" ) // because json.Number doesn't support st...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
true
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/jsonunmarshaler_test.go
core/mapping/jsonunmarshaler_test.go
package mapping import ( "bytes" "reflect" "strings" "testing" "github.com/stretchr/testify/assert" ) func TestUnmarshalBytes(t *testing.T) { var c struct { Name string } content := []byte(`{"Name": "liao"}`) assert.Nil(t, UnmarshalJsonBytes(content, &c)) assert.Equal(t, "liao", c.Name) } func TestUnma...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/unmarshaler.go
core/mapping/unmarshaler.go
package mapping import ( "encoding" "encoding/base64" "encoding/json" "errors" "fmt" "reflect" "slices" "strconv" "strings" "sync" "time" "github.com/zeromicro/go-zero/core/jsonx" "github.com/zeromicro/go-zero/core/lang" "github.com/zeromicro/go-zero/core/proc" ) const ( defaultKeyName = "key" deli...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
true
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/mapping/valuer.go
core/mapping/valuer.go
package mapping type ( // A Valuer interface defines the way to get values from the underlying object with keys. Valuer interface { // Value gets the value associated with the given key. Value(key string) (any, bool) } // A valuerWithParent defines a node that has a parent node. valuerWithParent interface { ...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logc/logs_test.go
core/logc/logs_test.go
package logc import ( "context" "encoding/json" "fmt" "runtime" "strings" "testing" "github.com/stretchr/testify/assert" "github.com/zeromicro/go-zero/core/logx" "github.com/zeromicro/go-zero/core/logx/logtest" ) func TestAddGlobalFields(t *testing.T) { buf := logtest.NewCollector(t) Info(context.Backgro...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false
zeromicro/go-zero
https://github.com/zeromicro/go-zero/blob/8e7e5695eb2095917864b5d6615dab4c90bde3ac/core/logc/logs.go
core/logc/logs.go
package logc import ( "context" "fmt" "github.com/zeromicro/go-zero/core/logx" ) type ( LogConf = logx.LogConf LogField = logx.LogField ) // AddGlobalFields adds global fields. func AddGlobalFields(fields ...LogField) { logx.AddGlobalFields(fields...) } // Alert alerts v in alert level, and the message is w...
go
MIT
8e7e5695eb2095917864b5d6615dab4c90bde3ac
2026-01-07T08:36:18.042207Z
false