mirror of
https://gitea.com/Lydanne/buildx.git
synced 2026-01-15 10:24:13 +08:00
hack: generate vtproto files for buildx
Integrates vtproto into buildx. The generated files dockerfile has been modified to copy the buildkit equivalent file to ensure files are laid out in the appropriate way for imports. An import has also been included to change the grpc codec to the version in buildkit that supports vtproto. This will allow buildx to utilize the speed and memory improvements from that. Also updates the gc control options for prune. Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
This commit is contained in:
@@ -27,6 +27,9 @@ import (
|
||||
_ "github.com/docker/buildx/driver/docker-container"
|
||||
_ "github.com/docker/buildx/driver/kubernetes"
|
||||
_ "github.com/docker/buildx/driver/remote"
|
||||
|
||||
// Use custom grpc codec to utilize vtprotobuf
|
||||
_ "github.com/moby/buildkit/util/grpcutil/encoding/proto"
|
||||
)
|
||||
|
||||
func init() {
|
||||
|
||||
@@ -122,11 +122,14 @@ func runInspect(ctx context.Context, dockerCli command.Cli, in inspectOptions) e
|
||||
if rule.KeepDuration > 0 {
|
||||
fmt.Fprintf(w, "\tKeep Duration:\t%v\n", rule.KeepDuration.String())
|
||||
}
|
||||
if rule.MinStorage > 0 {
|
||||
fmt.Fprintf(w, "\tMin Storage:\t%s\n", units.BytesSize(float64(rule.MinStorage)))
|
||||
if rule.ReservedSpace > 0 {
|
||||
fmt.Fprintf(w, "\tReserved Space:\t%s\n", units.BytesSize(float64(rule.ReservedSpace)))
|
||||
}
|
||||
if rule.MaxStorage > 0 {
|
||||
fmt.Fprintf(w, "\tMax Storage:\t%s\n", units.BytesSize(float64(rule.MaxStorage)))
|
||||
if rule.MaxUsedSpace > 0 {
|
||||
fmt.Fprintf(w, "\tMax Used Space:\t%s\n", units.BytesSize(float64(rule.MaxUsedSpace)))
|
||||
}
|
||||
if rule.MinFreeSpace > 0 {
|
||||
fmt.Fprintf(w, "\tMin Free Space:\t%s\n", units.BytesSize(float64(rule.MinFreeSpace)))
|
||||
}
|
||||
}
|
||||
for f, dt := range nodes[i].Files {
|
||||
|
||||
@@ -22,13 +22,14 @@ import (
|
||||
)
|
||||
|
||||
type pruneOptions struct {
|
||||
builder string
|
||||
all bool
|
||||
filter opts.FilterOpt
|
||||
minStorage opts.MemBytes
|
||||
maxStorage opts.MemBytes
|
||||
force bool
|
||||
verbose bool
|
||||
builder string
|
||||
all bool
|
||||
filter opts.FilterOpt
|
||||
reservedSpace opts.MemBytes
|
||||
maxUsedSpace opts.MemBytes
|
||||
minFreeSpace opts.MemBytes
|
||||
force bool
|
||||
verbose bool
|
||||
}
|
||||
|
||||
const (
|
||||
@@ -107,7 +108,7 @@ func runPrune(ctx context.Context, dockerCli command.Cli, opts pruneOptions) err
|
||||
return err
|
||||
}
|
||||
popts := []client.PruneOption{
|
||||
client.WithKeepOpt(pi.KeepDuration, opts.minStorage.Value(), opts.maxStorage.Value(), 0),
|
||||
client.WithKeepOpt(pi.KeepDuration, opts.reservedSpace.Value(), opts.maxUsedSpace.Value(), opts.minFreeSpace.Value()),
|
||||
client.WithFilter(pi.Filter),
|
||||
}
|
||||
if opts.all {
|
||||
@@ -149,12 +150,13 @@ func pruneCmd(dockerCli command.Cli, rootOpts *rootOptions) *cobra.Command {
|
||||
flags := cmd.Flags()
|
||||
flags.BoolVarP(&options.all, "all", "a", false, "Include internal/frontend images")
|
||||
flags.Var(&options.filter, "filter", `Provide filter values (e.g., "until=24h")`)
|
||||
flags.Var(&options.minStorage, "min-storage", "Minimum amount of disk space to keep for cache")
|
||||
flags.Var(&options.maxStorage, "max-storage", "Maximum amount of disk space to keep for cache")
|
||||
flags.Var(&options.reservedSpace, "reserved-space", "Amount of disk space always allowed to keep for cache")
|
||||
flags.Var(&options.minFreeSpace, "min-free-space", "Target amount of free disk space after pruning")
|
||||
flags.Var(&options.maxUsedSpace, "max-used-space", "Maximum amount of disk space allowed to keep for cache")
|
||||
flags.BoolVar(&options.verbose, "verbose", false, "Provide a more verbose output")
|
||||
flags.BoolVarP(&options.force, "force", "f", false, "Do not prompt for confirmation")
|
||||
|
||||
flags.Var(&options.maxStorage, "keep-storage", "Amount of disk space to keep for cache")
|
||||
flags.Var(&options.reservedSpace, "keep-storage", "Amount of disk space to keep for cache")
|
||||
flags.MarkDeprecated("keep-storage", "keep-storage flag has been changed to max-storage")
|
||||
|
||||
return cmd
|
||||
|
||||
194
controller/errdefs/errdefs_vtproto.pb.go
Normal file
194
controller/errdefs/errdefs_vtproto.pb.go
Normal file
@@ -0,0 +1,194 @@
|
||||
// Code generated by protoc-gen-go-vtproto. DO NOT EDIT.
|
||||
// protoc-gen-go-vtproto version: v0.6.1-0.20240319094008-0393e58bdf10
|
||||
// source: github.com/docker/buildx/controller/errdefs/errdefs.proto
|
||||
|
||||
package errdefs
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
protohelpers "github.com/planetscale/vtprotobuf/protohelpers"
|
||||
proto "google.golang.org/protobuf/proto"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
io "io"
|
||||
)
|
||||
|
||||
const (
|
||||
// Verify that this generated code is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||
)
|
||||
|
||||
func (m *Build) CloneVT() *Build {
|
||||
if m == nil {
|
||||
return (*Build)(nil)
|
||||
}
|
||||
r := new(Build)
|
||||
r.Ref = m.Ref
|
||||
if len(m.unknownFields) > 0 {
|
||||
r.unknownFields = make([]byte, len(m.unknownFields))
|
||||
copy(r.unknownFields, m.unknownFields)
|
||||
}
|
||||
return r
|
||||
}
|
||||
|
||||
func (m *Build) CloneMessageVT() proto.Message {
|
||||
return m.CloneVT()
|
||||
}
|
||||
|
||||
func (this *Build) EqualVT(that *Build) bool {
|
||||
if this == that {
|
||||
return true
|
||||
} else if this == nil || that == nil {
|
||||
return false
|
||||
}
|
||||
if this.Ref != that.Ref {
|
||||
return false
|
||||
}
|
||||
return string(this.unknownFields) == string(that.unknownFields)
|
||||
}
|
||||
|
||||
func (this *Build) EqualMessageVT(thatMsg proto.Message) bool {
|
||||
that, ok := thatMsg.(*Build)
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
return this.EqualVT(that)
|
||||
}
|
||||
func (m *Build) MarshalVT() (dAtA []byte, err error) {
|
||||
if m == nil {
|
||||
return nil, nil
|
||||
}
|
||||
size := m.SizeVT()
|
||||
dAtA = make([]byte, size)
|
||||
n, err := m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return dAtA[:n], nil
|
||||
}
|
||||
|
||||
func (m *Build) MarshalToVT(dAtA []byte) (int, error) {
|
||||
size := m.SizeVT()
|
||||
return m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
}
|
||||
|
||||
func (m *Build) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
|
||||
if m == nil {
|
||||
return 0, nil
|
||||
}
|
||||
i := len(dAtA)
|
||||
_ = i
|
||||
var l int
|
||||
_ = l
|
||||
if m.unknownFields != nil {
|
||||
i -= len(m.unknownFields)
|
||||
copy(dAtA[i:], m.unknownFields)
|
||||
}
|
||||
if len(m.Ref) > 0 {
|
||||
i -= len(m.Ref)
|
||||
copy(dAtA[i:], m.Ref)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.Ref)))
|
||||
i--
|
||||
dAtA[i] = 0xa
|
||||
}
|
||||
return len(dAtA) - i, nil
|
||||
}
|
||||
|
||||
func (m *Build) SizeVT() (n int) {
|
||||
if m == nil {
|
||||
return 0
|
||||
}
|
||||
var l int
|
||||
_ = l
|
||||
l = len(m.Ref)
|
||||
if l > 0 {
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
n += len(m.unknownFields)
|
||||
return n
|
||||
}
|
||||
|
||||
func (m *Build) UnmarshalVT(dAtA []byte) error {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
for iNdEx < l {
|
||||
preIndex := iNdEx
|
||||
var wire uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
wire |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
fieldNum := int32(wire >> 3)
|
||||
wireType := int(wire & 0x7)
|
||||
if wireType == 4 {
|
||||
return fmt.Errorf("proto: Build: wiretype end group for non-group")
|
||||
}
|
||||
if fieldNum <= 0 {
|
||||
return fmt.Errorf("proto: Build: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
}
|
||||
switch fieldNum {
|
||||
case 1:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Ref", wireType)
|
||||
}
|
||||
var stringLen uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
stringLen |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
intStringLen := int(stringLen)
|
||||
if intStringLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + intStringLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.Ref = string(dAtA[iNdEx:postIndex])
|
||||
iNdEx = postIndex
|
||||
default:
|
||||
iNdEx = preIndex
|
||||
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if (iNdEx + skippy) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
|
||||
iNdEx += skippy
|
||||
}
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
return nil
|
||||
}
|
||||
11430
controller/pb/controller_vtproto.pb.go
Normal file
11430
controller/pb/controller_vtproto.pb.go
Normal file
File diff suppressed because it is too large
Load Diff
@@ -9,16 +9,17 @@ Remove build cache
|
||||
|
||||
### Options
|
||||
|
||||
| Name | Type | Default | Description |
|
||||
|:------------------------|:---------|:--------|:-----------------------------------------------|
|
||||
| `-a`, `--all` | `bool` | | Include internal/frontend images |
|
||||
| [`--builder`](#builder) | `string` | | Override the configured builder instance |
|
||||
| `-D`, `--debug` | `bool` | | Enable debug logging |
|
||||
| `--filter` | `filter` | | Provide filter values (e.g., `until=24h`) |
|
||||
| `-f`, `--force` | `bool` | | Do not prompt for confirmation |
|
||||
| `--max-storage` | `bytes` | `0` | Maximum amount of disk space to keep for cache |
|
||||
| `--min-storage` | `bytes` | `0` | Minimum amount of disk space to keep for cache |
|
||||
| `--verbose` | `bool` | | Provide a more verbose output |
|
||||
| Name | Type | Default | Description |
|
||||
|:------------------------|:---------|:--------|:-------------------------------------------------------|
|
||||
| `-a`, `--all` | `bool` | | Include internal/frontend images |
|
||||
| [`--builder`](#builder) | `string` | | Override the configured builder instance |
|
||||
| `-D`, `--debug` | `bool` | | Enable debug logging |
|
||||
| `--filter` | `filter` | | Provide filter values (e.g., `until=24h`) |
|
||||
| `-f`, `--force` | `bool` | | Do not prompt for confirmation |
|
||||
| `--max-used-space` | `bytes` | `0` | Maximum amount of disk space allowed to keep for cache |
|
||||
| `--min-free-space` | `bytes` | `0` | Target amount of free disk space after pruning |
|
||||
| `--reserved-space` | `bytes` | `0` | Amount of disk space always allowed to keep for cache |
|
||||
| `--verbose` | `bool` | | Provide a more verbose output |
|
||||
|
||||
|
||||
<!---MARKER_GEN_END-->
|
||||
|
||||
5
go.mod
5
go.mod
@@ -27,7 +27,7 @@ require (
|
||||
github.com/hashicorp/hcl/v2 v2.20.1
|
||||
github.com/in-toto/in-toto-golang v0.5.0
|
||||
github.com/mitchellh/hashstructure/v2 v2.0.2
|
||||
github.com/moby/buildkit v0.16.0-rc2.0.20241002204825-8445ccf1cb0b
|
||||
github.com/moby/buildkit v0.16.0-rc2.0.20241008173032-de2f8b6c5d1c
|
||||
github.com/moby/sys/mountinfo v0.7.2
|
||||
github.com/moby/sys/signal v0.7.1
|
||||
github.com/morikuni/aec v1.0.0
|
||||
@@ -35,12 +35,13 @@ require (
|
||||
github.com/opencontainers/image-spec v1.1.0
|
||||
github.com/pelletier/go-toml v1.9.5
|
||||
github.com/pkg/errors v0.9.1
|
||||
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10
|
||||
github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b
|
||||
github.com/sirupsen/logrus v1.9.3
|
||||
github.com/spf13/cobra v1.8.1
|
||||
github.com/spf13/pflag v1.0.5
|
||||
github.com/stretchr/testify v1.9.0
|
||||
github.com/tonistiigi/fsutil v0.0.0-20240926161958-8754824c3c4f
|
||||
github.com/tonistiigi/fsutil v0.0.0-20241003195857-3f140a1299b0
|
||||
github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4
|
||||
github.com/zclconf/go-cty v1.14.4
|
||||
go.opentelemetry.io/otel v1.21.0
|
||||
|
||||
10
go.sum
10
go.sum
@@ -301,8 +301,8 @@ github.com/mitchellh/hashstructure/v2 v2.0.2/go.mod h1:MG3aRVU/N29oo/V/IhBX8GR/z
|
||||
github.com/mitchellh/mapstructure v0.0.0-20150613213606-2caf8efc9366/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
|
||||
github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY=
|
||||
github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
|
||||
github.com/moby/buildkit v0.16.0-rc2.0.20241002204825-8445ccf1cb0b h1:smNXGkzTkYHhDTL8U3ZJZRdUBrofNyiCea8udWy3C5A=
|
||||
github.com/moby/buildkit v0.16.0-rc2.0.20241002204825-8445ccf1cb0b/go.mod h1:MJXOsHz4qbcmjnfCRjqyZRYu5VnQ4Y6YucZz4tvcRY4=
|
||||
github.com/moby/buildkit v0.16.0-rc2.0.20241008173032-de2f8b6c5d1c h1:tO15fW0keg5tOfOZnNqLaKZMOezT4bOerluvrq1VtMM=
|
||||
github.com/moby/buildkit v0.16.0-rc2.0.20241008173032-de2f8b6c5d1c/go.mod h1:BprE7bOBNMZPwd3YR7iUmHdqt618BDvS49hZySzr5Mg=
|
||||
github.com/moby/docker-image-spec v1.3.1 h1:jMKff3w6PgbfSa69GfNg+zN/XLhfXJGnEx3Nl2EsFP0=
|
||||
github.com/moby/docker-image-spec v1.3.1/go.mod h1:eKmb5VW8vQEh/BAr2yvVNvuiJuY6UIocYsFu/DxxRpo=
|
||||
github.com/moby/locker v1.0.1 h1:fOXqR41zeveg4fFODix+1Ch4mj/gT0NE1XJbp/epuBg=
|
||||
@@ -365,6 +365,8 @@ github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE
|
||||
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
||||
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
|
||||
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
|
||||
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 h1:GFCKgmp0tecUJ0sJuv4pzYCqS9+RGSn52M3FUwPs+uo=
|
||||
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10/go.mod h1:t/avpk3KcrXxUnYOhZhMXJlSEyie6gQbtLq5NM3loB8=
|
||||
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
|
||||
github.com/prometheus/client_golang v0.9.0-pre1.0.20180209125602-c332b6f63c06/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
|
||||
@@ -437,8 +439,8 @@ github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsT
|
||||
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
|
||||
github.com/theupdateframework/notary v0.7.0 h1:QyagRZ7wlSpjT5N2qQAh/pN+DVqgekv4DzbAiAiEL3c=
|
||||
github.com/theupdateframework/notary v0.7.0/go.mod h1:c9DRxcmhHmVLDay4/2fUYdISnHqbFDGRSlXPO0AhYWw=
|
||||
github.com/tonistiigi/fsutil v0.0.0-20240926161958-8754824c3c4f h1:scejvzjNA30X9ufWPUH/a2MhWg1sQPxeC6N6wm7nWEE=
|
||||
github.com/tonistiigi/fsutil v0.0.0-20240926161958-8754824c3c4f/go.mod h1:xnG7rCC28GVN8efEm5ijNp56TnNtrYCv75EtTH42yz4=
|
||||
github.com/tonistiigi/fsutil v0.0.0-20241003195857-3f140a1299b0 h1:H9++AiQUqjwrOMA/DOpWhxWp3JLyyT+MN4sRPbMmwoY=
|
||||
github.com/tonistiigi/fsutil v0.0.0-20241003195857-3f140a1299b0/go.mod h1:Dl/9oEjK7IqnjAm21Okx/XIxUCFJzvh+XdVHUlBwXTw=
|
||||
github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4 h1:7I5c2Ig/5FgqkYOh/N87NzoyI9U15qUPXhDD8uCupv8=
|
||||
github.com/tonistiigi/go-csvvalue v0.0.0-20240710180619-ddb21b71c0b4/go.mod h1:278M4p8WsNh3n4a1eqiFcV2FGk7wE5fwUpUom9mK9lE=
|
||||
github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea h1:SXhTLE6pb6eld/v/cCndK0AMpt1wiVFb/YYmqB3/QG0=
|
||||
|
||||
@@ -30,40 +30,52 @@ RUN <<EOT
|
||||
set -e
|
||||
wget -q https://github.com/googleapis/googleapis/archive/${PROTOC_GOOGLEAPIS_VERSION}.zip -O googleapis.zip
|
||||
unzip googleapis.zip '*.proto' -d /opt
|
||||
mv /opt/googleapis-${PROTOC_GOOGLEAPIS_VERSION} /opt/googleapis
|
||||
EOT
|
||||
|
||||
FROM base AS protoc-buildkit
|
||||
WORKDIR /app
|
||||
RUN --mount=type=bind,target=/app \
|
||||
--mount=type=cache,target=/root/.cache \
|
||||
--mount=type=cache,target=/go/pkg/mod <<EOT
|
||||
set -e
|
||||
mkdir -p /opt/protoc
|
||||
find vendor -name '*.proto' | tar -cf - --files-from - | tar -C /opt/protoc -xf -
|
||||
mkdir -p /opt/googleapis
|
||||
mv /opt/googleapis-${PROTOC_GOOGLEAPIS_VERSION} /opt/googleapis/include
|
||||
EOT
|
||||
|
||||
FROM base AS gobuild-base
|
||||
WORKDIR /go/src
|
||||
COPY --link --from=protoc /opt/protoc /usr/local
|
||||
COPY --link --from=googleapis /opt/googleapis /usr/local/include
|
||||
COPY --link --from=protoc-buildkit /opt/protoc/vendor /usr/local/include
|
||||
WORKDIR /app
|
||||
|
||||
FROM gobuild-base AS vtprotobuf
|
||||
RUN --mount=type=bind,source=go.mod,target=/app/go.mod \
|
||||
--mount=type=bind,source=go.sum,target=/app/go.sum \
|
||||
--mount=type=cache,target=/root/.cache \
|
||||
--mount=type=cache,target=/go/pkg/mod <<EOT
|
||||
set -e
|
||||
mkdir -p /opt/vtprotobuf
|
||||
go mod download github.com/planetscale/vtprotobuf
|
||||
cp -r $(go list -m -f='{{.Dir}}' github.com/planetscale/vtprotobuf)/include /opt/vtprotobuf
|
||||
EOT
|
||||
|
||||
FROM gobuild-base AS vendored
|
||||
RUN --mount=type=bind,source=vendor,target=/app <<EOT
|
||||
set -e
|
||||
mkdir -p /opt/vendored/include
|
||||
find . -name '*.proto' | tar -cf - --files-from - | tar -C /opt/vendored/include -xf -
|
||||
EOT
|
||||
|
||||
FROM gobuild-base AS tools
|
||||
RUN --mount=type=bind,source=go.mod,target=/go/src/go.mod,ro \
|
||||
--mount=type=bind,source=go.sum,target=/go/src/go.sum,ro \
|
||||
RUN --mount=type=bind,source=go.mod,target=/app/go.mod,ro \
|
||||
--mount=type=bind,source=go.sum,target=/app/go.sum,ro \
|
||||
--mount=type=cache,target=/root/.cache \
|
||||
--mount=type=cache,target=/go/pkg/mod \
|
||||
go install \
|
||||
google.golang.org/protobuf/cmd/protoc-gen-go \
|
||||
google.golang.org/grpc/cmd/protoc-gen-go-grpc
|
||||
go install \
|
||||
github.com/planetscale/vtprotobuf/cmd/protoc-gen-go-vtproto \
|
||||
google.golang.org/protobuf/cmd/protoc-gen-go \
|
||||
google.golang.org/grpc/cmd/protoc-gen-go-grpc
|
||||
COPY --link --from=protoc /opt/protoc /usr/local
|
||||
COPY --link --from=googleapis /opt/googleapis /usr/local
|
||||
COPY --link --from=vtprotobuf /opt/vtprotobuf /usr/local
|
||||
COPY --link --from=vendored /opt/vendored /usr/local
|
||||
|
||||
FROM tools AS generated
|
||||
RUN --mount=type=bind,target=github.com/docker/buildx,ro <<EOT
|
||||
set -ex
|
||||
mkdir /out
|
||||
find github.com/docker/buildx -name '*.proto' -o -name vendor -prune -false | xargs \
|
||||
protoc --go_out=/out --go-grpc_out=require_unimplemented_servers=false:/out
|
||||
protoc --go_out=/out --go-grpc_out=require_unimplemented_servers=false:/out \
|
||||
--go-vtproto_out=features=marshal+unmarshal+size+equal+pool+clone:/out
|
||||
EOT
|
||||
|
||||
FROM scratch AS update
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
package tools
|
||||
|
||||
import (
|
||||
_ "github.com/planetscale/vtprotobuf/cmd/protoc-gen-go-vtproto"
|
||||
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
|
||||
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
|
||||
)
|
||||
|
||||
1213
vendor/github.com/moby/buildkit/api/services/control/control.pb.go
generated
vendored
1213
vendor/github.com/moby/buildkit/api/services/control/control.pb.go
generated
vendored
File diff suppressed because it is too large
Load Diff
6
vendor/github.com/moby/buildkit/api/services/control/control.proto
generated
vendored
6
vendor/github.com/moby/buildkit/api/services/control/control.proto
generated
vendored
@@ -29,9 +29,9 @@ message PruneRequest {
|
||||
bool all = 2;
|
||||
int64 keepDuration = 3;
|
||||
|
||||
int64 minStorage = 5;
|
||||
int64 maxStorage = 4;
|
||||
int64 free = 6;
|
||||
int64 reservedSpace = 4;
|
||||
int64 maxUsedSpace = 5;
|
||||
int64 minFreeSpace = 6;
|
||||
}
|
||||
|
||||
message DiskUsageRequest {
|
||||
|
||||
4
vendor/github.com/moby/buildkit/api/services/control/control_grpc.pb.go
generated
vendored
4
vendor/github.com/moby/buildkit/api/services/control/control_grpc.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// - protoc-gen-go-grpc v1.5.1
|
||||
// - protoc v3.11.4
|
||||
// source: control.proto
|
||||
// source: github.com/moby/buildkit/api/services/control/control.proto
|
||||
|
||||
package moby_buildkit_v1
|
||||
|
||||
@@ -423,5 +423,5 @@ var Control_ServiceDesc = grpc.ServiceDesc{
|
||||
ServerStreams: true,
|
||||
},
|
||||
},
|
||||
Metadata: "control.proto",
|
||||
Metadata: "github.com/moby/buildkit/api/services/control/control.proto",
|
||||
}
|
||||
|
||||
10632
vendor/github.com/moby/buildkit/api/services/control/control_vtproto.pb.go
generated
vendored
Normal file
10632
vendor/github.com/moby/buildkit/api/services/control/control_vtproto.pb.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3
vendor/github.com/moby/buildkit/api/services/control/generate.go
generated
vendored
3
vendor/github.com/moby/buildkit/api/services/control/generate.go
generated
vendored
@@ -1,3 +0,0 @@
|
||||
package moby_buildkit_v1 //nolint:revive
|
||||
|
||||
//go:generate protoc -I=. -I=../../../vendor/ -I=../../../../../../ --go_out=paths=source_relative:. --go-grpc_out=paths=source_relative,require_unimplemented_servers=false:. control.proto
|
||||
3
vendor/github.com/moby/buildkit/api/types/generate.go
generated
vendored
3
vendor/github.com/moby/buildkit/api/types/generate.go
generated
vendored
@@ -1,3 +0,0 @@
|
||||
package moby_buildkit_v1_types //nolint:revive
|
||||
|
||||
//go:generate protoc -I=. -I=../../vendor/ -I=../../../../../ --go_out=paths=source_relative:. --go-grpc_out=paths=source_relative,require_unimplemented_servers=false:. worker.proto
|
||||
192
vendor/github.com/moby/buildkit/api/types/worker.pb.go
generated
vendored
192
vendor/github.com/moby/buildkit/api/types/worker.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// protoc-gen-go v1.34.1
|
||||
// protoc v3.11.4
|
||||
// source: worker.proto
|
||||
// source: github.com/moby/buildkit/api/types/worker.proto
|
||||
|
||||
package moby_buildkit_v1_types
|
||||
|
||||
@@ -36,7 +36,7 @@ type WorkerRecord struct {
|
||||
func (x *WorkerRecord) Reset() {
|
||||
*x = WorkerRecord{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_worker_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_api_types_worker_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -49,7 +49,7 @@ func (x *WorkerRecord) String() string {
|
||||
func (*WorkerRecord) ProtoMessage() {}
|
||||
|
||||
func (x *WorkerRecord) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_worker_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_api_types_worker_proto_msgTypes[0]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -62,7 +62,7 @@ func (x *WorkerRecord) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use WorkerRecord.ProtoReflect.Descriptor instead.
|
||||
func (*WorkerRecord) Descriptor() ([]byte, []int) {
|
||||
return file_worker_proto_rawDescGZIP(), []int{0}
|
||||
return file_github_com_moby_buildkit_api_types_worker_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (x *WorkerRecord) GetID() string {
|
||||
@@ -108,16 +108,16 @@ type GCPolicy struct {
|
||||
All bool `protobuf:"varint,1,opt,name=all,proto3" json:"all,omitempty"`
|
||||
KeepDuration int64 `protobuf:"varint,2,opt,name=keepDuration,proto3" json:"keepDuration,omitempty"`
|
||||
Filters []string `protobuf:"bytes,4,rep,name=filters,proto3" json:"filters,omitempty"`
|
||||
MinStorage int64 `protobuf:"varint,5,opt,name=minStorage,proto3" json:"minStorage,omitempty"`
|
||||
// maxStorage was renamed from freeBytes
|
||||
MaxStorage int64 `protobuf:"varint,3,opt,name=maxStorage,proto3" json:"maxStorage,omitempty"`
|
||||
Free int64 `protobuf:"varint,6,opt,name=free,proto3" json:"free,omitempty"`
|
||||
// reservedSpace was renamed from freeBytes
|
||||
ReservedSpace int64 `protobuf:"varint,3,opt,name=reservedSpace,proto3" json:"reservedSpace,omitempty"`
|
||||
MaxUsedSpace int64 `protobuf:"varint,5,opt,name=maxUsedSpace,proto3" json:"maxUsedSpace,omitempty"`
|
||||
MinFreeSpace int64 `protobuf:"varint,6,opt,name=minFreeSpace,proto3" json:"minFreeSpace,omitempty"`
|
||||
}
|
||||
|
||||
func (x *GCPolicy) Reset() {
|
||||
*x = GCPolicy{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_worker_proto_msgTypes[1]
|
||||
mi := &file_github_com_moby_buildkit_api_types_worker_proto_msgTypes[1]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -130,7 +130,7 @@ func (x *GCPolicy) String() string {
|
||||
func (*GCPolicy) ProtoMessage() {}
|
||||
|
||||
func (x *GCPolicy) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_worker_proto_msgTypes[1]
|
||||
mi := &file_github_com_moby_buildkit_api_types_worker_proto_msgTypes[1]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -143,7 +143,7 @@ func (x *GCPolicy) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use GCPolicy.ProtoReflect.Descriptor instead.
|
||||
func (*GCPolicy) Descriptor() ([]byte, []int) {
|
||||
return file_worker_proto_rawDescGZIP(), []int{1}
|
||||
return file_github_com_moby_buildkit_api_types_worker_proto_rawDescGZIP(), []int{1}
|
||||
}
|
||||
|
||||
func (x *GCPolicy) GetAll() bool {
|
||||
@@ -167,23 +167,23 @@ func (x *GCPolicy) GetFilters() []string {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (x *GCPolicy) GetMinStorage() int64 {
|
||||
func (x *GCPolicy) GetReservedSpace() int64 {
|
||||
if x != nil {
|
||||
return x.MinStorage
|
||||
return x.ReservedSpace
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (x *GCPolicy) GetMaxStorage() int64 {
|
||||
func (x *GCPolicy) GetMaxUsedSpace() int64 {
|
||||
if x != nil {
|
||||
return x.MaxStorage
|
||||
return x.MaxUsedSpace
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (x *GCPolicy) GetFree() int64 {
|
||||
func (x *GCPolicy) GetMinFreeSpace() int64 {
|
||||
if x != nil {
|
||||
return x.Free
|
||||
return x.MinFreeSpace
|
||||
}
|
||||
return 0
|
||||
}
|
||||
@@ -201,7 +201,7 @@ type BuildkitVersion struct {
|
||||
func (x *BuildkitVersion) Reset() {
|
||||
*x = BuildkitVersion{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_worker_proto_msgTypes[2]
|
||||
mi := &file_github_com_moby_buildkit_api_types_worker_proto_msgTypes[2]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -214,7 +214,7 @@ func (x *BuildkitVersion) String() string {
|
||||
func (*BuildkitVersion) ProtoMessage() {}
|
||||
|
||||
func (x *BuildkitVersion) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_worker_proto_msgTypes[2]
|
||||
mi := &file_github_com_moby_buildkit_api_types_worker_proto_msgTypes[2]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -227,7 +227,7 @@ func (x *BuildkitVersion) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use BuildkitVersion.ProtoReflect.Descriptor instead.
|
||||
func (*BuildkitVersion) Descriptor() ([]byte, []int) {
|
||||
return file_worker_proto_rawDescGZIP(), []int{2}
|
||||
return file_github_com_moby_buildkit_api_types_worker_proto_rawDescGZIP(), []int{2}
|
||||
}
|
||||
|
||||
func (x *BuildkitVersion) GetPackage() string {
|
||||
@@ -251,81 +251,85 @@ func (x *BuildkitVersion) GetRevision() string {
|
||||
return ""
|
||||
}
|
||||
|
||||
var File_worker_proto protoreflect.FileDescriptor
|
||||
var File_github_com_moby_buildkit_api_types_worker_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_worker_proto_rawDesc = []byte{
|
||||
0x0a, 0x0c, 0x77, 0x6f, 0x72, 0x6b, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x16,
|
||||
0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31,
|
||||
0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x1a, 0x2c, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63,
|
||||
0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74,
|
||||
0x2f, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x62, 0x2f, 0x6f, 0x70, 0x73, 0x2e, 0x70,
|
||||
0x72, 0x6f, 0x74, 0x6f, 0x22, 0xe0, 0x02, 0x0a, 0x0c, 0x57, 0x6f, 0x72, 0x6b, 0x65, 0x72, 0x52,
|
||||
0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x02, 0x49, 0x44, 0x12, 0x48, 0x0a, 0x06, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x18,
|
||||
0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69,
|
||||
0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x57,
|
||||
0x6f, 0x72, 0x6b, 0x65, 0x72, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x2e, 0x4c, 0x61, 0x62, 0x65,
|
||||
0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x06, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12,
|
||||
0x2a, 0x0a, 0x09, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x73, 0x18, 0x03, 0x20, 0x03,
|
||||
0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d,
|
||||
0x52, 0x09, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x73, 0x12, 0x3c, 0x0a, 0x08, 0x47,
|
||||
0x43, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e,
|
||||
0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31,
|
||||
0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x47, 0x43, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52,
|
||||
0x08, 0x47, 0x43, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x51, 0x0a, 0x0f, 0x42, 0x75, 0x69,
|
||||
0x6c, 0x64, 0x6b, 0x69, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01,
|
||||
0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b,
|
||||
0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x42, 0x75, 0x69, 0x6c,
|
||||
0x64, 0x6b, 0x69, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x0f, 0x42, 0x75, 0x69,
|
||||
0x6c, 0x64, 0x6b, 0x69, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x1a, 0x39, 0x0a, 0x0b,
|
||||
0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,
|
||||
0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a,
|
||||
0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61,
|
||||
0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xae, 0x01, 0x0a, 0x08, 0x47, 0x43, 0x50, 0x6f,
|
||||
0x6c, 0x69, 0x63, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||
0x08, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x22, 0x0a, 0x0c, 0x6b, 0x65, 0x65, 0x70, 0x44, 0x75,
|
||||
0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6b, 0x65,
|
||||
0x65, 0x70, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x66, 0x69,
|
||||
0x6c, 0x74, 0x65, 0x72, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x66, 0x69, 0x6c,
|
||||
0x74, 0x65, 0x72, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x6d, 0x69, 0x6e, 0x53, 0x74, 0x6f, 0x72, 0x61,
|
||||
0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x6d, 0x69, 0x6e, 0x53, 0x74, 0x6f,
|
||||
0x72, 0x61, 0x67, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x6d, 0x61, 0x78, 0x53, 0x74, 0x6f, 0x72, 0x61,
|
||||
0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x6d, 0x61, 0x78, 0x53, 0x74, 0x6f,
|
||||
0x72, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x72, 0x65, 0x65, 0x18, 0x06, 0x20, 0x01,
|
||||
0x28, 0x03, 0x52, 0x04, 0x66, 0x72, 0x65, 0x65, 0x22, 0x61, 0x0a, 0x0f, 0x42, 0x75, 0x69, 0x6c,
|
||||
0x64, 0x6b, 0x69, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x70,
|
||||
0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61,
|
||||
0x63, 0x6b, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
|
||||
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12,
|
||||
0x1a, 0x0a, 0x08, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x08, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x3b, 0x5a, 0x39, 0x67,
|
||||
0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62,
|
||||
0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x74, 0x79, 0x70, 0x65,
|
||||
0x73, 0x3b, 0x6d, 0x6f, 0x62, 0x79, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x5f,
|
||||
0x76, 0x31, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
var file_github_com_moby_buildkit_api_types_worker_proto_rawDesc = []byte{
|
||||
0x0a, 0x2f, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62,
|
||||
0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x74,
|
||||
0x79, 0x70, 0x65, 0x73, 0x2f, 0x77, 0x6f, 0x72, 0x6b, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
||||
0x6f, 0x12, 0x16, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74,
|
||||
0x2e, 0x76, 0x31, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x1a, 0x2c, 0x67, 0x69, 0x74, 0x68, 0x75,
|
||||
0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
||||
0x6b, 0x69, 0x74, 0x2f, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x62, 0x2f, 0x6f, 0x70,
|
||||
0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xe0, 0x02, 0x0a, 0x0c, 0x57, 0x6f, 0x72, 0x6b,
|
||||
0x65, 0x72, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x44, 0x18, 0x01,
|
||||
0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x49, 0x44, 0x12, 0x48, 0x0a, 0x06, 0x4c, 0x61, 0x62, 0x65,
|
||||
0x6c, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e,
|
||||
0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x74, 0x79, 0x70, 0x65,
|
||||
0x73, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x65, 0x72, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x2e, 0x4c,
|
||||
0x61, 0x62, 0x65, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x06, 0x4c, 0x61, 0x62, 0x65,
|
||||
0x6c, 0x73, 0x12, 0x2a, 0x0a, 0x09, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x73, 0x18,
|
||||
0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x70, 0x62, 0x2e, 0x50, 0x6c, 0x61, 0x74, 0x66,
|
||||
0x6f, 0x72, 0x6d, 0x52, 0x09, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x73, 0x12, 0x3c,
|
||||
0x0a, 0x08, 0x47, 0x43, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
|
||||
0x32, 0x20, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74,
|
||||
0x2e, 0x76, 0x31, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x47, 0x43, 0x50, 0x6f, 0x6c, 0x69,
|
||||
0x63, 0x79, 0x52, 0x08, 0x47, 0x43, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x51, 0x0a, 0x0f,
|
||||
0x42, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18,
|
||||
0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69,
|
||||
0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x42,
|
||||
0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x0f,
|
||||
0x42, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x1a,
|
||||
0x39, 0x0a, 0x0b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
|
||||
0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
|
||||
0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||
0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xc8, 0x01, 0x0a, 0x08, 0x47,
|
||||
0x43, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x6c, 0x6c, 0x18, 0x01,
|
||||
0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x61, 0x6c, 0x6c, 0x12, 0x22, 0x0a, 0x0c, 0x6b, 0x65, 0x65,
|
||||
0x70, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
|
||||
0x0c, 0x6b, 0x65, 0x65, 0x70, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a,
|
||||
0x07, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07,
|
||||
0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x65, 0x72,
|
||||
0x76, 0x65, 0x64, 0x53, 0x70, 0x61, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d,
|
||||
0x72, 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x53, 0x70, 0x61, 0x63, 0x65, 0x12, 0x22, 0x0a,
|
||||
0x0c, 0x6d, 0x61, 0x78, 0x55, 0x73, 0x65, 0x64, 0x53, 0x70, 0x61, 0x63, 0x65, 0x18, 0x05, 0x20,
|
||||
0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d, 0x61, 0x78, 0x55, 0x73, 0x65, 0x64, 0x53, 0x70, 0x61, 0x63,
|
||||
0x65, 0x12, 0x22, 0x0a, 0x0c, 0x6d, 0x69, 0x6e, 0x46, 0x72, 0x65, 0x65, 0x53, 0x70, 0x61, 0x63,
|
||||
0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6d, 0x69, 0x6e, 0x46, 0x72, 0x65, 0x65,
|
||||
0x53, 0x70, 0x61, 0x63, 0x65, 0x22, 0x61, 0x0a, 0x0f, 0x42, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69,
|
||||
0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x63, 0x6b,
|
||||
0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x63, 0x6b, 0x61,
|
||||
0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
|
||||
0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08,
|
||||
0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
|
||||
0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x3b, 0x5a, 0x39, 0x67, 0x69, 0x74, 0x68,
|
||||
0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c,
|
||||
0x64, 0x6b, 0x69, 0x74, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x3b, 0x6d,
|
||||
0x6f, 0x62, 0x79, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x5f, 0x76, 0x31, 0x5f,
|
||||
0x74, 0x79, 0x70, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
}
|
||||
|
||||
var (
|
||||
file_worker_proto_rawDescOnce sync.Once
|
||||
file_worker_proto_rawDescData = file_worker_proto_rawDesc
|
||||
file_github_com_moby_buildkit_api_types_worker_proto_rawDescOnce sync.Once
|
||||
file_github_com_moby_buildkit_api_types_worker_proto_rawDescData = file_github_com_moby_buildkit_api_types_worker_proto_rawDesc
|
||||
)
|
||||
|
||||
func file_worker_proto_rawDescGZIP() []byte {
|
||||
file_worker_proto_rawDescOnce.Do(func() {
|
||||
file_worker_proto_rawDescData = protoimpl.X.CompressGZIP(file_worker_proto_rawDescData)
|
||||
func file_github_com_moby_buildkit_api_types_worker_proto_rawDescGZIP() []byte {
|
||||
file_github_com_moby_buildkit_api_types_worker_proto_rawDescOnce.Do(func() {
|
||||
file_github_com_moby_buildkit_api_types_worker_proto_rawDescData = protoimpl.X.CompressGZIP(file_github_com_moby_buildkit_api_types_worker_proto_rawDescData)
|
||||
})
|
||||
return file_worker_proto_rawDescData
|
||||
return file_github_com_moby_buildkit_api_types_worker_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_worker_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
|
||||
var file_worker_proto_goTypes = []interface{}{
|
||||
var file_github_com_moby_buildkit_api_types_worker_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
|
||||
var file_github_com_moby_buildkit_api_types_worker_proto_goTypes = []interface{}{
|
||||
(*WorkerRecord)(nil), // 0: moby.buildkit.v1.types.WorkerRecord
|
||||
(*GCPolicy)(nil), // 1: moby.buildkit.v1.types.GCPolicy
|
||||
(*BuildkitVersion)(nil), // 2: moby.buildkit.v1.types.BuildkitVersion
|
||||
nil, // 3: moby.buildkit.v1.types.WorkerRecord.LabelsEntry
|
||||
(*pb.Platform)(nil), // 4: pb.Platform
|
||||
}
|
||||
var file_worker_proto_depIdxs = []int32{
|
||||
var file_github_com_moby_buildkit_api_types_worker_proto_depIdxs = []int32{
|
||||
3, // 0: moby.buildkit.v1.types.WorkerRecord.Labels:type_name -> moby.buildkit.v1.types.WorkerRecord.LabelsEntry
|
||||
4, // 1: moby.buildkit.v1.types.WorkerRecord.platforms:type_name -> pb.Platform
|
||||
1, // 2: moby.buildkit.v1.types.WorkerRecord.GCPolicy:type_name -> moby.buildkit.v1.types.GCPolicy
|
||||
@@ -337,13 +341,13 @@ var file_worker_proto_depIdxs = []int32{
|
||||
0, // [0:4] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_worker_proto_init() }
|
||||
func file_worker_proto_init() {
|
||||
if File_worker_proto != nil {
|
||||
func init() { file_github_com_moby_buildkit_api_types_worker_proto_init() }
|
||||
func file_github_com_moby_buildkit_api_types_worker_proto_init() {
|
||||
if File_github_com_moby_buildkit_api_types_worker_proto != nil {
|
||||
return
|
||||
}
|
||||
if !protoimpl.UnsafeEnabled {
|
||||
file_worker_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_api_types_worker_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*WorkerRecord); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -355,7 +359,7 @@ func file_worker_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_worker_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_api_types_worker_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*GCPolicy); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -367,7 +371,7 @@ func file_worker_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_worker_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_api_types_worker_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BuildkitVersion); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -384,18 +388,18 @@ func file_worker_proto_init() {
|
||||
out := protoimpl.TypeBuilder{
|
||||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: file_worker_proto_rawDesc,
|
||||
RawDescriptor: file_github_com_moby_buildkit_api_types_worker_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 4,
|
||||
NumExtensions: 0,
|
||||
NumServices: 0,
|
||||
},
|
||||
GoTypes: file_worker_proto_goTypes,
|
||||
DependencyIndexes: file_worker_proto_depIdxs,
|
||||
MessageInfos: file_worker_proto_msgTypes,
|
||||
GoTypes: file_github_com_moby_buildkit_api_types_worker_proto_goTypes,
|
||||
DependencyIndexes: file_github_com_moby_buildkit_api_types_worker_proto_depIdxs,
|
||||
MessageInfos: file_github_com_moby_buildkit_api_types_worker_proto_msgTypes,
|
||||
}.Build()
|
||||
File_worker_proto = out.File
|
||||
file_worker_proto_rawDesc = nil
|
||||
file_worker_proto_goTypes = nil
|
||||
file_worker_proto_depIdxs = nil
|
||||
File_github_com_moby_buildkit_api_types_worker_proto = out.File
|
||||
file_github_com_moby_buildkit_api_types_worker_proto_rawDesc = nil
|
||||
file_github_com_moby_buildkit_api_types_worker_proto_goTypes = nil
|
||||
file_github_com_moby_buildkit_api_types_worker_proto_depIdxs = nil
|
||||
}
|
||||
|
||||
8
vendor/github.com/moby/buildkit/api/types/worker.proto
generated
vendored
8
vendor/github.com/moby/buildkit/api/types/worker.proto
generated
vendored
@@ -19,10 +19,10 @@ message GCPolicy {
|
||||
int64 keepDuration = 2;
|
||||
repeated string filters = 4;
|
||||
|
||||
int64 minStorage = 5;
|
||||
// maxStorage was renamed from freeBytes
|
||||
int64 maxStorage = 3;
|
||||
int64 free = 6;
|
||||
// reservedSpace was renamed from freeBytes
|
||||
int64 reservedSpace = 3;
|
||||
int64 maxUsedSpace = 5;
|
||||
int64 minFreeSpace = 6;
|
||||
}
|
||||
|
||||
message BuildkitVersion {
|
||||
|
||||
1189
vendor/github.com/moby/buildkit/api/types/worker_vtproto.pb.go
generated
vendored
Normal file
1189
vendor/github.com/moby/buildkit/api/types/worker_vtproto.pb.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3
vendor/github.com/moby/buildkit/client/llb/exec.go
generated
vendored
3
vendor/github.com/moby/buildkit/client/llb/exec.go
generated
vendored
@@ -12,7 +12,6 @@ import (
|
||||
"github.com/moby/buildkit/util/system"
|
||||
digest "github.com/opencontainers/go-digest"
|
||||
"github.com/pkg/errors"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
func NewExecOp(base State, proxyEnv *ProxyEnv, readOnly bool, c Constraints) *ExecOp {
|
||||
@@ -344,7 +343,7 @@ func (e *ExecOp) Marshal(ctx context.Context, c *Constraints) (digest.Digest, []
|
||||
newInput := true
|
||||
|
||||
for i, inp2 := range pop.Inputs {
|
||||
if proto.Equal(inp, inp2) {
|
||||
if inp.EqualVT(inp2) {
|
||||
inputIndex = pb.InputIndex(i)
|
||||
newInput = false
|
||||
break
|
||||
|
||||
23
vendor/github.com/moby/buildkit/client/llb/fileop.go
generated
vendored
23
vendor/github.com/moby/buildkit/client/llb/fileop.go
generated
vendored
@@ -12,7 +12,6 @@ import (
|
||||
"github.com/moby/buildkit/solver/pb"
|
||||
digest "github.com/opencontainers/go-digest"
|
||||
"github.com/pkg/errors"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
// Examples:
|
||||
@@ -264,6 +263,15 @@ func WithUIDGID(uid, gid int) ChownOption {
|
||||
}
|
||||
}
|
||||
|
||||
type ChmodOpt struct {
|
||||
Mode os.FileMode
|
||||
ModeStr string
|
||||
}
|
||||
|
||||
func (co ChmodOpt) SetCopyOption(mi *CopyInfo) {
|
||||
mi.Mode = &co
|
||||
}
|
||||
|
||||
type ChownOpt struct {
|
||||
User *UserOpt
|
||||
Group *UserOpt
|
||||
@@ -492,7 +500,7 @@ type CopyOption interface {
|
||||
}
|
||||
|
||||
type CopyInfo struct {
|
||||
Mode *os.FileMode
|
||||
Mode *ChmodOpt
|
||||
FollowSymlinks bool
|
||||
CopyDirContentsOnly bool
|
||||
IncludePatterns []string
|
||||
@@ -541,7 +549,11 @@ func (a *fileActionCopy) toProtoAction(ctx context.Context, parent string, base
|
||||
AlwaysReplaceExistingDestPaths: a.info.AlwaysReplaceExistingDestPaths,
|
||||
}
|
||||
if a.info.Mode != nil {
|
||||
c.Mode = int32(*a.info.Mode)
|
||||
if a.info.Mode.ModeStr != "" {
|
||||
c.ModeStr = a.info.Mode.ModeStr
|
||||
} else {
|
||||
c.Mode = int32(a.info.Mode.Mode)
|
||||
}
|
||||
} else {
|
||||
c.Mode = -1
|
||||
}
|
||||
@@ -574,6 +586,9 @@ func (a *fileActionCopy) addCaps(f *FileOp) {
|
||||
if a.info.AlwaysReplaceExistingDestPaths {
|
||||
addCap(&f.constraints, pb.CapFileCopyAlwaysReplaceExistingDestPaths)
|
||||
}
|
||||
if a.info.Mode.ModeStr != "" {
|
||||
addCap(&f.constraints, pb.CapFileCopyModeStringFormat)
|
||||
}
|
||||
}
|
||||
|
||||
type CreatedTime time.Time
|
||||
@@ -652,7 +667,7 @@ func (ms *marshalState) addInput(c *Constraints, o Output) (pb.InputIndex, error
|
||||
return 0, err
|
||||
}
|
||||
for i, inp2 := range ms.inputs {
|
||||
if proto.Equal(inp, inp2) {
|
||||
if inp.EqualVT(inp2) {
|
||||
return pb.InputIndex(i), nil
|
||||
}
|
||||
}
|
||||
|
||||
4
vendor/github.com/moby/buildkit/client/llb/marshal.go
generated
vendored
4
vendor/github.com/moby/buildkit/client/llb/marshal.go
generated
vendored
@@ -49,7 +49,7 @@ func (def *Definition) Head() (digest.Digest, error) {
|
||||
last := def.Def[len(def.Def)-1]
|
||||
|
||||
var pop pb.Op
|
||||
if err := proto.Unmarshal(last, &pop); err != nil {
|
||||
if err := pop.UnmarshalVT(last); err != nil {
|
||||
return "", err
|
||||
}
|
||||
if len(pop.Inputs) == 0 {
|
||||
@@ -74,7 +74,7 @@ func ReadFrom(r io.Reader) (*Definition, error) {
|
||||
return nil, err
|
||||
}
|
||||
var pbDef pb.Definition
|
||||
if err := proto.Unmarshal(b, &pbDef); err != nil {
|
||||
if err := pbDef.UnmarshalVT(b); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
var def Definition
|
||||
|
||||
3
vendor/github.com/moby/buildkit/client/llb/state.go
generated
vendored
3
vendor/github.com/moby/buildkit/client/llb/state.go
generated
vendored
@@ -14,7 +14,6 @@ import (
|
||||
"github.com/moby/buildkit/util/apicaps"
|
||||
digest "github.com/opencontainers/go-digest"
|
||||
ocispecs "github.com/opencontainers/image-spec/specs-go/v1"
|
||||
protobuf "google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
type StateOption func(State) State
|
||||
@@ -158,7 +157,7 @@ func (s State) Marshal(ctx context.Context, co ...ConstraintsOpt) (*Definition,
|
||||
return def, err
|
||||
}
|
||||
proto := &pb.Op{Inputs: []*pb.Input{inp}}
|
||||
dt, err := protobuf.Marshal(proto)
|
||||
dt, err := proto.MarshalVT()
|
||||
if err != nil {
|
||||
return def, err
|
||||
}
|
||||
|
||||
24
vendor/github.com/moby/buildkit/client/prune.go
generated
vendored
24
vendor/github.com/moby/buildkit/client/prune.go
generated
vendored
@@ -16,11 +16,11 @@ func (c *Client) Prune(ctx context.Context, ch chan UsageInfo, opts ...PruneOpti
|
||||
}
|
||||
|
||||
req := &controlapi.PruneRequest{
|
||||
Filter: info.Filter,
|
||||
KeepDuration: int64(info.KeepDuration),
|
||||
MinStorage: int64(info.MinStorage),
|
||||
MaxStorage: int64(info.MaxStorage),
|
||||
Free: int64(info.Free),
|
||||
Filter: info.Filter,
|
||||
KeepDuration: int64(info.KeepDuration),
|
||||
ReservedSpace: int64(info.ReservedSpace),
|
||||
MaxUsedSpace: int64(info.MaxUsedSpace),
|
||||
MinFreeSpace: int64(info.MinFreeSpace),
|
||||
}
|
||||
if info.All {
|
||||
req.All = true
|
||||
@@ -71,9 +71,9 @@ type PruneInfo struct {
|
||||
Filter []string `json:"filter"`
|
||||
KeepDuration time.Duration `json:"keepDuration"`
|
||||
|
||||
MinStorage int64 `json:"minStorage"`
|
||||
MaxStorage int64 `json:"maxStorage"`
|
||||
Free int64 `json:"free"`
|
||||
ReservedSpace int64 `json:"reservedSpace"`
|
||||
MaxUsedSpace int64 `json:"maxUsedSpace"`
|
||||
MinFreeSpace int64 `json:"minFreeSpace"`
|
||||
}
|
||||
|
||||
type pruneOptionFunc func(*PruneInfo)
|
||||
@@ -86,11 +86,11 @@ var PruneAll = pruneOptionFunc(func(pi *PruneInfo) {
|
||||
pi.All = true
|
||||
})
|
||||
|
||||
func WithKeepOpt(duration time.Duration, minStorage int64, maxStorage int64, free int64) PruneOption {
|
||||
func WithKeepOpt(duration time.Duration, reserved int64, max int64, free int64) PruneOption {
|
||||
return pruneOptionFunc(func(pi *PruneInfo) {
|
||||
pi.KeepDuration = duration
|
||||
pi.MinStorage = minStorage
|
||||
pi.MaxStorage = maxStorage
|
||||
pi.Free = free
|
||||
pi.ReservedSpace = reserved
|
||||
pi.MaxUsedSpace = max
|
||||
pi.MinFreeSpace = free
|
||||
})
|
||||
}
|
||||
|
||||
3
vendor/github.com/moby/buildkit/client/solve.go
generated
vendored
3
vendor/github.com/moby/buildkit/client/solve.go
generated
vendored
@@ -31,7 +31,6 @@ import (
|
||||
fstypes "github.com/tonistiigi/fsutil/types"
|
||||
"go.opentelemetry.io/otel/trace"
|
||||
"golang.org/x/sync/errgroup"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
type SolveOpt struct {
|
||||
@@ -395,7 +394,7 @@ func prepareSyncedFiles(def *llb.Definition, localMounts map[string]fsutil.FS) (
|
||||
} else {
|
||||
for _, dt := range def.Def {
|
||||
var op pb.Op
|
||||
if err := proto.Unmarshal(dt, &op); err != nil {
|
||||
if err := op.UnmarshalVT(dt); err != nil {
|
||||
return nil, errors.Wrap(err, "failed to parse llb proto op")
|
||||
}
|
||||
if src := op.GetSource(); src != nil {
|
||||
|
||||
3
vendor/github.com/moby/buildkit/client/status.go
generated
vendored
3
vendor/github.com/moby/buildkit/client/status.go
generated
vendored
@@ -5,7 +5,6 @@ import (
|
||||
|
||||
controlapi "github.com/moby/buildkit/api/services/control"
|
||||
digest "github.com/opencontainers/go-digest"
|
||||
"google.golang.org/protobuf/proto"
|
||||
"google.golang.org/protobuf/types/known/timestamppb"
|
||||
)
|
||||
|
||||
@@ -13,7 +12,7 @@ var emptyLogVertexSize int
|
||||
|
||||
func init() {
|
||||
emptyLogVertex := controlapi.VertexLog{}
|
||||
emptyLogVertexSize = proto.Size(&emptyLogVertex)
|
||||
emptyLogVertexSize = emptyLogVertex.SizeVT()
|
||||
}
|
||||
|
||||
func NewSolveStatus(resp *controlapi.StatusResponse) *SolveStatus {
|
||||
|
||||
12
vendor/github.com/moby/buildkit/client/workers.go
generated
vendored
12
vendor/github.com/moby/buildkit/client/workers.go
generated
vendored
@@ -62,12 +62,12 @@ func fromAPIGCPolicy(in []*apitypes.GCPolicy) []PruneInfo {
|
||||
out := make([]PruneInfo, 0, len(in))
|
||||
for _, p := range in {
|
||||
out = append(out, PruneInfo{
|
||||
All: p.All,
|
||||
Filter: p.Filters,
|
||||
KeepDuration: time.Duration(p.KeepDuration),
|
||||
MinStorage: p.MinStorage,
|
||||
MaxStorage: p.MaxStorage,
|
||||
Free: p.Free,
|
||||
All: p.All,
|
||||
Filter: p.Filters,
|
||||
KeepDuration: time.Duration(p.KeepDuration),
|
||||
ReservedSpace: p.ReservedSpace,
|
||||
MaxUsedSpace: p.MaxUsedSpace,
|
||||
MinFreeSpace: p.MinFreeSpace,
|
||||
})
|
||||
}
|
||||
return out
|
||||
|
||||
34
vendor/github.com/moby/buildkit/cmd/buildkitd/config/config.go
generated
vendored
34
vendor/github.com/moby/buildkit/cmd/buildkitd/config/config.go
generated
vendored
@@ -75,9 +75,13 @@ type OTELConfig struct {
|
||||
}
|
||||
|
||||
type GCConfig struct {
|
||||
GC *bool `toml:"gc"`
|
||||
GCKeepStorage DiskSpace `toml:"gckeepstorage"`
|
||||
GCPolicy []GCPolicy `toml:"gcpolicy"`
|
||||
GC *bool `toml:"gc"`
|
||||
// Deprecated: use GCReservedSpace instead
|
||||
GCKeepStorage DiskSpace `toml:"gckeepstorage"`
|
||||
GCReservedSpace DiskSpace `toml:"reservedSpace"`
|
||||
GCMaxUsedSpace DiskSpace `toml:"maxUsedSpace"`
|
||||
GCMinFreeSpace DiskSpace `toml:"minFreeSpace"`
|
||||
GCPolicy []GCPolicy `toml:"gcpolicy"`
|
||||
}
|
||||
|
||||
type NetworkConfig struct {
|
||||
@@ -163,20 +167,20 @@ type GCPolicy struct {
|
||||
// to consume. Any storage above this mark can be cleared during a gc
|
||||
// sweep.
|
||||
//
|
||||
// Deprecated: use MaxStorage instead
|
||||
// Deprecated: use ReservedSpace instead
|
||||
KeepBytes DiskSpace `toml:"keepBytes"`
|
||||
|
||||
// MinStorage is the minimum amount of storage this policy is always
|
||||
// allowed to consume. Any amount of storage below this mark will not be
|
||||
// cleared by this policy.
|
||||
MinStorage DiskSpace `toml:"minStorage"`
|
||||
// MaxStorage is the maximum amount of storage this policy is ever allowed
|
||||
// to consume. Any storage above this mark can be cleared during a gc
|
||||
// sweep.
|
||||
MaxStorage DiskSpace `toml:"maxStorage"`
|
||||
// Free is the amount of storage the gc will attempt to leave free on the
|
||||
// disk. However, it will never attempt to bring it below MinStorage.
|
||||
Free DiskSpace `toml:"free"`
|
||||
// ReservedSpace is the minimum amount of disk space this policy is guaranteed to retain.
|
||||
// Any usage below this threshold will not be reclaimed during garbage collection.
|
||||
ReservedSpace DiskSpace `toml:"reservedSpace"`
|
||||
|
||||
// MaxUsedSpace is the maximum amount of disk space this policy is allowed to use.
|
||||
// Any usage exceeding this limit will be cleaned up during a garbage collection sweep.
|
||||
MaxUsedSpace DiskSpace `toml:"maxUsedSpace"`
|
||||
|
||||
// MinFreeSpace is the target amount of free disk space the garbage collector will attempt to leave.
|
||||
// However, it will never let the available space fall below ReservedSpace.
|
||||
MinFreeSpace DiskSpace `toml:"minFreeSpace"`
|
||||
}
|
||||
|
||||
type DNSConfig struct {
|
||||
|
||||
55
vendor/github.com/moby/buildkit/cmd/buildkitd/config/gcpolicy.go
generated
vendored
55
vendor/github.com/moby/buildkit/cmd/buildkitd/config/gcpolicy.go
generated
vendored
@@ -7,7 +7,6 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/docker/go-units"
|
||||
"github.com/moby/buildkit/util/bklog"
|
||||
"github.com/moby/buildkit/util/disk"
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
@@ -69,30 +68,39 @@ func (d *DiskSpace) UnmarshalText(textb []byte) error {
|
||||
|
||||
const defaultCap int64 = 2e9 // 2GB
|
||||
|
||||
func DefaultGCPolicy(keep DiskSpace) []GCPolicy {
|
||||
if keep == (DiskSpace{}) {
|
||||
keep = DetectDefaultGCCap()
|
||||
func DefaultGCPolicy(cfg GCConfig, dstat disk.DiskStat) []GCPolicy {
|
||||
if cfg.IsUnset() {
|
||||
cfg.GCReservedSpace = cfg.GCKeepStorage
|
||||
}
|
||||
if cfg.IsUnset() {
|
||||
cfg = DetectDefaultGCCap(dstat)
|
||||
}
|
||||
return []GCPolicy{
|
||||
// if build cache uses more than 512MB delete the most easily reproducible data after it has not been used for 2 days
|
||||
{
|
||||
Filters: []string{"type==source.local,type==exec.cachemount,type==source.git.checkout"},
|
||||
KeepDuration: Duration{Duration: time.Duration(48) * time.Hour}, // 48h
|
||||
MaxStorage: DiskSpace{Bytes: 512 * 1e6}, // 512MB
|
||||
MaxUsedSpace: DiskSpace{Bytes: 512 * 1e6}, // 512MB
|
||||
},
|
||||
// remove any data not used for 60 days
|
||||
{
|
||||
KeepDuration: Duration{Duration: time.Duration(60) * 24 * time.Hour}, // 60d
|
||||
MaxStorage: keep,
|
||||
KeepDuration: Duration{Duration: time.Duration(60) * 24 * time.Hour}, // 60d
|
||||
MinFreeSpace: cfg.GCMinFreeSpace,
|
||||
ReservedSpace: cfg.GCReservedSpace,
|
||||
MaxUsedSpace: cfg.GCMaxUsedSpace,
|
||||
},
|
||||
// keep the unshared build cache under cap
|
||||
{
|
||||
MaxStorage: keep,
|
||||
MinFreeSpace: cfg.GCMinFreeSpace,
|
||||
ReservedSpace: cfg.GCReservedSpace,
|
||||
MaxUsedSpace: cfg.GCMaxUsedSpace,
|
||||
},
|
||||
// if previous policies were insufficient start deleting internal data to keep build cache under cap
|
||||
{
|
||||
All: true,
|
||||
MaxStorage: keep,
|
||||
All: true,
|
||||
MinFreeSpace: cfg.GCMinFreeSpace,
|
||||
ReservedSpace: cfg.GCReservedSpace,
|
||||
MaxUsedSpace: cfg.GCMaxUsedSpace,
|
||||
},
|
||||
}
|
||||
}
|
||||
@@ -107,11 +115,23 @@ func stripQuotes(s string) string {
|
||||
return s
|
||||
}
|
||||
|
||||
func DetectDefaultGCCap() DiskSpace {
|
||||
return DiskSpace{Percentage: DiskSpacePercentage}
|
||||
func DetectDefaultGCCap(dstat disk.DiskStat) GCConfig {
|
||||
reserve := DiskSpace{Percentage: DiskSpaceReservePercentage}
|
||||
if reserve.AsBytes(dstat) > DiskSpaceReserveBytes {
|
||||
reserve = DiskSpace{Bytes: DiskSpaceReserveBytes}
|
||||
}
|
||||
max := DiskSpace{Percentage: DiskSpaceMaxPercentage}
|
||||
if max.AsBytes(dstat) > DiskSpaceMaxBytes {
|
||||
max = DiskSpace{Bytes: DiskSpaceMaxBytes}
|
||||
}
|
||||
return GCConfig{
|
||||
GCReservedSpace: reserve,
|
||||
GCMinFreeSpace: DiskSpace{Percentage: DiskSpaceFreePercentage},
|
||||
GCMaxUsedSpace: max,
|
||||
}
|
||||
}
|
||||
|
||||
func (d DiskSpace) AsBytes(root string) int64 {
|
||||
func (d DiskSpace) AsBytes(dstat disk.DiskStat) int64 {
|
||||
if d.Bytes != 0 {
|
||||
return d.Bytes
|
||||
}
|
||||
@@ -119,12 +139,15 @@ func (d DiskSpace) AsBytes(root string) int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
dstat, err := disk.GetDiskStat(root)
|
||||
if err != nil {
|
||||
bklog.L.Warnf("failed to get disk size: %v", err)
|
||||
if dstat.Total == 0 {
|
||||
return defaultCap
|
||||
}
|
||||
|
||||
avail := dstat.Total * d.Percentage / 100
|
||||
rounded := (avail/(1<<30) + 1) * 1e9 // round up
|
||||
return rounded
|
||||
}
|
||||
|
||||
func (cfg *GCConfig) IsUnset() bool {
|
||||
return cfg.GCReservedSpace == DiskSpace{} && cfg.GCMaxUsedSpace == DiskSpace{} && cfg.GCMinFreeSpace == DiskSpace{}
|
||||
}
|
||||
|
||||
8
vendor/github.com/moby/buildkit/cmd/buildkitd/config/gcpolicy_unix.go
generated
vendored
8
vendor/github.com/moby/buildkit/cmd/buildkitd/config/gcpolicy_unix.go
generated
vendored
@@ -3,4 +3,10 @@
|
||||
|
||||
package config
|
||||
|
||||
var DiskSpacePercentage int64 = 10
|
||||
const (
|
||||
DiskSpaceReservePercentage int64 = 10
|
||||
DiskSpaceReserveBytes int64 = 10 * 1e9 // 10GB
|
||||
DiskSpaceFreePercentage int64 = 20
|
||||
DiskSpaceMaxPercentage int64 = 80
|
||||
DiskSpaceMaxBytes int64 = 100 * 1e9 // 100GB
|
||||
)
|
||||
|
||||
12
vendor/github.com/moby/buildkit/cmd/buildkitd/config/gcpolicy_windows.go
generated
vendored
12
vendor/github.com/moby/buildkit/cmd/buildkitd/config/gcpolicy_windows.go
generated
vendored
@@ -3,6 +3,12 @@
|
||||
|
||||
package config
|
||||
|
||||
// set as double that for Linux since
|
||||
// Windows images are generally larger.
|
||||
var DiskSpacePercentage int64 = 20
|
||||
const (
|
||||
// Windows images are generally larger.
|
||||
// set as double that for Linux since
|
||||
DiskSpaceReservePercentage int64 = 20
|
||||
DiskSpaceReserveBytes int64 = 10 * 1e9 // 10GB
|
||||
DiskSpaceFreePercentage int64 = 20
|
||||
DiskSpaceMaxPercentage int64 = 80
|
||||
DiskSpaceMaxBytes int64 = 100 * 1e9 // 100GB
|
||||
)
|
||||
|
||||
14
vendor/github.com/moby/buildkit/frontend/dockerfile/parser/errors.go
generated
vendored
14
vendor/github.com/moby/buildkit/frontend/dockerfile/parser/errors.go
generated
vendored
@@ -34,12 +34,24 @@ func withLocation(err error, start, end int) error {
|
||||
|
||||
// WithLocation extends an error with a source code location
|
||||
func WithLocation(err error, location []Range) error {
|
||||
return setLocation(err, location, true)
|
||||
}
|
||||
|
||||
func SetLocation(err error, location []Range) error {
|
||||
return setLocation(err, location, false)
|
||||
}
|
||||
|
||||
func setLocation(err error, location []Range, add bool) error {
|
||||
if err == nil {
|
||||
return nil
|
||||
}
|
||||
var el *ErrorLocation
|
||||
if errors.As(err, &el) {
|
||||
el.Locations = append(el.Locations, location)
|
||||
if add {
|
||||
el.Locations = append(el.Locations, location)
|
||||
} else {
|
||||
el.Locations = [][]Range{location}
|
||||
}
|
||||
return err
|
||||
}
|
||||
return stack.Enable(&ErrorLocation{
|
||||
|
||||
28
vendor/github.com/moby/buildkit/frontend/dockerui/config.go
generated
vendored
28
vendor/github.com/moby/buildkit/frontend/dockerui/config.go
generated
vendored
@@ -89,7 +89,8 @@ type Client struct {
|
||||
}
|
||||
|
||||
type SBOM struct {
|
||||
Generator string
|
||||
Generator string
|
||||
Parameters map[string]string
|
||||
}
|
||||
|
||||
type Source struct {
|
||||
@@ -257,17 +258,26 @@ func (bc *Client) init() error {
|
||||
return err
|
||||
}
|
||||
if attrs, ok := attests[attestations.KeyTypeSbom]; ok {
|
||||
src, ok := attrs["generator"]
|
||||
if !ok {
|
||||
params := make(map[string]string)
|
||||
var ref reference.Named
|
||||
for k, v := range attrs {
|
||||
if k == "generator" {
|
||||
ref, err = reference.ParseNormalizedNamed(v)
|
||||
if err != nil {
|
||||
return errors.Wrapf(err, "failed to parse sbom scanner %s", v)
|
||||
}
|
||||
ref = reference.TagNameOnly(ref)
|
||||
} else {
|
||||
params[k] = v
|
||||
}
|
||||
}
|
||||
if ref == nil {
|
||||
return errors.Errorf("sbom scanner cannot be empty")
|
||||
}
|
||||
ref, err := reference.ParseNormalizedNamed(src)
|
||||
if err != nil {
|
||||
return errors.Wrapf(err, "failed to parse sbom scanner %s", src)
|
||||
}
|
||||
ref = reference.TagNameOnly(ref)
|
||||
|
||||
bc.SBOM = &SBOM{
|
||||
Generator: ref.String(),
|
||||
Generator: ref.String(),
|
||||
Parameters: params,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
3
vendor/github.com/moby/buildkit/frontend/gateway/grpcclient/client.go
generated
vendored
3
vendor/github.com/moby/buildkit/frontend/gateway/grpcclient/client.go
generated
vendored
@@ -33,7 +33,6 @@ import (
|
||||
"google.golang.org/grpc/codes"
|
||||
"google.golang.org/grpc/credentials/insecure"
|
||||
"google.golang.org/grpc/status"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
const frontendPrefix = "BUILDKIT_FRONTEND_OPT_"
|
||||
@@ -644,7 +643,7 @@ func (c *grpcClient) CurrentFrontend() (*llb.State, error) {
|
||||
return nil, err
|
||||
}
|
||||
var def opspb.Definition
|
||||
if err := proto.Unmarshal(dt, &def); err != nil {
|
||||
if err := def.UnmarshalVT(dt); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
op, err := llb.NewDefinitionOp(&def)
|
||||
|
||||
1420
vendor/github.com/moby/buildkit/frontend/gateway/pb/gateway.pb.go
generated
vendored
1420
vendor/github.com/moby/buildkit/frontend/gateway/pb/gateway.pb.go
generated
vendored
File diff suppressed because it is too large
Load Diff
4
vendor/github.com/moby/buildkit/frontend/gateway/pb/gateway_grpc.pb.go
generated
vendored
4
vendor/github.com/moby/buildkit/frontend/gateway/pb/gateway_grpc.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// - protoc-gen-go-grpc v1.5.1
|
||||
// - protoc v3.11.4
|
||||
// source: gateway.proto
|
||||
// source: github.com/moby/buildkit/frontend/gateway/pb/gateway.proto
|
||||
|
||||
package moby_buildkit_v1_frontend
|
||||
|
||||
@@ -622,5 +622,5 @@ var LLBBridge_ServiceDesc = grpc.ServiceDesc{
|
||||
ClientStreams: true,
|
||||
},
|
||||
},
|
||||
Metadata: "gateway.proto",
|
||||
Metadata: "github.com/moby/buildkit/frontend/gateway/pb/gateway.proto",
|
||||
}
|
||||
|
||||
13346
vendor/github.com/moby/buildkit/frontend/gateway/pb/gateway_vtproto.pb.go
generated
vendored
Normal file
13346
vendor/github.com/moby/buildkit/frontend/gateway/pb/gateway_vtproto.pb.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3
vendor/github.com/moby/buildkit/frontend/gateway/pb/generate.go
generated
vendored
3
vendor/github.com/moby/buildkit/frontend/gateway/pb/generate.go
generated
vendored
@@ -1,3 +0,0 @@
|
||||
package moby_buildkit_v1_frontend //nolint:revive
|
||||
|
||||
//go:generate protoc -I=. -I=../../../vendor/ -I=../../../../../../ --go_out=paths=source_relative:. --go-grpc_out=paths=source_relative,require_unimplemented_servers=false:. gateway.proto
|
||||
254
vendor/github.com/moby/buildkit/session/auth/auth.pb.go
generated
vendored
254
vendor/github.com/moby/buildkit/session/auth/auth.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// protoc-gen-go v1.34.1
|
||||
// protoc v3.11.4
|
||||
// source: auth.proto
|
||||
// source: github.com/moby/buildkit/session/auth/auth.proto
|
||||
|
||||
package auth
|
||||
|
||||
@@ -31,7 +31,7 @@ type CredentialsRequest struct {
|
||||
func (x *CredentialsRequest) Reset() {
|
||||
*x = CredentialsRequest{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_auth_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -44,7 +44,7 @@ func (x *CredentialsRequest) String() string {
|
||||
func (*CredentialsRequest) ProtoMessage() {}
|
||||
|
||||
func (x *CredentialsRequest) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_auth_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[0]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -57,7 +57,7 @@ func (x *CredentialsRequest) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use CredentialsRequest.ProtoReflect.Descriptor instead.
|
||||
func (*CredentialsRequest) Descriptor() ([]byte, []int) {
|
||||
return file_auth_proto_rawDescGZIP(), []int{0}
|
||||
return file_github_com_moby_buildkit_session_auth_auth_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (x *CredentialsRequest) GetHost() string {
|
||||
@@ -79,7 +79,7 @@ type CredentialsResponse struct {
|
||||
func (x *CredentialsResponse) Reset() {
|
||||
*x = CredentialsResponse{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_auth_proto_msgTypes[1]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[1]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -92,7 +92,7 @@ func (x *CredentialsResponse) String() string {
|
||||
func (*CredentialsResponse) ProtoMessage() {}
|
||||
|
||||
func (x *CredentialsResponse) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_auth_proto_msgTypes[1]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[1]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -105,7 +105,7 @@ func (x *CredentialsResponse) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use CredentialsResponse.ProtoReflect.Descriptor instead.
|
||||
func (*CredentialsResponse) Descriptor() ([]byte, []int) {
|
||||
return file_auth_proto_rawDescGZIP(), []int{1}
|
||||
return file_github_com_moby_buildkit_session_auth_auth_proto_rawDescGZIP(), []int{1}
|
||||
}
|
||||
|
||||
func (x *CredentialsResponse) GetUsername() string {
|
||||
@@ -137,7 +137,7 @@ type FetchTokenRequest struct {
|
||||
func (x *FetchTokenRequest) Reset() {
|
||||
*x = FetchTokenRequest{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_auth_proto_msgTypes[2]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[2]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -150,7 +150,7 @@ func (x *FetchTokenRequest) String() string {
|
||||
func (*FetchTokenRequest) ProtoMessage() {}
|
||||
|
||||
func (x *FetchTokenRequest) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_auth_proto_msgTypes[2]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[2]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -163,7 +163,7 @@ func (x *FetchTokenRequest) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use FetchTokenRequest.ProtoReflect.Descriptor instead.
|
||||
func (*FetchTokenRequest) Descriptor() ([]byte, []int) {
|
||||
return file_auth_proto_rawDescGZIP(), []int{2}
|
||||
return file_github_com_moby_buildkit_session_auth_auth_proto_rawDescGZIP(), []int{2}
|
||||
}
|
||||
|
||||
func (x *FetchTokenRequest) GetClientID() string {
|
||||
@@ -214,7 +214,7 @@ type FetchTokenResponse struct {
|
||||
func (x *FetchTokenResponse) Reset() {
|
||||
*x = FetchTokenResponse{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_auth_proto_msgTypes[3]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[3]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -227,7 +227,7 @@ func (x *FetchTokenResponse) String() string {
|
||||
func (*FetchTokenResponse) ProtoMessage() {}
|
||||
|
||||
func (x *FetchTokenResponse) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_auth_proto_msgTypes[3]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[3]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -240,7 +240,7 @@ func (x *FetchTokenResponse) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use FetchTokenResponse.ProtoReflect.Descriptor instead.
|
||||
func (*FetchTokenResponse) Descriptor() ([]byte, []int) {
|
||||
return file_auth_proto_rawDescGZIP(), []int{3}
|
||||
return file_github_com_moby_buildkit_session_auth_auth_proto_rawDescGZIP(), []int{3}
|
||||
}
|
||||
|
||||
func (x *FetchTokenResponse) GetToken() string {
|
||||
@@ -276,7 +276,7 @@ type GetTokenAuthorityRequest struct {
|
||||
func (x *GetTokenAuthorityRequest) Reset() {
|
||||
*x = GetTokenAuthorityRequest{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_auth_proto_msgTypes[4]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[4]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -289,7 +289,7 @@ func (x *GetTokenAuthorityRequest) String() string {
|
||||
func (*GetTokenAuthorityRequest) ProtoMessage() {}
|
||||
|
||||
func (x *GetTokenAuthorityRequest) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_auth_proto_msgTypes[4]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[4]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -302,7 +302,7 @@ func (x *GetTokenAuthorityRequest) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use GetTokenAuthorityRequest.ProtoReflect.Descriptor instead.
|
||||
func (*GetTokenAuthorityRequest) Descriptor() ([]byte, []int) {
|
||||
return file_auth_proto_rawDescGZIP(), []int{4}
|
||||
return file_github_com_moby_buildkit_session_auth_auth_proto_rawDescGZIP(), []int{4}
|
||||
}
|
||||
|
||||
func (x *GetTokenAuthorityRequest) GetHost() string {
|
||||
@@ -330,7 +330,7 @@ type GetTokenAuthorityResponse struct {
|
||||
func (x *GetTokenAuthorityResponse) Reset() {
|
||||
*x = GetTokenAuthorityResponse{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_auth_proto_msgTypes[5]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[5]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -343,7 +343,7 @@ func (x *GetTokenAuthorityResponse) String() string {
|
||||
func (*GetTokenAuthorityResponse) ProtoMessage() {}
|
||||
|
||||
func (x *GetTokenAuthorityResponse) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_auth_proto_msgTypes[5]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[5]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -356,7 +356,7 @@ func (x *GetTokenAuthorityResponse) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use GetTokenAuthorityResponse.ProtoReflect.Descriptor instead.
|
||||
func (*GetTokenAuthorityResponse) Descriptor() ([]byte, []int) {
|
||||
return file_auth_proto_rawDescGZIP(), []int{5}
|
||||
return file_github_com_moby_buildkit_session_auth_auth_proto_rawDescGZIP(), []int{5}
|
||||
}
|
||||
|
||||
func (x *GetTokenAuthorityResponse) GetPublicKey() []byte {
|
||||
@@ -379,7 +379,7 @@ type VerifyTokenAuthorityRequest struct {
|
||||
func (x *VerifyTokenAuthorityRequest) Reset() {
|
||||
*x = VerifyTokenAuthorityRequest{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_auth_proto_msgTypes[6]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[6]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -392,7 +392,7 @@ func (x *VerifyTokenAuthorityRequest) String() string {
|
||||
func (*VerifyTokenAuthorityRequest) ProtoMessage() {}
|
||||
|
||||
func (x *VerifyTokenAuthorityRequest) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_auth_proto_msgTypes[6]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[6]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -405,7 +405,7 @@ func (x *VerifyTokenAuthorityRequest) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use VerifyTokenAuthorityRequest.ProtoReflect.Descriptor instead.
|
||||
func (*VerifyTokenAuthorityRequest) Descriptor() ([]byte, []int) {
|
||||
return file_auth_proto_rawDescGZIP(), []int{6}
|
||||
return file_github_com_moby_buildkit_session_auth_auth_proto_rawDescGZIP(), []int{6}
|
||||
}
|
||||
|
||||
func (x *VerifyTokenAuthorityRequest) GetHost() string {
|
||||
@@ -440,7 +440,7 @@ type VerifyTokenAuthorityResponse struct {
|
||||
func (x *VerifyTokenAuthorityResponse) Reset() {
|
||||
*x = VerifyTokenAuthorityResponse{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_auth_proto_msgTypes[7]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[7]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -453,7 +453,7 @@ func (x *VerifyTokenAuthorityResponse) String() string {
|
||||
func (*VerifyTokenAuthorityResponse) ProtoMessage() {}
|
||||
|
||||
func (x *VerifyTokenAuthorityResponse) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_auth_proto_msgTypes[7]
|
||||
mi := &file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[7]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -466,7 +466,7 @@ func (x *VerifyTokenAuthorityResponse) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use VerifyTokenAuthorityResponse.ProtoReflect.Descriptor instead.
|
||||
func (*VerifyTokenAuthorityResponse) Descriptor() ([]byte, []int) {
|
||||
return file_auth_proto_rawDescGZIP(), []int{7}
|
||||
return file_github_com_moby_buildkit_session_auth_auth_proto_rawDescGZIP(), []int{7}
|
||||
}
|
||||
|
||||
func (x *VerifyTokenAuthorityResponse) GetSigned() []byte {
|
||||
@@ -476,97 +476,99 @@ func (x *VerifyTokenAuthorityResponse) GetSigned() []byte {
|
||||
return nil
|
||||
}
|
||||
|
||||
var File_auth_proto protoreflect.FileDescriptor
|
||||
var File_github_com_moby_buildkit_session_auth_auth_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_auth_proto_rawDesc = []byte{
|
||||
0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x6d, 0x6f,
|
||||
0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31, 0x22, 0x28,
|
||||
0x0a, 0x12, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x71,
|
||||
0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x48, 0x6f, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01,
|
||||
0x28, 0x09, 0x52, 0x04, 0x48, 0x6f, 0x73, 0x74, 0x22, 0x49, 0x0a, 0x13, 0x43, 0x72, 0x65, 0x64,
|
||||
0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
||||
0x1a, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x08, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x53,
|
||||
0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x53, 0x65, 0x63,
|
||||
0x72, 0x65, 0x74, 0x22, 0x8b, 0x01, 0x0a, 0x11, 0x46, 0x65, 0x74, 0x63, 0x68, 0x54, 0x6f, 0x6b,
|
||||
0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x43, 0x6c, 0x69,
|
||||
0x65, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x43, 0x6c, 0x69,
|
||||
0x65, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x12, 0x0a, 0x04, 0x48, 0x6f, 0x73, 0x74, 0x18, 0x02, 0x20,
|
||||
0x01, 0x28, 0x09, 0x52, 0x04, 0x48, 0x6f, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x52, 0x65, 0x61,
|
||||
0x6c, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x52, 0x65, 0x61, 0x6c, 0x6d, 0x12,
|
||||
0x18, 0x0a, 0x07, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
|
||||
0x52, 0x07, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x63, 0x6f,
|
||||
0x70, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x53, 0x63, 0x6f, 0x70, 0x65,
|
||||
0x73, 0x22, 0x64, 0x0a, 0x12, 0x46, 0x65, 0x74, 0x63, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52,
|
||||
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x54, 0x6f, 0x6b, 0x65, 0x6e,
|
||||
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x1c, 0x0a,
|
||||
0x09, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x49, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
|
||||
0x52, 0x09, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x49, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x49,
|
||||
0x73, 0x73, 0x75, 0x65, 0x64, 0x41, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x49,
|
||||
0x73, 0x73, 0x75, 0x65, 0x64, 0x41, 0x74, 0x22, 0x42, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x54, 0x6f,
|
||||
0x6b, 0x65, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75,
|
||||
0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x48, 0x6f, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x04, 0x48, 0x6f, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x53, 0x61, 0x6c, 0x74, 0x18,
|
||||
0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x53, 0x61, 0x6c, 0x74, 0x22, 0x39, 0x0a, 0x19, 0x47,
|
||||
0x65, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79,
|
||||
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x50, 0x75, 0x62, 0x6c,
|
||||
0x69, 0x63, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x50, 0x75, 0x62,
|
||||
0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x22, 0x5f, 0x0a, 0x1b, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79,
|
||||
0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65,
|
||||
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x48, 0x6f, 0x73, 0x74, 0x18, 0x01, 0x20,
|
||||
0x01, 0x28, 0x09, 0x52, 0x04, 0x48, 0x6f, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x50, 0x61, 0x79,
|
||||
0x6c, 0x6f, 0x61, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x50, 0x61, 0x79, 0x6c,
|
||||
0x6f, 0x61, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x53, 0x61, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
|
||||
0x0c, 0x52, 0x04, 0x53, 0x61, 0x6c, 0x74, 0x22, 0x36, 0x0a, 0x1c, 0x56, 0x65, 0x72, 0x69, 0x66,
|
||||
0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x52,
|
||||
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x69, 0x67, 0x6e, 0x65,
|
||||
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x53, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x32,
|
||||
0xa0, 0x03, 0x0a, 0x04, 0x41, 0x75, 0x74, 0x68, 0x12, 0x5a, 0x0a, 0x0b, 0x43, 0x72, 0x65, 0x64,
|
||||
0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x12, 0x24, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66,
|
||||
0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x64, 0x65,
|
||||
0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e,
|
||||
var file_github_com_moby_buildkit_session_auth_auth_proto_rawDesc = []byte{
|
||||
0x0a, 0x30, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62,
|
||||
0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73, 0x65, 0x73, 0x73, 0x69,
|
||||
0x6f, 0x6e, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2e, 0x70, 0x72, 0x6f,
|
||||
0x74, 0x6f, 0x12, 0x10, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e,
|
||||
0x63, 0x2e, 0x76, 0x31, 0x22, 0x28, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69,
|
||||
0x61, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x48, 0x6f,
|
||||
0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x48, 0x6f, 0x73, 0x74, 0x22, 0x49,
|
||||
0x0a, 0x13, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73,
|
||||
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
|
||||
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
|
||||
0x65, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x06, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x22, 0x8b, 0x01, 0x0a, 0x11, 0x46, 0x65,
|
||||
0x74, 0x63, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
|
||||
0x1a, 0x0a, 0x08, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x08, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x12, 0x0a, 0x04, 0x48,
|
||||
0x6f, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x48, 0x6f, 0x73, 0x74, 0x12,
|
||||
0x14, 0x0a, 0x05, 0x52, 0x65, 0x61, 0x6c, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
|
||||
0x52, 0x65, 0x61, 0x6c, 0x6d, 0x12, 0x18, 0x0a, 0x07, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
|
||||
0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12,
|
||||
0x16, 0x0a, 0x06, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52,
|
||||
0x06, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x22, 0x64, 0x0a, 0x12, 0x46, 0x65, 0x74, 0x63, 0x68,
|
||||
0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a,
|
||||
0x05, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x54, 0x6f,
|
||||
0x6b, 0x65, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x49, 0x6e,
|
||||
0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65, 0x73, 0x49,
|
||||
0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x49, 0x73, 0x73, 0x75, 0x65, 0x64, 0x41, 0x74, 0x18, 0x03, 0x20,
|
||||
0x01, 0x28, 0x03, 0x52, 0x08, 0x49, 0x73, 0x73, 0x75, 0x65, 0x64, 0x41, 0x74, 0x22, 0x42, 0x0a,
|
||||
0x18, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69,
|
||||
0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x48, 0x6f, 0x73,
|
||||
0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x48, 0x6f, 0x73, 0x74, 0x12, 0x12, 0x0a,
|
||||
0x04, 0x53, 0x61, 0x6c, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x53, 0x61, 0x6c,
|
||||
0x74, 0x22, 0x39, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x41, 0x75, 0x74,
|
||||
0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c,
|
||||
0x0a, 0x09, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||
0x0c, 0x52, 0x09, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x22, 0x5f, 0x0a, 0x1b,
|
||||
0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f,
|
||||
0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x48,
|
||||
0x6f, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x48, 0x6f, 0x73, 0x74, 0x12,
|
||||
0x18, 0x0a, 0x07, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c,
|
||||
0x52, 0x07, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x53, 0x61, 0x6c,
|
||||
0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x53, 0x61, 0x6c, 0x74, 0x22, 0x36, 0x0a,
|
||||
0x1c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x41, 0x75, 0x74, 0x68,
|
||||
0x6f, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a,
|
||||
0x06, 0x53, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x53,
|
||||
0x69, 0x67, 0x6e, 0x65, 0x64, 0x32, 0xa0, 0x03, 0x0a, 0x04, 0x41, 0x75, 0x74, 0x68, 0x12, 0x5a,
|
||||
0x0a, 0x0b, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x12, 0x24, 0x2e,
|
||||
0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31,
|
||||
0x2e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70,
|
||||
0x6f, 0x6e, 0x73, 0x65, 0x12, 0x57, 0x0a, 0x0a, 0x46, 0x65, 0x74, 0x63, 0x68, 0x54, 0x6f, 0x6b,
|
||||
0x65, 0x6e, 0x12, 0x23, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79,
|
||||
0x6e, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e,
|
||||
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66,
|
||||
0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x65, 0x74, 0x63, 0x68,
|
||||
0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6c, 0x0a,
|
||||
0x11, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69,
|
||||
0x74, 0x79, 0x12, 0x2a, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79,
|
||||
0x6e, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x41, 0x75,
|
||||
0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b,
|
||||
0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x76,
|
||||
0x31, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72,
|
||||
0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x75, 0x0a, 0x14, 0x56,
|
||||
0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72,
|
||||
0x69, 0x74, 0x79, 0x12, 0x2d, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73,
|
||||
0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x6f, 0x6b,
|
||||
0x65, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
|
||||
0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79,
|
||||
0x6e, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x6f, 0x6b, 0x65,
|
||||
0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
||||
0x73, 0x65, 0x42, 0x27, 0x5a, 0x25, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d,
|
||||
0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73,
|
||||
0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x62, 0x06, 0x70, 0x72, 0x6f,
|
||||
0x74, 0x6f, 0x33,
|
||||
0x2e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x73, 0x52, 0x65, 0x71, 0x75,
|
||||
0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73,
|
||||
0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61,
|
||||
0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x57, 0x0a, 0x0a, 0x46, 0x65,
|
||||
0x74, 0x63, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x23, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e,
|
||||
0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x65, 0x74, 0x63,
|
||||
0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e,
|
||||
0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31,
|
||||
0x2e, 0x46, 0x65, 0x74, 0x63, 0x68, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
||||
0x6e, 0x73, 0x65, 0x12, 0x6c, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x41,
|
||||
0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x12, 0x2a, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e,
|
||||
0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x54,
|
||||
0x6f, 0x6b, 0x65, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71,
|
||||
0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65,
|
||||
0x73, 0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x6f, 0x6b, 0x65, 0x6e,
|
||||
0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
|
||||
0x65, 0x12, 0x75, 0x0a, 0x14, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e,
|
||||
0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x12, 0x2d, 0x2e, 0x6d, 0x6f, 0x62, 0x79,
|
||||
0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x65, 0x72,
|
||||
0x69, 0x66, 0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74,
|
||||
0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e,
|
||||
0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x56, 0x65, 0x72, 0x69,
|
||||
0x66, 0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79,
|
||||
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x27, 0x5a, 0x25, 0x67, 0x69, 0x74, 0x68,
|
||||
0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c,
|
||||
0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x2f, 0x61, 0x75, 0x74,
|
||||
0x68, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
}
|
||||
|
||||
var (
|
||||
file_auth_proto_rawDescOnce sync.Once
|
||||
file_auth_proto_rawDescData = file_auth_proto_rawDesc
|
||||
file_github_com_moby_buildkit_session_auth_auth_proto_rawDescOnce sync.Once
|
||||
file_github_com_moby_buildkit_session_auth_auth_proto_rawDescData = file_github_com_moby_buildkit_session_auth_auth_proto_rawDesc
|
||||
)
|
||||
|
||||
func file_auth_proto_rawDescGZIP() []byte {
|
||||
file_auth_proto_rawDescOnce.Do(func() {
|
||||
file_auth_proto_rawDescData = protoimpl.X.CompressGZIP(file_auth_proto_rawDescData)
|
||||
func file_github_com_moby_buildkit_session_auth_auth_proto_rawDescGZIP() []byte {
|
||||
file_github_com_moby_buildkit_session_auth_auth_proto_rawDescOnce.Do(func() {
|
||||
file_github_com_moby_buildkit_session_auth_auth_proto_rawDescData = protoimpl.X.CompressGZIP(file_github_com_moby_buildkit_session_auth_auth_proto_rawDescData)
|
||||
})
|
||||
return file_auth_proto_rawDescData
|
||||
return file_github_com_moby_buildkit_session_auth_auth_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_auth_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
|
||||
var file_auth_proto_goTypes = []interface{}{
|
||||
var file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
|
||||
var file_github_com_moby_buildkit_session_auth_auth_proto_goTypes = []interface{}{
|
||||
(*CredentialsRequest)(nil), // 0: moby.filesync.v1.CredentialsRequest
|
||||
(*CredentialsResponse)(nil), // 1: moby.filesync.v1.CredentialsResponse
|
||||
(*FetchTokenRequest)(nil), // 2: moby.filesync.v1.FetchTokenRequest
|
||||
@@ -576,7 +578,7 @@ var file_auth_proto_goTypes = []interface{}{
|
||||
(*VerifyTokenAuthorityRequest)(nil), // 6: moby.filesync.v1.VerifyTokenAuthorityRequest
|
||||
(*VerifyTokenAuthorityResponse)(nil), // 7: moby.filesync.v1.VerifyTokenAuthorityResponse
|
||||
}
|
||||
var file_auth_proto_depIdxs = []int32{
|
||||
var file_github_com_moby_buildkit_session_auth_auth_proto_depIdxs = []int32{
|
||||
0, // 0: moby.filesync.v1.Auth.Credentials:input_type -> moby.filesync.v1.CredentialsRequest
|
||||
2, // 1: moby.filesync.v1.Auth.FetchToken:input_type -> moby.filesync.v1.FetchTokenRequest
|
||||
4, // 2: moby.filesync.v1.Auth.GetTokenAuthority:input_type -> moby.filesync.v1.GetTokenAuthorityRequest
|
||||
@@ -592,13 +594,13 @@ var file_auth_proto_depIdxs = []int32{
|
||||
0, // [0:0] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_auth_proto_init() }
|
||||
func file_auth_proto_init() {
|
||||
if File_auth_proto != nil {
|
||||
func init() { file_github_com_moby_buildkit_session_auth_auth_proto_init() }
|
||||
func file_github_com_moby_buildkit_session_auth_auth_proto_init() {
|
||||
if File_github_com_moby_buildkit_session_auth_auth_proto != nil {
|
||||
return
|
||||
}
|
||||
if !protoimpl.UnsafeEnabled {
|
||||
file_auth_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*CredentialsRequest); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -610,7 +612,7 @@ func file_auth_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_auth_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*CredentialsResponse); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -622,7 +624,7 @@ func file_auth_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_auth_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*FetchTokenRequest); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -634,7 +636,7 @@ func file_auth_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_auth_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*FetchTokenResponse); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -646,7 +648,7 @@ func file_auth_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_auth_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*GetTokenAuthorityRequest); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -658,7 +660,7 @@ func file_auth_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_auth_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*GetTokenAuthorityResponse); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -670,7 +672,7 @@ func file_auth_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_auth_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*VerifyTokenAuthorityRequest); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -682,7 +684,7 @@ func file_auth_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_auth_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*VerifyTokenAuthorityResponse); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -699,18 +701,18 @@ func file_auth_proto_init() {
|
||||
out := protoimpl.TypeBuilder{
|
||||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: file_auth_proto_rawDesc,
|
||||
RawDescriptor: file_github_com_moby_buildkit_session_auth_auth_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 8,
|
||||
NumExtensions: 0,
|
||||
NumServices: 1,
|
||||
},
|
||||
GoTypes: file_auth_proto_goTypes,
|
||||
DependencyIndexes: file_auth_proto_depIdxs,
|
||||
MessageInfos: file_auth_proto_msgTypes,
|
||||
GoTypes: file_github_com_moby_buildkit_session_auth_auth_proto_goTypes,
|
||||
DependencyIndexes: file_github_com_moby_buildkit_session_auth_auth_proto_depIdxs,
|
||||
MessageInfos: file_github_com_moby_buildkit_session_auth_auth_proto_msgTypes,
|
||||
}.Build()
|
||||
File_auth_proto = out.File
|
||||
file_auth_proto_rawDesc = nil
|
||||
file_auth_proto_goTypes = nil
|
||||
file_auth_proto_depIdxs = nil
|
||||
File_github_com_moby_buildkit_session_auth_auth_proto = out.File
|
||||
file_github_com_moby_buildkit_session_auth_auth_proto_rawDesc = nil
|
||||
file_github_com_moby_buildkit_session_auth_auth_proto_goTypes = nil
|
||||
file_github_com_moby_buildkit_session_auth_auth_proto_depIdxs = nil
|
||||
}
|
||||
|
||||
4
vendor/github.com/moby/buildkit/session/auth/auth_grpc.pb.go
generated
vendored
4
vendor/github.com/moby/buildkit/session/auth/auth_grpc.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// - protoc-gen-go-grpc v1.5.1
|
||||
// - protoc v3.11.4
|
||||
// source: auth.proto
|
||||
// source: github.com/moby/buildkit/session/auth/auth.proto
|
||||
|
||||
package auth
|
||||
|
||||
@@ -229,5 +229,5 @@ var Auth_ServiceDesc = grpc.ServiceDesc{
|
||||
},
|
||||
},
|
||||
Streams: []grpc.StreamDesc{},
|
||||
Metadata: "auth.proto",
|
||||
Metadata: "github.com/moby/buildkit/session/auth/auth.proto",
|
||||
}
|
||||
|
||||
1887
vendor/github.com/moby/buildkit/session/auth/auth_vtproto.pb.go
generated
vendored
Normal file
1887
vendor/github.com/moby/buildkit/session/auth/auth_vtproto.pb.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3
vendor/github.com/moby/buildkit/session/auth/generate.go
generated
vendored
3
vendor/github.com/moby/buildkit/session/auth/generate.go
generated
vendored
@@ -1,3 +0,0 @@
|
||||
package auth
|
||||
|
||||
//go:generate protoc --go_out=paths=source_relative:. --go-grpc_out=paths=source_relative,require_unimplemented_servers=false:. auth.proto
|
||||
103
vendor/github.com/moby/buildkit/session/filesync/filesync.pb.go
generated
vendored
103
vendor/github.com/moby/buildkit/session/filesync/filesync.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// protoc-gen-go v1.34.1
|
||||
// protoc v3.11.4
|
||||
// source: filesync.proto
|
||||
// source: github.com/moby/buildkit/session/filesync/filesync.proto
|
||||
|
||||
package filesync
|
||||
|
||||
@@ -33,7 +33,7 @@ type BytesMessage struct {
|
||||
func (x *BytesMessage) Reset() {
|
||||
*x = BytesMessage{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_filesync_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_session_filesync_filesync_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -46,7 +46,7 @@ func (x *BytesMessage) String() string {
|
||||
func (*BytesMessage) ProtoMessage() {}
|
||||
|
||||
func (x *BytesMessage) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_filesync_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_session_filesync_filesync_proto_msgTypes[0]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -59,7 +59,7 @@ func (x *BytesMessage) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use BytesMessage.ProtoReflect.Descriptor instead.
|
||||
func (*BytesMessage) Descriptor() ([]byte, []int) {
|
||||
return file_filesync_proto_rawDescGZIP(), []int{0}
|
||||
return file_github_com_moby_buildkit_session_filesync_filesync_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (x *BytesMessage) GetData() []byte {
|
||||
@@ -69,54 +69,57 @@ func (x *BytesMessage) GetData() []byte {
|
||||
return nil
|
||||
}
|
||||
|
||||
var File_filesync_proto protoreflect.FileDescriptor
|
||||
var File_github_com_moby_buildkit_session_filesync_filesync_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_filesync_proto_rawDesc = []byte{
|
||||
0x0a, 0x0e, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||
0x12, 0x10, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2e,
|
||||
0x76, 0x31, 0x1a, 0x2d, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74,
|
||||
0x6f, 0x6e, 0x69, 0x73, 0x74, 0x69, 0x69, 0x67, 0x69, 0x2f, 0x66, 0x73, 0x75, 0x74, 0x69, 0x6c,
|
||||
0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2f, 0x77, 0x69, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
||||
0x6f, 0x22, 0x22, 0x0a, 0x0c, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
|
||||
0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52,
|
||||
0x04, 0x64, 0x61, 0x74, 0x61, 0x32, 0x83, 0x01, 0x0a, 0x08, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x79,
|
||||
0x6e, 0x63, 0x12, 0x3a, 0x0a, 0x08, 0x44, 0x69, 0x66, 0x66, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x14,
|
||||
var file_github_com_moby_buildkit_session_filesync_filesync_proto_rawDesc = []byte{
|
||||
0x0a, 0x38, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62,
|
||||
0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73, 0x65, 0x73, 0x73, 0x69,
|
||||
0x6f, 0x6e, 0x2f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2f, 0x66, 0x69, 0x6c, 0x65,
|
||||
0x73, 0x79, 0x6e, 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x10, 0x6d, 0x6f, 0x62, 0x79,
|
||||
0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31, 0x1a, 0x2d, 0x67, 0x69,
|
||||
0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x74, 0x6f, 0x6e, 0x69, 0x73, 0x74, 0x69,
|
||||
0x69, 0x67, 0x69, 0x2f, 0x66, 0x73, 0x75, 0x74, 0x69, 0x6c, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73,
|
||||
0x2f, 0x77, 0x69, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x22, 0x0a, 0x0c, 0x42,
|
||||
0x79, 0x74, 0x65, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64,
|
||||
0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x32,
|
||||
0x83, 0x01, 0x0a, 0x08, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x79, 0x6e, 0x63, 0x12, 0x3a, 0x0a, 0x08,
|
||||
0x44, 0x69, 0x66, 0x66, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x14, 0x2e, 0x66, 0x73, 0x75, 0x74, 0x69,
|
||||
0x6c, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x1a, 0x14,
|
||||
0x2e, 0x66, 0x73, 0x75, 0x74, 0x69, 0x6c, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x50, 0x61,
|
||||
0x63, 0x6b, 0x65, 0x74, 0x1a, 0x14, 0x2e, 0x66, 0x73, 0x75, 0x74, 0x69, 0x6c, 0x2e, 0x74, 0x79,
|
||||
0x70, 0x65, 0x73, 0x2e, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x28, 0x01, 0x30, 0x01, 0x12, 0x3b,
|
||||
0x0a, 0x09, 0x54, 0x61, 0x72, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x14, 0x2e, 0x66, 0x73,
|
||||
0x63, 0x6b, 0x65, 0x74, 0x28, 0x01, 0x30, 0x01, 0x12, 0x3b, 0x0a, 0x09, 0x54, 0x61, 0x72, 0x53,
|
||||
0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x14, 0x2e, 0x66, 0x73, 0x75, 0x74, 0x69, 0x6c, 0x2e, 0x74,
|
||||
0x79, 0x70, 0x65, 0x73, 0x2e, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x1a, 0x14, 0x2e, 0x66, 0x73,
|
||||
0x75, 0x74, 0x69, 0x6c, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x50, 0x61, 0x63, 0x6b, 0x65,
|
||||
0x74, 0x1a, 0x14, 0x2e, 0x66, 0x73, 0x75, 0x74, 0x69, 0x6c, 0x2e, 0x74, 0x79, 0x70, 0x65, 0x73,
|
||||
0x2e, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x28, 0x01, 0x30, 0x01, 0x32, 0x5a, 0x0a, 0x08, 0x46,
|
||||
0x69, 0x6c, 0x65, 0x53, 0x65, 0x6e, 0x64, 0x12, 0x4e, 0x0a, 0x08, 0x44, 0x69, 0x66, 0x66, 0x43,
|
||||
0x6f, 0x70, 0x79, 0x12, 0x1e, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73,
|
||||
0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4d, 0x65, 0x73, 0x73,
|
||||
0x61, 0x67, 0x65, 0x1a, 0x1e, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73,
|
||||
0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4d, 0x65, 0x73, 0x73,
|
||||
0x61, 0x67, 0x65, 0x28, 0x01, 0x30, 0x01, 0x42, 0x2b, 0x5a, 0x29, 0x67, 0x69, 0x74, 0x68, 0x75,
|
||||
0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
||||
0x6b, 0x69, 0x74, 0x2f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x2f, 0x66, 0x69, 0x6c, 0x65,
|
||||
0x73, 0x79, 0x6e, 0x63, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
0x74, 0x28, 0x01, 0x30, 0x01, 0x32, 0x5a, 0x0a, 0x08, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x65, 0x6e,
|
||||
0x64, 0x12, 0x4e, 0x0a, 0x08, 0x44, 0x69, 0x66, 0x66, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x1e, 0x2e,
|
||||
0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31,
|
||||
0x2e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x1e, 0x2e,
|
||||
0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x2e, 0x76, 0x31,
|
||||
0x2e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x28, 0x01, 0x30,
|
||||
0x01, 0x42, 0x2b, 0x5a, 0x29, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
|
||||
0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73, 0x65,
|
||||
0x73, 0x73, 0x69, 0x6f, 0x6e, 0x2f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x79, 0x6e, 0x63, 0x62, 0x06,
|
||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
}
|
||||
|
||||
var (
|
||||
file_filesync_proto_rawDescOnce sync.Once
|
||||
file_filesync_proto_rawDescData = file_filesync_proto_rawDesc
|
||||
file_github_com_moby_buildkit_session_filesync_filesync_proto_rawDescOnce sync.Once
|
||||
file_github_com_moby_buildkit_session_filesync_filesync_proto_rawDescData = file_github_com_moby_buildkit_session_filesync_filesync_proto_rawDesc
|
||||
)
|
||||
|
||||
func file_filesync_proto_rawDescGZIP() []byte {
|
||||
file_filesync_proto_rawDescOnce.Do(func() {
|
||||
file_filesync_proto_rawDescData = protoimpl.X.CompressGZIP(file_filesync_proto_rawDescData)
|
||||
func file_github_com_moby_buildkit_session_filesync_filesync_proto_rawDescGZIP() []byte {
|
||||
file_github_com_moby_buildkit_session_filesync_filesync_proto_rawDescOnce.Do(func() {
|
||||
file_github_com_moby_buildkit_session_filesync_filesync_proto_rawDescData = protoimpl.X.CompressGZIP(file_github_com_moby_buildkit_session_filesync_filesync_proto_rawDescData)
|
||||
})
|
||||
return file_filesync_proto_rawDescData
|
||||
return file_github_com_moby_buildkit_session_filesync_filesync_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_filesync_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||||
var file_filesync_proto_goTypes = []interface{}{
|
||||
var file_github_com_moby_buildkit_session_filesync_filesync_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||||
var file_github_com_moby_buildkit_session_filesync_filesync_proto_goTypes = []interface{}{
|
||||
(*BytesMessage)(nil), // 0: moby.filesync.v1.BytesMessage
|
||||
(*types.Packet)(nil), // 1: fsutil.types.Packet
|
||||
}
|
||||
var file_filesync_proto_depIdxs = []int32{
|
||||
var file_github_com_moby_buildkit_session_filesync_filesync_proto_depIdxs = []int32{
|
||||
1, // 0: moby.filesync.v1.FileSync.DiffCopy:input_type -> fsutil.types.Packet
|
||||
1, // 1: moby.filesync.v1.FileSync.TarStream:input_type -> fsutil.types.Packet
|
||||
0, // 2: moby.filesync.v1.FileSend.DiffCopy:input_type -> moby.filesync.v1.BytesMessage
|
||||
@@ -130,13 +133,13 @@ var file_filesync_proto_depIdxs = []int32{
|
||||
0, // [0:0] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_filesync_proto_init() }
|
||||
func file_filesync_proto_init() {
|
||||
if File_filesync_proto != nil {
|
||||
func init() { file_github_com_moby_buildkit_session_filesync_filesync_proto_init() }
|
||||
func file_github_com_moby_buildkit_session_filesync_filesync_proto_init() {
|
||||
if File_github_com_moby_buildkit_session_filesync_filesync_proto != nil {
|
||||
return
|
||||
}
|
||||
if !protoimpl.UnsafeEnabled {
|
||||
file_filesync_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_session_filesync_filesync_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BytesMessage); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -153,18 +156,18 @@ func file_filesync_proto_init() {
|
||||
out := protoimpl.TypeBuilder{
|
||||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: file_filesync_proto_rawDesc,
|
||||
RawDescriptor: file_github_com_moby_buildkit_session_filesync_filesync_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 1,
|
||||
NumExtensions: 0,
|
||||
NumServices: 2,
|
||||
},
|
||||
GoTypes: file_filesync_proto_goTypes,
|
||||
DependencyIndexes: file_filesync_proto_depIdxs,
|
||||
MessageInfos: file_filesync_proto_msgTypes,
|
||||
GoTypes: file_github_com_moby_buildkit_session_filesync_filesync_proto_goTypes,
|
||||
DependencyIndexes: file_github_com_moby_buildkit_session_filesync_filesync_proto_depIdxs,
|
||||
MessageInfos: file_github_com_moby_buildkit_session_filesync_filesync_proto_msgTypes,
|
||||
}.Build()
|
||||
File_filesync_proto = out.File
|
||||
file_filesync_proto_rawDesc = nil
|
||||
file_filesync_proto_goTypes = nil
|
||||
file_filesync_proto_depIdxs = nil
|
||||
File_github_com_moby_buildkit_session_filesync_filesync_proto = out.File
|
||||
file_github_com_moby_buildkit_session_filesync_filesync_proto_rawDesc = nil
|
||||
file_github_com_moby_buildkit_session_filesync_filesync_proto_goTypes = nil
|
||||
file_github_com_moby_buildkit_session_filesync_filesync_proto_depIdxs = nil
|
||||
}
|
||||
|
||||
6
vendor/github.com/moby/buildkit/session/filesync/filesync_grpc.pb.go
generated
vendored
6
vendor/github.com/moby/buildkit/session/filesync/filesync_grpc.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// - protoc-gen-go-grpc v1.5.1
|
||||
// - protoc v3.11.4
|
||||
// source: filesync.proto
|
||||
// source: github.com/moby/buildkit/session/filesync/filesync.proto
|
||||
|
||||
package filesync
|
||||
|
||||
@@ -146,7 +146,7 @@ var FileSync_ServiceDesc = grpc.ServiceDesc{
|
||||
ClientStreams: true,
|
||||
},
|
||||
},
|
||||
Metadata: "filesync.proto",
|
||||
Metadata: "github.com/moby/buildkit/session/filesync/filesync.proto",
|
||||
}
|
||||
|
||||
const (
|
||||
@@ -244,5 +244,5 @@ var FileSend_ServiceDesc = grpc.ServiceDesc{
|
||||
ClientStreams: true,
|
||||
},
|
||||
},
|
||||
Metadata: "filesync.proto",
|
||||
Metadata: "github.com/moby/buildkit/session/filesync/filesync.proto",
|
||||
}
|
||||
|
||||
200
vendor/github.com/moby/buildkit/session/filesync/filesync_vtproto.pb.go
generated
vendored
Normal file
200
vendor/github.com/moby/buildkit/session/filesync/filesync_vtproto.pb.go
generated
vendored
Normal file
@@ -0,0 +1,200 @@
|
||||
// Code generated by protoc-gen-go-vtproto. DO NOT EDIT.
|
||||
// protoc-gen-go-vtproto version: v0.6.1-0.20240319094008-0393e58bdf10
|
||||
// source: github.com/moby/buildkit/session/filesync/filesync.proto
|
||||
|
||||
package filesync
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
protohelpers "github.com/planetscale/vtprotobuf/protohelpers"
|
||||
proto "google.golang.org/protobuf/proto"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
io "io"
|
||||
)
|
||||
|
||||
const (
|
||||
// Verify that this generated code is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||
)
|
||||
|
||||
func (m *BytesMessage) CloneVT() *BytesMessage {
|
||||
if m == nil {
|
||||
return (*BytesMessage)(nil)
|
||||
}
|
||||
r := new(BytesMessage)
|
||||
if rhs := m.Data; rhs != nil {
|
||||
tmpBytes := make([]byte, len(rhs))
|
||||
copy(tmpBytes, rhs)
|
||||
r.Data = tmpBytes
|
||||
}
|
||||
if len(m.unknownFields) > 0 {
|
||||
r.unknownFields = make([]byte, len(m.unknownFields))
|
||||
copy(r.unknownFields, m.unknownFields)
|
||||
}
|
||||
return r
|
||||
}
|
||||
|
||||
func (m *BytesMessage) CloneMessageVT() proto.Message {
|
||||
return m.CloneVT()
|
||||
}
|
||||
|
||||
func (this *BytesMessage) EqualVT(that *BytesMessage) bool {
|
||||
if this == that {
|
||||
return true
|
||||
} else if this == nil || that == nil {
|
||||
return false
|
||||
}
|
||||
if string(this.Data) != string(that.Data) {
|
||||
return false
|
||||
}
|
||||
return string(this.unknownFields) == string(that.unknownFields)
|
||||
}
|
||||
|
||||
func (this *BytesMessage) EqualMessageVT(thatMsg proto.Message) bool {
|
||||
that, ok := thatMsg.(*BytesMessage)
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
return this.EqualVT(that)
|
||||
}
|
||||
func (m *BytesMessage) MarshalVT() (dAtA []byte, err error) {
|
||||
if m == nil {
|
||||
return nil, nil
|
||||
}
|
||||
size := m.SizeVT()
|
||||
dAtA = make([]byte, size)
|
||||
n, err := m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return dAtA[:n], nil
|
||||
}
|
||||
|
||||
func (m *BytesMessage) MarshalToVT(dAtA []byte) (int, error) {
|
||||
size := m.SizeVT()
|
||||
return m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
}
|
||||
|
||||
func (m *BytesMessage) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
|
||||
if m == nil {
|
||||
return 0, nil
|
||||
}
|
||||
i := len(dAtA)
|
||||
_ = i
|
||||
var l int
|
||||
_ = l
|
||||
if m.unknownFields != nil {
|
||||
i -= len(m.unknownFields)
|
||||
copy(dAtA[i:], m.unknownFields)
|
||||
}
|
||||
if len(m.Data) > 0 {
|
||||
i -= len(m.Data)
|
||||
copy(dAtA[i:], m.Data)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.Data)))
|
||||
i--
|
||||
dAtA[i] = 0xa
|
||||
}
|
||||
return len(dAtA) - i, nil
|
||||
}
|
||||
|
||||
func (m *BytesMessage) SizeVT() (n int) {
|
||||
if m == nil {
|
||||
return 0
|
||||
}
|
||||
var l int
|
||||
_ = l
|
||||
l = len(m.Data)
|
||||
if l > 0 {
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
n += len(m.unknownFields)
|
||||
return n
|
||||
}
|
||||
|
||||
func (m *BytesMessage) UnmarshalVT(dAtA []byte) error {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
for iNdEx < l {
|
||||
preIndex := iNdEx
|
||||
var wire uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
wire |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
fieldNum := int32(wire >> 3)
|
||||
wireType := int(wire & 0x7)
|
||||
if wireType == 4 {
|
||||
return fmt.Errorf("proto: BytesMessage: wiretype end group for non-group")
|
||||
}
|
||||
if fieldNum <= 0 {
|
||||
return fmt.Errorf("proto: BytesMessage: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
}
|
||||
switch fieldNum {
|
||||
case 1:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType)
|
||||
}
|
||||
var byteLen int
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
byteLen |= int(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
if byteLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + byteLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...)
|
||||
if m.Data == nil {
|
||||
m.Data = []byte{}
|
||||
}
|
||||
iNdEx = postIndex
|
||||
default:
|
||||
iNdEx = preIndex
|
||||
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if (iNdEx + skippy) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
|
||||
iNdEx += skippy
|
||||
}
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
return nil
|
||||
}
|
||||
3
vendor/github.com/moby/buildkit/session/filesync/generate.go
generated
vendored
3
vendor/github.com/moby/buildkit/session/filesync/generate.go
generated
vendored
@@ -1,3 +0,0 @@
|
||||
package filesync
|
||||
|
||||
//go:generate protoc -I=. -I=../../vendor/ --go_out=paths=source_relative:. --go-grpc_out=paths=source_relative,require_unimplemented_servers=false:. filesync.proto
|
||||
3
vendor/github.com/moby/buildkit/session/secrets/generate.go
generated
vendored
3
vendor/github.com/moby/buildkit/session/secrets/generate.go
generated
vendored
@@ -1,3 +0,0 @@
|
||||
package secrets
|
||||
|
||||
//go:generate protoc --go_out=paths=source_relative:. --go-grpc_out=paths=source_relative,require_unimplemented_servers=false:. secrets.proto
|
||||
119
vendor/github.com/moby/buildkit/session/secrets/secrets.pb.go
generated
vendored
119
vendor/github.com/moby/buildkit/session/secrets/secrets.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// protoc-gen-go v1.34.1
|
||||
// protoc v3.11.4
|
||||
// source: secrets.proto
|
||||
// source: github.com/moby/buildkit/session/secrets/secrets.proto
|
||||
|
||||
package secrets
|
||||
|
||||
@@ -32,7 +32,7 @@ type GetSecretRequest struct {
|
||||
func (x *GetSecretRequest) Reset() {
|
||||
*x = GetSecretRequest{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_secrets_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_session_secrets_secrets_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -45,7 +45,7 @@ func (x *GetSecretRequest) String() string {
|
||||
func (*GetSecretRequest) ProtoMessage() {}
|
||||
|
||||
func (x *GetSecretRequest) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_secrets_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_session_secrets_secrets_proto_msgTypes[0]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -58,7 +58,7 @@ func (x *GetSecretRequest) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use GetSecretRequest.ProtoReflect.Descriptor instead.
|
||||
func (*GetSecretRequest) Descriptor() ([]byte, []int) {
|
||||
return file_secrets_proto_rawDescGZIP(), []int{0}
|
||||
return file_github_com_moby_buildkit_session_secrets_secrets_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (x *GetSecretRequest) GetID() string {
|
||||
@@ -86,7 +86,7 @@ type GetSecretResponse struct {
|
||||
func (x *GetSecretResponse) Reset() {
|
||||
*x = GetSecretResponse{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_secrets_proto_msgTypes[1]
|
||||
mi := &file_github_com_moby_buildkit_session_secrets_secrets_proto_msgTypes[1]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -99,7 +99,7 @@ func (x *GetSecretResponse) String() string {
|
||||
func (*GetSecretResponse) ProtoMessage() {}
|
||||
|
||||
func (x *GetSecretResponse) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_secrets_proto_msgTypes[1]
|
||||
mi := &file_github_com_moby_buildkit_session_secrets_secrets_proto_msgTypes[1]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -112,7 +112,7 @@ func (x *GetSecretResponse) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use GetSecretResponse.ProtoReflect.Descriptor instead.
|
||||
func (*GetSecretResponse) Descriptor() ([]byte, []int) {
|
||||
return file_secrets_proto_rawDescGZIP(), []int{1}
|
||||
return file_github_com_moby_buildkit_session_secrets_secrets_proto_rawDescGZIP(), []int{1}
|
||||
}
|
||||
|
||||
func (x *GetSecretResponse) GetData() []byte {
|
||||
@@ -122,58 +122,61 @@ func (x *GetSecretResponse) GetData() []byte {
|
||||
return nil
|
||||
}
|
||||
|
||||
var File_secrets_proto protoreflect.FileDescriptor
|
||||
var File_github_com_moby_buildkit_session_secrets_secrets_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_secrets_proto_rawDesc = []byte{
|
||||
0x0a, 0x0d, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
|
||||
0x18, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x73,
|
||||
0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x2e, 0x76, 0x31, 0x22, 0xc1, 0x01, 0x0a, 0x10, 0x47, 0x65,
|
||||
0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e,
|
||||
0x0a, 0x02, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x49, 0x44, 0x12, 0x5d,
|
||||
0x0a, 0x0b, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20,
|
||||
0x03, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
||||
var file_github_com_moby_buildkit_session_secrets_secrets_proto_rawDesc = []byte{
|
||||
0x0a, 0x36, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62,
|
||||
0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73, 0x65, 0x73, 0x73, 0x69,
|
||||
0x6f, 0x6e, 0x2f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x2f, 0x73, 0x65, 0x63, 0x72, 0x65,
|
||||
0x74, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x18, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62,
|
||||
0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x2e,
|
||||
0x76, 0x31, 0x22, 0xc1, 0x01, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74,
|
||||
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x44, 0x18, 0x01, 0x20,
|
||||
0x01, 0x28, 0x09, 0x52, 0x02, 0x49, 0x44, 0x12, 0x5d, 0x0a, 0x0b, 0x61, 0x6e, 0x6e, 0x6f, 0x74,
|
||||
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x6d,
|
||||
0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x73, 0x65, 0x63,
|
||||
0x72, 0x65, 0x74, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65,
|
||||
0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
|
||||
0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0b, 0x61, 0x6e, 0x6e, 0x6f, 0x74,
|
||||
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x3e, 0x0a, 0x10, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61,
|
||||
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
|
||||
0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
|
||||
0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c,
|
||||
0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x27, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63,
|
||||
0x72, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64,
|
||||
0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x32,
|
||||
0x6f, 0x0a, 0x07, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x12, 0x64, 0x0a, 0x09, 0x47, 0x65,
|
||||
0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x2a, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62,
|
||||
0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x2e,
|
||||
0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75,
|
||||
0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
||||
0x6b, 0x69, 0x74, 0x2e, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x47,
|
||||
0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
|
||||
0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79,
|
||||
0x52, 0x0b, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x3e, 0x0a,
|
||||
0x10, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72,
|
||||
0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
|
||||
0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
|
||||
0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x27, 0x0a,
|
||||
0x11, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
||||
0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c,
|
||||
0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x32, 0x6f, 0x0a, 0x07, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74,
|
||||
0x73, 0x12, 0x64, 0x0a, 0x09, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x2a,
|
||||
0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x73,
|
||||
0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63,
|
||||
0x72, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x6d, 0x6f, 0x62,
|
||||
0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x73, 0x65, 0x63, 0x72, 0x65,
|
||||
0x74, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52,
|
||||
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x2a, 0x5a, 0x28, 0x67, 0x69, 0x74, 0x68, 0x75,
|
||||
0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
||||
0x6b, 0x69, 0x74, 0x2f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x65, 0x63, 0x72,
|
||||
0x65, 0x74, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
0x65, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
|
||||
0x42, 0x2a, 0x5a, 0x28, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d,
|
||||
0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73, 0x65, 0x73,
|
||||
0x73, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x62, 0x06, 0x70, 0x72,
|
||||
0x6f, 0x74, 0x6f, 0x33,
|
||||
}
|
||||
|
||||
var (
|
||||
file_secrets_proto_rawDescOnce sync.Once
|
||||
file_secrets_proto_rawDescData = file_secrets_proto_rawDesc
|
||||
file_github_com_moby_buildkit_session_secrets_secrets_proto_rawDescOnce sync.Once
|
||||
file_github_com_moby_buildkit_session_secrets_secrets_proto_rawDescData = file_github_com_moby_buildkit_session_secrets_secrets_proto_rawDesc
|
||||
)
|
||||
|
||||
func file_secrets_proto_rawDescGZIP() []byte {
|
||||
file_secrets_proto_rawDescOnce.Do(func() {
|
||||
file_secrets_proto_rawDescData = protoimpl.X.CompressGZIP(file_secrets_proto_rawDescData)
|
||||
func file_github_com_moby_buildkit_session_secrets_secrets_proto_rawDescGZIP() []byte {
|
||||
file_github_com_moby_buildkit_session_secrets_secrets_proto_rawDescOnce.Do(func() {
|
||||
file_github_com_moby_buildkit_session_secrets_secrets_proto_rawDescData = protoimpl.X.CompressGZIP(file_github_com_moby_buildkit_session_secrets_secrets_proto_rawDescData)
|
||||
})
|
||||
return file_secrets_proto_rawDescData
|
||||
return file_github_com_moby_buildkit_session_secrets_secrets_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_secrets_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
|
||||
var file_secrets_proto_goTypes = []interface{}{
|
||||
var file_github_com_moby_buildkit_session_secrets_secrets_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
|
||||
var file_github_com_moby_buildkit_session_secrets_secrets_proto_goTypes = []interface{}{
|
||||
(*GetSecretRequest)(nil), // 0: moby.buildkit.secrets.v1.GetSecretRequest
|
||||
(*GetSecretResponse)(nil), // 1: moby.buildkit.secrets.v1.GetSecretResponse
|
||||
nil, // 2: moby.buildkit.secrets.v1.GetSecretRequest.AnnotationsEntry
|
||||
}
|
||||
var file_secrets_proto_depIdxs = []int32{
|
||||
var file_github_com_moby_buildkit_session_secrets_secrets_proto_depIdxs = []int32{
|
||||
2, // 0: moby.buildkit.secrets.v1.GetSecretRequest.annotations:type_name -> moby.buildkit.secrets.v1.GetSecretRequest.AnnotationsEntry
|
||||
0, // 1: moby.buildkit.secrets.v1.Secrets.GetSecret:input_type -> moby.buildkit.secrets.v1.GetSecretRequest
|
||||
1, // 2: moby.buildkit.secrets.v1.Secrets.GetSecret:output_type -> moby.buildkit.secrets.v1.GetSecretResponse
|
||||
@@ -184,13 +187,13 @@ var file_secrets_proto_depIdxs = []int32{
|
||||
0, // [0:1] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_secrets_proto_init() }
|
||||
func file_secrets_proto_init() {
|
||||
if File_secrets_proto != nil {
|
||||
func init() { file_github_com_moby_buildkit_session_secrets_secrets_proto_init() }
|
||||
func file_github_com_moby_buildkit_session_secrets_secrets_proto_init() {
|
||||
if File_github_com_moby_buildkit_session_secrets_secrets_proto != nil {
|
||||
return
|
||||
}
|
||||
if !protoimpl.UnsafeEnabled {
|
||||
file_secrets_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_session_secrets_secrets_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*GetSecretRequest); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -202,7 +205,7 @@ func file_secrets_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_secrets_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_session_secrets_secrets_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*GetSecretResponse); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -219,18 +222,18 @@ func file_secrets_proto_init() {
|
||||
out := protoimpl.TypeBuilder{
|
||||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: file_secrets_proto_rawDesc,
|
||||
RawDescriptor: file_github_com_moby_buildkit_session_secrets_secrets_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 3,
|
||||
NumExtensions: 0,
|
||||
NumServices: 1,
|
||||
},
|
||||
GoTypes: file_secrets_proto_goTypes,
|
||||
DependencyIndexes: file_secrets_proto_depIdxs,
|
||||
MessageInfos: file_secrets_proto_msgTypes,
|
||||
GoTypes: file_github_com_moby_buildkit_session_secrets_secrets_proto_goTypes,
|
||||
DependencyIndexes: file_github_com_moby_buildkit_session_secrets_secrets_proto_depIdxs,
|
||||
MessageInfos: file_github_com_moby_buildkit_session_secrets_secrets_proto_msgTypes,
|
||||
}.Build()
|
||||
File_secrets_proto = out.File
|
||||
file_secrets_proto_rawDesc = nil
|
||||
file_secrets_proto_goTypes = nil
|
||||
file_secrets_proto_depIdxs = nil
|
||||
File_github_com_moby_buildkit_session_secrets_secrets_proto = out.File
|
||||
file_github_com_moby_buildkit_session_secrets_secrets_proto_rawDesc = nil
|
||||
file_github_com_moby_buildkit_session_secrets_secrets_proto_goTypes = nil
|
||||
file_github_com_moby_buildkit_session_secrets_secrets_proto_depIdxs = nil
|
||||
}
|
||||
|
||||
4
vendor/github.com/moby/buildkit/session/secrets/secrets_grpc.pb.go
generated
vendored
4
vendor/github.com/moby/buildkit/session/secrets/secrets_grpc.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// - protoc-gen-go-grpc v1.5.1
|
||||
// - protoc v3.11.4
|
||||
// source: secrets.proto
|
||||
// source: github.com/moby/buildkit/session/secrets/secrets.proto
|
||||
|
||||
package secrets
|
||||
|
||||
@@ -115,5 +115,5 @@ var Secrets_ServiceDesc = grpc.ServiceDesc{
|
||||
},
|
||||
},
|
||||
Streams: []grpc.StreamDesc{},
|
||||
Metadata: "secrets.proto",
|
||||
Metadata: "github.com/moby/buildkit/session/secrets/secrets.proto",
|
||||
}
|
||||
|
||||
546
vendor/github.com/moby/buildkit/session/secrets/secrets_vtproto.pb.go
generated
vendored
Normal file
546
vendor/github.com/moby/buildkit/session/secrets/secrets_vtproto.pb.go
generated
vendored
Normal file
@@ -0,0 +1,546 @@
|
||||
// Code generated by protoc-gen-go-vtproto. DO NOT EDIT.
|
||||
// protoc-gen-go-vtproto version: v0.6.1-0.20240319094008-0393e58bdf10
|
||||
// source: github.com/moby/buildkit/session/secrets/secrets.proto
|
||||
|
||||
package secrets
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
protohelpers "github.com/planetscale/vtprotobuf/protohelpers"
|
||||
proto "google.golang.org/protobuf/proto"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
io "io"
|
||||
)
|
||||
|
||||
const (
|
||||
// Verify that this generated code is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||
)
|
||||
|
||||
func (m *GetSecretRequest) CloneVT() *GetSecretRequest {
|
||||
if m == nil {
|
||||
return (*GetSecretRequest)(nil)
|
||||
}
|
||||
r := new(GetSecretRequest)
|
||||
r.ID = m.ID
|
||||
if rhs := m.Annotations; rhs != nil {
|
||||
tmpContainer := make(map[string]string, len(rhs))
|
||||
for k, v := range rhs {
|
||||
tmpContainer[k] = v
|
||||
}
|
||||
r.Annotations = tmpContainer
|
||||
}
|
||||
if len(m.unknownFields) > 0 {
|
||||
r.unknownFields = make([]byte, len(m.unknownFields))
|
||||
copy(r.unknownFields, m.unknownFields)
|
||||
}
|
||||
return r
|
||||
}
|
||||
|
||||
func (m *GetSecretRequest) CloneMessageVT() proto.Message {
|
||||
return m.CloneVT()
|
||||
}
|
||||
|
||||
func (m *GetSecretResponse) CloneVT() *GetSecretResponse {
|
||||
if m == nil {
|
||||
return (*GetSecretResponse)(nil)
|
||||
}
|
||||
r := new(GetSecretResponse)
|
||||
if rhs := m.Data; rhs != nil {
|
||||
tmpBytes := make([]byte, len(rhs))
|
||||
copy(tmpBytes, rhs)
|
||||
r.Data = tmpBytes
|
||||
}
|
||||
if len(m.unknownFields) > 0 {
|
||||
r.unknownFields = make([]byte, len(m.unknownFields))
|
||||
copy(r.unknownFields, m.unknownFields)
|
||||
}
|
||||
return r
|
||||
}
|
||||
|
||||
func (m *GetSecretResponse) CloneMessageVT() proto.Message {
|
||||
return m.CloneVT()
|
||||
}
|
||||
|
||||
func (this *GetSecretRequest) EqualVT(that *GetSecretRequest) bool {
|
||||
if this == that {
|
||||
return true
|
||||
} else if this == nil || that == nil {
|
||||
return false
|
||||
}
|
||||
if this.ID != that.ID {
|
||||
return false
|
||||
}
|
||||
if len(this.Annotations) != len(that.Annotations) {
|
||||
return false
|
||||
}
|
||||
for i, vx := range this.Annotations {
|
||||
vy, ok := that.Annotations[i]
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
if vx != vy {
|
||||
return false
|
||||
}
|
||||
}
|
||||
return string(this.unknownFields) == string(that.unknownFields)
|
||||
}
|
||||
|
||||
func (this *GetSecretRequest) EqualMessageVT(thatMsg proto.Message) bool {
|
||||
that, ok := thatMsg.(*GetSecretRequest)
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
return this.EqualVT(that)
|
||||
}
|
||||
func (this *GetSecretResponse) EqualVT(that *GetSecretResponse) bool {
|
||||
if this == that {
|
||||
return true
|
||||
} else if this == nil || that == nil {
|
||||
return false
|
||||
}
|
||||
if string(this.Data) != string(that.Data) {
|
||||
return false
|
||||
}
|
||||
return string(this.unknownFields) == string(that.unknownFields)
|
||||
}
|
||||
|
||||
func (this *GetSecretResponse) EqualMessageVT(thatMsg proto.Message) bool {
|
||||
that, ok := thatMsg.(*GetSecretResponse)
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
return this.EqualVT(that)
|
||||
}
|
||||
func (m *GetSecretRequest) MarshalVT() (dAtA []byte, err error) {
|
||||
if m == nil {
|
||||
return nil, nil
|
||||
}
|
||||
size := m.SizeVT()
|
||||
dAtA = make([]byte, size)
|
||||
n, err := m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return dAtA[:n], nil
|
||||
}
|
||||
|
||||
func (m *GetSecretRequest) MarshalToVT(dAtA []byte) (int, error) {
|
||||
size := m.SizeVT()
|
||||
return m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
}
|
||||
|
||||
func (m *GetSecretRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
|
||||
if m == nil {
|
||||
return 0, nil
|
||||
}
|
||||
i := len(dAtA)
|
||||
_ = i
|
||||
var l int
|
||||
_ = l
|
||||
if m.unknownFields != nil {
|
||||
i -= len(m.unknownFields)
|
||||
copy(dAtA[i:], m.unknownFields)
|
||||
}
|
||||
if len(m.Annotations) > 0 {
|
||||
for k := range m.Annotations {
|
||||
v := m.Annotations[k]
|
||||
baseI := i
|
||||
i -= len(v)
|
||||
copy(dAtA[i:], v)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(v)))
|
||||
i--
|
||||
dAtA[i] = 0x12
|
||||
i -= len(k)
|
||||
copy(dAtA[i:], k)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(k)))
|
||||
i--
|
||||
dAtA[i] = 0xa
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(baseI-i))
|
||||
i--
|
||||
dAtA[i] = 0x12
|
||||
}
|
||||
}
|
||||
if len(m.ID) > 0 {
|
||||
i -= len(m.ID)
|
||||
copy(dAtA[i:], m.ID)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.ID)))
|
||||
i--
|
||||
dAtA[i] = 0xa
|
||||
}
|
||||
return len(dAtA) - i, nil
|
||||
}
|
||||
|
||||
func (m *GetSecretResponse) MarshalVT() (dAtA []byte, err error) {
|
||||
if m == nil {
|
||||
return nil, nil
|
||||
}
|
||||
size := m.SizeVT()
|
||||
dAtA = make([]byte, size)
|
||||
n, err := m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return dAtA[:n], nil
|
||||
}
|
||||
|
||||
func (m *GetSecretResponse) MarshalToVT(dAtA []byte) (int, error) {
|
||||
size := m.SizeVT()
|
||||
return m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
}
|
||||
|
||||
func (m *GetSecretResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
|
||||
if m == nil {
|
||||
return 0, nil
|
||||
}
|
||||
i := len(dAtA)
|
||||
_ = i
|
||||
var l int
|
||||
_ = l
|
||||
if m.unknownFields != nil {
|
||||
i -= len(m.unknownFields)
|
||||
copy(dAtA[i:], m.unknownFields)
|
||||
}
|
||||
if len(m.Data) > 0 {
|
||||
i -= len(m.Data)
|
||||
copy(dAtA[i:], m.Data)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.Data)))
|
||||
i--
|
||||
dAtA[i] = 0xa
|
||||
}
|
||||
return len(dAtA) - i, nil
|
||||
}
|
||||
|
||||
func (m *GetSecretRequest) SizeVT() (n int) {
|
||||
if m == nil {
|
||||
return 0
|
||||
}
|
||||
var l int
|
||||
_ = l
|
||||
l = len(m.ID)
|
||||
if l > 0 {
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
if len(m.Annotations) > 0 {
|
||||
for k, v := range m.Annotations {
|
||||
_ = k
|
||||
_ = v
|
||||
mapEntrySize := 1 + len(k) + protohelpers.SizeOfVarint(uint64(len(k))) + 1 + len(v) + protohelpers.SizeOfVarint(uint64(len(v)))
|
||||
n += mapEntrySize + 1 + protohelpers.SizeOfVarint(uint64(mapEntrySize))
|
||||
}
|
||||
}
|
||||
n += len(m.unknownFields)
|
||||
return n
|
||||
}
|
||||
|
||||
func (m *GetSecretResponse) SizeVT() (n int) {
|
||||
if m == nil {
|
||||
return 0
|
||||
}
|
||||
var l int
|
||||
_ = l
|
||||
l = len(m.Data)
|
||||
if l > 0 {
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
n += len(m.unknownFields)
|
||||
return n
|
||||
}
|
||||
|
||||
func (m *GetSecretRequest) UnmarshalVT(dAtA []byte) error {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
for iNdEx < l {
|
||||
preIndex := iNdEx
|
||||
var wire uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
wire |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
fieldNum := int32(wire >> 3)
|
||||
wireType := int(wire & 0x7)
|
||||
if wireType == 4 {
|
||||
return fmt.Errorf("proto: GetSecretRequest: wiretype end group for non-group")
|
||||
}
|
||||
if fieldNum <= 0 {
|
||||
return fmt.Errorf("proto: GetSecretRequest: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
}
|
||||
switch fieldNum {
|
||||
case 1:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field ID", wireType)
|
||||
}
|
||||
var stringLen uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
stringLen |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
intStringLen := int(stringLen)
|
||||
if intStringLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + intStringLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.ID = string(dAtA[iNdEx:postIndex])
|
||||
iNdEx = postIndex
|
||||
case 2:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Annotations", wireType)
|
||||
}
|
||||
var msglen int
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
msglen |= int(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
if msglen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + msglen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
if m.Annotations == nil {
|
||||
m.Annotations = make(map[string]string)
|
||||
}
|
||||
var mapkey string
|
||||
var mapvalue string
|
||||
for iNdEx < postIndex {
|
||||
entryPreIndex := iNdEx
|
||||
var wire uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
wire |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
fieldNum := int32(wire >> 3)
|
||||
if fieldNum == 1 {
|
||||
var stringLenmapkey uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
stringLenmapkey |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
intStringLenmapkey := int(stringLenmapkey)
|
||||
if intStringLenmapkey < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postStringIndexmapkey := iNdEx + intStringLenmapkey
|
||||
if postStringIndexmapkey < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postStringIndexmapkey > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
mapkey = string(dAtA[iNdEx:postStringIndexmapkey])
|
||||
iNdEx = postStringIndexmapkey
|
||||
} else if fieldNum == 2 {
|
||||
var stringLenmapvalue uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
stringLenmapvalue |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
intStringLenmapvalue := int(stringLenmapvalue)
|
||||
if intStringLenmapvalue < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postStringIndexmapvalue := iNdEx + intStringLenmapvalue
|
||||
if postStringIndexmapvalue < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postStringIndexmapvalue > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
mapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])
|
||||
iNdEx = postStringIndexmapvalue
|
||||
} else {
|
||||
iNdEx = entryPreIndex
|
||||
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if (iNdEx + skippy) > postIndex {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
iNdEx += skippy
|
||||
}
|
||||
}
|
||||
m.Annotations[mapkey] = mapvalue
|
||||
iNdEx = postIndex
|
||||
default:
|
||||
iNdEx = preIndex
|
||||
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if (iNdEx + skippy) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
|
||||
iNdEx += skippy
|
||||
}
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
return nil
|
||||
}
|
||||
func (m *GetSecretResponse) UnmarshalVT(dAtA []byte) error {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
for iNdEx < l {
|
||||
preIndex := iNdEx
|
||||
var wire uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
wire |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
fieldNum := int32(wire >> 3)
|
||||
wireType := int(wire & 0x7)
|
||||
if wireType == 4 {
|
||||
return fmt.Errorf("proto: GetSecretResponse: wiretype end group for non-group")
|
||||
}
|
||||
if fieldNum <= 0 {
|
||||
return fmt.Errorf("proto: GetSecretResponse: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
}
|
||||
switch fieldNum {
|
||||
case 1:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType)
|
||||
}
|
||||
var byteLen int
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
byteLen |= int(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
if byteLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + byteLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...)
|
||||
if m.Data == nil {
|
||||
m.Data = []byte{}
|
||||
}
|
||||
iNdEx = postIndex
|
||||
default:
|
||||
iNdEx = preIndex
|
||||
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if (iNdEx + skippy) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
|
||||
iNdEx += skippy
|
||||
}
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
return nil
|
||||
}
|
||||
3
vendor/github.com/moby/buildkit/session/sshforward/generate.go
generated
vendored
3
vendor/github.com/moby/buildkit/session/sshforward/generate.go
generated
vendored
@@ -1,3 +0,0 @@
|
||||
package sshforward
|
||||
|
||||
//go:generate protoc --go_out=paths=source_relative:. --go-grpc_out=paths=source_relative,require_unimplemented_servers=false:. ssh.proto
|
||||
120
vendor/github.com/moby/buildkit/session/sshforward/ssh.pb.go
generated
vendored
120
vendor/github.com/moby/buildkit/session/sshforward/ssh.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// protoc-gen-go v1.34.1
|
||||
// protoc v3.11.4
|
||||
// source: ssh.proto
|
||||
// source: github.com/moby/buildkit/session/sshforward/ssh.proto
|
||||
|
||||
package sshforward
|
||||
|
||||
@@ -32,7 +32,7 @@ type BytesMessage struct {
|
||||
func (x *BytesMessage) Reset() {
|
||||
*x = BytesMessage{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_ssh_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_session_sshforward_ssh_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -45,7 +45,7 @@ func (x *BytesMessage) String() string {
|
||||
func (*BytesMessage) ProtoMessage() {}
|
||||
|
||||
func (x *BytesMessage) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_ssh_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_session_sshforward_ssh_proto_msgTypes[0]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -58,7 +58,7 @@ func (x *BytesMessage) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use BytesMessage.ProtoReflect.Descriptor instead.
|
||||
func (*BytesMessage) Descriptor() ([]byte, []int) {
|
||||
return file_ssh_proto_rawDescGZIP(), []int{0}
|
||||
return file_github_com_moby_buildkit_session_sshforward_ssh_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (x *BytesMessage) GetData() []byte {
|
||||
@@ -79,7 +79,7 @@ type CheckAgentRequest struct {
|
||||
func (x *CheckAgentRequest) Reset() {
|
||||
*x = CheckAgentRequest{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_ssh_proto_msgTypes[1]
|
||||
mi := &file_github_com_moby_buildkit_session_sshforward_ssh_proto_msgTypes[1]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -92,7 +92,7 @@ func (x *CheckAgentRequest) String() string {
|
||||
func (*CheckAgentRequest) ProtoMessage() {}
|
||||
|
||||
func (x *CheckAgentRequest) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_ssh_proto_msgTypes[1]
|
||||
mi := &file_github_com_moby_buildkit_session_sshforward_ssh_proto_msgTypes[1]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -105,7 +105,7 @@ func (x *CheckAgentRequest) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use CheckAgentRequest.ProtoReflect.Descriptor instead.
|
||||
func (*CheckAgentRequest) Descriptor() ([]byte, []int) {
|
||||
return file_ssh_proto_rawDescGZIP(), []int{1}
|
||||
return file_github_com_moby_buildkit_session_sshforward_ssh_proto_rawDescGZIP(), []int{1}
|
||||
}
|
||||
|
||||
func (x *CheckAgentRequest) GetID() string {
|
||||
@@ -124,7 +124,7 @@ type CheckAgentResponse struct {
|
||||
func (x *CheckAgentResponse) Reset() {
|
||||
*x = CheckAgentResponse{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_ssh_proto_msgTypes[2]
|
||||
mi := &file_github_com_moby_buildkit_session_sshforward_ssh_proto_msgTypes[2]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -137,7 +137,7 @@ func (x *CheckAgentResponse) String() string {
|
||||
func (*CheckAgentResponse) ProtoMessage() {}
|
||||
|
||||
func (x *CheckAgentResponse) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_ssh_proto_msgTypes[2]
|
||||
mi := &file_github_com_moby_buildkit_session_sshforward_ssh_proto_msgTypes[2]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -150,57 +150,59 @@ func (x *CheckAgentResponse) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use CheckAgentResponse.ProtoReflect.Descriptor instead.
|
||||
func (*CheckAgentResponse) Descriptor() ([]byte, []int) {
|
||||
return file_ssh_proto_rawDescGZIP(), []int{2}
|
||||
return file_github_com_moby_buildkit_session_sshforward_ssh_proto_rawDescGZIP(), []int{2}
|
||||
}
|
||||
|
||||
var File_ssh_proto protoreflect.FileDescriptor
|
||||
var File_github_com_moby_buildkit_session_sshforward_ssh_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_ssh_proto_rawDesc = []byte{
|
||||
0x0a, 0x09, 0x73, 0x73, 0x68, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x12, 0x6d, 0x6f, 0x62,
|
||||
0x79, 0x2e, 0x73, 0x73, 0x68, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x2e, 0x76, 0x31, 0x22,
|
||||
0x22, 0x0a, 0x0c, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
|
||||
0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64,
|
||||
0x61, 0x74, 0x61, 0x22, 0x23, 0x0a, 0x11, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x67, 0x65, 0x6e,
|
||||
0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x44, 0x18, 0x01,
|
||||
0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x49, 0x44, 0x22, 0x14, 0x0a, 0x12, 0x43, 0x68, 0x65, 0x63,
|
||||
0x6b, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x32, 0xba,
|
||||
0x01, 0x0a, 0x03, 0x53, 0x53, 0x48, 0x12, 0x5b, 0x0a, 0x0a, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41,
|
||||
0x67, 0x65, 0x6e, 0x74, 0x12, 0x25, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x73, 0x73, 0x68, 0x66,
|
||||
0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41,
|
||||
0x67, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x6d, 0x6f,
|
||||
0x62, 0x79, 0x2e, 0x73, 0x73, 0x68, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x2e, 0x76, 0x31,
|
||||
0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f,
|
||||
0x6e, 0x73, 0x65, 0x12, 0x56, 0x0a, 0x0c, 0x46, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x41, 0x67,
|
||||
0x65, 0x6e, 0x74, 0x12, 0x20, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x73, 0x73, 0x68, 0x66, 0x6f,
|
||||
0x72, 0x77, 0x61, 0x72, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4d, 0x65,
|
||||
0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x20, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x73, 0x73, 0x68,
|
||||
0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x79, 0x74, 0x65, 0x73,
|
||||
0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x28, 0x01, 0x30, 0x01, 0x42, 0x2d, 0x5a, 0x2b, 0x67,
|
||||
0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62,
|
||||
0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x2f,
|
||||
0x73, 0x73, 0x68, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
|
||||
0x6f, 0x33,
|
||||
var file_github_com_moby_buildkit_session_sshforward_ssh_proto_rawDesc = []byte{
|
||||
0x0a, 0x35, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62,
|
||||
0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73, 0x65, 0x73, 0x73, 0x69,
|
||||
0x6f, 0x6e, 0x2f, 0x73, 0x73, 0x68, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x2f, 0x73, 0x73,
|
||||
0x68, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x12, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x73, 0x73,
|
||||
0x68, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x2e, 0x76, 0x31, 0x22, 0x22, 0x0a, 0x0c, 0x42,
|
||||
0x79, 0x74, 0x65, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64,
|
||||
0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22,
|
||||
0x23, 0x0a, 0x11, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71,
|
||||
0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
||||
0x52, 0x02, 0x49, 0x44, 0x22, 0x14, 0x0a, 0x12, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x67, 0x65,
|
||||
0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x32, 0xba, 0x01, 0x0a, 0x03, 0x53,
|
||||
0x53, 0x48, 0x12, 0x5b, 0x0a, 0x0a, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x67, 0x65, 0x6e, 0x74,
|
||||
0x12, 0x25, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x73, 0x73, 0x68, 0x66, 0x6f, 0x72, 0x77, 0x61,
|
||||
0x72, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x41, 0x67, 0x65, 0x6e, 0x74,
|
||||
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x73,
|
||||
0x73, 0x68, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x65,
|
||||
0x63, 0x6b, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
|
||||
0x56, 0x0a, 0x0c, 0x46, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x12,
|
||||
0x20, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x73, 0x73, 0x68, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72,
|
||||
0x64, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
|
||||
0x65, 0x1a, 0x20, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x73, 0x73, 0x68, 0x66, 0x6f, 0x72, 0x77,
|
||||
0x61, 0x72, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4d, 0x65, 0x73, 0x73,
|
||||
0x61, 0x67, 0x65, 0x28, 0x01, 0x30, 0x01, 0x42, 0x2d, 0x5a, 0x2b, 0x67, 0x69, 0x74, 0x68, 0x75,
|
||||
0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
||||
0x6b, 0x69, 0x74, 0x2f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x73, 0x68, 0x66,
|
||||
0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
}
|
||||
|
||||
var (
|
||||
file_ssh_proto_rawDescOnce sync.Once
|
||||
file_ssh_proto_rawDescData = file_ssh_proto_rawDesc
|
||||
file_github_com_moby_buildkit_session_sshforward_ssh_proto_rawDescOnce sync.Once
|
||||
file_github_com_moby_buildkit_session_sshforward_ssh_proto_rawDescData = file_github_com_moby_buildkit_session_sshforward_ssh_proto_rawDesc
|
||||
)
|
||||
|
||||
func file_ssh_proto_rawDescGZIP() []byte {
|
||||
file_ssh_proto_rawDescOnce.Do(func() {
|
||||
file_ssh_proto_rawDescData = protoimpl.X.CompressGZIP(file_ssh_proto_rawDescData)
|
||||
func file_github_com_moby_buildkit_session_sshforward_ssh_proto_rawDescGZIP() []byte {
|
||||
file_github_com_moby_buildkit_session_sshforward_ssh_proto_rawDescOnce.Do(func() {
|
||||
file_github_com_moby_buildkit_session_sshforward_ssh_proto_rawDescData = protoimpl.X.CompressGZIP(file_github_com_moby_buildkit_session_sshforward_ssh_proto_rawDescData)
|
||||
})
|
||||
return file_ssh_proto_rawDescData
|
||||
return file_github_com_moby_buildkit_session_sshforward_ssh_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_ssh_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
|
||||
var file_ssh_proto_goTypes = []interface{}{
|
||||
var file_github_com_moby_buildkit_session_sshforward_ssh_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
|
||||
var file_github_com_moby_buildkit_session_sshforward_ssh_proto_goTypes = []interface{}{
|
||||
(*BytesMessage)(nil), // 0: moby.sshforward.v1.BytesMessage
|
||||
(*CheckAgentRequest)(nil), // 1: moby.sshforward.v1.CheckAgentRequest
|
||||
(*CheckAgentResponse)(nil), // 2: moby.sshforward.v1.CheckAgentResponse
|
||||
}
|
||||
var file_ssh_proto_depIdxs = []int32{
|
||||
var file_github_com_moby_buildkit_session_sshforward_ssh_proto_depIdxs = []int32{
|
||||
1, // 0: moby.sshforward.v1.SSH.CheckAgent:input_type -> moby.sshforward.v1.CheckAgentRequest
|
||||
0, // 1: moby.sshforward.v1.SSH.ForwardAgent:input_type -> moby.sshforward.v1.BytesMessage
|
||||
2, // 2: moby.sshforward.v1.SSH.CheckAgent:output_type -> moby.sshforward.v1.CheckAgentResponse
|
||||
@@ -212,13 +214,13 @@ var file_ssh_proto_depIdxs = []int32{
|
||||
0, // [0:0] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_ssh_proto_init() }
|
||||
func file_ssh_proto_init() {
|
||||
if File_ssh_proto != nil {
|
||||
func init() { file_github_com_moby_buildkit_session_sshforward_ssh_proto_init() }
|
||||
func file_github_com_moby_buildkit_session_sshforward_ssh_proto_init() {
|
||||
if File_github_com_moby_buildkit_session_sshforward_ssh_proto != nil {
|
||||
return
|
||||
}
|
||||
if !protoimpl.UnsafeEnabled {
|
||||
file_ssh_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_session_sshforward_ssh_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BytesMessage); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -230,7 +232,7 @@ func file_ssh_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_ssh_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_session_sshforward_ssh_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*CheckAgentRequest); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -242,7 +244,7 @@ func file_ssh_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_ssh_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_session_sshforward_ssh_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*CheckAgentResponse); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -259,18 +261,18 @@ func file_ssh_proto_init() {
|
||||
out := protoimpl.TypeBuilder{
|
||||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: file_ssh_proto_rawDesc,
|
||||
RawDescriptor: file_github_com_moby_buildkit_session_sshforward_ssh_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 3,
|
||||
NumExtensions: 0,
|
||||
NumServices: 1,
|
||||
},
|
||||
GoTypes: file_ssh_proto_goTypes,
|
||||
DependencyIndexes: file_ssh_proto_depIdxs,
|
||||
MessageInfos: file_ssh_proto_msgTypes,
|
||||
GoTypes: file_github_com_moby_buildkit_session_sshforward_ssh_proto_goTypes,
|
||||
DependencyIndexes: file_github_com_moby_buildkit_session_sshforward_ssh_proto_depIdxs,
|
||||
MessageInfos: file_github_com_moby_buildkit_session_sshforward_ssh_proto_msgTypes,
|
||||
}.Build()
|
||||
File_ssh_proto = out.File
|
||||
file_ssh_proto_rawDesc = nil
|
||||
file_ssh_proto_goTypes = nil
|
||||
file_ssh_proto_depIdxs = nil
|
||||
File_github_com_moby_buildkit_session_sshforward_ssh_proto = out.File
|
||||
file_github_com_moby_buildkit_session_sshforward_ssh_proto_rawDesc = nil
|
||||
file_github_com_moby_buildkit_session_sshforward_ssh_proto_goTypes = nil
|
||||
file_github_com_moby_buildkit_session_sshforward_ssh_proto_depIdxs = nil
|
||||
}
|
||||
|
||||
4
vendor/github.com/moby/buildkit/session/sshforward/ssh_grpc.pb.go
generated
vendored
4
vendor/github.com/moby/buildkit/session/sshforward/ssh_grpc.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// - protoc-gen-go-grpc v1.5.1
|
||||
// - protoc v3.11.4
|
||||
// source: ssh.proto
|
||||
// source: github.com/moby/buildkit/session/sshforward/ssh.proto
|
||||
|
||||
package sshforward
|
||||
|
||||
@@ -148,5 +148,5 @@ var SSH_ServiceDesc = grpc.ServiceDesc{
|
||||
ClientStreams: true,
|
||||
},
|
||||
},
|
||||
Metadata: "ssh.proto",
|
||||
Metadata: "github.com/moby/buildkit/session/sshforward/ssh.proto",
|
||||
}
|
||||
|
||||
499
vendor/github.com/moby/buildkit/session/sshforward/ssh_vtproto.pb.go
generated
vendored
Normal file
499
vendor/github.com/moby/buildkit/session/sshforward/ssh_vtproto.pb.go
generated
vendored
Normal file
@@ -0,0 +1,499 @@
|
||||
// Code generated by protoc-gen-go-vtproto. DO NOT EDIT.
|
||||
// protoc-gen-go-vtproto version: v0.6.1-0.20240319094008-0393e58bdf10
|
||||
// source: github.com/moby/buildkit/session/sshforward/ssh.proto
|
||||
|
||||
package sshforward
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
protohelpers "github.com/planetscale/vtprotobuf/protohelpers"
|
||||
proto "google.golang.org/protobuf/proto"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
io "io"
|
||||
)
|
||||
|
||||
const (
|
||||
// Verify that this generated code is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||
)
|
||||
|
||||
func (m *BytesMessage) CloneVT() *BytesMessage {
|
||||
if m == nil {
|
||||
return (*BytesMessage)(nil)
|
||||
}
|
||||
r := new(BytesMessage)
|
||||
if rhs := m.Data; rhs != nil {
|
||||
tmpBytes := make([]byte, len(rhs))
|
||||
copy(tmpBytes, rhs)
|
||||
r.Data = tmpBytes
|
||||
}
|
||||
if len(m.unknownFields) > 0 {
|
||||
r.unknownFields = make([]byte, len(m.unknownFields))
|
||||
copy(r.unknownFields, m.unknownFields)
|
||||
}
|
||||
return r
|
||||
}
|
||||
|
||||
func (m *BytesMessage) CloneMessageVT() proto.Message {
|
||||
return m.CloneVT()
|
||||
}
|
||||
|
||||
func (m *CheckAgentRequest) CloneVT() *CheckAgentRequest {
|
||||
if m == nil {
|
||||
return (*CheckAgentRequest)(nil)
|
||||
}
|
||||
r := new(CheckAgentRequest)
|
||||
r.ID = m.ID
|
||||
if len(m.unknownFields) > 0 {
|
||||
r.unknownFields = make([]byte, len(m.unknownFields))
|
||||
copy(r.unknownFields, m.unknownFields)
|
||||
}
|
||||
return r
|
||||
}
|
||||
|
||||
func (m *CheckAgentRequest) CloneMessageVT() proto.Message {
|
||||
return m.CloneVT()
|
||||
}
|
||||
|
||||
func (m *CheckAgentResponse) CloneVT() *CheckAgentResponse {
|
||||
if m == nil {
|
||||
return (*CheckAgentResponse)(nil)
|
||||
}
|
||||
r := new(CheckAgentResponse)
|
||||
if len(m.unknownFields) > 0 {
|
||||
r.unknownFields = make([]byte, len(m.unknownFields))
|
||||
copy(r.unknownFields, m.unknownFields)
|
||||
}
|
||||
return r
|
||||
}
|
||||
|
||||
func (m *CheckAgentResponse) CloneMessageVT() proto.Message {
|
||||
return m.CloneVT()
|
||||
}
|
||||
|
||||
func (this *BytesMessage) EqualVT(that *BytesMessage) bool {
|
||||
if this == that {
|
||||
return true
|
||||
} else if this == nil || that == nil {
|
||||
return false
|
||||
}
|
||||
if string(this.Data) != string(that.Data) {
|
||||
return false
|
||||
}
|
||||
return string(this.unknownFields) == string(that.unknownFields)
|
||||
}
|
||||
|
||||
func (this *BytesMessage) EqualMessageVT(thatMsg proto.Message) bool {
|
||||
that, ok := thatMsg.(*BytesMessage)
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
return this.EqualVT(that)
|
||||
}
|
||||
func (this *CheckAgentRequest) EqualVT(that *CheckAgentRequest) bool {
|
||||
if this == that {
|
||||
return true
|
||||
} else if this == nil || that == nil {
|
||||
return false
|
||||
}
|
||||
if this.ID != that.ID {
|
||||
return false
|
||||
}
|
||||
return string(this.unknownFields) == string(that.unknownFields)
|
||||
}
|
||||
|
||||
func (this *CheckAgentRequest) EqualMessageVT(thatMsg proto.Message) bool {
|
||||
that, ok := thatMsg.(*CheckAgentRequest)
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
return this.EqualVT(that)
|
||||
}
|
||||
func (this *CheckAgentResponse) EqualVT(that *CheckAgentResponse) bool {
|
||||
if this == that {
|
||||
return true
|
||||
} else if this == nil || that == nil {
|
||||
return false
|
||||
}
|
||||
return string(this.unknownFields) == string(that.unknownFields)
|
||||
}
|
||||
|
||||
func (this *CheckAgentResponse) EqualMessageVT(thatMsg proto.Message) bool {
|
||||
that, ok := thatMsg.(*CheckAgentResponse)
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
return this.EqualVT(that)
|
||||
}
|
||||
func (m *BytesMessage) MarshalVT() (dAtA []byte, err error) {
|
||||
if m == nil {
|
||||
return nil, nil
|
||||
}
|
||||
size := m.SizeVT()
|
||||
dAtA = make([]byte, size)
|
||||
n, err := m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return dAtA[:n], nil
|
||||
}
|
||||
|
||||
func (m *BytesMessage) MarshalToVT(dAtA []byte) (int, error) {
|
||||
size := m.SizeVT()
|
||||
return m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
}
|
||||
|
||||
func (m *BytesMessage) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
|
||||
if m == nil {
|
||||
return 0, nil
|
||||
}
|
||||
i := len(dAtA)
|
||||
_ = i
|
||||
var l int
|
||||
_ = l
|
||||
if m.unknownFields != nil {
|
||||
i -= len(m.unknownFields)
|
||||
copy(dAtA[i:], m.unknownFields)
|
||||
}
|
||||
if len(m.Data) > 0 {
|
||||
i -= len(m.Data)
|
||||
copy(dAtA[i:], m.Data)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.Data)))
|
||||
i--
|
||||
dAtA[i] = 0xa
|
||||
}
|
||||
return len(dAtA) - i, nil
|
||||
}
|
||||
|
||||
func (m *CheckAgentRequest) MarshalVT() (dAtA []byte, err error) {
|
||||
if m == nil {
|
||||
return nil, nil
|
||||
}
|
||||
size := m.SizeVT()
|
||||
dAtA = make([]byte, size)
|
||||
n, err := m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return dAtA[:n], nil
|
||||
}
|
||||
|
||||
func (m *CheckAgentRequest) MarshalToVT(dAtA []byte) (int, error) {
|
||||
size := m.SizeVT()
|
||||
return m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
}
|
||||
|
||||
func (m *CheckAgentRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
|
||||
if m == nil {
|
||||
return 0, nil
|
||||
}
|
||||
i := len(dAtA)
|
||||
_ = i
|
||||
var l int
|
||||
_ = l
|
||||
if m.unknownFields != nil {
|
||||
i -= len(m.unknownFields)
|
||||
copy(dAtA[i:], m.unknownFields)
|
||||
}
|
||||
if len(m.ID) > 0 {
|
||||
i -= len(m.ID)
|
||||
copy(dAtA[i:], m.ID)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.ID)))
|
||||
i--
|
||||
dAtA[i] = 0xa
|
||||
}
|
||||
return len(dAtA) - i, nil
|
||||
}
|
||||
|
||||
func (m *CheckAgentResponse) MarshalVT() (dAtA []byte, err error) {
|
||||
if m == nil {
|
||||
return nil, nil
|
||||
}
|
||||
size := m.SizeVT()
|
||||
dAtA = make([]byte, size)
|
||||
n, err := m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return dAtA[:n], nil
|
||||
}
|
||||
|
||||
func (m *CheckAgentResponse) MarshalToVT(dAtA []byte) (int, error) {
|
||||
size := m.SizeVT()
|
||||
return m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
}
|
||||
|
||||
func (m *CheckAgentResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
|
||||
if m == nil {
|
||||
return 0, nil
|
||||
}
|
||||
i := len(dAtA)
|
||||
_ = i
|
||||
var l int
|
||||
_ = l
|
||||
if m.unknownFields != nil {
|
||||
i -= len(m.unknownFields)
|
||||
copy(dAtA[i:], m.unknownFields)
|
||||
}
|
||||
return len(dAtA) - i, nil
|
||||
}
|
||||
|
||||
func (m *BytesMessage) SizeVT() (n int) {
|
||||
if m == nil {
|
||||
return 0
|
||||
}
|
||||
var l int
|
||||
_ = l
|
||||
l = len(m.Data)
|
||||
if l > 0 {
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
n += len(m.unknownFields)
|
||||
return n
|
||||
}
|
||||
|
||||
func (m *CheckAgentRequest) SizeVT() (n int) {
|
||||
if m == nil {
|
||||
return 0
|
||||
}
|
||||
var l int
|
||||
_ = l
|
||||
l = len(m.ID)
|
||||
if l > 0 {
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
n += len(m.unknownFields)
|
||||
return n
|
||||
}
|
||||
|
||||
func (m *CheckAgentResponse) SizeVT() (n int) {
|
||||
if m == nil {
|
||||
return 0
|
||||
}
|
||||
var l int
|
||||
_ = l
|
||||
n += len(m.unknownFields)
|
||||
return n
|
||||
}
|
||||
|
||||
func (m *BytesMessage) UnmarshalVT(dAtA []byte) error {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
for iNdEx < l {
|
||||
preIndex := iNdEx
|
||||
var wire uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
wire |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
fieldNum := int32(wire >> 3)
|
||||
wireType := int(wire & 0x7)
|
||||
if wireType == 4 {
|
||||
return fmt.Errorf("proto: BytesMessage: wiretype end group for non-group")
|
||||
}
|
||||
if fieldNum <= 0 {
|
||||
return fmt.Errorf("proto: BytesMessage: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
}
|
||||
switch fieldNum {
|
||||
case 1:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType)
|
||||
}
|
||||
var byteLen int
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
byteLen |= int(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
if byteLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + byteLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...)
|
||||
if m.Data == nil {
|
||||
m.Data = []byte{}
|
||||
}
|
||||
iNdEx = postIndex
|
||||
default:
|
||||
iNdEx = preIndex
|
||||
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if (iNdEx + skippy) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
|
||||
iNdEx += skippy
|
||||
}
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
return nil
|
||||
}
|
||||
func (m *CheckAgentRequest) UnmarshalVT(dAtA []byte) error {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
for iNdEx < l {
|
||||
preIndex := iNdEx
|
||||
var wire uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
wire |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
fieldNum := int32(wire >> 3)
|
||||
wireType := int(wire & 0x7)
|
||||
if wireType == 4 {
|
||||
return fmt.Errorf("proto: CheckAgentRequest: wiretype end group for non-group")
|
||||
}
|
||||
if fieldNum <= 0 {
|
||||
return fmt.Errorf("proto: CheckAgentRequest: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
}
|
||||
switch fieldNum {
|
||||
case 1:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field ID", wireType)
|
||||
}
|
||||
var stringLen uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
stringLen |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
intStringLen := int(stringLen)
|
||||
if intStringLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + intStringLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.ID = string(dAtA[iNdEx:postIndex])
|
||||
iNdEx = postIndex
|
||||
default:
|
||||
iNdEx = preIndex
|
||||
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if (iNdEx + skippy) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
|
||||
iNdEx += skippy
|
||||
}
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
return nil
|
||||
}
|
||||
func (m *CheckAgentResponse) UnmarshalVT(dAtA []byte) error {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
for iNdEx < l {
|
||||
preIndex := iNdEx
|
||||
var wire uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
wire |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
fieldNum := int32(wire >> 3)
|
||||
wireType := int(wire & 0x7)
|
||||
if wireType == 4 {
|
||||
return fmt.Errorf("proto: CheckAgentResponse: wiretype end group for non-group")
|
||||
}
|
||||
if fieldNum <= 0 {
|
||||
return fmt.Errorf("proto: CheckAgentResponse: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
}
|
||||
switch fieldNum {
|
||||
default:
|
||||
iNdEx = preIndex
|
||||
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if (iNdEx + skippy) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
|
||||
iNdEx += skippy
|
||||
}
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
return nil
|
||||
}
|
||||
3
vendor/github.com/moby/buildkit/session/upload/generate.go
generated
vendored
3
vendor/github.com/moby/buildkit/session/upload/generate.go
generated
vendored
@@ -1,3 +0,0 @@
|
||||
package upload
|
||||
|
||||
//go:generate protoc --go_out=paths=source_relative:. --go-grpc_out=paths=source_relative,require_unimplemented_servers=false:. upload.proto
|
||||
82
vendor/github.com/moby/buildkit/session/upload/upload.pb.go
generated
vendored
82
vendor/github.com/moby/buildkit/session/upload/upload.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// protoc-gen-go v1.34.1
|
||||
// protoc v3.11.4
|
||||
// source: upload.proto
|
||||
// source: github.com/moby/buildkit/session/upload/upload.proto
|
||||
|
||||
package upload
|
||||
|
||||
@@ -32,7 +32,7 @@ type BytesMessage struct {
|
||||
func (x *BytesMessage) Reset() {
|
||||
*x = BytesMessage{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_upload_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_session_upload_upload_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -45,7 +45,7 @@ func (x *BytesMessage) String() string {
|
||||
func (*BytesMessage) ProtoMessage() {}
|
||||
|
||||
func (x *BytesMessage) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_upload_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_session_upload_upload_proto_msgTypes[0]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -58,7 +58,7 @@ func (x *BytesMessage) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use BytesMessage.ProtoReflect.Descriptor instead.
|
||||
func (*BytesMessage) Descriptor() ([]byte, []int) {
|
||||
return file_upload_proto_rawDescGZIP(), []int{0}
|
||||
return file_github_com_moby_buildkit_session_upload_upload_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (x *BytesMessage) GetData() []byte {
|
||||
@@ -68,41 +68,43 @@ func (x *BytesMessage) GetData() []byte {
|
||||
return nil
|
||||
}
|
||||
|
||||
var File_upload_proto protoreflect.FileDescriptor
|
||||
var File_github_com_moby_buildkit_session_upload_upload_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_upload_proto_rawDesc = []byte{
|
||||
0x0a, 0x0c, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0e,
|
||||
0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x2e, 0x76, 0x31, 0x22, 0x22,
|
||||
0x0a, 0x0c, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x12,
|
||||
0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61,
|
||||
0x74, 0x61, 0x32, 0x50, 0x0a, 0x06, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x46, 0x0a, 0x04,
|
||||
0x50, 0x75, 0x6c, 0x6c, 0x12, 0x1c, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x75, 0x70, 0x6c, 0x6f,
|
||||
0x61, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61,
|
||||
0x67, 0x65, 0x1a, 0x1c, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64,
|
||||
0x2e, 0x76, 0x31, 0x2e, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
|
||||
0x28, 0x01, 0x30, 0x01, 0x42, 0x29, 0x5a, 0x27, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63,
|
||||
0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74,
|
||||
0x2f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x2f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x62,
|
||||
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
var file_github_com_moby_buildkit_session_upload_upload_proto_rawDesc = []byte{
|
||||
0x0a, 0x34, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62,
|
||||
0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73, 0x65, 0x73, 0x73, 0x69,
|
||||
0x6f, 0x6e, 0x2f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x2f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64,
|
||||
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x75, 0x70, 0x6c,
|
||||
0x6f, 0x61, 0x64, 0x2e, 0x76, 0x31, 0x22, 0x22, 0x0a, 0x0c, 0x42, 0x79, 0x74, 0x65, 0x73, 0x4d,
|
||||
0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x01,
|
||||
0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x32, 0x50, 0x0a, 0x06, 0x55, 0x70,
|
||||
0x6c, 0x6f, 0x61, 0x64, 0x12, 0x46, 0x0a, 0x04, 0x50, 0x75, 0x6c, 0x6c, 0x12, 0x1c, 0x2e, 0x6d,
|
||||
0x6f, 0x62, 0x79, 0x2e, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x79,
|
||||
0x74, 0x65, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x1c, 0x2e, 0x6d, 0x6f, 0x62,
|
||||
0x79, 0x2e, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x42, 0x79, 0x74, 0x65,
|
||||
0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x28, 0x01, 0x30, 0x01, 0x42, 0x29, 0x5a, 0x27,
|
||||
0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f,
|
||||
0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
|
||||
0x2f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
}
|
||||
|
||||
var (
|
||||
file_upload_proto_rawDescOnce sync.Once
|
||||
file_upload_proto_rawDescData = file_upload_proto_rawDesc
|
||||
file_github_com_moby_buildkit_session_upload_upload_proto_rawDescOnce sync.Once
|
||||
file_github_com_moby_buildkit_session_upload_upload_proto_rawDescData = file_github_com_moby_buildkit_session_upload_upload_proto_rawDesc
|
||||
)
|
||||
|
||||
func file_upload_proto_rawDescGZIP() []byte {
|
||||
file_upload_proto_rawDescOnce.Do(func() {
|
||||
file_upload_proto_rawDescData = protoimpl.X.CompressGZIP(file_upload_proto_rawDescData)
|
||||
func file_github_com_moby_buildkit_session_upload_upload_proto_rawDescGZIP() []byte {
|
||||
file_github_com_moby_buildkit_session_upload_upload_proto_rawDescOnce.Do(func() {
|
||||
file_github_com_moby_buildkit_session_upload_upload_proto_rawDescData = protoimpl.X.CompressGZIP(file_github_com_moby_buildkit_session_upload_upload_proto_rawDescData)
|
||||
})
|
||||
return file_upload_proto_rawDescData
|
||||
return file_github_com_moby_buildkit_session_upload_upload_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_upload_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||||
var file_upload_proto_goTypes = []interface{}{
|
||||
var file_github_com_moby_buildkit_session_upload_upload_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||||
var file_github_com_moby_buildkit_session_upload_upload_proto_goTypes = []interface{}{
|
||||
(*BytesMessage)(nil), // 0: moby.upload.v1.BytesMessage
|
||||
}
|
||||
var file_upload_proto_depIdxs = []int32{
|
||||
var file_github_com_moby_buildkit_session_upload_upload_proto_depIdxs = []int32{
|
||||
0, // 0: moby.upload.v1.Upload.Pull:input_type -> moby.upload.v1.BytesMessage
|
||||
0, // 1: moby.upload.v1.Upload.Pull:output_type -> moby.upload.v1.BytesMessage
|
||||
1, // [1:2] is the sub-list for method output_type
|
||||
@@ -112,13 +114,13 @@ var file_upload_proto_depIdxs = []int32{
|
||||
0, // [0:0] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_upload_proto_init() }
|
||||
func file_upload_proto_init() {
|
||||
if File_upload_proto != nil {
|
||||
func init() { file_github_com_moby_buildkit_session_upload_upload_proto_init() }
|
||||
func file_github_com_moby_buildkit_session_upload_upload_proto_init() {
|
||||
if File_github_com_moby_buildkit_session_upload_upload_proto != nil {
|
||||
return
|
||||
}
|
||||
if !protoimpl.UnsafeEnabled {
|
||||
file_upload_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_session_upload_upload_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*BytesMessage); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -135,18 +137,18 @@ func file_upload_proto_init() {
|
||||
out := protoimpl.TypeBuilder{
|
||||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: file_upload_proto_rawDesc,
|
||||
RawDescriptor: file_github_com_moby_buildkit_session_upload_upload_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 1,
|
||||
NumExtensions: 0,
|
||||
NumServices: 1,
|
||||
},
|
||||
GoTypes: file_upload_proto_goTypes,
|
||||
DependencyIndexes: file_upload_proto_depIdxs,
|
||||
MessageInfos: file_upload_proto_msgTypes,
|
||||
GoTypes: file_github_com_moby_buildkit_session_upload_upload_proto_goTypes,
|
||||
DependencyIndexes: file_github_com_moby_buildkit_session_upload_upload_proto_depIdxs,
|
||||
MessageInfos: file_github_com_moby_buildkit_session_upload_upload_proto_msgTypes,
|
||||
}.Build()
|
||||
File_upload_proto = out.File
|
||||
file_upload_proto_rawDesc = nil
|
||||
file_upload_proto_goTypes = nil
|
||||
file_upload_proto_depIdxs = nil
|
||||
File_github_com_moby_buildkit_session_upload_upload_proto = out.File
|
||||
file_github_com_moby_buildkit_session_upload_upload_proto_rawDesc = nil
|
||||
file_github_com_moby_buildkit_session_upload_upload_proto_goTypes = nil
|
||||
file_github_com_moby_buildkit_session_upload_upload_proto_depIdxs = nil
|
||||
}
|
||||
|
||||
4
vendor/github.com/moby/buildkit/session/upload/upload_grpc.pb.go
generated
vendored
4
vendor/github.com/moby/buildkit/session/upload/upload_grpc.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// - protoc-gen-go-grpc v1.5.1
|
||||
// - protoc v3.11.4
|
||||
// source: upload.proto
|
||||
// source: github.com/moby/buildkit/session/upload/upload.proto
|
||||
|
||||
package upload
|
||||
|
||||
@@ -109,5 +109,5 @@ var Upload_ServiceDesc = grpc.ServiceDesc{
|
||||
ClientStreams: true,
|
||||
},
|
||||
},
|
||||
Metadata: "upload.proto",
|
||||
Metadata: "github.com/moby/buildkit/session/upload/upload.proto",
|
||||
}
|
||||
|
||||
200
vendor/github.com/moby/buildkit/session/upload/upload_vtproto.pb.go
generated
vendored
Normal file
200
vendor/github.com/moby/buildkit/session/upload/upload_vtproto.pb.go
generated
vendored
Normal file
@@ -0,0 +1,200 @@
|
||||
// Code generated by protoc-gen-go-vtproto. DO NOT EDIT.
|
||||
// protoc-gen-go-vtproto version: v0.6.1-0.20240319094008-0393e58bdf10
|
||||
// source: github.com/moby/buildkit/session/upload/upload.proto
|
||||
|
||||
package upload
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
protohelpers "github.com/planetscale/vtprotobuf/protohelpers"
|
||||
proto "google.golang.org/protobuf/proto"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
io "io"
|
||||
)
|
||||
|
||||
const (
|
||||
// Verify that this generated code is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||
)
|
||||
|
||||
func (m *BytesMessage) CloneVT() *BytesMessage {
|
||||
if m == nil {
|
||||
return (*BytesMessage)(nil)
|
||||
}
|
||||
r := new(BytesMessage)
|
||||
if rhs := m.Data; rhs != nil {
|
||||
tmpBytes := make([]byte, len(rhs))
|
||||
copy(tmpBytes, rhs)
|
||||
r.Data = tmpBytes
|
||||
}
|
||||
if len(m.unknownFields) > 0 {
|
||||
r.unknownFields = make([]byte, len(m.unknownFields))
|
||||
copy(r.unknownFields, m.unknownFields)
|
||||
}
|
||||
return r
|
||||
}
|
||||
|
||||
func (m *BytesMessage) CloneMessageVT() proto.Message {
|
||||
return m.CloneVT()
|
||||
}
|
||||
|
||||
func (this *BytesMessage) EqualVT(that *BytesMessage) bool {
|
||||
if this == that {
|
||||
return true
|
||||
} else if this == nil || that == nil {
|
||||
return false
|
||||
}
|
||||
if string(this.Data) != string(that.Data) {
|
||||
return false
|
||||
}
|
||||
return string(this.unknownFields) == string(that.unknownFields)
|
||||
}
|
||||
|
||||
func (this *BytesMessage) EqualMessageVT(thatMsg proto.Message) bool {
|
||||
that, ok := thatMsg.(*BytesMessage)
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
return this.EqualVT(that)
|
||||
}
|
||||
func (m *BytesMessage) MarshalVT() (dAtA []byte, err error) {
|
||||
if m == nil {
|
||||
return nil, nil
|
||||
}
|
||||
size := m.SizeVT()
|
||||
dAtA = make([]byte, size)
|
||||
n, err := m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return dAtA[:n], nil
|
||||
}
|
||||
|
||||
func (m *BytesMessage) MarshalToVT(dAtA []byte) (int, error) {
|
||||
size := m.SizeVT()
|
||||
return m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
}
|
||||
|
||||
func (m *BytesMessage) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
|
||||
if m == nil {
|
||||
return 0, nil
|
||||
}
|
||||
i := len(dAtA)
|
||||
_ = i
|
||||
var l int
|
||||
_ = l
|
||||
if m.unknownFields != nil {
|
||||
i -= len(m.unknownFields)
|
||||
copy(dAtA[i:], m.unknownFields)
|
||||
}
|
||||
if len(m.Data) > 0 {
|
||||
i -= len(m.Data)
|
||||
copy(dAtA[i:], m.Data)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.Data)))
|
||||
i--
|
||||
dAtA[i] = 0xa
|
||||
}
|
||||
return len(dAtA) - i, nil
|
||||
}
|
||||
|
||||
func (m *BytesMessage) SizeVT() (n int) {
|
||||
if m == nil {
|
||||
return 0
|
||||
}
|
||||
var l int
|
||||
_ = l
|
||||
l = len(m.Data)
|
||||
if l > 0 {
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
n += len(m.unknownFields)
|
||||
return n
|
||||
}
|
||||
|
||||
func (m *BytesMessage) UnmarshalVT(dAtA []byte) error {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
for iNdEx < l {
|
||||
preIndex := iNdEx
|
||||
var wire uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
wire |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
fieldNum := int32(wire >> 3)
|
||||
wireType := int(wire & 0x7)
|
||||
if wireType == 4 {
|
||||
return fmt.Errorf("proto: BytesMessage: wiretype end group for non-group")
|
||||
}
|
||||
if fieldNum <= 0 {
|
||||
return fmt.Errorf("proto: BytesMessage: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
}
|
||||
switch fieldNum {
|
||||
case 1:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType)
|
||||
}
|
||||
var byteLen int
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
byteLen |= int(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
if byteLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + byteLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...)
|
||||
if m.Data == nil {
|
||||
m.Data = []byte{}
|
||||
}
|
||||
iNdEx = postIndex
|
||||
default:
|
||||
iNdEx = preIndex
|
||||
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if (iNdEx + skippy) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
|
||||
iNdEx += skippy
|
||||
}
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
return nil
|
||||
}
|
||||
195
vendor/github.com/moby/buildkit/solver/errdefs/errdefs.pb.go
generated
vendored
195
vendor/github.com/moby/buildkit/solver/errdefs/errdefs.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// protoc-gen-go v1.34.1
|
||||
// protoc v3.11.4
|
||||
// source: errdefs.proto
|
||||
// source: github.com/moby/buildkit/solver/errdefs/errdefs.proto
|
||||
|
||||
package errdefs
|
||||
|
||||
@@ -32,7 +32,7 @@ type Vertex struct {
|
||||
func (x *Vertex) Reset() {
|
||||
*x = Vertex{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_errdefs_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -45,7 +45,7 @@ func (x *Vertex) String() string {
|
||||
func (*Vertex) ProtoMessage() {}
|
||||
|
||||
func (x *Vertex) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_errdefs_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[0]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -58,7 +58,7 @@ func (x *Vertex) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use Vertex.ProtoReflect.Descriptor instead.
|
||||
func (*Vertex) Descriptor() ([]byte, []int) {
|
||||
return file_errdefs_proto_rawDescGZIP(), []int{0}
|
||||
return file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (x *Vertex) GetDigest() string {
|
||||
@@ -80,7 +80,7 @@ type Source struct {
|
||||
func (x *Source) Reset() {
|
||||
*x = Source{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_errdefs_proto_msgTypes[1]
|
||||
mi := &file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[1]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -93,7 +93,7 @@ func (x *Source) String() string {
|
||||
func (*Source) ProtoMessage() {}
|
||||
|
||||
func (x *Source) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_errdefs_proto_msgTypes[1]
|
||||
mi := &file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[1]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -106,7 +106,7 @@ func (x *Source) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use Source.ProtoReflect.Descriptor instead.
|
||||
func (*Source) Descriptor() ([]byte, []int) {
|
||||
return file_errdefs_proto_rawDescGZIP(), []int{1}
|
||||
return file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDescGZIP(), []int{1}
|
||||
}
|
||||
|
||||
func (x *Source) GetInfo() *pb.SourceInfo {
|
||||
@@ -134,7 +134,7 @@ type FrontendCap struct {
|
||||
func (x *FrontendCap) Reset() {
|
||||
*x = FrontendCap{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_errdefs_proto_msgTypes[2]
|
||||
mi := &file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[2]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -147,7 +147,7 @@ func (x *FrontendCap) String() string {
|
||||
func (*FrontendCap) ProtoMessage() {}
|
||||
|
||||
func (x *FrontendCap) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_errdefs_proto_msgTypes[2]
|
||||
mi := &file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[2]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -160,7 +160,7 @@ func (x *FrontendCap) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use FrontendCap.ProtoReflect.Descriptor instead.
|
||||
func (*FrontendCap) Descriptor() ([]byte, []int) {
|
||||
return file_errdefs_proto_rawDescGZIP(), []int{2}
|
||||
return file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDescGZIP(), []int{2}
|
||||
}
|
||||
|
||||
func (x *FrontendCap) GetName() string {
|
||||
@@ -181,7 +181,7 @@ type Subrequest struct {
|
||||
func (x *Subrequest) Reset() {
|
||||
*x = Subrequest{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_errdefs_proto_msgTypes[3]
|
||||
mi := &file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[3]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -194,7 +194,7 @@ func (x *Subrequest) String() string {
|
||||
func (*Subrequest) ProtoMessage() {}
|
||||
|
||||
func (x *Subrequest) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_errdefs_proto_msgTypes[3]
|
||||
mi := &file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[3]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -207,7 +207,7 @@ func (x *Subrequest) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use Subrequest.ProtoReflect.Descriptor instead.
|
||||
func (*Subrequest) Descriptor() ([]byte, []int) {
|
||||
return file_errdefs_proto_rawDescGZIP(), []int{3}
|
||||
return file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDescGZIP(), []int{3}
|
||||
}
|
||||
|
||||
func (x *Subrequest) GetName() string {
|
||||
@@ -236,7 +236,7 @@ type Solve struct {
|
||||
func (x *Solve) Reset() {
|
||||
*x = Solve{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_errdefs_proto_msgTypes[4]
|
||||
mi := &file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[4]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -249,7 +249,7 @@ func (x *Solve) String() string {
|
||||
func (*Solve) ProtoMessage() {}
|
||||
|
||||
func (x *Solve) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_errdefs_proto_msgTypes[4]
|
||||
mi := &file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[4]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -262,7 +262,7 @@ func (x *Solve) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use Solve.ProtoReflect.Descriptor instead.
|
||||
func (*Solve) Descriptor() ([]byte, []int) {
|
||||
return file_errdefs_proto_rawDescGZIP(), []int{4}
|
||||
return file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDescGZIP(), []int{4}
|
||||
}
|
||||
|
||||
func (x *Solve) GetInputIDs() []string {
|
||||
@@ -342,7 +342,7 @@ type FileAction struct {
|
||||
func (x *FileAction) Reset() {
|
||||
*x = FileAction{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_errdefs_proto_msgTypes[5]
|
||||
mi := &file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[5]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -355,7 +355,7 @@ func (x *FileAction) String() string {
|
||||
func (*FileAction) ProtoMessage() {}
|
||||
|
||||
func (x *FileAction) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_errdefs_proto_msgTypes[5]
|
||||
mi := &file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[5]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -368,7 +368,7 @@ func (x *FileAction) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use FileAction.ProtoReflect.Descriptor instead.
|
||||
func (*FileAction) Descriptor() ([]byte, []int) {
|
||||
return file_errdefs_proto_rawDescGZIP(), []int{5}
|
||||
return file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDescGZIP(), []int{5}
|
||||
}
|
||||
|
||||
func (x *FileAction) GetIndex() int64 {
|
||||
@@ -390,7 +390,7 @@ type ContentCache struct {
|
||||
func (x *ContentCache) Reset() {
|
||||
*x = ContentCache{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_errdefs_proto_msgTypes[6]
|
||||
mi := &file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[6]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -403,7 +403,7 @@ func (x *ContentCache) String() string {
|
||||
func (*ContentCache) ProtoMessage() {}
|
||||
|
||||
func (x *ContentCache) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_errdefs_proto_msgTypes[6]
|
||||
mi := &file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[6]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -416,7 +416,7 @@ func (x *ContentCache) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use ContentCache.ProtoReflect.Descriptor instead.
|
||||
func (*ContentCache) Descriptor() ([]byte, []int) {
|
||||
return file_errdefs_proto_rawDescGZIP(), []int{6}
|
||||
return file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDescGZIP(), []int{6}
|
||||
}
|
||||
|
||||
func (x *ContentCache) GetIndex() int64 {
|
||||
@@ -426,69 +426,72 @@ func (x *ContentCache) GetIndex() int64 {
|
||||
return 0
|
||||
}
|
||||
|
||||
var File_errdefs_proto protoreflect.FileDescriptor
|
||||
var File_github_com_moby_buildkit_solver_errdefs_errdefs_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_errdefs_proto_rawDesc = []byte{
|
||||
0x0a, 0x0d, 0x65, 0x72, 0x72, 0x64, 0x65, 0x66, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
|
||||
0x07, 0x65, 0x72, 0x72, 0x64, 0x65, 0x66, 0x73, 0x1a, 0x2c, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62,
|
||||
0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b,
|
||||
0x69, 0x74, 0x2f, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x62, 0x2f, 0x6f, 0x70, 0x73,
|
||||
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x20, 0x0a, 0x06, 0x56, 0x65, 0x72, 0x74, 0x65, 0x78,
|
||||
0x12, 0x16, 0x0a, 0x06, 0x64, 0x69, 0x67, 0x65, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
||||
0x52, 0x06, 0x64, 0x69, 0x67, 0x65, 0x73, 0x74, 0x22, 0x4f, 0x0a, 0x06, 0x53, 0x6f, 0x75, 0x72,
|
||||
0x63, 0x65, 0x12, 0x22, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
|
||||
0x32, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f,
|
||||
0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x12, 0x21, 0x0a, 0x06, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x73,
|
||||
0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09, 0x2e, 0x70, 0x62, 0x2e, 0x52, 0x61, 0x6e, 0x67,
|
||||
0x65, 0x52, 0x06, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x22, 0x21, 0x0a, 0x0b, 0x46, 0x72, 0x6f,
|
||||
0x6e, 0x74, 0x65, 0x6e, 0x64, 0x43, 0x61, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,
|
||||
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x20, 0x0a, 0x0a,
|
||||
0x53, 0x75, 0x62, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
|
||||
0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xbf,
|
||||
0x02, 0x0a, 0x05, 0x53, 0x6f, 0x6c, 0x76, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x70, 0x75,
|
||||
0x74, 0x49, 0x44, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x70, 0x75,
|
||||
0x74, 0x49, 0x44, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x73,
|
||||
0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x73,
|
||||
0x12, 0x16, 0x0a, 0x02, 0x6f, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x70,
|
||||
0x62, 0x2e, 0x4f, 0x70, 0x52, 0x02, 0x6f, 0x70, 0x12, 0x29, 0x0a, 0x04, 0x66, 0x69, 0x6c, 0x65,
|
||||
0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x65, 0x72, 0x72, 0x64, 0x65, 0x66, 0x73,
|
||||
0x2e, 0x46, 0x69, 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x04, 0x66,
|
||||
0x69, 0x6c, 0x65, 0x12, 0x2d, 0x0a, 0x05, 0x63, 0x61, 0x63, 0x68, 0x65, 0x18, 0x05, 0x20, 0x01,
|
||||
0x28, 0x0b, 0x32, 0x15, 0x2e, 0x65, 0x72, 0x72, 0x64, 0x65, 0x66, 0x73, 0x2e, 0x43, 0x6f, 0x6e,
|
||||
0x74, 0x65, 0x6e, 0x74, 0x43, 0x61, 0x63, 0x68, 0x65, 0x48, 0x00, 0x52, 0x05, 0x63, 0x61, 0x63,
|
||||
0x68, 0x65, 0x12, 0x41, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
|
||||
0x6e, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x65, 0x72, 0x72, 0x64, 0x65, 0x66,
|
||||
0x73, 0x2e, 0x53, 0x6f, 0x6c, 0x76, 0x65, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
|
||||
0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
|
||||
0x70, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x3e, 0x0a, 0x10, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
|
||||
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
|
||||
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76,
|
||||
0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
|
||||
0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x73, 0x75, 0x62, 0x6a, 0x65, 0x63, 0x74,
|
||||
0x22, 0x22, 0x0a, 0x0a, 0x46, 0x69, 0x6c, 0x65, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14,
|
||||
0x0a, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x69,
|
||||
0x6e, 0x64, 0x65, 0x78, 0x22, 0x24, 0x0a, 0x0c, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x43,
|
||||
0x61, 0x63, 0x68, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x01, 0x20,
|
||||
0x01, 0x28, 0x03, 0x52, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x42, 0x29, 0x5a, 0x27, 0x67, 0x69,
|
||||
0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75,
|
||||
0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x72, 0x2f, 0x65, 0x72,
|
||||
0x72, 0x64, 0x65, 0x66, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
var file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDesc = []byte{
|
||||
0x0a, 0x35, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62,
|
||||
0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73, 0x6f, 0x6c, 0x76, 0x65,
|
||||
0x72, 0x2f, 0x65, 0x72, 0x72, 0x64, 0x65, 0x66, 0x73, 0x2f, 0x65, 0x72, 0x72, 0x64, 0x65, 0x66,
|
||||
0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x65, 0x72, 0x72, 0x64, 0x65, 0x66, 0x73,
|
||||
0x1a, 0x2c, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62,
|
||||
0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73, 0x6f, 0x6c, 0x76, 0x65,
|
||||
0x72, 0x2f, 0x70, 0x62, 0x2f, 0x6f, 0x70, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x20,
|
||||
0x0a, 0x06, 0x56, 0x65, 0x72, 0x74, 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x69, 0x67, 0x65,
|
||||
0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x69, 0x67, 0x65, 0x73, 0x74,
|
||||
0x22, 0x4f, 0x0a, 0x06, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x22, 0x0a, 0x04, 0x69, 0x6e,
|
||||
0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x53, 0x6f,
|
||||
0x75, 0x72, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x12, 0x21,
|
||||
0x0a, 0x06, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x09,
|
||||
0x2e, 0x70, 0x62, 0x2e, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x06, 0x72, 0x61, 0x6e, 0x67, 0x65,
|
||||
0x73, 0x22, 0x21, 0x0a, 0x0b, 0x46, 0x72, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x64, 0x43, 0x61, 0x70,
|
||||
0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
|
||||
0x6e, 0x61, 0x6d, 0x65, 0x22, 0x20, 0x0a, 0x0a, 0x53, 0x75, 0x62, 0x72, 0x65, 0x71, 0x75, 0x65,
|
||||
0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
||||
0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xbf, 0x02, 0x0a, 0x05, 0x53, 0x6f, 0x6c, 0x76, 0x65,
|
||||
0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x49, 0x44, 0x73, 0x18, 0x01, 0x20, 0x03,
|
||||
0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x49, 0x44, 0x73, 0x12, 0x1a, 0x0a, 0x08,
|
||||
0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08,
|
||||
0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x73, 0x12, 0x16, 0x0a, 0x02, 0x6f, 0x70, 0x18, 0x03,
|
||||
0x20, 0x01, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x70, 0x62, 0x2e, 0x4f, 0x70, 0x52, 0x02, 0x6f, 0x70,
|
||||
0x12, 0x29, 0x0a, 0x04, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13,
|
||||
0x2e, 0x65, 0x72, 0x72, 0x64, 0x65, 0x66, 0x73, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x41, 0x63, 0x74,
|
||||
0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x04, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x2d, 0x0a, 0x05, 0x63,
|
||||
0x61, 0x63, 0x68, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x65, 0x72, 0x72,
|
||||
0x64, 0x65, 0x66, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x43, 0x61, 0x63, 0x68,
|
||||
0x65, 0x48, 0x00, 0x52, 0x05, 0x63, 0x61, 0x63, 0x68, 0x65, 0x12, 0x41, 0x0a, 0x0b, 0x64, 0x65,
|
||||
0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32,
|
||||
0x1f, 0x2e, 0x65, 0x72, 0x72, 0x64, 0x65, 0x66, 0x73, 0x2e, 0x53, 0x6f, 0x6c, 0x76, 0x65, 0x2e,
|
||||
0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x74, 0x72, 0x79,
|
||||
0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x3e, 0x0a,
|
||||
0x10, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x74, 0x72,
|
||||
0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
|
||||
0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
|
||||
0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x09, 0x0a,
|
||||
0x07, 0x73, 0x75, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x22, 0x22, 0x0a, 0x0a, 0x46, 0x69, 0x6c, 0x65,
|
||||
0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18,
|
||||
0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x22, 0x24, 0x0a, 0x0c,
|
||||
0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x43, 0x61, 0x63, 0x68, 0x65, 0x12, 0x14, 0x0a, 0x05,
|
||||
0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x69, 0x6e, 0x64,
|
||||
0x65, 0x78, 0x42, 0x29, 0x5a, 0x27, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d,
|
||||
0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73,
|
||||
0x6f, 0x6c, 0x76, 0x65, 0x72, 0x2f, 0x65, 0x72, 0x72, 0x64, 0x65, 0x66, 0x73, 0x62, 0x06, 0x70,
|
||||
0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
}
|
||||
|
||||
var (
|
||||
file_errdefs_proto_rawDescOnce sync.Once
|
||||
file_errdefs_proto_rawDescData = file_errdefs_proto_rawDesc
|
||||
file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDescOnce sync.Once
|
||||
file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDescData = file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDesc
|
||||
)
|
||||
|
||||
func file_errdefs_proto_rawDescGZIP() []byte {
|
||||
file_errdefs_proto_rawDescOnce.Do(func() {
|
||||
file_errdefs_proto_rawDescData = protoimpl.X.CompressGZIP(file_errdefs_proto_rawDescData)
|
||||
func file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDescGZIP() []byte {
|
||||
file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDescOnce.Do(func() {
|
||||
file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDescData = protoimpl.X.CompressGZIP(file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDescData)
|
||||
})
|
||||
return file_errdefs_proto_rawDescData
|
||||
return file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_errdefs_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
|
||||
var file_errdefs_proto_goTypes = []interface{}{
|
||||
var file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
|
||||
var file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_goTypes = []interface{}{
|
||||
(*Vertex)(nil), // 0: errdefs.Vertex
|
||||
(*Source)(nil), // 1: errdefs.Source
|
||||
(*FrontendCap)(nil), // 2: errdefs.FrontendCap
|
||||
@@ -501,7 +504,7 @@ var file_errdefs_proto_goTypes = []interface{}{
|
||||
(*pb.Range)(nil), // 9: pb.Range
|
||||
(*pb.Op)(nil), // 10: pb.Op
|
||||
}
|
||||
var file_errdefs_proto_depIdxs = []int32{
|
||||
var file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_depIdxs = []int32{
|
||||
8, // 0: errdefs.Source.info:type_name -> pb.SourceInfo
|
||||
9, // 1: errdefs.Source.ranges:type_name -> pb.Range
|
||||
10, // 2: errdefs.Solve.op:type_name -> pb.Op
|
||||
@@ -515,13 +518,13 @@ var file_errdefs_proto_depIdxs = []int32{
|
||||
0, // [0:6] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_errdefs_proto_init() }
|
||||
func file_errdefs_proto_init() {
|
||||
if File_errdefs_proto != nil {
|
||||
func init() { file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_init() }
|
||||
func file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_init() {
|
||||
if File_github_com_moby_buildkit_solver_errdefs_errdefs_proto != nil {
|
||||
return
|
||||
}
|
||||
if !protoimpl.UnsafeEnabled {
|
||||
file_errdefs_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*Vertex); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -533,7 +536,7 @@ func file_errdefs_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_errdefs_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*Source); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -545,7 +548,7 @@ func file_errdefs_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_errdefs_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*FrontendCap); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -557,7 +560,7 @@ func file_errdefs_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_errdefs_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*Subrequest); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -569,7 +572,7 @@ func file_errdefs_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_errdefs_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*Solve); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -581,7 +584,7 @@ func file_errdefs_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_errdefs_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*FileAction); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -593,7 +596,7 @@ func file_errdefs_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_errdefs_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*ContentCache); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -606,7 +609,7 @@ func file_errdefs_proto_init() {
|
||||
}
|
||||
}
|
||||
}
|
||||
file_errdefs_proto_msgTypes[4].OneofWrappers = []interface{}{
|
||||
file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes[4].OneofWrappers = []interface{}{
|
||||
(*Solve_File)(nil),
|
||||
(*Solve_Cache)(nil),
|
||||
}
|
||||
@@ -614,18 +617,18 @@ func file_errdefs_proto_init() {
|
||||
out := protoimpl.TypeBuilder{
|
||||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: file_errdefs_proto_rawDesc,
|
||||
RawDescriptor: file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 8,
|
||||
NumExtensions: 0,
|
||||
NumServices: 0,
|
||||
},
|
||||
GoTypes: file_errdefs_proto_goTypes,
|
||||
DependencyIndexes: file_errdefs_proto_depIdxs,
|
||||
MessageInfos: file_errdefs_proto_msgTypes,
|
||||
GoTypes: file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_goTypes,
|
||||
DependencyIndexes: file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_depIdxs,
|
||||
MessageInfos: file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_msgTypes,
|
||||
}.Build()
|
||||
File_errdefs_proto = out.File
|
||||
file_errdefs_proto_rawDesc = nil
|
||||
file_errdefs_proto_goTypes = nil
|
||||
file_errdefs_proto_depIdxs = nil
|
||||
File_github_com_moby_buildkit_solver_errdefs_errdefs_proto = out.File
|
||||
file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_rawDesc = nil
|
||||
file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_goTypes = nil
|
||||
file_github_com_moby_buildkit_solver_errdefs_errdefs_proto_depIdxs = nil
|
||||
}
|
||||
|
||||
1835
vendor/github.com/moby/buildkit/solver/errdefs/errdefs_vtproto.pb.go
generated
vendored
Normal file
1835
vendor/github.com/moby/buildkit/solver/errdefs/errdefs_vtproto.pb.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3
vendor/github.com/moby/buildkit/solver/errdefs/generate.go
generated
vendored
3
vendor/github.com/moby/buildkit/solver/errdefs/generate.go
generated
vendored
@@ -1,3 +0,0 @@
|
||||
package errdefs
|
||||
|
||||
//go:generate protoc -I=. -I=../../vendor/ -I=../../../../../ --go_out=paths=source_relative:. errdefs.proto
|
||||
3
vendor/github.com/moby/buildkit/solver/errdefs/source.go
generated
vendored
3
vendor/github.com/moby/buildkit/solver/errdefs/source.go
generated
vendored
@@ -8,7 +8,6 @@ import (
|
||||
pb "github.com/moby/buildkit/solver/pb"
|
||||
"github.com/moby/buildkit/util/grpcerrors"
|
||||
"github.com/pkg/errors"
|
||||
"google.golang.org/protobuf/proto"
|
||||
)
|
||||
|
||||
func WithSource(err error, src *Source) error {
|
||||
@@ -36,7 +35,7 @@ func Sources(err error) []*Source {
|
||||
var es *ErrorSource
|
||||
if errors.As(err, &es) {
|
||||
out = Sources(es.Unwrap())
|
||||
out = append(out, proto.Clone(es.Source).(*Source))
|
||||
out = append(out, es.Source.CloneVT())
|
||||
}
|
||||
return out
|
||||
}
|
||||
|
||||
10
vendor/github.com/moby/buildkit/solver/pb/caps.go
generated
vendored
10
vendor/github.com/moby/buildkit/solver/pb/caps.go
generated
vendored
@@ -67,6 +67,7 @@ const (
|
||||
CapFileCopyIncludeExcludePatterns apicaps.CapID = "file.copy.includeexcludepatterns"
|
||||
CapFileRmNoFollowSymlink apicaps.CapID = "file.rm.nofollowsymlink"
|
||||
CapFileCopyAlwaysReplaceExistingDestPaths apicaps.CapID = "file.copy.alwaysreplaceexistingdestpaths"
|
||||
CapFileCopyModeStringFormat apicaps.CapID = "file.copy.modestring"
|
||||
|
||||
CapConstraints apicaps.CapID = "constraints"
|
||||
CapPlatform apicaps.CapID = "platform"
|
||||
@@ -91,6 +92,9 @@ const (
|
||||
CapMultipleExporters apicaps.CapID = "exporter.multiple"
|
||||
|
||||
CapSourcePolicy apicaps.CapID = "source.policy"
|
||||
|
||||
// GC/Prune controls allow MinFreeSpace and MaxUsedSpace to be set
|
||||
CapGCFreeSpaceFilter apicaps.CapID = "gc.freespacefilter"
|
||||
)
|
||||
|
||||
func init() {
|
||||
@@ -488,4 +492,10 @@ func init() {
|
||||
Enabled: true,
|
||||
Status: apicaps.CapStatusExperimental,
|
||||
})
|
||||
|
||||
Caps.Init(apicaps.Cap{
|
||||
ID: CapGCFreeSpaceFilter,
|
||||
Enabled: true,
|
||||
Status: apicaps.CapStatusExperimental,
|
||||
})
|
||||
}
|
||||
|
||||
3
vendor/github.com/moby/buildkit/solver/pb/generate.go
generated
vendored
3
vendor/github.com/moby/buildkit/solver/pb/generate.go
generated
vendored
@@ -1,3 +0,0 @@
|
||||
package pb
|
||||
|
||||
//go:generate protoc -I=. -I=../../vendor/ --go_out=paths=source_relative:. ops.proto
|
||||
10
vendor/github.com/moby/buildkit/solver/pb/ops.go
generated
vendored
10
vendor/github.com/moby/buildkit/solver/pb/ops.go
generated
vendored
@@ -1,23 +1,21 @@
|
||||
package pb
|
||||
|
||||
import proto "google.golang.org/protobuf/proto"
|
||||
|
||||
func (m *Definition) IsNil() bool {
|
||||
return m == nil || m.Metadata == nil
|
||||
}
|
||||
|
||||
func (m *Definition) Marshal() ([]byte, error) {
|
||||
return proto.Marshal(m)
|
||||
return m.MarshalVT()
|
||||
}
|
||||
|
||||
func (m *Definition) Unmarshal(dAtA []byte) error {
|
||||
return proto.Unmarshal(dAtA, m)
|
||||
return m.UnmarshalVT(dAtA)
|
||||
}
|
||||
|
||||
func (m *Op) Marshal() ([]byte, error) {
|
||||
return proto.Marshal(m)
|
||||
return m.MarshalVT()
|
||||
}
|
||||
|
||||
func (m *Op) Unmarshal(dAtA []byte) error {
|
||||
return proto.Unmarshal(dAtA, m)
|
||||
return m.UnmarshalVT(dAtA)
|
||||
}
|
||||
|
||||
1214
vendor/github.com/moby/buildkit/solver/pb/ops.pb.go
generated
vendored
1214
vendor/github.com/moby/buildkit/solver/pb/ops.pb.go
generated
vendored
File diff suppressed because it is too large
Load Diff
2
vendor/github.com/moby/buildkit/solver/pb/ops.proto
generated
vendored
2
vendor/github.com/moby/buildkit/solver/pb/ops.proto
generated
vendored
@@ -341,6 +341,8 @@ message FileActionCopy {
|
||||
repeated string exclude_patterns = 13;
|
||||
// alwaysReplaceExistingDestPaths results in an existing dest path that differs in type from the src path being replaced rather than the default of returning an error
|
||||
bool alwaysReplaceExistingDestPaths = 14;
|
||||
// mode in non-octal format
|
||||
string modeStr = 15;
|
||||
}
|
||||
|
||||
message FileActionMkFile {
|
||||
|
||||
14050
vendor/github.com/moby/buildkit/solver/pb/ops_vtproto.pb.go
generated
vendored
Normal file
14050
vendor/github.com/moby/buildkit/solver/pb/ops_vtproto.pb.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
3
vendor/github.com/moby/buildkit/sourcepolicy/pb/generate.go
generated
vendored
3
vendor/github.com/moby/buildkit/sourcepolicy/pb/generate.go
generated
vendored
@@ -1,3 +0,0 @@
|
||||
package moby_buildkit_v1_sourcepolicy //nolint:revive
|
||||
|
||||
//go:generate protoc -I=. --go_out=paths=source_relative:. --go-grpc_out=paths=source_relative,require_unimplemented_servers=false:. policy.proto
|
||||
243
vendor/github.com/moby/buildkit/sourcepolicy/pb/policy.pb.go
generated
vendored
243
vendor/github.com/moby/buildkit/sourcepolicy/pb/policy.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// protoc-gen-go v1.34.1
|
||||
// protoc v3.11.4
|
||||
// source: policy.proto
|
||||
// source: github.com/moby/buildkit/sourcepolicy/pb/policy.proto
|
||||
|
||||
package moby_buildkit_v1_sourcepolicy
|
||||
|
||||
@@ -54,11 +54,11 @@ func (x PolicyAction) String() string {
|
||||
}
|
||||
|
||||
func (PolicyAction) Descriptor() protoreflect.EnumDescriptor {
|
||||
return file_policy_proto_enumTypes[0].Descriptor()
|
||||
return file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_enumTypes[0].Descriptor()
|
||||
}
|
||||
|
||||
func (PolicyAction) Type() protoreflect.EnumType {
|
||||
return &file_policy_proto_enumTypes[0]
|
||||
return &file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_enumTypes[0]
|
||||
}
|
||||
|
||||
func (x PolicyAction) Number() protoreflect.EnumNumber {
|
||||
@@ -67,7 +67,7 @@ func (x PolicyAction) Number() protoreflect.EnumNumber {
|
||||
|
||||
// Deprecated: Use PolicyAction.Descriptor instead.
|
||||
func (PolicyAction) EnumDescriptor() ([]byte, []int) {
|
||||
return file_policy_proto_rawDescGZIP(), []int{0}
|
||||
return file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
// AttrMatch defines the condition to match a source attribute
|
||||
@@ -104,11 +104,11 @@ func (x AttrMatch) String() string {
|
||||
}
|
||||
|
||||
func (AttrMatch) Descriptor() protoreflect.EnumDescriptor {
|
||||
return file_policy_proto_enumTypes[1].Descriptor()
|
||||
return file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_enumTypes[1].Descriptor()
|
||||
}
|
||||
|
||||
func (AttrMatch) Type() protoreflect.EnumType {
|
||||
return &file_policy_proto_enumTypes[1]
|
||||
return &file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_enumTypes[1]
|
||||
}
|
||||
|
||||
func (x AttrMatch) Number() protoreflect.EnumNumber {
|
||||
@@ -117,7 +117,7 @@ func (x AttrMatch) Number() protoreflect.EnumNumber {
|
||||
|
||||
// Deprecated: Use AttrMatch.Descriptor instead.
|
||||
func (AttrMatch) EnumDescriptor() ([]byte, []int) {
|
||||
return file_policy_proto_rawDescGZIP(), []int{1}
|
||||
return file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDescGZIP(), []int{1}
|
||||
}
|
||||
|
||||
// Match type is used to determine how a rule source is matched
|
||||
@@ -160,11 +160,11 @@ func (x MatchType) String() string {
|
||||
}
|
||||
|
||||
func (MatchType) Descriptor() protoreflect.EnumDescriptor {
|
||||
return file_policy_proto_enumTypes[2].Descriptor()
|
||||
return file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_enumTypes[2].Descriptor()
|
||||
}
|
||||
|
||||
func (MatchType) Type() protoreflect.EnumType {
|
||||
return &file_policy_proto_enumTypes[2]
|
||||
return &file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_enumTypes[2]
|
||||
}
|
||||
|
||||
func (x MatchType) Number() protoreflect.EnumNumber {
|
||||
@@ -173,7 +173,7 @@ func (x MatchType) Number() protoreflect.EnumNumber {
|
||||
|
||||
// Deprecated: Use MatchType.Descriptor instead.
|
||||
func (MatchType) EnumDescriptor() ([]byte, []int) {
|
||||
return file_policy_proto_rawDescGZIP(), []int{2}
|
||||
return file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDescGZIP(), []int{2}
|
||||
}
|
||||
|
||||
// Rule defines the action(s) to take when a source is matched
|
||||
@@ -190,7 +190,7 @@ type Rule struct {
|
||||
func (x *Rule) Reset() {
|
||||
*x = Rule{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_policy_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -203,7 +203,7 @@ func (x *Rule) String() string {
|
||||
func (*Rule) ProtoMessage() {}
|
||||
|
||||
func (x *Rule) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_policy_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes[0]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -216,7 +216,7 @@ func (x *Rule) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use Rule.ProtoReflect.Descriptor instead.
|
||||
func (*Rule) Descriptor() ([]byte, []int) {
|
||||
return file_policy_proto_rawDescGZIP(), []int{0}
|
||||
return file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (x *Rule) GetAction() PolicyAction {
|
||||
@@ -253,7 +253,7 @@ type Update struct {
|
||||
func (x *Update) Reset() {
|
||||
*x = Update{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_policy_proto_msgTypes[1]
|
||||
mi := &file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes[1]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -266,7 +266,7 @@ func (x *Update) String() string {
|
||||
func (*Update) ProtoMessage() {}
|
||||
|
||||
func (x *Update) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_policy_proto_msgTypes[1]
|
||||
mi := &file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes[1]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -279,7 +279,7 @@ func (x *Update) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use Update.ProtoReflect.Descriptor instead.
|
||||
func (*Update) Descriptor() ([]byte, []int) {
|
||||
return file_policy_proto_rawDescGZIP(), []int{1}
|
||||
return file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDescGZIP(), []int{1}
|
||||
}
|
||||
|
||||
func (x *Update) GetIdentifier() string {
|
||||
@@ -311,7 +311,7 @@ type Selector struct {
|
||||
func (x *Selector) Reset() {
|
||||
*x = Selector{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_policy_proto_msgTypes[2]
|
||||
mi := &file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes[2]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -324,7 +324,7 @@ func (x *Selector) String() string {
|
||||
func (*Selector) ProtoMessage() {}
|
||||
|
||||
func (x *Selector) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_policy_proto_msgTypes[2]
|
||||
mi := &file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes[2]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -337,7 +337,7 @@ func (x *Selector) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use Selector.ProtoReflect.Descriptor instead.
|
||||
func (*Selector) Descriptor() ([]byte, []int) {
|
||||
return file_policy_proto_rawDescGZIP(), []int{2}
|
||||
return file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDescGZIP(), []int{2}
|
||||
}
|
||||
|
||||
func (x *Selector) GetIdentifier() string {
|
||||
@@ -375,7 +375,7 @@ type AttrConstraint struct {
|
||||
func (x *AttrConstraint) Reset() {
|
||||
*x = AttrConstraint{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_policy_proto_msgTypes[3]
|
||||
mi := &file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes[3]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -388,7 +388,7 @@ func (x *AttrConstraint) String() string {
|
||||
func (*AttrConstraint) ProtoMessage() {}
|
||||
|
||||
func (x *AttrConstraint) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_policy_proto_msgTypes[3]
|
||||
mi := &file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes[3]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -401,7 +401,7 @@ func (x *AttrConstraint) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use AttrConstraint.ProtoReflect.Descriptor instead.
|
||||
func (*AttrConstraint) Descriptor() ([]byte, []int) {
|
||||
return file_policy_proto_rawDescGZIP(), []int{3}
|
||||
return file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDescGZIP(), []int{3}
|
||||
}
|
||||
|
||||
func (x *AttrConstraint) GetKey() string {
|
||||
@@ -438,7 +438,7 @@ type Policy struct {
|
||||
func (x *Policy) Reset() {
|
||||
*x = Policy{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_policy_proto_msgTypes[4]
|
||||
mi := &file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes[4]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -451,7 +451,7 @@ func (x *Policy) String() string {
|
||||
func (*Policy) ProtoMessage() {}
|
||||
|
||||
func (x *Policy) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_policy_proto_msgTypes[4]
|
||||
mi := &file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes[4]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -464,7 +464,7 @@ func (x *Policy) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use Policy.ProtoReflect.Descriptor instead.
|
||||
func (*Policy) Descriptor() ([]byte, []int) {
|
||||
return file_policy_proto_rawDescGZIP(), []int{4}
|
||||
return file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDescGZIP(), []int{4}
|
||||
}
|
||||
|
||||
func (x *Policy) GetVersion() int64 {
|
||||
@@ -481,94 +481,97 @@ func (x *Policy) GetRules() []*Rule {
|
||||
return nil
|
||||
}
|
||||
|
||||
var File_policy_proto protoreflect.FileDescriptor
|
||||
var File_github_com_moby_buildkit_sourcepolicy_pb_policy_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_policy_proto_rawDesc = []byte{
|
||||
0x0a, 0x0c, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1d,
|
||||
0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31,
|
||||
0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0xd1, 0x01,
|
||||
0x0a, 0x04, 0x52, 0x75, 0x6c, 0x65, 0x12, 0x43, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
|
||||
0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75,
|
||||
var file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDesc = []byte{
|
||||
0x0a, 0x35, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62,
|
||||
0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73, 0x6f, 0x75, 0x72, 0x63,
|
||||
0x65, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2f, 0x70, 0x62, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63,
|
||||
0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1d, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75,
|
||||
0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
|
||||
0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x41, 0x63, 0x74,
|
||||
0x69, 0x6f, 0x6e, 0x52, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x43, 0x0a, 0x08, 0x73,
|
||||
0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e,
|
||||
0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31,
|
||||
0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x53, 0x65,
|
||||
0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x08, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72,
|
||||
0x12, 0x3f, 0x0a, 0x07, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
|
||||
0x0b, 0x32, 0x25, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69,
|
||||
0x74, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x70, 0x6f, 0x6c, 0x69, 0x63,
|
||||
0x79, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x52, 0x07, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
|
||||
0x73, 0x22, 0xaa, 0x01, 0x0a, 0x06, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
|
||||
0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
||||
0x52, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x46, 0x0a, 0x05,
|
||||
0x61, 0x74, 0x74, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x6d, 0x6f,
|
||||
0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x73,
|
||||
0x6f, 0x75, 0x72, 0x63, 0x65, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x55, 0x70, 0x64, 0x61,
|
||||
0x74, 0x65, 0x2e, 0x41, 0x74, 0x74, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x61,
|
||||
0x74, 0x74, 0x72, 0x73, 0x1a, 0x38, 0x0a, 0x0a, 0x41, 0x74, 0x74, 0x72, 0x73, 0x45, 0x6e, 0x74,
|
||||
0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||
0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
|
||||
0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xc4,
|
||||
0x01, 0x0a, 0x08, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x12, 0x1e, 0x0a, 0x0a, 0x69,
|
||||
0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
||||
0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x47, 0x0a, 0x0a, 0x6d,
|
||||
0x61, 0x74, 0x63, 0x68, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32,
|
||||
0x28, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e,
|
||||
0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0xd1, 0x01, 0x0a, 0x04, 0x52, 0x75, 0x6c, 0x65, 0x12,
|
||||
0x43, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
|
||||
0x2b, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e,
|
||||
0x76, 0x31, 0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e,
|
||||
0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x52, 0x09, 0x6d, 0x61, 0x74, 0x63, 0x68,
|
||||
0x54, 0x79, 0x70, 0x65, 0x12, 0x4f, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69,
|
||||
0x6e, 0x74, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x6d, 0x6f, 0x62, 0x79,
|
||||
0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x6f, 0x75,
|
||||
0x72, 0x63, 0x65, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x41, 0x74, 0x74, 0x72, 0x43, 0x6f,
|
||||
0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72,
|
||||
0x61, 0x69, 0x6e, 0x74, 0x73, 0x22, 0x80, 0x01, 0x0a, 0x0e, 0x41, 0x74, 0x74, 0x72, 0x43, 0x6f,
|
||||
0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
|
||||
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
|
||||
0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
|
||||
0x12, 0x46, 0x0a, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20,
|
||||
0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64,
|
||||
0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x70, 0x6f, 0x6c,
|
||||
0x69, 0x63, 0x79, 0x2e, 0x41, 0x74, 0x74, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x52, 0x09, 0x63,
|
||||
0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x5d, 0x0a, 0x06, 0x50, 0x6f, 0x6c, 0x69,
|
||||
0x63, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20,
|
||||
0x01, 0x28, 0x03, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x39, 0x0a, 0x05,
|
||||
0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6d, 0x6f,
|
||||
0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x73,
|
||||
0x6f, 0x75, 0x72, 0x63, 0x65, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x52, 0x75, 0x6c, 0x65,
|
||||
0x52, 0x05, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x2a, 0x30, 0x0a, 0x0c, 0x50, 0x6f, 0x6c, 0x69, 0x63,
|
||||
0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x09, 0x0a, 0x05, 0x41, 0x4c, 0x4c, 0x4f, 0x57,
|
||||
0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x45, 0x4e, 0x59, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07,
|
||||
0x43, 0x4f, 0x4e, 0x56, 0x45, 0x52, 0x54, 0x10, 0x02, 0x2a, 0x31, 0x0a, 0x09, 0x41, 0x74, 0x74,
|
||||
0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x51, 0x55, 0x41, 0x4c, 0x10,
|
||||
0x00, 0x12, 0x0c, 0x0a, 0x08, 0x4e, 0x4f, 0x54, 0x45, 0x51, 0x55, 0x41, 0x4c, 0x10, 0x01, 0x12,
|
||||
0x0b, 0x0a, 0x07, 0x4d, 0x41, 0x54, 0x43, 0x48, 0x45, 0x53, 0x10, 0x02, 0x2a, 0x2f, 0x0a, 0x09,
|
||||
0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0c, 0x0a, 0x08, 0x57, 0x49, 0x4c,
|
||||
0x44, 0x43, 0x41, 0x52, 0x44, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x58, 0x41, 0x43, 0x54,
|
||||
0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x52, 0x45, 0x47, 0x45, 0x58, 0x10, 0x02, 0x42, 0x48, 0x5a,
|
||||
0x46, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79,
|
||||
0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
|
||||
0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2f, 0x70, 0x62, 0x3b, 0x6d, 0x6f, 0x62, 0x79, 0x5f, 0x62,
|
||||
0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x5f, 0x76, 0x31, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63,
|
||||
0x65, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x61, 0x63,
|
||||
0x74, 0x69, 0x6f, 0x6e, 0x12, 0x43, 0x0a, 0x08, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72,
|
||||
0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75,
|
||||
0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
|
||||
0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x52,
|
||||
0x08, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x12, 0x3f, 0x0a, 0x07, 0x75, 0x70, 0x64,
|
||||
0x61, 0x74, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x6d, 0x6f, 0x62,
|
||||
0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x6f,
|
||||
0x75, 0x72, 0x63, 0x65, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,
|
||||
0x65, 0x52, 0x07, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x73, 0x22, 0xaa, 0x01, 0x0a, 0x06, 0x55,
|
||||
0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
|
||||
0x69, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74,
|
||||
0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x46, 0x0a, 0x05, 0x61, 0x74, 0x74, 0x72, 0x73, 0x18, 0x02,
|
||||
0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c,
|
||||
0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x70, 0x6f,
|
||||
0x6c, 0x69, 0x63, 0x79, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x41, 0x74, 0x74, 0x72,
|
||||
0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05, 0x61, 0x74, 0x74, 0x72, 0x73, 0x1a, 0x38, 0x0a,
|
||||
0x0a, 0x41, 0x74, 0x74, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,
|
||||
0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a,
|
||||
0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61,
|
||||
0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xc4, 0x01, 0x0a, 0x08, 0x53, 0x65, 0x6c, 0x65,
|
||||
0x63, 0x74, 0x6f, 0x72, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69,
|
||||
0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69,
|
||||
0x66, 0x69, 0x65, 0x72, 0x12, 0x47, 0x0a, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74, 0x79,
|
||||
0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e,
|
||||
0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x6f, 0x75, 0x72,
|
||||
0x63, 0x65, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79,
|
||||
0x70, 0x65, 0x52, 0x09, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x4f, 0x0a,
|
||||
0x0b, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x73, 0x18, 0x03, 0x20, 0x03,
|
||||
0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b,
|
||||
0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x70, 0x6f, 0x6c, 0x69,
|
||||
0x63, 0x79, 0x2e, 0x41, 0x74, 0x74, 0x72, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e,
|
||||
0x74, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x73, 0x22, 0x80,
|
||||
0x01, 0x0a, 0x0e, 0x41, 0x74, 0x74, 0x72, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e,
|
||||
0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
|
||||
0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
|
||||
0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x46, 0x0a, 0x09, 0x63, 0x6f, 0x6e,
|
||||
0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x6d,
|
||||
0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e,
|
||||
0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x41, 0x74, 0x74,
|
||||
0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x52, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f,
|
||||
0x6e, 0x22, 0x5d, 0x0a, 0x06, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x76,
|
||||
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x76, 0x65,
|
||||
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x39, 0x0a, 0x05, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x18, 0x02,
|
||||
0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c,
|
||||
0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x70, 0x6f,
|
||||
0x6c, 0x69, 0x63, 0x79, 0x2e, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x05, 0x72, 0x75, 0x6c, 0x65, 0x73,
|
||||
0x2a, 0x30, 0x0a, 0x0c, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e,
|
||||
0x12, 0x09, 0x0a, 0x05, 0x41, 0x4c, 0x4c, 0x4f, 0x57, 0x10, 0x00, 0x12, 0x08, 0x0a, 0x04, 0x44,
|
||||
0x45, 0x4e, 0x59, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x43, 0x4f, 0x4e, 0x56, 0x45, 0x52, 0x54,
|
||||
0x10, 0x02, 0x2a, 0x31, 0x0a, 0x09, 0x41, 0x74, 0x74, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x12,
|
||||
0x09, 0x0a, 0x05, 0x45, 0x51, 0x55, 0x41, 0x4c, 0x10, 0x00, 0x12, 0x0c, 0x0a, 0x08, 0x4e, 0x4f,
|
||||
0x54, 0x45, 0x51, 0x55, 0x41, 0x4c, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x4d, 0x41, 0x54, 0x43,
|
||||
0x48, 0x45, 0x53, 0x10, 0x02, 0x2a, 0x2f, 0x0a, 0x09, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79,
|
||||
0x70, 0x65, 0x12, 0x0c, 0x0a, 0x08, 0x57, 0x49, 0x4c, 0x44, 0x43, 0x41, 0x52, 0x44, 0x10, 0x00,
|
||||
0x12, 0x09, 0x0a, 0x05, 0x45, 0x58, 0x41, 0x43, 0x54, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x52,
|
||||
0x45, 0x47, 0x45, 0x58, 0x10, 0x02, 0x42, 0x48, 0x5a, 0x46, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62,
|
||||
0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b,
|
||||
0x69, 0x74, 0x2f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2f,
|
||||
0x70, 0x62, 0x3b, 0x6d, 0x6f, 0x62, 0x79, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74,
|
||||
0x5f, 0x76, 0x31, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79,
|
||||
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
}
|
||||
|
||||
var (
|
||||
file_policy_proto_rawDescOnce sync.Once
|
||||
file_policy_proto_rawDescData = file_policy_proto_rawDesc
|
||||
file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDescOnce sync.Once
|
||||
file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDescData = file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDesc
|
||||
)
|
||||
|
||||
func file_policy_proto_rawDescGZIP() []byte {
|
||||
file_policy_proto_rawDescOnce.Do(func() {
|
||||
file_policy_proto_rawDescData = protoimpl.X.CompressGZIP(file_policy_proto_rawDescData)
|
||||
func file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDescGZIP() []byte {
|
||||
file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDescOnce.Do(func() {
|
||||
file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDescData = protoimpl.X.CompressGZIP(file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDescData)
|
||||
})
|
||||
return file_policy_proto_rawDescData
|
||||
return file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_policy_proto_enumTypes = make([]protoimpl.EnumInfo, 3)
|
||||
var file_policy_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
|
||||
var file_policy_proto_goTypes = []interface{}{
|
||||
var file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_enumTypes = make([]protoimpl.EnumInfo, 3)
|
||||
var file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
|
||||
var file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_goTypes = []interface{}{
|
||||
(PolicyAction)(0), // 0: moby.buildkit.v1.sourcepolicy.PolicyAction
|
||||
(AttrMatch)(0), // 1: moby.buildkit.v1.sourcepolicy.AttrMatch
|
||||
(MatchType)(0), // 2: moby.buildkit.v1.sourcepolicy.MatchType
|
||||
@@ -579,7 +582,7 @@ var file_policy_proto_goTypes = []interface{}{
|
||||
(*Policy)(nil), // 7: moby.buildkit.v1.sourcepolicy.Policy
|
||||
nil, // 8: moby.buildkit.v1.sourcepolicy.Update.AttrsEntry
|
||||
}
|
||||
var file_policy_proto_depIdxs = []int32{
|
||||
var file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_depIdxs = []int32{
|
||||
0, // 0: moby.buildkit.v1.sourcepolicy.Rule.action:type_name -> moby.buildkit.v1.sourcepolicy.PolicyAction
|
||||
5, // 1: moby.buildkit.v1.sourcepolicy.Rule.selector:type_name -> moby.buildkit.v1.sourcepolicy.Selector
|
||||
4, // 2: moby.buildkit.v1.sourcepolicy.Rule.updates:type_name -> moby.buildkit.v1.sourcepolicy.Update
|
||||
@@ -595,13 +598,13 @@ var file_policy_proto_depIdxs = []int32{
|
||||
0, // [0:8] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_policy_proto_init() }
|
||||
func file_policy_proto_init() {
|
||||
if File_policy_proto != nil {
|
||||
func init() { file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_init() }
|
||||
func file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_init() {
|
||||
if File_github_com_moby_buildkit_sourcepolicy_pb_policy_proto != nil {
|
||||
return
|
||||
}
|
||||
if !protoimpl.UnsafeEnabled {
|
||||
file_policy_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*Rule); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -613,7 +616,7 @@ func file_policy_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_policy_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*Update); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -625,7 +628,7 @@ func file_policy_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_policy_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*Selector); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -637,7 +640,7 @@ func file_policy_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_policy_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*AttrConstraint); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -649,7 +652,7 @@ func file_policy_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_policy_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*Policy); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -666,19 +669,19 @@ func file_policy_proto_init() {
|
||||
out := protoimpl.TypeBuilder{
|
||||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: file_policy_proto_rawDesc,
|
||||
RawDescriptor: file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDesc,
|
||||
NumEnums: 3,
|
||||
NumMessages: 6,
|
||||
NumExtensions: 0,
|
||||
NumServices: 0,
|
||||
},
|
||||
GoTypes: file_policy_proto_goTypes,
|
||||
DependencyIndexes: file_policy_proto_depIdxs,
|
||||
EnumInfos: file_policy_proto_enumTypes,
|
||||
MessageInfos: file_policy_proto_msgTypes,
|
||||
GoTypes: file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_goTypes,
|
||||
DependencyIndexes: file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_depIdxs,
|
||||
EnumInfos: file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_enumTypes,
|
||||
MessageInfos: file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_msgTypes,
|
||||
}.Build()
|
||||
File_policy_proto = out.File
|
||||
file_policy_proto_rawDesc = nil
|
||||
file_policy_proto_goTypes = nil
|
||||
file_policy_proto_depIdxs = nil
|
||||
File_github_com_moby_buildkit_sourcepolicy_pb_policy_proto = out.File
|
||||
file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_rawDesc = nil
|
||||
file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_goTypes = nil
|
||||
file_github_com_moby_buildkit_sourcepolicy_pb_policy_proto_depIdxs = nil
|
||||
}
|
||||
|
||||
1396
vendor/github.com/moby/buildkit/sourcepolicy/pb/policy_vtproto.pb.go
generated
vendored
Normal file
1396
vendor/github.com/moby/buildkit/sourcepolicy/pb/policy_vtproto.pb.go
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
97
vendor/github.com/moby/buildkit/util/apicaps/pb/caps.pb.go
generated
vendored
97
vendor/github.com/moby/buildkit/util/apicaps/pb/caps.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// protoc-gen-go v1.34.1
|
||||
// protoc v3.11.4
|
||||
// source: caps.proto
|
||||
// source: github.com/moby/buildkit/util/apicaps/pb/caps.proto
|
||||
|
||||
package moby_buildkit_v1_apicaps
|
||||
|
||||
@@ -37,7 +37,7 @@ type APICap struct {
|
||||
func (x *APICap) Reset() {
|
||||
*x = APICap{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_caps_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -50,7 +50,7 @@ func (x *APICap) String() string {
|
||||
func (*APICap) ProtoMessage() {}
|
||||
|
||||
func (x *APICap) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_caps_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_msgTypes[0]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -63,7 +63,7 @@ func (x *APICap) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use APICap.ProtoReflect.Descriptor instead.
|
||||
func (*APICap) Descriptor() ([]byte, []int) {
|
||||
return file_caps_proto_rawDescGZIP(), []int{0}
|
||||
return file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (x *APICap) GetID() string {
|
||||
@@ -108,49 +108,52 @@ func (x *APICap) GetDisabledAlternative() string {
|
||||
return ""
|
||||
}
|
||||
|
||||
var File_caps_proto protoreflect.FileDescriptor
|
||||
var File_github_com_moby_buildkit_util_apicaps_pb_caps_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_caps_proto_rawDesc = []byte{
|
||||
0x0a, 0x0a, 0x63, 0x61, 0x70, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x18, 0x6d, 0x6f,
|
||||
0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x61,
|
||||
0x70, 0x69, 0x63, 0x61, 0x70, 0x73, 0x22, 0xda, 0x01, 0x0a, 0x06, 0x41, 0x50, 0x49, 0x43, 0x61,
|
||||
0x70, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x49,
|
||||
0x44, 0x12, 0x18, 0x0a, 0x07, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01,
|
||||
0x28, 0x08, 0x52, 0x07, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x44,
|
||||
0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52,
|
||||
0x0a, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x26, 0x0a, 0x0e, 0x44,
|
||||
0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x04, 0x20,
|
||||
0x01, 0x28, 0x09, 0x52, 0x0e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x61,
|
||||
0x73, 0x6f, 0x6e, 0x12, 0x2c, 0x0a, 0x11, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52,
|
||||
0x65, 0x61, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11,
|
||||
var file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_rawDesc = []byte{
|
||||
0x0a, 0x33, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62,
|
||||
0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x75, 0x74, 0x69, 0x6c, 0x2f,
|
||||
0x61, 0x70, 0x69, 0x63, 0x61, 0x70, 0x73, 0x2f, 0x70, 0x62, 0x2f, 0x63, 0x61, 0x70, 0x73, 0x2e,
|
||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x18, 0x6d, 0x6f, 0x62, 0x79, 0x2e, 0x62, 0x75, 0x69, 0x6c,
|
||||
0x64, 0x6b, 0x69, 0x74, 0x2e, 0x76, 0x31, 0x2e, 0x61, 0x70, 0x69, 0x63, 0x61, 0x70, 0x73, 0x22,
|
||||
0xda, 0x01, 0x0a, 0x06, 0x41, 0x50, 0x49, 0x43, 0x61, 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x44,
|
||||
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x45, 0x6e,
|
||||
0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x45, 0x6e, 0x61,
|
||||
0x62, 0x6c, 0x65, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74,
|
||||
0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63,
|
||||
0x61, 0x74, 0x65, 0x64, 0x12, 0x26, 0x0a, 0x0e, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64,
|
||||
0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x44, 0x69,
|
||||
0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x2c, 0x0a, 0x11,
|
||||
0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x4d, 0x73,
|
||||
0x67, 0x12, 0x30, 0x0a, 0x13, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x41, 0x6c, 0x74,
|
||||
0x65, 0x72, 0x6e, 0x61, 0x74, 0x69, 0x76, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x13,
|
||||
0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x41, 0x6c, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x74,
|
||||
0x69, 0x76, 0x65, 0x42, 0x43, 0x5a, 0x41, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f,
|
||||
0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f,
|
||||
0x75, 0x74, 0x69, 0x6c, 0x2f, 0x61, 0x70, 0x69, 0x63, 0x61, 0x70, 0x73, 0x2f, 0x70, 0x62, 0x3b,
|
||||
0x6d, 0x6f, 0x62, 0x79, 0x5f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x5f, 0x76, 0x31,
|
||||
0x5f, 0x61, 0x70, 0x69, 0x63, 0x61, 0x70, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65,
|
||||
0x64, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x30, 0x0a, 0x13, 0x44, 0x69,
|
||||
0x73, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x41, 0x6c, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x74, 0x69, 0x76,
|
||||
0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x13, 0x44, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65,
|
||||
0x64, 0x41, 0x6c, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x74, 0x69, 0x76, 0x65, 0x42, 0x43, 0x5a, 0x41,
|
||||
0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62, 0x79, 0x2f,
|
||||
0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x75, 0x74, 0x69, 0x6c, 0x2f, 0x61, 0x70,
|
||||
0x69, 0x63, 0x61, 0x70, 0x73, 0x2f, 0x70, 0x62, 0x3b, 0x6d, 0x6f, 0x62, 0x79, 0x5f, 0x62, 0x75,
|
||||
0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x5f, 0x76, 0x31, 0x5f, 0x61, 0x70, 0x69, 0x63, 0x61, 0x70,
|
||||
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
}
|
||||
|
||||
var (
|
||||
file_caps_proto_rawDescOnce sync.Once
|
||||
file_caps_proto_rawDescData = file_caps_proto_rawDesc
|
||||
file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_rawDescOnce sync.Once
|
||||
file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_rawDescData = file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_rawDesc
|
||||
)
|
||||
|
||||
func file_caps_proto_rawDescGZIP() []byte {
|
||||
file_caps_proto_rawDescOnce.Do(func() {
|
||||
file_caps_proto_rawDescData = protoimpl.X.CompressGZIP(file_caps_proto_rawDescData)
|
||||
func file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_rawDescGZIP() []byte {
|
||||
file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_rawDescOnce.Do(func() {
|
||||
file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_rawDescData = protoimpl.X.CompressGZIP(file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_rawDescData)
|
||||
})
|
||||
return file_caps_proto_rawDescData
|
||||
return file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_caps_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||||
var file_caps_proto_goTypes = []interface{}{
|
||||
var file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||||
var file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_goTypes = []interface{}{
|
||||
(*APICap)(nil), // 0: moby.buildkit.v1.apicaps.APICap
|
||||
}
|
||||
var file_caps_proto_depIdxs = []int32{
|
||||
var file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_depIdxs = []int32{
|
||||
0, // [0:0] is the sub-list for method output_type
|
||||
0, // [0:0] is the sub-list for method input_type
|
||||
0, // [0:0] is the sub-list for extension type_name
|
||||
@@ -158,13 +161,13 @@ var file_caps_proto_depIdxs = []int32{
|
||||
0, // [0:0] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_caps_proto_init() }
|
||||
func file_caps_proto_init() {
|
||||
if File_caps_proto != nil {
|
||||
func init() { file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_init() }
|
||||
func file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_init() {
|
||||
if File_github_com_moby_buildkit_util_apicaps_pb_caps_proto != nil {
|
||||
return
|
||||
}
|
||||
if !protoimpl.UnsafeEnabled {
|
||||
file_caps_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*APICap); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -181,18 +184,18 @@ func file_caps_proto_init() {
|
||||
out := protoimpl.TypeBuilder{
|
||||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: file_caps_proto_rawDesc,
|
||||
RawDescriptor: file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 1,
|
||||
NumExtensions: 0,
|
||||
NumServices: 0,
|
||||
},
|
||||
GoTypes: file_caps_proto_goTypes,
|
||||
DependencyIndexes: file_caps_proto_depIdxs,
|
||||
MessageInfos: file_caps_proto_msgTypes,
|
||||
GoTypes: file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_goTypes,
|
||||
DependencyIndexes: file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_depIdxs,
|
||||
MessageInfos: file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_msgTypes,
|
||||
}.Build()
|
||||
File_caps_proto = out.File
|
||||
file_caps_proto_rawDesc = nil
|
||||
file_caps_proto_goTypes = nil
|
||||
file_caps_proto_depIdxs = nil
|
||||
File_github_com_moby_buildkit_util_apicaps_pb_caps_proto = out.File
|
||||
file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_rawDesc = nil
|
||||
file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_goTypes = nil
|
||||
file_github_com_moby_buildkit_util_apicaps_pb_caps_proto_depIdxs = nil
|
||||
}
|
||||
|
||||
409
vendor/github.com/moby/buildkit/util/apicaps/pb/caps_vtproto.pb.go
generated
vendored
Normal file
409
vendor/github.com/moby/buildkit/util/apicaps/pb/caps_vtproto.pb.go
generated
vendored
Normal file
@@ -0,0 +1,409 @@
|
||||
// Code generated by protoc-gen-go-vtproto. DO NOT EDIT.
|
||||
// protoc-gen-go-vtproto version: v0.6.1-0.20240319094008-0393e58bdf10
|
||||
// source: github.com/moby/buildkit/util/apicaps/pb/caps.proto
|
||||
|
||||
package moby_buildkit_v1_apicaps
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
protohelpers "github.com/planetscale/vtprotobuf/protohelpers"
|
||||
proto "google.golang.org/protobuf/proto"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
io "io"
|
||||
)
|
||||
|
||||
const (
|
||||
// Verify that this generated code is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||
)
|
||||
|
||||
func (m *APICap) CloneVT() *APICap {
|
||||
if m == nil {
|
||||
return (*APICap)(nil)
|
||||
}
|
||||
r := new(APICap)
|
||||
r.ID = m.ID
|
||||
r.Enabled = m.Enabled
|
||||
r.Deprecated = m.Deprecated
|
||||
r.DisabledReason = m.DisabledReason
|
||||
r.DisabledReasonMsg = m.DisabledReasonMsg
|
||||
r.DisabledAlternative = m.DisabledAlternative
|
||||
if len(m.unknownFields) > 0 {
|
||||
r.unknownFields = make([]byte, len(m.unknownFields))
|
||||
copy(r.unknownFields, m.unknownFields)
|
||||
}
|
||||
return r
|
||||
}
|
||||
|
||||
func (m *APICap) CloneMessageVT() proto.Message {
|
||||
return m.CloneVT()
|
||||
}
|
||||
|
||||
func (this *APICap) EqualVT(that *APICap) bool {
|
||||
if this == that {
|
||||
return true
|
||||
} else if this == nil || that == nil {
|
||||
return false
|
||||
}
|
||||
if this.ID != that.ID {
|
||||
return false
|
||||
}
|
||||
if this.Enabled != that.Enabled {
|
||||
return false
|
||||
}
|
||||
if this.Deprecated != that.Deprecated {
|
||||
return false
|
||||
}
|
||||
if this.DisabledReason != that.DisabledReason {
|
||||
return false
|
||||
}
|
||||
if this.DisabledReasonMsg != that.DisabledReasonMsg {
|
||||
return false
|
||||
}
|
||||
if this.DisabledAlternative != that.DisabledAlternative {
|
||||
return false
|
||||
}
|
||||
return string(this.unknownFields) == string(that.unknownFields)
|
||||
}
|
||||
|
||||
func (this *APICap) EqualMessageVT(thatMsg proto.Message) bool {
|
||||
that, ok := thatMsg.(*APICap)
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
return this.EqualVT(that)
|
||||
}
|
||||
func (m *APICap) MarshalVT() (dAtA []byte, err error) {
|
||||
if m == nil {
|
||||
return nil, nil
|
||||
}
|
||||
size := m.SizeVT()
|
||||
dAtA = make([]byte, size)
|
||||
n, err := m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return dAtA[:n], nil
|
||||
}
|
||||
|
||||
func (m *APICap) MarshalToVT(dAtA []byte) (int, error) {
|
||||
size := m.SizeVT()
|
||||
return m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
}
|
||||
|
||||
func (m *APICap) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
|
||||
if m == nil {
|
||||
return 0, nil
|
||||
}
|
||||
i := len(dAtA)
|
||||
_ = i
|
||||
var l int
|
||||
_ = l
|
||||
if m.unknownFields != nil {
|
||||
i -= len(m.unknownFields)
|
||||
copy(dAtA[i:], m.unknownFields)
|
||||
}
|
||||
if len(m.DisabledAlternative) > 0 {
|
||||
i -= len(m.DisabledAlternative)
|
||||
copy(dAtA[i:], m.DisabledAlternative)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.DisabledAlternative)))
|
||||
i--
|
||||
dAtA[i] = 0x32
|
||||
}
|
||||
if len(m.DisabledReasonMsg) > 0 {
|
||||
i -= len(m.DisabledReasonMsg)
|
||||
copy(dAtA[i:], m.DisabledReasonMsg)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.DisabledReasonMsg)))
|
||||
i--
|
||||
dAtA[i] = 0x2a
|
||||
}
|
||||
if len(m.DisabledReason) > 0 {
|
||||
i -= len(m.DisabledReason)
|
||||
copy(dAtA[i:], m.DisabledReason)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.DisabledReason)))
|
||||
i--
|
||||
dAtA[i] = 0x22
|
||||
}
|
||||
if m.Deprecated {
|
||||
i--
|
||||
if m.Deprecated {
|
||||
dAtA[i] = 1
|
||||
} else {
|
||||
dAtA[i] = 0
|
||||
}
|
||||
i--
|
||||
dAtA[i] = 0x18
|
||||
}
|
||||
if m.Enabled {
|
||||
i--
|
||||
if m.Enabled {
|
||||
dAtA[i] = 1
|
||||
} else {
|
||||
dAtA[i] = 0
|
||||
}
|
||||
i--
|
||||
dAtA[i] = 0x10
|
||||
}
|
||||
if len(m.ID) > 0 {
|
||||
i -= len(m.ID)
|
||||
copy(dAtA[i:], m.ID)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.ID)))
|
||||
i--
|
||||
dAtA[i] = 0xa
|
||||
}
|
||||
return len(dAtA) - i, nil
|
||||
}
|
||||
|
||||
func (m *APICap) SizeVT() (n int) {
|
||||
if m == nil {
|
||||
return 0
|
||||
}
|
||||
var l int
|
||||
_ = l
|
||||
l = len(m.ID)
|
||||
if l > 0 {
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
if m.Enabled {
|
||||
n += 2
|
||||
}
|
||||
if m.Deprecated {
|
||||
n += 2
|
||||
}
|
||||
l = len(m.DisabledReason)
|
||||
if l > 0 {
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
l = len(m.DisabledReasonMsg)
|
||||
if l > 0 {
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
l = len(m.DisabledAlternative)
|
||||
if l > 0 {
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
n += len(m.unknownFields)
|
||||
return n
|
||||
}
|
||||
|
||||
func (m *APICap) UnmarshalVT(dAtA []byte) error {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
for iNdEx < l {
|
||||
preIndex := iNdEx
|
||||
var wire uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
wire |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
fieldNum := int32(wire >> 3)
|
||||
wireType := int(wire & 0x7)
|
||||
if wireType == 4 {
|
||||
return fmt.Errorf("proto: APICap: wiretype end group for non-group")
|
||||
}
|
||||
if fieldNum <= 0 {
|
||||
return fmt.Errorf("proto: APICap: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
}
|
||||
switch fieldNum {
|
||||
case 1:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field ID", wireType)
|
||||
}
|
||||
var stringLen uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
stringLen |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
intStringLen := int(stringLen)
|
||||
if intStringLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + intStringLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.ID = string(dAtA[iNdEx:postIndex])
|
||||
iNdEx = postIndex
|
||||
case 2:
|
||||
if wireType != 0 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Enabled", wireType)
|
||||
}
|
||||
var v int
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
v |= int(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
m.Enabled = bool(v != 0)
|
||||
case 3:
|
||||
if wireType != 0 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Deprecated", wireType)
|
||||
}
|
||||
var v int
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
v |= int(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
m.Deprecated = bool(v != 0)
|
||||
case 4:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field DisabledReason", wireType)
|
||||
}
|
||||
var stringLen uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
stringLen |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
intStringLen := int(stringLen)
|
||||
if intStringLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + intStringLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.DisabledReason = string(dAtA[iNdEx:postIndex])
|
||||
iNdEx = postIndex
|
||||
case 5:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field DisabledReasonMsg", wireType)
|
||||
}
|
||||
var stringLen uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
stringLen |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
intStringLen := int(stringLen)
|
||||
if intStringLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + intStringLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.DisabledReasonMsg = string(dAtA[iNdEx:postIndex])
|
||||
iNdEx = postIndex
|
||||
case 6:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field DisabledAlternative", wireType)
|
||||
}
|
||||
var stringLen uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
stringLen |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
intStringLen := int(stringLen)
|
||||
if intStringLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + intStringLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.DisabledAlternative = string(dAtA[iNdEx:postIndex])
|
||||
iNdEx = postIndex
|
||||
default:
|
||||
iNdEx = preIndex
|
||||
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if (iNdEx + skippy) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
|
||||
iNdEx += skippy
|
||||
}
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
return nil
|
||||
}
|
||||
3
vendor/github.com/moby/buildkit/util/apicaps/pb/generate.go
generated
vendored
3
vendor/github.com/moby/buildkit/util/apicaps/pb/generate.go
generated
vendored
@@ -1,3 +0,0 @@
|
||||
package moby_buildkit_v1_apicaps //nolint:revive
|
||||
|
||||
//go:generate protoc -I=. -I=../../../vendor/ -I=../../../../../../ --go_out=paths=source_relative:. --go-grpc_out=paths=source_relative,require_unimplemented_servers=false:. caps.proto
|
||||
130
vendor/github.com/moby/buildkit/util/grpcutil/encoding/proto/proto.go
generated
vendored
Normal file
130
vendor/github.com/moby/buildkit/util/grpcutil/encoding/proto/proto.go
generated
vendored
Normal file
@@ -0,0 +1,130 @@
|
||||
// Package proto implements a custom encoding for grpc.
|
||||
//
|
||||
// The codec registered by this package has an important
|
||||
// difference from the default codec. Unlike the default codec,
|
||||
// it does not reset the input message when unmarshaling.
|
||||
//
|
||||
// This primarily impacts stream service calls. If you want
|
||||
// to reuse a message and need it to be reset before calling
|
||||
// RecvMsg, invoke the appropriate Reset method or proto.Reset
|
||||
// before invoking RecvMsg or use a zero initialized message.
|
||||
package proto
|
||||
|
||||
import (
|
||||
"github.com/pkg/errors"
|
||||
"google.golang.org/grpc/encoding"
|
||||
"google.golang.org/grpc/mem"
|
||||
"google.golang.org/protobuf/proto"
|
||||
"google.golang.org/protobuf/protoadapt"
|
||||
|
||||
// It is important that this import is included so
|
||||
// we can overwrite the default codec with the same name.
|
||||
grpcproto "google.golang.org/grpc/encoding/proto"
|
||||
)
|
||||
|
||||
func init() {
|
||||
encoding.RegisterCodecV2(codec{})
|
||||
}
|
||||
|
||||
type codec struct{}
|
||||
|
||||
func (codec) Marshal(m any) (data mem.BufferSlice, err error) {
|
||||
switch m := m.(type) {
|
||||
case vtprotoMessage:
|
||||
return marshalVT(data, m)
|
||||
case protoadapt.MessageV2:
|
||||
return marshal(data, m)
|
||||
case protoadapt.MessageV1:
|
||||
m2 := protoadapt.MessageV2Of(m)
|
||||
return marshal(data, m2)
|
||||
default:
|
||||
return nil, errors.Errorf("failed to marshal, message is %T, want proto.Message", m)
|
||||
}
|
||||
}
|
||||
|
||||
func (codec) Unmarshal(data mem.BufferSlice, m any) error {
|
||||
switch m := m.(type) {
|
||||
case vtprotoMessage:
|
||||
return unmarshalVT(data, m)
|
||||
case protoadapt.MessageV2:
|
||||
return unmarshal(data, m)
|
||||
case protoadapt.MessageV1:
|
||||
m2 := protoadapt.MessageV2Of(m)
|
||||
return unmarshal(data, m2)
|
||||
default:
|
||||
return errors.Errorf("failed to unmarshal, message is %T, want proto.Message", m)
|
||||
}
|
||||
}
|
||||
|
||||
func (codec) Name() string {
|
||||
return grpcproto.Name
|
||||
}
|
||||
|
||||
type vtprotoMessage interface {
|
||||
MarshalToSizedBufferVT(data []byte) (int, error)
|
||||
SizeVT() int
|
||||
UnmarshalVT(data []byte) error
|
||||
}
|
||||
|
||||
func marshalVT(data mem.BufferSlice, m vtprotoMessage) (mem.BufferSlice, error) {
|
||||
size := m.SizeVT()
|
||||
if mem.IsBelowBufferPoolingThreshold(size) {
|
||||
buf := make([]byte, size)
|
||||
if _, err := m.MarshalToSizedBufferVT(buf); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
data = append(data, mem.SliceBuffer(buf))
|
||||
} else {
|
||||
pool := mem.DefaultBufferPool()
|
||||
buf := pool.Get(size)
|
||||
if _, err := m.MarshalToSizedBufferVT((*buf)[:size]); err != nil {
|
||||
pool.Put(buf)
|
||||
return nil, err
|
||||
}
|
||||
data = append(data, mem.NewBuffer(buf, pool))
|
||||
}
|
||||
return data, nil
|
||||
}
|
||||
|
||||
func unmarshalVT(data mem.BufferSlice, m vtprotoMessage) error {
|
||||
buf := data.MaterializeToBuffer(mem.DefaultBufferPool())
|
||||
defer buf.Free()
|
||||
|
||||
return m.UnmarshalVT(buf.ReadOnlyData())
|
||||
}
|
||||
|
||||
func marshal(data mem.BufferSlice, m proto.Message) (mem.BufferSlice, error) {
|
||||
size := proto.Size(m)
|
||||
if mem.IsBelowBufferPoolingThreshold(size) {
|
||||
buf, err := proto.Marshal(m)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
data = append(data, mem.SliceBuffer(buf))
|
||||
} else {
|
||||
pool := mem.DefaultBufferPool()
|
||||
buf := pool.Get(size)
|
||||
if _, err := (proto.MarshalOptions{}).MarshalAppend((*buf)[:0], m); err != nil {
|
||||
pool.Put(buf)
|
||||
return nil, err
|
||||
}
|
||||
data = append(data, mem.NewBuffer(buf, pool))
|
||||
}
|
||||
return data, nil
|
||||
}
|
||||
|
||||
func unmarshal(data mem.BufferSlice, m proto.Message) error {
|
||||
buf := data.MaterializeToBuffer(mem.DefaultBufferPool())
|
||||
defer buf.Free()
|
||||
|
||||
// We use merge true here for consistency with the vtproto implementation,
|
||||
// but this won't impact performance most of the time. This is because
|
||||
// the buffer that's most likely to impact performance is a bytes message
|
||||
// and the default codec for protobuf will never reuse a buffer
|
||||
// from the existing message.
|
||||
//
|
||||
// We don't want any surprises between the vtproto implementation and this
|
||||
// implementation so we enable merge in case it causes a visible behavior
|
||||
// difference.
|
||||
return proto.UnmarshalOptions{Merge: true}.Unmarshal(buf.ReadOnlyData(), m)
|
||||
}
|
||||
3
vendor/github.com/moby/buildkit/util/stack/generate.go
generated
vendored
3
vendor/github.com/moby/buildkit/util/stack/generate.go
generated
vendored
@@ -1,3 +0,0 @@
|
||||
package stack
|
||||
|
||||
//go:generate protoc -I=. -I=../../vendor/ --go_out=. --go_opt=paths=source_relative --go_opt=Mstack.proto=/util/stack stack.proto
|
||||
98
vendor/github.com/moby/buildkit/util/stack/stack.pb.go
generated
vendored
98
vendor/github.com/moby/buildkit/util/stack/stack.pb.go
generated
vendored
@@ -2,7 +2,7 @@
|
||||
// versions:
|
||||
// protoc-gen-go v1.34.1
|
||||
// protoc v3.11.4
|
||||
// source: stack.proto
|
||||
// source: github.com/moby/buildkit/util/stack/stack.proto
|
||||
|
||||
package stack
|
||||
|
||||
@@ -35,7 +35,7 @@ type Stack struct {
|
||||
func (x *Stack) Reset() {
|
||||
*x = Stack{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_stack_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_util_stack_stack_proto_msgTypes[0]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -48,7 +48,7 @@ func (x *Stack) String() string {
|
||||
func (*Stack) ProtoMessage() {}
|
||||
|
||||
func (x *Stack) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_stack_proto_msgTypes[0]
|
||||
mi := &file_github_com_moby_buildkit_util_stack_stack_proto_msgTypes[0]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -61,7 +61,7 @@ func (x *Stack) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use Stack.ProtoReflect.Descriptor instead.
|
||||
func (*Stack) Descriptor() ([]byte, []int) {
|
||||
return file_stack_proto_rawDescGZIP(), []int{0}
|
||||
return file_github_com_moby_buildkit_util_stack_stack_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
func (x *Stack) GetFrames() []*Frame {
|
||||
@@ -112,7 +112,7 @@ type Frame struct {
|
||||
func (x *Frame) Reset() {
|
||||
*x = Frame{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_stack_proto_msgTypes[1]
|
||||
mi := &file_github_com_moby_buildkit_util_stack_stack_proto_msgTypes[1]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
@@ -125,7 +125,7 @@ func (x *Frame) String() string {
|
||||
func (*Frame) ProtoMessage() {}
|
||||
|
||||
func (x *Frame) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_stack_proto_msgTypes[1]
|
||||
mi := &file_github_com_moby_buildkit_util_stack_stack_proto_msgTypes[1]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
@@ -138,7 +138,7 @@ func (x *Frame) ProtoReflect() protoreflect.Message {
|
||||
|
||||
// Deprecated: Use Frame.ProtoReflect.Descriptor instead.
|
||||
func (*Frame) Descriptor() ([]byte, []int) {
|
||||
return file_stack_proto_rawDescGZIP(), []int{1}
|
||||
return file_github_com_moby_buildkit_util_stack_stack_proto_rawDescGZIP(), []int{1}
|
||||
}
|
||||
|
||||
func (x *Frame) GetName() string {
|
||||
@@ -162,45 +162,49 @@ func (x *Frame) GetLine() int32 {
|
||||
return 0
|
||||
}
|
||||
|
||||
var File_stack_proto protoreflect.FileDescriptor
|
||||
var File_github_com_moby_buildkit_util_stack_stack_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_stack_proto_rawDesc = []byte{
|
||||
0x0a, 0x0b, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x73,
|
||||
0x74, 0x61, 0x63, 0x6b, 0x22, 0x8f, 0x01, 0x0a, 0x05, 0x53, 0x74, 0x61, 0x63, 0x6b, 0x12, 0x24,
|
||||
0x0a, 0x06, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c,
|
||||
0x2e, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x2e, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x52, 0x06, 0x66, 0x72,
|
||||
0x61, 0x6d, 0x65, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6d, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x18,
|
||||
0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6d, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x12, 0x10,
|
||||
0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x70, 0x69, 0x64,
|
||||
0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65,
|
||||
0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65,
|
||||
0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x43, 0x0a, 0x05, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x12,
|
||||
0x12, 0x0a, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x4e,
|
||||
0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x46, 0x69, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x04, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x4c, 0x69, 0x6e, 0x65, 0x18,
|
||||
0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x4c, 0x69, 0x6e, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f,
|
||||
0x74, 0x6f, 0x33,
|
||||
var file_github_com_moby_buildkit_util_stack_stack_proto_rawDesc = []byte{
|
||||
0x0a, 0x2f, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f, 0x62,
|
||||
0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x75, 0x74, 0x69, 0x6c, 0x2f,
|
||||
0x73, 0x74, 0x61, 0x63, 0x6b, 0x2f, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
||||
0x6f, 0x12, 0x05, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x22, 0x8f, 0x01, 0x0a, 0x05, 0x53, 0x74, 0x61,
|
||||
0x63, 0x6b, 0x12, 0x24, 0x0a, 0x06, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03,
|
||||
0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x2e, 0x46, 0x72, 0x61, 0x6d, 0x65,
|
||||
0x52, 0x06, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6d, 0x64, 0x6c,
|
||||
0x69, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6d, 0x64, 0x6c, 0x69,
|
||||
0x6e, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52,
|
||||
0x03, 0x70, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18,
|
||||
0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1a,
|
||||
0x0a, 0x08, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
|
||||
0x52, 0x08, 0x72, 0x65, 0x76, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x43, 0x0a, 0x05, 0x46, 0x72,
|
||||
0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
|
||||
0x09, 0x52, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x46, 0x69, 0x6c, 0x65, 0x18,
|
||||
0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x4c,
|
||||
0x69, 0x6e, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x4c, 0x69, 0x6e, 0x65, 0x42,
|
||||
0x25, 0x5a, 0x23, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6d, 0x6f,
|
||||
0x62, 0x79, 0x2f, 0x62, 0x75, 0x69, 0x6c, 0x64, 0x6b, 0x69, 0x74, 0x2f, 0x75, 0x74, 0x69, 0x6c,
|
||||
0x2f, 0x73, 0x74, 0x61, 0x63, 0x6b, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
}
|
||||
|
||||
var (
|
||||
file_stack_proto_rawDescOnce sync.Once
|
||||
file_stack_proto_rawDescData = file_stack_proto_rawDesc
|
||||
file_github_com_moby_buildkit_util_stack_stack_proto_rawDescOnce sync.Once
|
||||
file_github_com_moby_buildkit_util_stack_stack_proto_rawDescData = file_github_com_moby_buildkit_util_stack_stack_proto_rawDesc
|
||||
)
|
||||
|
||||
func file_stack_proto_rawDescGZIP() []byte {
|
||||
file_stack_proto_rawDescOnce.Do(func() {
|
||||
file_stack_proto_rawDescData = protoimpl.X.CompressGZIP(file_stack_proto_rawDescData)
|
||||
func file_github_com_moby_buildkit_util_stack_stack_proto_rawDescGZIP() []byte {
|
||||
file_github_com_moby_buildkit_util_stack_stack_proto_rawDescOnce.Do(func() {
|
||||
file_github_com_moby_buildkit_util_stack_stack_proto_rawDescData = protoimpl.X.CompressGZIP(file_github_com_moby_buildkit_util_stack_stack_proto_rawDescData)
|
||||
})
|
||||
return file_stack_proto_rawDescData
|
||||
return file_github_com_moby_buildkit_util_stack_stack_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_stack_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
||||
var file_stack_proto_goTypes = []interface{}{
|
||||
var file_github_com_moby_buildkit_util_stack_stack_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
||||
var file_github_com_moby_buildkit_util_stack_stack_proto_goTypes = []interface{}{
|
||||
(*Stack)(nil), // 0: stack.Stack
|
||||
(*Frame)(nil), // 1: stack.Frame
|
||||
}
|
||||
var file_stack_proto_depIdxs = []int32{
|
||||
var file_github_com_moby_buildkit_util_stack_stack_proto_depIdxs = []int32{
|
||||
1, // 0: stack.Stack.frames:type_name -> stack.Frame
|
||||
1, // [1:1] is the sub-list for method output_type
|
||||
1, // [1:1] is the sub-list for method input_type
|
||||
@@ -209,13 +213,13 @@ var file_stack_proto_depIdxs = []int32{
|
||||
0, // [0:1] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_stack_proto_init() }
|
||||
func file_stack_proto_init() {
|
||||
if File_stack_proto != nil {
|
||||
func init() { file_github_com_moby_buildkit_util_stack_stack_proto_init() }
|
||||
func file_github_com_moby_buildkit_util_stack_stack_proto_init() {
|
||||
if File_github_com_moby_buildkit_util_stack_stack_proto != nil {
|
||||
return
|
||||
}
|
||||
if !protoimpl.UnsafeEnabled {
|
||||
file_stack_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_util_stack_stack_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*Stack); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -227,7 +231,7 @@ func file_stack_proto_init() {
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_stack_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
file_github_com_moby_buildkit_util_stack_stack_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*Frame); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
@@ -244,18 +248,18 @@ func file_stack_proto_init() {
|
||||
out := protoimpl.TypeBuilder{
|
||||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: file_stack_proto_rawDesc,
|
||||
RawDescriptor: file_github_com_moby_buildkit_util_stack_stack_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 2,
|
||||
NumExtensions: 0,
|
||||
NumServices: 0,
|
||||
},
|
||||
GoTypes: file_stack_proto_goTypes,
|
||||
DependencyIndexes: file_stack_proto_depIdxs,
|
||||
MessageInfos: file_stack_proto_msgTypes,
|
||||
GoTypes: file_github_com_moby_buildkit_util_stack_stack_proto_goTypes,
|
||||
DependencyIndexes: file_github_com_moby_buildkit_util_stack_stack_proto_depIdxs,
|
||||
MessageInfos: file_github_com_moby_buildkit_util_stack_stack_proto_msgTypes,
|
||||
}.Build()
|
||||
File_stack_proto = out.File
|
||||
file_stack_proto_rawDesc = nil
|
||||
file_stack_proto_goTypes = nil
|
||||
file_stack_proto_depIdxs = nil
|
||||
File_github_com_moby_buildkit_util_stack_stack_proto = out.File
|
||||
file_github_com_moby_buildkit_util_stack_stack_proto_rawDesc = nil
|
||||
file_github_com_moby_buildkit_util_stack_stack_proto_goTypes = nil
|
||||
file_github_com_moby_buildkit_util_stack_stack_proto_depIdxs = nil
|
||||
}
|
||||
|
||||
2
vendor/github.com/moby/buildkit/util/stack/stack.proto
generated
vendored
2
vendor/github.com/moby/buildkit/util/stack/stack.proto
generated
vendored
@@ -2,6 +2,8 @@ syntax = "proto3";
|
||||
|
||||
package stack;
|
||||
|
||||
option go_package = "github.com/moby/buildkit/util/stack";
|
||||
|
||||
message Stack {
|
||||
repeated Frame frames = 1;
|
||||
repeated string cmdline = 2;
|
||||
|
||||
660
vendor/github.com/moby/buildkit/util/stack/stack_vtproto.pb.go
generated
vendored
Normal file
660
vendor/github.com/moby/buildkit/util/stack/stack_vtproto.pb.go
generated
vendored
Normal file
@@ -0,0 +1,660 @@
|
||||
// Code generated by protoc-gen-go-vtproto. DO NOT EDIT.
|
||||
// protoc-gen-go-vtproto version: v0.6.1-0.20240319094008-0393e58bdf10
|
||||
// source: github.com/moby/buildkit/util/stack/stack.proto
|
||||
|
||||
package stack
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
protohelpers "github.com/planetscale/vtprotobuf/protohelpers"
|
||||
proto "google.golang.org/protobuf/proto"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
io "io"
|
||||
)
|
||||
|
||||
const (
|
||||
// Verify that this generated code is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||
)
|
||||
|
||||
func (m *Stack) CloneVT() *Stack {
|
||||
if m == nil {
|
||||
return (*Stack)(nil)
|
||||
}
|
||||
r := new(Stack)
|
||||
r.Pid = m.Pid
|
||||
r.Version = m.Version
|
||||
r.Revision = m.Revision
|
||||
if rhs := m.Frames; rhs != nil {
|
||||
tmpContainer := make([]*Frame, len(rhs))
|
||||
for k, v := range rhs {
|
||||
tmpContainer[k] = v.CloneVT()
|
||||
}
|
||||
r.Frames = tmpContainer
|
||||
}
|
||||
if rhs := m.Cmdline; rhs != nil {
|
||||
tmpContainer := make([]string, len(rhs))
|
||||
copy(tmpContainer, rhs)
|
||||
r.Cmdline = tmpContainer
|
||||
}
|
||||
if len(m.unknownFields) > 0 {
|
||||
r.unknownFields = make([]byte, len(m.unknownFields))
|
||||
copy(r.unknownFields, m.unknownFields)
|
||||
}
|
||||
return r
|
||||
}
|
||||
|
||||
func (m *Stack) CloneMessageVT() proto.Message {
|
||||
return m.CloneVT()
|
||||
}
|
||||
|
||||
func (m *Frame) CloneVT() *Frame {
|
||||
if m == nil {
|
||||
return (*Frame)(nil)
|
||||
}
|
||||
r := new(Frame)
|
||||
r.Name = m.Name
|
||||
r.File = m.File
|
||||
r.Line = m.Line
|
||||
if len(m.unknownFields) > 0 {
|
||||
r.unknownFields = make([]byte, len(m.unknownFields))
|
||||
copy(r.unknownFields, m.unknownFields)
|
||||
}
|
||||
return r
|
||||
}
|
||||
|
||||
func (m *Frame) CloneMessageVT() proto.Message {
|
||||
return m.CloneVT()
|
||||
}
|
||||
|
||||
func (this *Stack) EqualVT(that *Stack) bool {
|
||||
if this == that {
|
||||
return true
|
||||
} else if this == nil || that == nil {
|
||||
return false
|
||||
}
|
||||
if len(this.Frames) != len(that.Frames) {
|
||||
return false
|
||||
}
|
||||
for i, vx := range this.Frames {
|
||||
vy := that.Frames[i]
|
||||
if p, q := vx, vy; p != q {
|
||||
if p == nil {
|
||||
p = &Frame{}
|
||||
}
|
||||
if q == nil {
|
||||
q = &Frame{}
|
||||
}
|
||||
if !p.EqualVT(q) {
|
||||
return false
|
||||
}
|
||||
}
|
||||
}
|
||||
if len(this.Cmdline) != len(that.Cmdline) {
|
||||
return false
|
||||
}
|
||||
for i, vx := range this.Cmdline {
|
||||
vy := that.Cmdline[i]
|
||||
if vx != vy {
|
||||
return false
|
||||
}
|
||||
}
|
||||
if this.Pid != that.Pid {
|
||||
return false
|
||||
}
|
||||
if this.Version != that.Version {
|
||||
return false
|
||||
}
|
||||
if this.Revision != that.Revision {
|
||||
return false
|
||||
}
|
||||
return string(this.unknownFields) == string(that.unknownFields)
|
||||
}
|
||||
|
||||
func (this *Stack) EqualMessageVT(thatMsg proto.Message) bool {
|
||||
that, ok := thatMsg.(*Stack)
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
return this.EqualVT(that)
|
||||
}
|
||||
func (this *Frame) EqualVT(that *Frame) bool {
|
||||
if this == that {
|
||||
return true
|
||||
} else if this == nil || that == nil {
|
||||
return false
|
||||
}
|
||||
if this.Name != that.Name {
|
||||
return false
|
||||
}
|
||||
if this.File != that.File {
|
||||
return false
|
||||
}
|
||||
if this.Line != that.Line {
|
||||
return false
|
||||
}
|
||||
return string(this.unknownFields) == string(that.unknownFields)
|
||||
}
|
||||
|
||||
func (this *Frame) EqualMessageVT(thatMsg proto.Message) bool {
|
||||
that, ok := thatMsg.(*Frame)
|
||||
if !ok {
|
||||
return false
|
||||
}
|
||||
return this.EqualVT(that)
|
||||
}
|
||||
func (m *Stack) MarshalVT() (dAtA []byte, err error) {
|
||||
if m == nil {
|
||||
return nil, nil
|
||||
}
|
||||
size := m.SizeVT()
|
||||
dAtA = make([]byte, size)
|
||||
n, err := m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return dAtA[:n], nil
|
||||
}
|
||||
|
||||
func (m *Stack) MarshalToVT(dAtA []byte) (int, error) {
|
||||
size := m.SizeVT()
|
||||
return m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
}
|
||||
|
||||
func (m *Stack) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
|
||||
if m == nil {
|
||||
return 0, nil
|
||||
}
|
||||
i := len(dAtA)
|
||||
_ = i
|
||||
var l int
|
||||
_ = l
|
||||
if m.unknownFields != nil {
|
||||
i -= len(m.unknownFields)
|
||||
copy(dAtA[i:], m.unknownFields)
|
||||
}
|
||||
if len(m.Revision) > 0 {
|
||||
i -= len(m.Revision)
|
||||
copy(dAtA[i:], m.Revision)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.Revision)))
|
||||
i--
|
||||
dAtA[i] = 0x2a
|
||||
}
|
||||
if len(m.Version) > 0 {
|
||||
i -= len(m.Version)
|
||||
copy(dAtA[i:], m.Version)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.Version)))
|
||||
i--
|
||||
dAtA[i] = 0x22
|
||||
}
|
||||
if m.Pid != 0 {
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(m.Pid))
|
||||
i--
|
||||
dAtA[i] = 0x18
|
||||
}
|
||||
if len(m.Cmdline) > 0 {
|
||||
for iNdEx := len(m.Cmdline) - 1; iNdEx >= 0; iNdEx-- {
|
||||
i -= len(m.Cmdline[iNdEx])
|
||||
copy(dAtA[i:], m.Cmdline[iNdEx])
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.Cmdline[iNdEx])))
|
||||
i--
|
||||
dAtA[i] = 0x12
|
||||
}
|
||||
}
|
||||
if len(m.Frames) > 0 {
|
||||
for iNdEx := len(m.Frames) - 1; iNdEx >= 0; iNdEx-- {
|
||||
size, err := m.Frames[iNdEx].MarshalToSizedBufferVT(dAtA[:i])
|
||||
if err != nil {
|
||||
return 0, err
|
||||
}
|
||||
i -= size
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(size))
|
||||
i--
|
||||
dAtA[i] = 0xa
|
||||
}
|
||||
}
|
||||
return len(dAtA) - i, nil
|
||||
}
|
||||
|
||||
func (m *Frame) MarshalVT() (dAtA []byte, err error) {
|
||||
if m == nil {
|
||||
return nil, nil
|
||||
}
|
||||
size := m.SizeVT()
|
||||
dAtA = make([]byte, size)
|
||||
n, err := m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return dAtA[:n], nil
|
||||
}
|
||||
|
||||
func (m *Frame) MarshalToVT(dAtA []byte) (int, error) {
|
||||
size := m.SizeVT()
|
||||
return m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
}
|
||||
|
||||
func (m *Frame) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
|
||||
if m == nil {
|
||||
return 0, nil
|
||||
}
|
||||
i := len(dAtA)
|
||||
_ = i
|
||||
var l int
|
||||
_ = l
|
||||
if m.unknownFields != nil {
|
||||
i -= len(m.unknownFields)
|
||||
copy(dAtA[i:], m.unknownFields)
|
||||
}
|
||||
if m.Line != 0 {
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(m.Line))
|
||||
i--
|
||||
dAtA[i] = 0x18
|
||||
}
|
||||
if len(m.File) > 0 {
|
||||
i -= len(m.File)
|
||||
copy(dAtA[i:], m.File)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.File)))
|
||||
i--
|
||||
dAtA[i] = 0x12
|
||||
}
|
||||
if len(m.Name) > 0 {
|
||||
i -= len(m.Name)
|
||||
copy(dAtA[i:], m.Name)
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(len(m.Name)))
|
||||
i--
|
||||
dAtA[i] = 0xa
|
||||
}
|
||||
return len(dAtA) - i, nil
|
||||
}
|
||||
|
||||
func (m *Stack) SizeVT() (n int) {
|
||||
if m == nil {
|
||||
return 0
|
||||
}
|
||||
var l int
|
||||
_ = l
|
||||
if len(m.Frames) > 0 {
|
||||
for _, e := range m.Frames {
|
||||
l = e.SizeVT()
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
}
|
||||
if len(m.Cmdline) > 0 {
|
||||
for _, s := range m.Cmdline {
|
||||
l = len(s)
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
}
|
||||
if m.Pid != 0 {
|
||||
n += 1 + protohelpers.SizeOfVarint(uint64(m.Pid))
|
||||
}
|
||||
l = len(m.Version)
|
||||
if l > 0 {
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
l = len(m.Revision)
|
||||
if l > 0 {
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
n += len(m.unknownFields)
|
||||
return n
|
||||
}
|
||||
|
||||
func (m *Frame) SizeVT() (n int) {
|
||||
if m == nil {
|
||||
return 0
|
||||
}
|
||||
var l int
|
||||
_ = l
|
||||
l = len(m.Name)
|
||||
if l > 0 {
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
l = len(m.File)
|
||||
if l > 0 {
|
||||
n += 1 + l + protohelpers.SizeOfVarint(uint64(l))
|
||||
}
|
||||
if m.Line != 0 {
|
||||
n += 1 + protohelpers.SizeOfVarint(uint64(m.Line))
|
||||
}
|
||||
n += len(m.unknownFields)
|
||||
return n
|
||||
}
|
||||
|
||||
func (m *Stack) UnmarshalVT(dAtA []byte) error {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
for iNdEx < l {
|
||||
preIndex := iNdEx
|
||||
var wire uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
wire |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
fieldNum := int32(wire >> 3)
|
||||
wireType := int(wire & 0x7)
|
||||
if wireType == 4 {
|
||||
return fmt.Errorf("proto: Stack: wiretype end group for non-group")
|
||||
}
|
||||
if fieldNum <= 0 {
|
||||
return fmt.Errorf("proto: Stack: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
}
|
||||
switch fieldNum {
|
||||
case 1:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Frames", wireType)
|
||||
}
|
||||
var msglen int
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
msglen |= int(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
if msglen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + msglen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.Frames = append(m.Frames, &Frame{})
|
||||
if err := m.Frames[len(m.Frames)-1].UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {
|
||||
return err
|
||||
}
|
||||
iNdEx = postIndex
|
||||
case 2:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Cmdline", wireType)
|
||||
}
|
||||
var stringLen uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
stringLen |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
intStringLen := int(stringLen)
|
||||
if intStringLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + intStringLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.Cmdline = append(m.Cmdline, string(dAtA[iNdEx:postIndex]))
|
||||
iNdEx = postIndex
|
||||
case 3:
|
||||
if wireType != 0 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Pid", wireType)
|
||||
}
|
||||
m.Pid = 0
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
m.Pid |= int32(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
case 4:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Version", wireType)
|
||||
}
|
||||
var stringLen uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
stringLen |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
intStringLen := int(stringLen)
|
||||
if intStringLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + intStringLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.Version = string(dAtA[iNdEx:postIndex])
|
||||
iNdEx = postIndex
|
||||
case 5:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Revision", wireType)
|
||||
}
|
||||
var stringLen uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
stringLen |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
intStringLen := int(stringLen)
|
||||
if intStringLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + intStringLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.Revision = string(dAtA[iNdEx:postIndex])
|
||||
iNdEx = postIndex
|
||||
default:
|
||||
iNdEx = preIndex
|
||||
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if (iNdEx + skippy) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
|
||||
iNdEx += skippy
|
||||
}
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
return nil
|
||||
}
|
||||
func (m *Frame) UnmarshalVT(dAtA []byte) error {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
for iNdEx < l {
|
||||
preIndex := iNdEx
|
||||
var wire uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
wire |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
fieldNum := int32(wire >> 3)
|
||||
wireType := int(wire & 0x7)
|
||||
if wireType == 4 {
|
||||
return fmt.Errorf("proto: Frame: wiretype end group for non-group")
|
||||
}
|
||||
if fieldNum <= 0 {
|
||||
return fmt.Errorf("proto: Frame: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
}
|
||||
switch fieldNum {
|
||||
case 1:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType)
|
||||
}
|
||||
var stringLen uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
stringLen |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
intStringLen := int(stringLen)
|
||||
if intStringLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + intStringLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.Name = string(dAtA[iNdEx:postIndex])
|
||||
iNdEx = postIndex
|
||||
case 2:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field File", wireType)
|
||||
}
|
||||
var stringLen uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
stringLen |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
intStringLen := int(stringLen)
|
||||
if intStringLen < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
postIndex := iNdEx + intStringLen
|
||||
if postIndex < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.File = string(dAtA[iNdEx:postIndex])
|
||||
iNdEx = postIndex
|
||||
case 3:
|
||||
if wireType != 0 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Line", wireType)
|
||||
}
|
||||
m.Line = 0
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
m.Line |= int32(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
default:
|
||||
iNdEx = preIndex
|
||||
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if (iNdEx + skippy) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)
|
||||
iNdEx += skippy
|
||||
}
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
return nil
|
||||
}
|
||||
29
vendor/github.com/planetscale/vtprotobuf/LICENSE
generated
vendored
Normal file
29
vendor/github.com/planetscale/vtprotobuf/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
Copyright (c) 2021, PlanetScale Inc. All rights reserved.
|
||||
Copyright (c) 2013, The GoGo Authors. All rights reserved.
|
||||
Copyright (c) 2018 The Go Authors. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
* Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the following disclaimer
|
||||
in the documentation and/or other materials provided with the
|
||||
distribution.
|
||||
* Neither the name of Google Inc. nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
41
vendor/github.com/planetscale/vtprotobuf/cmd/protoc-gen-go-vtproto/main.go
generated
vendored
Normal file
41
vendor/github.com/planetscale/vtprotobuf/cmd/protoc-gen-go-vtproto/main.go
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"flag"
|
||||
"strings"
|
||||
|
||||
_ "github.com/planetscale/vtprotobuf/features/clone"
|
||||
_ "github.com/planetscale/vtprotobuf/features/equal"
|
||||
_ "github.com/planetscale/vtprotobuf/features/grpc"
|
||||
_ "github.com/planetscale/vtprotobuf/features/marshal"
|
||||
_ "github.com/planetscale/vtprotobuf/features/pool"
|
||||
_ "github.com/planetscale/vtprotobuf/features/size"
|
||||
_ "github.com/planetscale/vtprotobuf/features/unmarshal"
|
||||
"github.com/planetscale/vtprotobuf/generator"
|
||||
|
||||
"google.golang.org/protobuf/compiler/protogen"
|
||||
)
|
||||
|
||||
func main() {
|
||||
var cfg generator.Config
|
||||
var features string
|
||||
var f flag.FlagSet
|
||||
|
||||
f.BoolVar(&cfg.AllowEmpty, "allow-empty", false, "allow generation of empty files")
|
||||
cfg.Poolable = generator.NewObjectSet()
|
||||
cfg.PoolableExclude = generator.NewObjectSet()
|
||||
f.Var(&cfg.Poolable, "pool", "use memory pooling for this object")
|
||||
f.Var(&cfg.PoolableExclude, "pool-exclude", "do not use memory pooling for this object")
|
||||
f.BoolVar(&cfg.Wrap, "wrap", false, "generate wrapper types")
|
||||
f.StringVar(&features, "features", "all", "list of features to generate (separated by '+')")
|
||||
f.StringVar(&cfg.BuildTag, "buildTag", "", "the go:build tag to set on generated files")
|
||||
|
||||
protogen.Options{ParamFunc: f.Set}.Run(func(plugin *protogen.Plugin) error {
|
||||
gen, err := generator.NewGenerator(plugin, strings.Split(features, "+"), &cfg)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
gen.Generate()
|
||||
return nil
|
||||
})
|
||||
}
|
||||
338
vendor/github.com/planetscale/vtprotobuf/features/clone/clone.go
generated
vendored
Normal file
338
vendor/github.com/planetscale/vtprotobuf/features/clone/clone.go
generated
vendored
Normal file
@@ -0,0 +1,338 @@
|
||||
// Copyright (c) 2021 PlanetScale Inc. All rights reserved.
|
||||
// Copyright (c) 2013, The GoGo Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package clone
|
||||
|
||||
import (
|
||||
"google.golang.org/protobuf/compiler/protogen"
|
||||
"google.golang.org/protobuf/reflect/protoreflect"
|
||||
|
||||
"github.com/planetscale/vtprotobuf/generator"
|
||||
)
|
||||
|
||||
const (
|
||||
cloneName = "CloneVT"
|
||||
cloneMessageName = "CloneMessageVT"
|
||||
)
|
||||
|
||||
var (
|
||||
protoPkg = protogen.GoImportPath("google.golang.org/protobuf/proto")
|
||||
)
|
||||
|
||||
func init() {
|
||||
generator.RegisterFeature("clone", func(gen *generator.GeneratedFile) generator.FeatureGenerator {
|
||||
return &clone{GeneratedFile: gen}
|
||||
})
|
||||
}
|
||||
|
||||
type clone struct {
|
||||
*generator.GeneratedFile
|
||||
once bool
|
||||
}
|
||||
|
||||
var _ generator.FeatureGenerator = (*clone)(nil)
|
||||
|
||||
func (p *clone) Name() string {
|
||||
return "clone"
|
||||
}
|
||||
|
||||
func (p *clone) GenerateFile(file *protogen.File) bool {
|
||||
proto3 := file.Desc.Syntax() == protoreflect.Proto3
|
||||
|
||||
for _, message := range file.Messages {
|
||||
p.processMessage(proto3, message)
|
||||
}
|
||||
|
||||
return p.once
|
||||
}
|
||||
|
||||
// cloneOneofField generates the statements for cloning a oneof field
|
||||
func (p *clone) cloneOneofField(lhsBase, rhsBase string, oneof *protogen.Oneof) {
|
||||
fieldname := oneof.GoName
|
||||
ccInterfaceName := "is" + oneof.GoIdent.GoName
|
||||
lhs := lhsBase + "." + fieldname
|
||||
rhs := rhsBase + "." + fieldname
|
||||
p.P(`if `, rhs, ` != nil {`)
|
||||
if p.IsWellKnownType(oneof.Parent) {
|
||||
p.P(`switch c := `, rhs, `.(type) {`)
|
||||
for _, f := range oneof.Fields {
|
||||
p.P(`case *`, f.GoIdent, `:`)
|
||||
p.P(lhs, `= (*`, f.GoIdent, `)((*`, p.WellKnownFieldMap(f), `)(c).`, cloneName, `())`)
|
||||
}
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(lhs, ` = `, rhs, `.(interface{ `, cloneName, `() `, ccInterfaceName, ` }).`, cloneName, `()`)
|
||||
}
|
||||
p.P(`}`)
|
||||
}
|
||||
|
||||
// cloneFieldSingular generates the code for cloning a singular, non-oneof field.
|
||||
func (p *clone) cloneFieldSingular(lhs, rhs string, kind protoreflect.Kind, message *protogen.Message) {
|
||||
switch {
|
||||
case kind == protoreflect.MessageKind, kind == protoreflect.GroupKind:
|
||||
switch {
|
||||
case p.IsWellKnownType(message):
|
||||
p.P(lhs, ` = (*`, message.GoIdent, `)((*`, p.WellKnownTypeMap(message), `)(`, rhs, `).`, cloneName, `())`)
|
||||
case p.IsLocalMessage(message):
|
||||
p.P(lhs, ` = `, rhs, `.`, cloneName, `()`)
|
||||
default:
|
||||
// rhs is a concrete type, we need to first convert it to an interface in order to use an interface
|
||||
// type assertion.
|
||||
p.P(`if vtpb, ok := interface{}(`, rhs, `).(interface{ `, cloneName, `() *`, message.GoIdent, ` }); ok {`)
|
||||
p.P(lhs, ` = vtpb.`, cloneName, `()`)
|
||||
p.P(`} else {`)
|
||||
p.P(lhs, ` = `, protoPkg.Ident("Clone"), `(`, rhs, `).(*`, message.GoIdent, `)`)
|
||||
p.P(`}`)
|
||||
}
|
||||
case kind == protoreflect.BytesKind:
|
||||
p.P(`tmpBytes := make([]byte, len(`, rhs, `))`)
|
||||
p.P(`copy(tmpBytes, `, rhs, `)`)
|
||||
p.P(lhs, ` = tmpBytes`)
|
||||
case isScalar(kind):
|
||||
p.P(lhs, ` = `, rhs)
|
||||
default:
|
||||
panic("unexpected")
|
||||
}
|
||||
}
|
||||
|
||||
// cloneField generates the code for cloning a field in a protobuf.
|
||||
func (p *clone) cloneField(lhsBase, rhsBase string, allFieldsNullable bool, field *protogen.Field) {
|
||||
// At this point, if we encounter a non-synthetic oneof, we assume it to be the representative
|
||||
// field for that oneof.
|
||||
if field.Oneof != nil && !field.Oneof.Desc.IsSynthetic() {
|
||||
p.cloneOneofField(lhsBase, rhsBase, field.Oneof)
|
||||
return
|
||||
}
|
||||
|
||||
if !isReference(allFieldsNullable, field) {
|
||||
panic("method should not be invoked for non-reference fields")
|
||||
}
|
||||
|
||||
fieldname := field.GoName
|
||||
lhs := lhsBase + "." + fieldname
|
||||
rhs := rhsBase + "." + fieldname
|
||||
|
||||
// At this point, we are only looking at reference types (pointers, maps, slices, interfaces), which can all
|
||||
// be nil.
|
||||
p.P(`if rhs := `, rhs, `; rhs != nil {`)
|
||||
rhs = "rhs"
|
||||
|
||||
fieldKind := field.Desc.Kind()
|
||||
msg := field.Message // possibly nil
|
||||
|
||||
if field.Desc.Cardinality() == protoreflect.Repeated { // maps and slices
|
||||
goType, _ := p.FieldGoType(field)
|
||||
p.P(`tmpContainer := make(`, goType, `, len(`, rhs, `))`)
|
||||
if isScalar(fieldKind) && field.Desc.IsList() {
|
||||
// Generated code optimization: instead of iterating over all (key/index, value) pairs,
|
||||
// do a single copy(dst, src) invocation for slices whose elements aren't reference types.
|
||||
p.P(`copy(tmpContainer, `, rhs, `)`)
|
||||
} else {
|
||||
if field.Desc.IsMap() {
|
||||
// For maps, the type of the value field determines what code is generated for cloning
|
||||
// an entry.
|
||||
valueField := field.Message.Fields[1]
|
||||
fieldKind = valueField.Desc.Kind()
|
||||
msg = valueField.Message
|
||||
}
|
||||
p.P(`for k, v := range `, rhs, ` {`)
|
||||
p.cloneFieldSingular("tmpContainer[k]", "v", fieldKind, msg)
|
||||
p.P(`}`)
|
||||
}
|
||||
p.P(lhs, ` = tmpContainer`)
|
||||
} else if isScalar(fieldKind) {
|
||||
p.P(`tmpVal := *`, rhs)
|
||||
p.P(lhs, ` = &tmpVal`)
|
||||
} else {
|
||||
p.cloneFieldSingular(lhs, rhs, fieldKind, msg)
|
||||
}
|
||||
p.P(`}`)
|
||||
}
|
||||
|
||||
func (p *clone) generateCloneMethodsForMessage(proto3 bool, message *protogen.Message) {
|
||||
ccTypeName := message.GoIdent.GoName
|
||||
p.P(`func (m *`, ccTypeName, `) `, cloneName, `() *`, ccTypeName, ` {`)
|
||||
p.body(!proto3, ccTypeName, message, true)
|
||||
p.P(`}`)
|
||||
p.P()
|
||||
|
||||
if !p.Wrapper() {
|
||||
p.P(`func (m *`, ccTypeName, `) `, cloneMessageName, `() `, protoPkg.Ident("Message"), ` {`)
|
||||
p.P(`return m.`, cloneName, `()`)
|
||||
p.P(`}`)
|
||||
p.P()
|
||||
}
|
||||
}
|
||||
|
||||
// body generates the code for the actual cloning logic of a structure containing the given fields.
|
||||
// In practice, those can be the fields of a message.
|
||||
// The object to be cloned is assumed to be called "m".
|
||||
func (p *clone) body(allFieldsNullable bool, ccTypeName string, message *protogen.Message, cloneUnknownFields bool) {
|
||||
// The method body for a message or a oneof wrapper always starts with a nil check.
|
||||
p.P(`if m == nil {`)
|
||||
// We use an explicitly typed nil to avoid returning the nil interface in the oneof wrapper
|
||||
// case.
|
||||
p.P(`return (*`, ccTypeName, `)(nil)`)
|
||||
p.P(`}`)
|
||||
|
||||
fields := message.Fields
|
||||
// Make a first pass over the fields, in which we initialize all non-reference fields via direct
|
||||
// struct literal initialization, and extract all other (reference) fields for a second pass.
|
||||
// Do not require qualified name because CloneVT generates in same file with definition.
|
||||
p.Alloc("r", message, false)
|
||||
var refFields []*protogen.Field
|
||||
oneofFields := make(map[string]struct{}, len(fields))
|
||||
|
||||
for _, field := range fields {
|
||||
if field.Oneof != nil && !field.Oneof.Desc.IsSynthetic() {
|
||||
// Use the first field in a oneof as the representative for that oneof, disregard
|
||||
// the other fields in that oneof.
|
||||
if _, ok := oneofFields[field.Oneof.GoName]; !ok {
|
||||
refFields = append(refFields, field)
|
||||
oneofFields[field.Oneof.GoName] = struct{}{}
|
||||
}
|
||||
continue
|
||||
}
|
||||
|
||||
if !isReference(allFieldsNullable, field) {
|
||||
p.P(`r.`, field.GoName, ` = m.`, field.GoName)
|
||||
continue
|
||||
}
|
||||
// Shortcut: for types where we know that an optimized clone method exists, we can call it directly as it is
|
||||
// nil-safe.
|
||||
if field.Desc.Cardinality() != protoreflect.Repeated {
|
||||
switch {
|
||||
case p.IsWellKnownType(field.Message):
|
||||
p.P(`r.`, field.GoName, ` = (*`, field.Message.GoIdent, `)((*`, p.WellKnownTypeMap(field.Message), `)(m.`, field.GoName, `).`, cloneName, `())`)
|
||||
continue
|
||||
case p.IsLocalMessage(field.Message):
|
||||
p.P(`r.`, field.GoName, ` = m.`, field.GoName, `.`, cloneName, `()`)
|
||||
continue
|
||||
}
|
||||
}
|
||||
refFields = append(refFields, field)
|
||||
}
|
||||
|
||||
// Generate explicit assignment statements for all reference fields.
|
||||
for _, field := range refFields {
|
||||
p.cloneField("r", "m", allFieldsNullable, field)
|
||||
}
|
||||
|
||||
if cloneUnknownFields && !p.Wrapper() {
|
||||
// Clone unknown fields, if any
|
||||
p.P(`if len(m.unknownFields) > 0 {`)
|
||||
p.P(`r.unknownFields = make([]byte, len(m.unknownFields))`)
|
||||
p.P(`copy(r.unknownFields, m.unknownFields)`)
|
||||
p.P(`}`)
|
||||
}
|
||||
|
||||
p.P(`return r`)
|
||||
}
|
||||
|
||||
func (p *clone) bodyForOneOf(ccTypeName string, field *protogen.Field) {
|
||||
// The method body for a message or a oneof wrapper always starts with a nil check.
|
||||
p.P(`if m == nil {`)
|
||||
// We use an explicitly typed nil to avoid returning the nil interface in the oneof wrapper
|
||||
// case.
|
||||
p.P(`return (*`, ccTypeName, `)(nil)`)
|
||||
p.P(`}`)
|
||||
|
||||
p.P("r", " := new(", ccTypeName, `)`)
|
||||
|
||||
if !isReference(false, field) {
|
||||
p.P(`r.`, field.GoName, ` = m.`, field.GoName)
|
||||
p.P(`return r`)
|
||||
return
|
||||
}
|
||||
// Shortcut: for types where we know that an optimized clone method exists, we can call it directly as it is
|
||||
// nil-safe.
|
||||
if field.Desc.Cardinality() != protoreflect.Repeated && field.Message != nil {
|
||||
switch {
|
||||
case p.IsWellKnownType(field.Message):
|
||||
p.P(`r.`, field.GoName, ` = (*`, field.Message.GoIdent, `)((*`, p.WellKnownTypeMap(field.Message), `)(m.`, field.GoName, `).`, cloneName, `())`)
|
||||
p.P(`return r`)
|
||||
return
|
||||
case p.IsLocalMessage(field.Message):
|
||||
p.P(`r.`, field.GoName, ` = m.`, field.GoName, `.`, cloneName, `()`)
|
||||
p.P(`return r`)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
// Generate explicit assignment statements for reference field.
|
||||
p.cloneField("r", "m", false, field)
|
||||
|
||||
p.P(`return r`)
|
||||
}
|
||||
|
||||
// generateCloneMethodsForOneof generates the clone method for the oneof wrapper type of a
|
||||
// field in a oneof.
|
||||
func (p *clone) generateCloneMethodsForOneof(message *protogen.Message, field *protogen.Field) {
|
||||
ccTypeName := field.GoIdent.GoName
|
||||
ccInterfaceName := "is" + field.Oneof.GoIdent.GoName
|
||||
if p.IsWellKnownType(message) {
|
||||
p.P(`func (m *`, ccTypeName, `) `, cloneName, `() *`, ccTypeName, ` {`)
|
||||
} else {
|
||||
p.P(`func (m *`, ccTypeName, `) `, cloneName, `() `, ccInterfaceName, ` {`)
|
||||
}
|
||||
|
||||
// Create a "fake" field for the single oneof member, pretending it is not a oneof field.
|
||||
fieldInOneof := *field
|
||||
fieldInOneof.Oneof = nil
|
||||
// If we have a scalar field in a oneof, that field is never nullable, even when using proto2
|
||||
p.bodyForOneOf(ccTypeName, &fieldInOneof)
|
||||
p.P(`}`)
|
||||
p.P()
|
||||
}
|
||||
|
||||
func (p *clone) processMessageOneofs(message *protogen.Message) {
|
||||
for _, field := range message.Fields {
|
||||
if field.Oneof == nil || field.Oneof.Desc.IsSynthetic() {
|
||||
continue
|
||||
}
|
||||
p.generateCloneMethodsForOneof(message, field)
|
||||
}
|
||||
}
|
||||
|
||||
func (p *clone) processMessage(proto3 bool, message *protogen.Message) {
|
||||
for _, nested := range message.Messages {
|
||||
p.processMessage(proto3, nested)
|
||||
}
|
||||
|
||||
if message.Desc.IsMapEntry() {
|
||||
return
|
||||
}
|
||||
|
||||
p.once = true
|
||||
|
||||
p.generateCloneMethodsForMessage(proto3, message)
|
||||
p.processMessageOneofs(message)
|
||||
}
|
||||
|
||||
// isReference checks whether the Go equivalent of the given field is of reference type, i.e., can be nil.
|
||||
func isReference(allFieldsNullable bool, field *protogen.Field) bool {
|
||||
if allFieldsNullable || field.Oneof != nil || field.Message != nil || field.Desc.Cardinality() == protoreflect.Repeated || field.Desc.Kind() == protoreflect.BytesKind {
|
||||
return true
|
||||
}
|
||||
if !isScalar(field.Desc.Kind()) {
|
||||
panic("unexpected non-reference, non-scalar field")
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func isScalar(kind protoreflect.Kind) bool {
|
||||
switch kind {
|
||||
case
|
||||
protoreflect.BoolKind,
|
||||
protoreflect.StringKind,
|
||||
protoreflect.DoubleKind, protoreflect.Fixed64Kind, protoreflect.Sfixed64Kind,
|
||||
protoreflect.FloatKind, protoreflect.Fixed32Kind, protoreflect.Sfixed32Kind,
|
||||
protoreflect.Int64Kind, protoreflect.Uint64Kind, protoreflect.Sint64Kind,
|
||||
protoreflect.Int32Kind, protoreflect.Uint32Kind, protoreflect.Sint32Kind,
|
||||
protoreflect.EnumKind:
|
||||
return true
|
||||
}
|
||||
return false
|
||||
}
|
||||
308
vendor/github.com/planetscale/vtprotobuf/features/equal/equal.go
generated
vendored
Normal file
308
vendor/github.com/planetscale/vtprotobuf/features/equal/equal.go
generated
vendored
Normal file
@@ -0,0 +1,308 @@
|
||||
// Copyright (c) 2022 PlanetScale Inc. All rights reserved.
|
||||
|
||||
package equal
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"sort"
|
||||
|
||||
"google.golang.org/protobuf/compiler/protogen"
|
||||
"google.golang.org/protobuf/reflect/protoreflect"
|
||||
|
||||
"github.com/planetscale/vtprotobuf/generator"
|
||||
)
|
||||
|
||||
func init() {
|
||||
generator.RegisterFeature("equal", func(gen *generator.GeneratedFile) generator.FeatureGenerator {
|
||||
return &equal{GeneratedFile: gen}
|
||||
})
|
||||
}
|
||||
|
||||
var (
|
||||
protoPkg = protogen.GoImportPath("google.golang.org/protobuf/proto")
|
||||
)
|
||||
|
||||
type equal struct {
|
||||
*generator.GeneratedFile
|
||||
once bool
|
||||
}
|
||||
|
||||
var _ generator.FeatureGenerator = (*equal)(nil)
|
||||
|
||||
func (p *equal) Name() string { return "equal" }
|
||||
|
||||
func (p *equal) GenerateFile(file *protogen.File) bool {
|
||||
proto3 := file.Desc.Syntax() == protoreflect.Proto3
|
||||
for _, message := range file.Messages {
|
||||
p.message(proto3, message)
|
||||
}
|
||||
return p.once
|
||||
}
|
||||
|
||||
const equalName = "EqualVT"
|
||||
const equalMessageName = "EqualMessageVT"
|
||||
|
||||
func (p *equal) message(proto3 bool, message *protogen.Message) {
|
||||
for _, nested := range message.Messages {
|
||||
p.message(proto3, nested)
|
||||
}
|
||||
|
||||
if message.Desc.IsMapEntry() {
|
||||
return
|
||||
}
|
||||
|
||||
p.once = true
|
||||
|
||||
ccTypeName := message.GoIdent.GoName
|
||||
p.P(`func (this *`, ccTypeName, `) `, equalName, `(that *`, ccTypeName, `) bool {`)
|
||||
|
||||
p.P(`if this == that {`)
|
||||
p.P(` return true`)
|
||||
p.P(`} else if this == nil || that == nil {`)
|
||||
p.P(` return false`)
|
||||
p.P(`}`)
|
||||
|
||||
sort.Slice(message.Fields, func(i, j int) bool {
|
||||
return message.Fields[i].Desc.Number() < message.Fields[j].Desc.Number()
|
||||
})
|
||||
|
||||
{
|
||||
oneofs := make(map[string]struct{}, len(message.Fields))
|
||||
for _, field := range message.Fields {
|
||||
oneof := field.Oneof != nil && !field.Oneof.Desc.IsSynthetic()
|
||||
if !oneof {
|
||||
continue
|
||||
}
|
||||
|
||||
fieldname := field.Oneof.GoName
|
||||
if _, ok := oneofs[fieldname]; ok {
|
||||
continue
|
||||
}
|
||||
oneofs[fieldname] = struct{}{}
|
||||
|
||||
p.P(`if this.`, fieldname, ` == nil && that.`, fieldname, ` != nil {`)
|
||||
p.P(` return false`)
|
||||
p.P(`} else if this.`, fieldname, ` != nil {`)
|
||||
p.P(` if that.`, fieldname, ` == nil {`)
|
||||
p.P(` return false`)
|
||||
p.P(` }`)
|
||||
ccInterfaceName := fmt.Sprintf("is%s", field.Oneof.GoIdent.GoName)
|
||||
if p.IsWellKnownType(message) {
|
||||
p.P(`switch c := this.`, fieldname, `.(type) {`)
|
||||
for _, f := range field.Oneof.Fields {
|
||||
p.P(`case *`, f.GoIdent, `:`)
|
||||
p.P(`if !(*`, p.WellKnownFieldMap(f), `)(c).`, equalName, `(that.`, fieldname, `) {`)
|
||||
p.P(`return false`)
|
||||
p.P(`}`)
|
||||
}
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(`if !this.`, fieldname, `.(interface{ `, equalName, `(`, ccInterfaceName, `) bool }).`, equalName, `(that.`, fieldname, `) {`)
|
||||
p.P(`return false`)
|
||||
p.P(`}`)
|
||||
}
|
||||
p.P(`}`)
|
||||
}
|
||||
}
|
||||
|
||||
for _, field := range message.Fields {
|
||||
oneof := field.Oneof != nil && !field.Oneof.Desc.IsSynthetic()
|
||||
nullable := field.Message != nil || (field.Oneof != nil && field.Oneof.Desc.IsSynthetic()) || (!proto3 && !oneof)
|
||||
if !oneof {
|
||||
p.field(field, nullable)
|
||||
}
|
||||
}
|
||||
|
||||
if p.Wrapper() {
|
||||
p.P(`return true`)
|
||||
} else {
|
||||
p.P(`return string(this.unknownFields) == string(that.unknownFields)`)
|
||||
}
|
||||
p.P(`}`)
|
||||
p.P()
|
||||
|
||||
if !p.Wrapper() {
|
||||
p.P(`func (this *`, ccTypeName, `) `, equalMessageName, `(thatMsg `, protoPkg.Ident("Message"), `) bool {`)
|
||||
p.P(`that, ok := thatMsg.(*`, ccTypeName, `)`)
|
||||
p.P(`if !ok {`)
|
||||
p.P(`return false`)
|
||||
p.P(`}`)
|
||||
p.P(`return this.`, equalName, `(that)`)
|
||||
p.P(`}`)
|
||||
}
|
||||
|
||||
for _, field := range message.Fields {
|
||||
oneof := field.Oneof != nil && !field.Oneof.Desc.IsSynthetic()
|
||||
if !oneof {
|
||||
continue
|
||||
}
|
||||
p.oneof(field)
|
||||
}
|
||||
}
|
||||
|
||||
func (p *equal) oneof(field *protogen.Field) {
|
||||
ccTypeName := field.GoIdent.GoName
|
||||
ccInterfaceName := fmt.Sprintf("is%s", field.Oneof.GoIdent.GoName)
|
||||
fieldname := field.GoName
|
||||
|
||||
if p.IsWellKnownType(field.Parent) {
|
||||
p.P(`func (this *`, ccTypeName, `) `, equalName, `(thatIface any) bool {`)
|
||||
} else {
|
||||
p.P(`func (this *`, ccTypeName, `) `, equalName, `(thatIface `, ccInterfaceName, `) bool {`)
|
||||
}
|
||||
p.P(`that, ok := thatIface.(*`, ccTypeName, `)`)
|
||||
p.P(`if !ok {`)
|
||||
if p.IsWellKnownType(field.Parent) {
|
||||
p.P(`if ot, ok := thatIface.(*`, field.GoIdent, `); ok {`)
|
||||
p.P(`that = (*`, ccTypeName, `)(ot)`)
|
||||
p.P("} else {")
|
||||
p.P("return false")
|
||||
p.P("}")
|
||||
} else {
|
||||
p.P(`return false`)
|
||||
}
|
||||
p.P(`}`)
|
||||
p.P(`if this == that {`)
|
||||
p.P(`return true`)
|
||||
p.P(`}`)
|
||||
p.P(`if this == nil && that != nil || this != nil && that == nil {`)
|
||||
p.P(`return false`)
|
||||
p.P(`}`)
|
||||
|
||||
lhs := fmt.Sprintf("this.%s", fieldname)
|
||||
rhs := fmt.Sprintf("that.%s", fieldname)
|
||||
kind := field.Desc.Kind()
|
||||
switch {
|
||||
case isScalar(kind):
|
||||
p.compareScalar(lhs, rhs, false)
|
||||
case kind == protoreflect.BytesKind:
|
||||
p.compareBytes(lhs, rhs, false)
|
||||
case kind == protoreflect.MessageKind || kind == protoreflect.GroupKind:
|
||||
p.compareCall(lhs, rhs, field.Message, false)
|
||||
default:
|
||||
panic("not implemented")
|
||||
}
|
||||
p.P(`return true`)
|
||||
p.P(`}`)
|
||||
p.P()
|
||||
}
|
||||
|
||||
func (p *equal) field(field *protogen.Field, nullable bool) {
|
||||
fieldname := field.GoName
|
||||
|
||||
repeated := field.Desc.Cardinality() == protoreflect.Repeated
|
||||
lhs := fmt.Sprintf("this.%s", fieldname)
|
||||
rhs := fmt.Sprintf("that.%s", fieldname)
|
||||
|
||||
if repeated {
|
||||
p.P(`if len(`, lhs, `) != len(`, rhs, `) {`)
|
||||
p.P(` return false`)
|
||||
p.P(`}`)
|
||||
p.P(`for i, vx := range `, lhs, ` {`)
|
||||
if field.Desc.IsMap() {
|
||||
p.P(`vy, ok := `, rhs, `[i]`)
|
||||
p.P(`if !ok {`)
|
||||
p.P(`return false`)
|
||||
p.P(`}`)
|
||||
|
||||
field = field.Message.Fields[1]
|
||||
} else {
|
||||
p.P(`vy := `, rhs, `[i]`)
|
||||
}
|
||||
lhs, rhs = "vx", "vy"
|
||||
nullable = false
|
||||
}
|
||||
|
||||
kind := field.Desc.Kind()
|
||||
switch {
|
||||
case isScalar(kind):
|
||||
p.compareScalar(lhs, rhs, nullable)
|
||||
|
||||
case kind == protoreflect.BytesKind:
|
||||
p.compareBytes(lhs, rhs, nullable)
|
||||
|
||||
case kind == protoreflect.MessageKind || kind == protoreflect.GroupKind:
|
||||
p.compareCall(lhs, rhs, field.Message, nullable)
|
||||
|
||||
default:
|
||||
panic("not implemented")
|
||||
}
|
||||
|
||||
if repeated {
|
||||
// close for loop
|
||||
p.P(`}`)
|
||||
}
|
||||
}
|
||||
|
||||
func (p *equal) compareScalar(lhs, rhs string, nullable bool) {
|
||||
if nullable {
|
||||
p.P(`if p, q := `, lhs, `, `, rhs, `; (p == nil && q != nil) || (p != nil && (q == nil || *p != *q)) {`)
|
||||
} else {
|
||||
p.P(`if `, lhs, ` != `, rhs, ` {`)
|
||||
}
|
||||
p.P(` return false`)
|
||||
p.P(`}`)
|
||||
}
|
||||
|
||||
func (p *equal) compareBytes(lhs, rhs string, nullable bool) {
|
||||
if nullable {
|
||||
p.P(`if p, q := `, lhs, `, `, rhs, `; (p == nil && q != nil) || (p != nil && q == nil) || string(p) != string(q) {`)
|
||||
} else {
|
||||
// Inlined call to bytes.Equal()
|
||||
p.P(`if string(`, lhs, `) != string(`, rhs, `) {`)
|
||||
}
|
||||
p.P(` return false`)
|
||||
p.P(`}`)
|
||||
}
|
||||
|
||||
func (p *equal) compareCall(lhs, rhs string, msg *protogen.Message, nullable bool) {
|
||||
if !nullable {
|
||||
// The p != q check is mostly intended to catch the lhs = nil, rhs = nil case in which we would pointlessly
|
||||
// allocate not just one but two empty values. However, it also provides us with an extra scope to establish
|
||||
// our p and q variables.
|
||||
p.P(`if p, q := `, lhs, `, `, rhs, `; p != q {`)
|
||||
defer p.P(`}`)
|
||||
|
||||
p.P(`if p == nil {`)
|
||||
p.P(`p = &`, p.QualifiedGoIdent(msg.GoIdent), `{}`)
|
||||
p.P(`}`)
|
||||
p.P(`if q == nil {`)
|
||||
p.P(`q = &`, p.QualifiedGoIdent(msg.GoIdent), `{}`)
|
||||
p.P(`}`)
|
||||
lhs, rhs = "p", "q"
|
||||
}
|
||||
switch {
|
||||
case p.IsWellKnownType(msg):
|
||||
wkt := p.WellKnownTypeMap(msg)
|
||||
p.P(`if !(*`, wkt, `)(`, lhs, `).`, equalName, `((*`, wkt, `)(`, rhs, `)) {`)
|
||||
p.P(` return false`)
|
||||
p.P(`}`)
|
||||
case p.IsLocalMessage(msg):
|
||||
p.P(`if !`, lhs, `.`, equalName, `(`, rhs, `) {`)
|
||||
p.P(` return false`)
|
||||
p.P(`}`)
|
||||
default:
|
||||
p.P(`if equal, ok := interface{}(`, lhs, `).(interface { `, equalName, `(*`, p.QualifiedGoIdent(msg.GoIdent), `) bool }); ok {`)
|
||||
p.P(` if !equal.`, equalName, `(`, rhs, `) {`)
|
||||
p.P(` return false`)
|
||||
p.P(` }`)
|
||||
p.P(`} else if !`, p.Ident("google.golang.org/protobuf/proto", "Equal"), `(`, lhs, `, `, rhs, `) {`)
|
||||
p.P(` return false`)
|
||||
p.P(`}`)
|
||||
}
|
||||
}
|
||||
|
||||
func isScalar(kind protoreflect.Kind) bool {
|
||||
switch kind {
|
||||
case
|
||||
protoreflect.BoolKind,
|
||||
protoreflect.StringKind,
|
||||
protoreflect.DoubleKind, protoreflect.Fixed64Kind, protoreflect.Sfixed64Kind,
|
||||
protoreflect.FloatKind, protoreflect.Fixed32Kind, protoreflect.Sfixed32Kind,
|
||||
protoreflect.Int64Kind, protoreflect.Uint64Kind, protoreflect.Sint64Kind,
|
||||
protoreflect.Int32Kind, protoreflect.Uint32Kind, protoreflect.Sint32Kind,
|
||||
protoreflect.EnumKind:
|
||||
return true
|
||||
}
|
||||
return false
|
||||
}
|
||||
422
vendor/github.com/planetscale/vtprotobuf/features/grpc/grpc.go
generated
vendored
Normal file
422
vendor/github.com/planetscale/vtprotobuf/features/grpc/grpc.go
generated
vendored
Normal file
@@ -0,0 +1,422 @@
|
||||
/*
|
||||
*
|
||||
* Copyright 2020 gRPC authors.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* http://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.
|
||||
*
|
||||
*/
|
||||
|
||||
package grpc
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"github.com/planetscale/vtprotobuf/generator"
|
||||
|
||||
"google.golang.org/protobuf/compiler/protogen"
|
||||
"google.golang.org/protobuf/types/descriptorpb"
|
||||
)
|
||||
|
||||
const (
|
||||
contextPackage = protogen.GoImportPath("context")
|
||||
grpcPackage = protogen.GoImportPath("google.golang.org/grpc")
|
||||
codesPackage = protogen.GoImportPath("google.golang.org/grpc/codes")
|
||||
statusPackage = protogen.GoImportPath("google.golang.org/grpc/status")
|
||||
)
|
||||
|
||||
// generateFileContent generates the gRPC service definitions, excluding the package statement.
|
||||
func generateFileContent(gen *protogen.Plugin, file *protogen.File, g *generator.GeneratedFile) {
|
||||
if len(file.Services) == 0 {
|
||||
return
|
||||
}
|
||||
|
||||
g.P("// This is a compile-time assertion to ensure that this generated file")
|
||||
g.P("// is compatible with the grpc package it is being compiled against.")
|
||||
g.P("// Requires gRPC-Go v1.32.0 or later.")
|
||||
g.P("const _ = ", grpcPackage.Ident("SupportPackageIsVersion7")) // When changing, update version number above.
|
||||
g.P()
|
||||
for _, service := range file.Services {
|
||||
genService(gen, file, g, service)
|
||||
}
|
||||
}
|
||||
|
||||
func genService(gen *protogen.Plugin, file *protogen.File, g *generator.GeneratedFile, service *protogen.Service) {
|
||||
clientName := service.GoName + "Client"
|
||||
|
||||
g.P("// ", clientName, " is the client API for ", service.GoName, " service.")
|
||||
g.P("//")
|
||||
g.P("// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.")
|
||||
|
||||
// Client interface.
|
||||
if service.Desc.Options().(*descriptorpb.ServiceOptions).GetDeprecated() {
|
||||
g.P("//")
|
||||
g.P(deprecationComment)
|
||||
}
|
||||
g.Annotate(clientName, service.Location)
|
||||
g.P("type ", clientName, " interface {")
|
||||
for _, method := range service.Methods {
|
||||
g.Annotate(clientName+"."+method.GoName, method.Location)
|
||||
if method.Desc.Options().(*descriptorpb.MethodOptions).GetDeprecated() {
|
||||
g.P(deprecationComment)
|
||||
}
|
||||
g.P(method.Comments.Leading,
|
||||
clientSignature(g, method))
|
||||
}
|
||||
g.P("}")
|
||||
g.P()
|
||||
|
||||
// Client structure.
|
||||
g.P("type ", unexport(clientName), " struct {")
|
||||
g.P("cc ", grpcPackage.Ident("ClientConnInterface"))
|
||||
g.P("}")
|
||||
g.P()
|
||||
|
||||
// NewClient factory.
|
||||
if service.Desc.Options().(*descriptorpb.ServiceOptions).GetDeprecated() {
|
||||
g.P(deprecationComment)
|
||||
}
|
||||
g.P("func New", clientName, " (cc ", grpcPackage.Ident("ClientConnInterface"), ") ", clientName, " {")
|
||||
g.P("return &", unexport(clientName), "{cc}")
|
||||
g.P("}")
|
||||
g.P()
|
||||
|
||||
var methodIndex, streamIndex int
|
||||
// Client method implementations.
|
||||
for _, method := range service.Methods {
|
||||
if !method.Desc.IsStreamingServer() && !method.Desc.IsStreamingClient() {
|
||||
// Unary RPC method
|
||||
genClientMethod(gen, file, g, method, methodIndex)
|
||||
methodIndex++
|
||||
} else {
|
||||
// Streaming RPC method
|
||||
genClientMethod(gen, file, g, method, streamIndex)
|
||||
streamIndex++
|
||||
}
|
||||
}
|
||||
|
||||
mustOrShould := "must"
|
||||
if !*requireUnimplemented {
|
||||
mustOrShould = "should"
|
||||
}
|
||||
|
||||
// Server interface.
|
||||
serverType := service.GoName + "Server"
|
||||
g.P("// ", serverType, " is the server API for ", service.GoName, " service.")
|
||||
g.P("// All implementations ", mustOrShould, " embed Unimplemented", serverType)
|
||||
g.P("// for forward compatibility")
|
||||
if service.Desc.Options().(*descriptorpb.ServiceOptions).GetDeprecated() {
|
||||
g.P("//")
|
||||
g.P(deprecationComment)
|
||||
}
|
||||
g.Annotate(serverType, service.Location)
|
||||
g.P("type ", serverType, " interface {")
|
||||
for _, method := range service.Methods {
|
||||
g.Annotate(serverType+"."+method.GoName, method.Location)
|
||||
if method.Desc.Options().(*descriptorpb.MethodOptions).GetDeprecated() {
|
||||
g.P(deprecationComment)
|
||||
}
|
||||
g.P(method.Comments.Leading,
|
||||
serverSignature(g, method))
|
||||
}
|
||||
if *requireUnimplemented {
|
||||
g.P("mustEmbedUnimplemented", serverType, "()")
|
||||
}
|
||||
g.P("}")
|
||||
g.P()
|
||||
|
||||
// Server Unimplemented struct for forward compatibility.
|
||||
g.P("// Unimplemented", serverType, " ", mustOrShould, " be embedded to have forward compatible implementations.")
|
||||
g.P("type Unimplemented", serverType, " struct {")
|
||||
g.P("}")
|
||||
g.P()
|
||||
for _, method := range service.Methods {
|
||||
nilArg := ""
|
||||
if !method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() {
|
||||
nilArg = "nil,"
|
||||
}
|
||||
g.P("func (Unimplemented", serverType, ") ", serverSignature(g, method), "{")
|
||||
g.P("return ", nilArg, statusPackage.Ident("Errorf"), "(", codesPackage.Ident("Unimplemented"), `, "method `, method.GoName, ` not implemented")`)
|
||||
g.P("}")
|
||||
}
|
||||
if *requireUnimplemented {
|
||||
g.P("func (Unimplemented", serverType, ") mustEmbedUnimplemented", serverType, "() {}")
|
||||
}
|
||||
g.P()
|
||||
|
||||
// Unsafe Server interface to opt-out of forward compatibility.
|
||||
g.P("// Unsafe", serverType, " may be embedded to opt out of forward compatibility for this service.")
|
||||
g.P("// Use of this interface is not recommended, as added methods to ", serverType, " will")
|
||||
g.P("// result in compilation errors.")
|
||||
g.P("type Unsafe", serverType, " interface {")
|
||||
g.P("mustEmbedUnimplemented", serverType, "()")
|
||||
g.P("}")
|
||||
|
||||
// Server registration.
|
||||
if service.Desc.Options().(*descriptorpb.ServiceOptions).GetDeprecated() {
|
||||
g.P(deprecationComment)
|
||||
}
|
||||
serviceDescVar := service.GoName + "_ServiceDesc"
|
||||
g.P("func Register", service.GoName, "Server(s ", grpcPackage.Ident("ServiceRegistrar"), ", srv ", serverType, ") {")
|
||||
g.P("s.RegisterService(&", serviceDescVar, `, srv)`)
|
||||
g.P("}")
|
||||
g.P()
|
||||
|
||||
// Server handler implementations.
|
||||
var handlerNames []string
|
||||
for _, method := range service.Methods {
|
||||
hname := genServerMethod(gen, file, g, method)
|
||||
handlerNames = append(handlerNames, hname)
|
||||
}
|
||||
|
||||
// Service descriptor.
|
||||
g.P("// ", serviceDescVar, " is the ", grpcPackage.Ident("ServiceDesc"), " for ", service.GoName, " service.")
|
||||
g.P("// It's only intended for direct use with ", grpcPackage.Ident("RegisterService"), ",")
|
||||
g.P("// and not to be introspected or modified (even as a copy)")
|
||||
g.P("var ", serviceDescVar, " = ", grpcPackage.Ident("ServiceDesc"), " {")
|
||||
g.P("ServiceName: ", strconv.Quote(string(service.Desc.FullName())), ",")
|
||||
g.P("HandlerType: (*", serverType, ")(nil),")
|
||||
g.P("Methods: []", grpcPackage.Ident("MethodDesc"), "{")
|
||||
for i, method := range service.Methods {
|
||||
if method.Desc.IsStreamingClient() || method.Desc.IsStreamingServer() {
|
||||
continue
|
||||
}
|
||||
g.P("{")
|
||||
g.P("MethodName: ", strconv.Quote(string(method.Desc.Name())), ",")
|
||||
g.P("Handler: ", handlerNames[i], ",")
|
||||
g.P("},")
|
||||
}
|
||||
g.P("},")
|
||||
g.P("Streams: []", grpcPackage.Ident("StreamDesc"), "{")
|
||||
for i, method := range service.Methods {
|
||||
if !method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() {
|
||||
continue
|
||||
}
|
||||
g.P("{")
|
||||
g.P("StreamName: ", strconv.Quote(string(method.Desc.Name())), ",")
|
||||
g.P("Handler: ", handlerNames[i], ",")
|
||||
if method.Desc.IsStreamingServer() {
|
||||
g.P("ServerStreams: true,")
|
||||
}
|
||||
if method.Desc.IsStreamingClient() {
|
||||
g.P("ClientStreams: true,")
|
||||
}
|
||||
g.P("},")
|
||||
}
|
||||
g.P("},")
|
||||
g.P("Metadata: \"", file.Desc.Path(), "\",")
|
||||
g.P("}")
|
||||
g.P()
|
||||
}
|
||||
|
||||
func clientSignature(g *generator.GeneratedFile, method *protogen.Method) string {
|
||||
s := method.GoName + "(ctx " + g.QualifiedGoIdent(contextPackage.Ident("Context"))
|
||||
if !method.Desc.IsStreamingClient() {
|
||||
s += ", in *" + g.QualifiedGoIdent(method.Input.GoIdent)
|
||||
}
|
||||
s += ", opts ..." + g.QualifiedGoIdent(grpcPackage.Ident("CallOption")) + ") ("
|
||||
if !method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() {
|
||||
s += "*" + g.QualifiedGoIdent(method.Output.GoIdent)
|
||||
} else {
|
||||
s += method.Parent.GoName + "_" + method.GoName + "Client"
|
||||
}
|
||||
s += ", error)"
|
||||
return s
|
||||
}
|
||||
|
||||
func genClientMethod(gen *protogen.Plugin, file *protogen.File, g *generator.GeneratedFile, method *protogen.Method, index int) {
|
||||
service := method.Parent
|
||||
sname := fmt.Sprintf("/%s/%s", service.Desc.FullName(), method.Desc.Name())
|
||||
|
||||
if method.Desc.Options().(*descriptorpb.MethodOptions).GetDeprecated() {
|
||||
g.P(deprecationComment)
|
||||
}
|
||||
g.P("func (c *", unexport(service.GoName), "Client) ", clientSignature(g, method), "{")
|
||||
if !method.Desc.IsStreamingServer() && !method.Desc.IsStreamingClient() {
|
||||
// g.P("out := new(", method.Output.GoIdent, ")")
|
||||
g.Alloc("out", method.Output, true)
|
||||
g.P(`err := c.cc.Invoke(ctx, "`, sname, `", in, out, opts...)`)
|
||||
g.P("if err != nil { return nil, err }")
|
||||
g.P("return out, nil")
|
||||
g.P("}")
|
||||
g.P()
|
||||
return
|
||||
}
|
||||
streamType := unexport(service.GoName) + method.GoName + "Client"
|
||||
serviceDescVar := service.GoName + "_ServiceDesc"
|
||||
g.P("stream, err := c.cc.NewStream(ctx, &", serviceDescVar, ".Streams[", index, `], "`, sname, `", opts...)`)
|
||||
g.P("if err != nil { return nil, err }")
|
||||
g.P("x := &", streamType, "{stream}")
|
||||
if !method.Desc.IsStreamingClient() {
|
||||
g.P("if err := x.ClientStream.SendMsg(in); err != nil { return nil, err }")
|
||||
g.P("if err := x.ClientStream.CloseSend(); err != nil { return nil, err }")
|
||||
}
|
||||
g.P("return x, nil")
|
||||
g.P("}")
|
||||
g.P()
|
||||
|
||||
genSend := method.Desc.IsStreamingClient()
|
||||
genRecv := method.Desc.IsStreamingServer()
|
||||
genCloseAndRecv := !method.Desc.IsStreamingServer()
|
||||
|
||||
// Stream auxiliary types and methods.
|
||||
g.P("type ", service.GoName, "_", method.GoName, "Client interface {")
|
||||
if genSend {
|
||||
g.P("Send(*", method.Input.GoIdent, ") error")
|
||||
}
|
||||
if genRecv {
|
||||
g.P("Recv() (*", method.Output.GoIdent, ", error)")
|
||||
}
|
||||
if genCloseAndRecv {
|
||||
g.P("CloseAndRecv() (*", method.Output.GoIdent, ", error)")
|
||||
}
|
||||
g.P(grpcPackage.Ident("ClientStream"))
|
||||
g.P("}")
|
||||
g.P()
|
||||
|
||||
g.P("type ", streamType, " struct {")
|
||||
g.P(grpcPackage.Ident("ClientStream"))
|
||||
g.P("}")
|
||||
g.P()
|
||||
|
||||
if genSend {
|
||||
g.P("func (x *", streamType, ") Send(m *", method.Input.GoIdent, ") error {")
|
||||
g.P("return x.ClientStream.SendMsg(m)")
|
||||
g.P("}")
|
||||
g.P()
|
||||
}
|
||||
if genRecv {
|
||||
g.P("func (x *", streamType, ") Recv() (*", method.Output.GoIdent, ", error) {")
|
||||
// g.P("m := new(", method.Output.GoIdent, ")")
|
||||
g.Alloc("m", method.Output, true)
|
||||
g.P("if err := x.ClientStream.RecvMsg(m); err != nil { return nil, err }")
|
||||
g.P("return m, nil")
|
||||
g.P("}")
|
||||
g.P()
|
||||
}
|
||||
if genCloseAndRecv {
|
||||
g.P("func (x *", streamType, ") CloseAndRecv() (*", method.Output.GoIdent, ", error) {")
|
||||
g.P("if err := x.ClientStream.CloseSend(); err != nil { return nil, err }")
|
||||
// g.P("m := new(", method.Output.GoIdent, ")")
|
||||
g.Alloc("m", method.Output, true)
|
||||
g.P("if err := x.ClientStream.RecvMsg(m); err != nil { return nil, err }")
|
||||
g.P("return m, nil")
|
||||
g.P("}")
|
||||
g.P()
|
||||
}
|
||||
}
|
||||
|
||||
func serverSignature(g *generator.GeneratedFile, method *protogen.Method) string {
|
||||
var reqArgs []string
|
||||
ret := "error"
|
||||
if !method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() {
|
||||
reqArgs = append(reqArgs, g.QualifiedGoIdent(contextPackage.Ident("Context")))
|
||||
ret = "(*" + g.QualifiedGoIdent(method.Output.GoIdent) + ", error)"
|
||||
}
|
||||
if !method.Desc.IsStreamingClient() {
|
||||
reqArgs = append(reqArgs, "*"+g.QualifiedGoIdent(method.Input.GoIdent))
|
||||
}
|
||||
if method.Desc.IsStreamingClient() || method.Desc.IsStreamingServer() {
|
||||
reqArgs = append(reqArgs, method.Parent.GoName+"_"+method.GoName+"Server")
|
||||
}
|
||||
return method.GoName + "(" + strings.Join(reqArgs, ", ") + ") " + ret
|
||||
}
|
||||
|
||||
func genServerMethod(gen *protogen.Plugin, file *protogen.File, g *generator.GeneratedFile, method *protogen.Method) string {
|
||||
service := method.Parent
|
||||
hname := fmt.Sprintf("_%s_%s_Handler", service.GoName, method.GoName)
|
||||
|
||||
if !method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() {
|
||||
g.P("func ", hname, "(srv interface{}, ctx ", contextPackage.Ident("Context"), ", dec func(interface{}) error, interceptor ", grpcPackage.Ident("UnaryServerInterceptor"), ") (interface{}, error) {")
|
||||
// g.P("in := new(", method.Input.GoIdent, ")")
|
||||
g.Alloc("in", method.Input, true)
|
||||
g.P("if err := dec(in); err != nil { return nil, err }")
|
||||
g.P("if interceptor == nil { return srv.(", service.GoName, "Server).", method.GoName, "(ctx, in) }")
|
||||
g.P("info := &", grpcPackage.Ident("UnaryServerInfo"), "{")
|
||||
g.P("Server: srv,")
|
||||
g.P("FullMethod: ", strconv.Quote(fmt.Sprintf("/%s/%s", service.Desc.FullName(), method.Desc.Name())), ",")
|
||||
g.P("}")
|
||||
g.P("handler := func(ctx ", contextPackage.Ident("Context"), ", req interface{}) (interface{}, error) {")
|
||||
g.P("return srv.(", service.GoName, "Server).", method.GoName, "(ctx, req.(*", method.Input.GoIdent, "))")
|
||||
g.P("}")
|
||||
g.P("return interceptor(ctx, in, info, handler)")
|
||||
g.P("}")
|
||||
g.P()
|
||||
return hname
|
||||
}
|
||||
streamType := unexport(service.GoName) + method.GoName + "Server"
|
||||
g.P("func ", hname, "(srv interface{}, stream ", grpcPackage.Ident("ServerStream"), ") error {")
|
||||
if !method.Desc.IsStreamingClient() {
|
||||
// g.P("m := new(", method.Input.GoIdent, ")")
|
||||
g.Alloc("m", method.Input, true)
|
||||
g.P("if err := stream.RecvMsg(m); err != nil { return err }")
|
||||
g.P("return srv.(", service.GoName, "Server).", method.GoName, "(m, &", streamType, "{stream})")
|
||||
} else {
|
||||
g.P("return srv.(", service.GoName, "Server).", method.GoName, "(&", streamType, "{stream})")
|
||||
}
|
||||
g.P("}")
|
||||
g.P()
|
||||
|
||||
genSend := method.Desc.IsStreamingServer()
|
||||
genSendAndClose := !method.Desc.IsStreamingServer()
|
||||
genRecv := method.Desc.IsStreamingClient()
|
||||
|
||||
// Stream auxiliary types and methods.
|
||||
g.P("type ", service.GoName, "_", method.GoName, "Server interface {")
|
||||
if genSend {
|
||||
g.P("Send(*", method.Output.GoIdent, ") error")
|
||||
}
|
||||
if genSendAndClose {
|
||||
g.P("SendAndClose(*", method.Output.GoIdent, ") error")
|
||||
}
|
||||
if genRecv {
|
||||
g.P("Recv() (*", method.Input.GoIdent, ", error)")
|
||||
}
|
||||
g.P(grpcPackage.Ident("ServerStream"))
|
||||
g.P("}")
|
||||
g.P()
|
||||
|
||||
g.P("type ", streamType, " struct {")
|
||||
g.P(grpcPackage.Ident("ServerStream"))
|
||||
g.P("}")
|
||||
g.P()
|
||||
|
||||
if genSend {
|
||||
g.P("func (x *", streamType, ") Send(m *", method.Output.GoIdent, ") error {")
|
||||
g.P("return x.ServerStream.SendMsg(m)")
|
||||
g.P("}")
|
||||
g.P()
|
||||
}
|
||||
if genSendAndClose {
|
||||
g.P("func (x *", streamType, ") SendAndClose(m *", method.Output.GoIdent, ") error {")
|
||||
g.P("return x.ServerStream.SendMsg(m)")
|
||||
g.P("}")
|
||||
g.P()
|
||||
}
|
||||
if genRecv {
|
||||
g.P("func (x *", streamType, ") Recv() (*", method.Input.GoIdent, ", error) {")
|
||||
// g.P("m := new(", method.Input.GoIdent, ")")
|
||||
g.Alloc("m", method.Input, true)
|
||||
g.P("if err := x.ServerStream.RecvMsg(m); err != nil { return nil, err }")
|
||||
g.P("return m, nil")
|
||||
g.P("}")
|
||||
g.P()
|
||||
}
|
||||
|
||||
return hname
|
||||
}
|
||||
|
||||
const deprecationComment = "// Deprecated: Do not use."
|
||||
|
||||
func unexport(s string) string { return strings.ToLower(s[:1]) + s[1:] }
|
||||
34
vendor/github.com/planetscale/vtprotobuf/features/grpc/grpc_plugin.go
generated
vendored
Normal file
34
vendor/github.com/planetscale/vtprotobuf/features/grpc/grpc_plugin.go
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
// Copyright (c) 2021 PlanetScale Inc. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package grpc
|
||||
|
||||
import (
|
||||
"github.com/planetscale/vtprotobuf/generator"
|
||||
"google.golang.org/protobuf/compiler/protogen"
|
||||
)
|
||||
|
||||
const version = "1.1.0-vtproto"
|
||||
|
||||
var requireUnimplementedAlways = true
|
||||
var requireUnimplemented = &requireUnimplementedAlways
|
||||
|
||||
func init() {
|
||||
generator.RegisterFeature("grpc", func(gen *generator.GeneratedFile) generator.FeatureGenerator {
|
||||
return &grpc{gen}
|
||||
})
|
||||
}
|
||||
|
||||
type grpc struct {
|
||||
*generator.GeneratedFile
|
||||
}
|
||||
|
||||
func (g *grpc) GenerateFile(file *protogen.File) bool {
|
||||
if len(file.Services) == 0 {
|
||||
return false
|
||||
}
|
||||
|
||||
generateFileContent(nil, file, g.GeneratedFile)
|
||||
return true
|
||||
}
|
||||
748
vendor/github.com/planetscale/vtprotobuf/features/marshal/marshalto.go
generated
vendored
Normal file
748
vendor/github.com/planetscale/vtprotobuf/features/marshal/marshalto.go
generated
vendored
Normal file
@@ -0,0 +1,748 @@
|
||||
// Copyright (c) 2021 PlanetScale Inc. All rights reserved.
|
||||
// Copyright (c) 2013, The GoGo Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package marshal
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"sort"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"github.com/planetscale/vtprotobuf/generator"
|
||||
"google.golang.org/protobuf/compiler/protogen"
|
||||
"google.golang.org/protobuf/encoding/protowire"
|
||||
"google.golang.org/protobuf/reflect/protoreflect"
|
||||
)
|
||||
|
||||
func init() {
|
||||
generator.RegisterFeature("marshal", func(gen *generator.GeneratedFile) generator.FeatureGenerator {
|
||||
return &marshal{GeneratedFile: gen, Stable: false, strict: false}
|
||||
})
|
||||
generator.RegisterFeature("marshal_strict", func(gen *generator.GeneratedFile) generator.FeatureGenerator {
|
||||
return &marshal{GeneratedFile: gen, Stable: false, strict: true}
|
||||
})
|
||||
}
|
||||
|
||||
type counter int
|
||||
|
||||
func (cnt *counter) Next() string {
|
||||
*cnt++
|
||||
return cnt.Current()
|
||||
}
|
||||
|
||||
func (cnt *counter) Current() string {
|
||||
return strconv.Itoa(int(*cnt))
|
||||
}
|
||||
|
||||
type marshal struct {
|
||||
*generator.GeneratedFile
|
||||
Stable, once, strict bool
|
||||
}
|
||||
|
||||
var _ generator.FeatureGenerator = (*marshal)(nil)
|
||||
|
||||
func (p *marshal) GenerateFile(file *protogen.File) bool {
|
||||
for _, message := range file.Messages {
|
||||
p.message(message)
|
||||
}
|
||||
return p.once
|
||||
}
|
||||
|
||||
func (p *marshal) encodeFixed64(varName ...string) {
|
||||
p.P(`i -= 8`)
|
||||
p.P(p.Ident("encoding/binary", "LittleEndian"), `.PutUint64(dAtA[i:], uint64(`, strings.Join(varName, ""), `))`)
|
||||
}
|
||||
|
||||
func (p *marshal) encodeFixed32(varName ...string) {
|
||||
p.P(`i -= 4`)
|
||||
p.P(p.Ident("encoding/binary", "LittleEndian"), `.PutUint32(dAtA[i:], uint32(`, strings.Join(varName, ""), `))`)
|
||||
}
|
||||
|
||||
func (p *marshal) encodeVarint(varName ...string) {
|
||||
p.P(`i = `, p.Helper("EncodeVarint"), `(dAtA, i, uint64(`, strings.Join(varName, ""), `))`)
|
||||
}
|
||||
|
||||
func (p *marshal) encodeKey(fieldNumber protoreflect.FieldNumber, wireType protowire.Type) {
|
||||
x := uint32(fieldNumber)<<3 | uint32(wireType)
|
||||
i := 0
|
||||
keybuf := make([]byte, 0)
|
||||
for i = 0; x > 127; i++ {
|
||||
keybuf = append(keybuf, 0x80|uint8(x&0x7F))
|
||||
x >>= 7
|
||||
}
|
||||
keybuf = append(keybuf, uint8(x))
|
||||
for i = len(keybuf) - 1; i >= 0; i-- {
|
||||
p.P(`i--`)
|
||||
p.P(`dAtA[i] = `, fmt.Sprintf("%#v", keybuf[i]))
|
||||
}
|
||||
}
|
||||
|
||||
func (p *marshal) mapField(kvField *protogen.Field, varName string) {
|
||||
switch kvField.Desc.Kind() {
|
||||
case protoreflect.DoubleKind:
|
||||
p.encodeFixed64(p.Ident("math", "Float64bits"), `(float64(`, varName, `))`)
|
||||
case protoreflect.FloatKind:
|
||||
p.encodeFixed32(p.Ident("math", "Float32bits"), `(float32(`, varName, `))`)
|
||||
case protoreflect.Int64Kind, protoreflect.Uint64Kind, protoreflect.Int32Kind, protoreflect.Uint32Kind, protoreflect.EnumKind:
|
||||
p.encodeVarint(varName)
|
||||
case protoreflect.Fixed64Kind, protoreflect.Sfixed64Kind:
|
||||
p.encodeFixed64(varName)
|
||||
case protoreflect.Fixed32Kind, protoreflect.Sfixed32Kind:
|
||||
p.encodeFixed32(varName)
|
||||
case protoreflect.BoolKind:
|
||||
p.P(`i--`)
|
||||
p.P(`if `, varName, ` {`)
|
||||
p.P(`dAtA[i] = 1`)
|
||||
p.P(`} else {`)
|
||||
p.P(`dAtA[i] = 0`)
|
||||
p.P(`}`)
|
||||
case protoreflect.StringKind, protoreflect.BytesKind:
|
||||
p.P(`i -= len(`, varName, `)`)
|
||||
p.P(`copy(dAtA[i:], `, varName, `)`)
|
||||
p.encodeVarint(`len(`, varName, `)`)
|
||||
case protoreflect.Sint32Kind:
|
||||
p.encodeVarint(`(uint32(`, varName, `) << 1) ^ uint32((`, varName, ` >> 31))`)
|
||||
case protoreflect.Sint64Kind:
|
||||
p.encodeVarint(`(uint64(`, varName, `) << 1) ^ uint64((`, varName, ` >> 63))`)
|
||||
case protoreflect.MessageKind:
|
||||
p.marshalBackward(varName, true, kvField.Message)
|
||||
}
|
||||
}
|
||||
|
||||
func (p *marshal) field(oneof bool, numGen *counter, field *protogen.Field) {
|
||||
fieldname := field.GoName
|
||||
nullable := field.Message != nil || (!oneof && field.Desc.HasPresence())
|
||||
repeated := field.Desc.Cardinality() == protoreflect.Repeated
|
||||
if repeated {
|
||||
p.P(`if len(m.`, fieldname, `) > 0 {`)
|
||||
} else if nullable {
|
||||
if field.Desc.Cardinality() == protoreflect.Required {
|
||||
p.P(`if m.`, fieldname, ` == nil {`)
|
||||
p.P(`return 0, `, p.Ident("fmt", "Errorf"), `("proto: required field `, field.Desc.Name(), ` not set")`)
|
||||
p.P(`} else {`)
|
||||
} else {
|
||||
p.P(`if m.`, fieldname, ` != nil {`)
|
||||
}
|
||||
}
|
||||
packed := field.Desc.IsPacked()
|
||||
wireType := generator.ProtoWireType(field.Desc.Kind())
|
||||
fieldNumber := field.Desc.Number()
|
||||
if packed {
|
||||
wireType = protowire.BytesType
|
||||
}
|
||||
switch field.Desc.Kind() {
|
||||
case protoreflect.DoubleKind:
|
||||
if packed {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.P(`f`, numGen.Next(), ` := `, p.Ident("math", "Float64bits"), `(float64(`, val, `))`)
|
||||
p.encodeFixed64("f", numGen.Current())
|
||||
p.P(`}`)
|
||||
p.encodeVarint(`len(m.`, fieldname, `) * 8`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if repeated {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.P(`f`, numGen.Next(), ` := `, p.Ident("math", "Float64bits"), `(float64(`, val, `))`)
|
||||
p.encodeFixed64("f", numGen.Current())
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else if nullable {
|
||||
p.encodeFixed64(p.Ident("math", "Float64bits"), `(float64(*m.`+fieldname, `))`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if !oneof {
|
||||
p.P(`if m.`, fieldname, ` != 0 {`)
|
||||
p.encodeFixed64(p.Ident("math", "Float64bits"), `(float64(m.`, fieldname, `))`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.encodeFixed64(p.Ident("math", "Float64bits"), `(float64(m.`+fieldname, `))`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
}
|
||||
case protoreflect.FloatKind:
|
||||
if packed {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.P(`f`, numGen.Next(), ` := `, p.Ident("math", "Float32bits"), `(float32(`, val, `))`)
|
||||
p.encodeFixed32("f" + numGen.Current())
|
||||
p.P(`}`)
|
||||
p.encodeVarint(`len(m.`, fieldname, `) * 4`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if repeated {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.P(`f`, numGen.Next(), ` := `, p.Ident("math", "Float32bits"), `(float32(`, val, `))`)
|
||||
p.encodeFixed32("f" + numGen.Current())
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else if nullable {
|
||||
p.encodeFixed32(p.Ident("math", "Float32bits"), `(float32(*m.`+fieldname, `))`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if !oneof {
|
||||
p.P(`if m.`, fieldname, ` != 0 {`)
|
||||
p.encodeFixed32(p.Ident("math", "Float32bits"), `(float32(m.`+fieldname, `))`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.encodeFixed32(p.Ident("math", "Float32bits"), `(float32(m.`+fieldname, `))`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
}
|
||||
case protoreflect.Int64Kind, protoreflect.Uint64Kind, protoreflect.Int32Kind, protoreflect.Uint32Kind, protoreflect.EnumKind:
|
||||
if packed {
|
||||
jvar := "j" + numGen.Next()
|
||||
total := "pksize" + numGen.Next()
|
||||
|
||||
p.P(`var `, total, ` int`)
|
||||
p.P(`for _, num := range m.`, fieldname, ` {`)
|
||||
p.P(total, ` += `, p.Helper("SizeOfVarint"), `(uint64(num))`)
|
||||
p.P(`}`)
|
||||
|
||||
p.P(`i -= `, total)
|
||||
p.P(jvar, `:= i`)
|
||||
|
||||
switch field.Desc.Kind() {
|
||||
case protoreflect.Int64Kind, protoreflect.Int32Kind, protoreflect.EnumKind:
|
||||
p.P(`for _, num1 := range m.`, fieldname, ` {`)
|
||||
p.P(`num := uint64(num1)`)
|
||||
default:
|
||||
p.P(`for _, num := range m.`, fieldname, ` {`)
|
||||
}
|
||||
p.P(`for num >= 1<<7 {`)
|
||||
p.P(`dAtA[`, jvar, `] = uint8(uint64(num)&0x7f|0x80)`)
|
||||
p.P(`num >>= 7`)
|
||||
p.P(jvar, `++`)
|
||||
p.P(`}`)
|
||||
p.P(`dAtA[`, jvar, `] = uint8(num)`)
|
||||
p.P(jvar, `++`)
|
||||
p.P(`}`)
|
||||
|
||||
p.encodeVarint(total)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if repeated {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.encodeVarint(val)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else if nullable {
|
||||
p.encodeVarint(`*m.`, fieldname)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if !oneof {
|
||||
p.P(`if m.`, fieldname, ` != 0 {`)
|
||||
p.encodeVarint(`m.`, fieldname)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.encodeVarint(`m.`, fieldname)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
}
|
||||
case protoreflect.Fixed64Kind, protoreflect.Sfixed64Kind:
|
||||
if packed {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.encodeFixed64(val)
|
||||
p.P(`}`)
|
||||
p.encodeVarint(`len(m.`, fieldname, `) * 8`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if repeated {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.encodeFixed64(val)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else if nullable {
|
||||
p.encodeFixed64("*m.", fieldname)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if !oneof {
|
||||
p.P(`if m.`, fieldname, ` != 0 {`)
|
||||
p.encodeFixed64("m.", fieldname)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.encodeFixed64("m.", fieldname)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
}
|
||||
case protoreflect.Fixed32Kind, protoreflect.Sfixed32Kind:
|
||||
if packed {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.encodeFixed32(val)
|
||||
p.P(`}`)
|
||||
p.encodeVarint(`len(m.`, fieldname, `) * 4`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if repeated {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.encodeFixed32(val)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else if nullable {
|
||||
p.encodeFixed32("*m." + fieldname)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if !oneof {
|
||||
p.P(`if m.`, fieldname, ` != 0 {`)
|
||||
p.encodeFixed32("m." + fieldname)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.encodeFixed32("m." + fieldname)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
}
|
||||
case protoreflect.BoolKind:
|
||||
if packed {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.P(`i--`)
|
||||
p.P(`if `, val, ` {`)
|
||||
p.P(`dAtA[i] = 1`)
|
||||
p.P(`} else {`)
|
||||
p.P(`dAtA[i] = 0`)
|
||||
p.P(`}`)
|
||||
p.P(`}`)
|
||||
p.encodeVarint(`len(m.`, fieldname, `)`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if repeated {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.P(`i--`)
|
||||
p.P(`if `, val, ` {`)
|
||||
p.P(`dAtA[i] = 1`)
|
||||
p.P(`} else {`)
|
||||
p.P(`dAtA[i] = 0`)
|
||||
p.P(`}`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else if nullable {
|
||||
p.P(`i--`)
|
||||
p.P(`if *m.`, fieldname, ` {`)
|
||||
p.P(`dAtA[i] = 1`)
|
||||
p.P(`} else {`)
|
||||
p.P(`dAtA[i] = 0`)
|
||||
p.P(`}`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if !oneof {
|
||||
p.P(`if m.`, fieldname, ` {`)
|
||||
p.P(`i--`)
|
||||
p.P(`if m.`, fieldname, ` {`)
|
||||
p.P(`dAtA[i] = 1`)
|
||||
p.P(`} else {`)
|
||||
p.P(`dAtA[i] = 0`)
|
||||
p.P(`}`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(`i--`)
|
||||
p.P(`if m.`, fieldname, ` {`)
|
||||
p.P(`dAtA[i] = 1`)
|
||||
p.P(`} else {`)
|
||||
p.P(`dAtA[i] = 0`)
|
||||
p.P(`}`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
}
|
||||
case protoreflect.StringKind:
|
||||
if repeated {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.P(`i -= len(`, val, `)`)
|
||||
p.P(`copy(dAtA[i:], `, val, `)`)
|
||||
p.encodeVarint(`len(`, val, `)`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else if nullable {
|
||||
p.P(`i -= len(*m.`, fieldname, `)`)
|
||||
p.P(`copy(dAtA[i:], *m.`, fieldname, `)`)
|
||||
p.encodeVarint(`len(*m.`, fieldname, `)`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if !oneof {
|
||||
p.P(`if len(m.`, fieldname, `) > 0 {`)
|
||||
p.P(`i -= len(m.`, fieldname, `)`)
|
||||
p.P(`copy(dAtA[i:], m.`, fieldname, `)`)
|
||||
p.encodeVarint(`len(m.`, fieldname, `)`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(`i -= len(m.`, fieldname, `)`)
|
||||
p.P(`copy(dAtA[i:], m.`, fieldname, `)`)
|
||||
p.encodeVarint(`len(m.`, fieldname, `)`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
}
|
||||
case protoreflect.GroupKind:
|
||||
p.encodeKey(fieldNumber, protowire.EndGroupType)
|
||||
p.marshalBackward(`m.`+fieldname, false, field.Message)
|
||||
p.encodeKey(fieldNumber, protowire.StartGroupType)
|
||||
case protoreflect.MessageKind:
|
||||
if field.Desc.IsMap() {
|
||||
goTypK, _ := p.FieldGoType(field.Message.Fields[0])
|
||||
keyKind := field.Message.Fields[0].Desc.Kind()
|
||||
valKind := field.Message.Fields[1].Desc.Kind()
|
||||
|
||||
var val string
|
||||
if p.Stable && keyKind != protoreflect.BoolKind {
|
||||
keysName := `keysFor` + fieldname
|
||||
p.P(keysName, ` := make([]`, goTypK, `, 0, len(m.`, fieldname, `))`)
|
||||
p.P(`for k := range m.`, fieldname, ` {`)
|
||||
p.P(keysName, ` = append(`, keysName, `, `, goTypK, `(k))`)
|
||||
p.P(`}`)
|
||||
p.P(p.Ident("sort", "Slice"), `(`, keysName, `, func(i, j int) bool {`)
|
||||
p.P(`return `, keysName, `[i] < `, keysName, `[j]`)
|
||||
p.P(`})`)
|
||||
val = p.reverseListRange(keysName)
|
||||
} else {
|
||||
p.P(`for k := range m.`, fieldname, ` {`)
|
||||
val = "k"
|
||||
}
|
||||
if p.Stable {
|
||||
p.P(`v := m.`, fieldname, `[`, goTypK, `(`, val, `)]`)
|
||||
} else {
|
||||
p.P(`v := m.`, fieldname, `[`, val, `]`)
|
||||
}
|
||||
p.P(`baseI := i`)
|
||||
|
||||
accessor := `v`
|
||||
p.mapField(field.Message.Fields[1], accessor)
|
||||
p.encodeKey(2, generator.ProtoWireType(valKind))
|
||||
|
||||
p.mapField(field.Message.Fields[0], val)
|
||||
p.encodeKey(1, generator.ProtoWireType(keyKind))
|
||||
p.encodeVarint(`baseI - i`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else if repeated {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.marshalBackward(val, true, field.Message)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.marshalBackward(`m.`+fieldname, true, field.Message)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
}
|
||||
case protoreflect.BytesKind:
|
||||
if repeated {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.P(`i -= len(`, val, `)`)
|
||||
p.P(`copy(dAtA[i:], `, val, `)`)
|
||||
p.encodeVarint(`len(`, val, `)`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else if !oneof && !field.Desc.HasPresence() {
|
||||
p.P(`if len(m.`, fieldname, `) > 0 {`)
|
||||
p.P(`i -= len(m.`, fieldname, `)`)
|
||||
p.P(`copy(dAtA[i:], m.`, fieldname, `)`)
|
||||
p.encodeVarint(`len(m.`, fieldname, `)`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(`i -= len(m.`, fieldname, `)`)
|
||||
p.P(`copy(dAtA[i:], m.`, fieldname, `)`)
|
||||
p.encodeVarint(`len(m.`, fieldname, `)`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
}
|
||||
case protoreflect.Sint32Kind:
|
||||
if packed {
|
||||
jvar := "j" + numGen.Next()
|
||||
total := "pksize" + numGen.Next()
|
||||
|
||||
p.P(`var `, total, ` int`)
|
||||
p.P(`for _, num := range m.`, fieldname, ` {`)
|
||||
p.P(total, ` += `, p.Helper("SizeOfZigzag"), `(uint64(num))`)
|
||||
p.P(`}`)
|
||||
p.P(`i -= `, total)
|
||||
p.P(jvar, `:= i`)
|
||||
|
||||
p.P(`for _, num := range m.`, fieldname, ` {`)
|
||||
xvar := "x" + numGen.Next()
|
||||
p.P(xvar, ` := (uint32(num) << 1) ^ uint32((num >> 31))`)
|
||||
p.P(`for `, xvar, ` >= 1<<7 {`)
|
||||
p.P(`dAtA[`, jvar, `] = uint8(uint64(`, xvar, `)&0x7f|0x80)`)
|
||||
p.P(jvar, `++`)
|
||||
p.P(xvar, ` >>= 7`)
|
||||
p.P(`}`)
|
||||
p.P(`dAtA[`, jvar, `] = uint8(`, xvar, `)`)
|
||||
p.P(jvar, `++`)
|
||||
p.P(`}`)
|
||||
|
||||
p.encodeVarint(total)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if repeated {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.P(`x`, numGen.Next(), ` := (uint32(`, val, `) << 1) ^ uint32((`, val, ` >> 31))`)
|
||||
p.encodeVarint(`x`, numGen.Current())
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else if nullable {
|
||||
p.encodeVarint(`(uint32(*m.`, fieldname, `) << 1) ^ uint32((*m.`, fieldname, ` >> 31))`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if !oneof {
|
||||
p.P(`if m.`, fieldname, ` != 0 {`)
|
||||
p.encodeVarint(`(uint32(m.`, fieldname, `) << 1) ^ uint32((m.`, fieldname, ` >> 31))`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.encodeVarint(`(uint32(m.`, fieldname, `) << 1) ^ uint32((m.`, fieldname, ` >> 31))`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
}
|
||||
case protoreflect.Sint64Kind:
|
||||
if packed {
|
||||
jvar := "j" + numGen.Next()
|
||||
total := "pksize" + numGen.Next()
|
||||
|
||||
p.P(`var `, total, ` int`)
|
||||
p.P(`for _, num := range m.`, fieldname, ` {`)
|
||||
p.P(total, ` += `, p.Helper("SizeOfZigzag"), `(uint64(num))`)
|
||||
p.P(`}`)
|
||||
p.P(`i -= `, total)
|
||||
p.P(jvar, `:= i`)
|
||||
|
||||
p.P(`for _, num := range m.`, fieldname, ` {`)
|
||||
xvar := "x" + numGen.Next()
|
||||
p.P(xvar, ` := (uint64(num) << 1) ^ uint64((num >> 63))`)
|
||||
p.P(`for `, xvar, ` >= 1<<7 {`)
|
||||
p.P(`dAtA[`, jvar, `] = uint8(uint64(`, xvar, `)&0x7f|0x80)`)
|
||||
p.P(jvar, `++`)
|
||||
p.P(xvar, ` >>= 7`)
|
||||
p.P(`}`)
|
||||
p.P(`dAtA[`, jvar, `] = uint8(`, xvar, `)`)
|
||||
p.P(jvar, `++`)
|
||||
p.P(`}`)
|
||||
|
||||
p.encodeVarint(total)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if repeated {
|
||||
val := p.reverseListRange(`m.`, fieldname)
|
||||
p.P(`x`, numGen.Next(), ` := (uint64(`, val, `) << 1) ^ uint64((`, val, ` >> 63))`)
|
||||
p.encodeVarint("x" + numGen.Current())
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else if nullable {
|
||||
p.encodeVarint(`(uint64(*m.`, fieldname, `) << 1) ^ uint64((*m.`, fieldname, ` >> 63))`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
} else if !oneof {
|
||||
p.P(`if m.`, fieldname, ` != 0 {`)
|
||||
p.encodeVarint(`(uint64(m.`, fieldname, `) << 1) ^ uint64((m.`, fieldname, ` >> 63))`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.encodeVarint(`(uint64(m.`, fieldname, `) << 1) ^ uint64((m.`, fieldname, ` >> 63))`)
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
}
|
||||
default:
|
||||
panic("not implemented")
|
||||
}
|
||||
// Empty protobufs should emit a message or compatibility with Golang protobuf;
|
||||
// See https://github.com/planetscale/vtprotobuf/issues/61
|
||||
if oneof && field.Desc.Kind() == protoreflect.MessageKind && !field.Desc.IsMap() && !field.Desc.IsList() {
|
||||
p.P("} else {")
|
||||
p.P("i = protohelpers.EncodeVarint(dAtA, i, 0)")
|
||||
p.encodeKey(fieldNumber, wireType)
|
||||
p.P("}")
|
||||
} else if repeated || nullable {
|
||||
p.P(`}`)
|
||||
}
|
||||
}
|
||||
|
||||
func (p *marshal) methodMarshalToSizedBuffer() string {
|
||||
switch {
|
||||
case p.strict:
|
||||
return "MarshalToSizedBufferVTStrict"
|
||||
default:
|
||||
return "MarshalToSizedBufferVT"
|
||||
}
|
||||
}
|
||||
|
||||
func (p *marshal) methodMarshalTo() string {
|
||||
switch {
|
||||
case p.strict:
|
||||
return "MarshalToVTStrict"
|
||||
default:
|
||||
return "MarshalToVT"
|
||||
}
|
||||
}
|
||||
|
||||
func (p *marshal) methodMarshal() string {
|
||||
switch {
|
||||
case p.strict:
|
||||
return "MarshalVTStrict"
|
||||
default:
|
||||
return "MarshalVT"
|
||||
}
|
||||
}
|
||||
|
||||
func (p *marshal) message(message *protogen.Message) {
|
||||
for _, nested := range message.Messages {
|
||||
p.message(nested)
|
||||
}
|
||||
|
||||
if message.Desc.IsMapEntry() {
|
||||
return
|
||||
}
|
||||
|
||||
p.once = true
|
||||
|
||||
var numGen counter
|
||||
ccTypeName := message.GoIdent.GoName
|
||||
|
||||
p.P(`func (m *`, ccTypeName, `) `, p.methodMarshal(), `() (dAtA []byte, err error) {`)
|
||||
p.P(`if m == nil {`)
|
||||
p.P(`return nil, nil`)
|
||||
p.P(`}`)
|
||||
p.P(`size := m.SizeVT()`)
|
||||
p.P(`dAtA = make([]byte, size)`)
|
||||
p.P(`n, err := m.`, p.methodMarshalToSizedBuffer(), `(dAtA[:size])`)
|
||||
p.P(`if err != nil {`)
|
||||
p.P(`return nil, err`)
|
||||
p.P(`}`)
|
||||
p.P(`return dAtA[:n], nil`)
|
||||
p.P(`}`)
|
||||
p.P(``)
|
||||
p.P(`func (m *`, ccTypeName, `) `, p.methodMarshalTo(), `(dAtA []byte) (int, error) {`)
|
||||
p.P(`size := m.SizeVT()`)
|
||||
p.P(`return m.`, p.methodMarshalToSizedBuffer(), `(dAtA[:size])`)
|
||||
p.P(`}`)
|
||||
p.P(``)
|
||||
p.P(`func (m *`, ccTypeName, `) `, p.methodMarshalToSizedBuffer(), `(dAtA []byte) (int, error) {`)
|
||||
p.P(`if m == nil {`)
|
||||
p.P(`return 0, nil`)
|
||||
p.P(`}`)
|
||||
p.P(`i := len(dAtA)`)
|
||||
p.P(`_ = i`)
|
||||
p.P(`var l int`)
|
||||
p.P(`_ = l`)
|
||||
|
||||
if !p.Wrapper() {
|
||||
p.P(`if m.unknownFields != nil {`)
|
||||
p.P(`i -= len(m.unknownFields)`)
|
||||
p.P(`copy(dAtA[i:], m.unknownFields)`)
|
||||
p.P(`}`)
|
||||
}
|
||||
|
||||
sort.Slice(message.Fields, func(i, j int) bool {
|
||||
return message.Fields[i].Desc.Number() < message.Fields[j].Desc.Number()
|
||||
})
|
||||
|
||||
marshalForwardOneOf := func(varname ...any) {
|
||||
l := []any{`size, err := `}
|
||||
l = append(l, varname...)
|
||||
l = append(l, `.`, p.methodMarshalToSizedBuffer(), `(dAtA[:i])`)
|
||||
p.P(l...)
|
||||
p.P(`if err != nil {`)
|
||||
p.P(`return 0, err`)
|
||||
p.P(`}`)
|
||||
p.P(`i -= size`)
|
||||
}
|
||||
|
||||
if p.strict {
|
||||
for i := len(message.Fields) - 1; i >= 0; i-- {
|
||||
field := message.Fields[i]
|
||||
oneof := field.Oneof != nil && !field.Oneof.Desc.IsSynthetic()
|
||||
if !oneof {
|
||||
p.field(false, &numGen, field)
|
||||
} else {
|
||||
if p.IsWellKnownType(message) {
|
||||
p.P(`if m, ok := m.`, field.Oneof.GoName, `.(*`, field.GoIdent, `); ok {`)
|
||||
p.P(`msg := ((*`, p.WellKnownFieldMap(field), `)(m))`)
|
||||
} else {
|
||||
p.P(`if msg, ok := m.`, field.Oneof.GoName, `.(*`, field.GoIdent.GoName, `); ok {`)
|
||||
}
|
||||
marshalForwardOneOf("msg")
|
||||
p.P(`}`)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
// To match the wire format of proto.Marshal, oneofs have to be marshaled
|
||||
// before fields. See https://github.com/planetscale/vtprotobuf/pull/22
|
||||
|
||||
oneofs := make(map[string]struct{}, len(message.Fields))
|
||||
for i := len(message.Fields) - 1; i >= 0; i-- {
|
||||
field := message.Fields[i]
|
||||
oneof := field.Oneof != nil && !field.Oneof.Desc.IsSynthetic()
|
||||
if oneof {
|
||||
fieldname := field.Oneof.GoName
|
||||
if _, ok := oneofs[fieldname]; ok {
|
||||
continue
|
||||
}
|
||||
oneofs[fieldname] = struct{}{}
|
||||
if p.IsWellKnownType(message) {
|
||||
p.P(`switch c := m.`, fieldname, `.(type) {`)
|
||||
for _, f := range field.Oneof.Fields {
|
||||
p.P(`case *`, f.GoIdent, `:`)
|
||||
marshalForwardOneOf(`(*`, p.WellKnownFieldMap(f), `)(c)`)
|
||||
}
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(`if vtmsg, ok := m.`, fieldname, `.(interface{`)
|
||||
p.P(p.methodMarshalToSizedBuffer(), ` ([]byte) (int, error)`)
|
||||
p.P(`}); ok {`)
|
||||
marshalForwardOneOf("vtmsg")
|
||||
p.P(`}`)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for i := len(message.Fields) - 1; i >= 0; i-- {
|
||||
field := message.Fields[i]
|
||||
oneof := field.Oneof != nil && !field.Oneof.Desc.IsSynthetic()
|
||||
if !oneof {
|
||||
p.field(false, &numGen, field)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
p.P(`return len(dAtA) - i, nil`)
|
||||
p.P(`}`)
|
||||
p.P()
|
||||
|
||||
// Generate MarshalToVT methods for oneof fields
|
||||
for _, field := range message.Fields {
|
||||
if field.Oneof == nil || field.Oneof.Desc.IsSynthetic() {
|
||||
continue
|
||||
}
|
||||
ccTypeName := field.GoIdent.GoName
|
||||
p.P(`func (m *`, ccTypeName, `) `, p.methodMarshalTo(), `(dAtA []byte) (int, error) {`)
|
||||
p.P(`size := m.SizeVT()`)
|
||||
p.P(`return m.`, p.methodMarshalToSizedBuffer(), `(dAtA[:size])`)
|
||||
p.P(`}`)
|
||||
p.P(``)
|
||||
p.P(`func (m *`, ccTypeName, `) `, p.methodMarshalToSizedBuffer(), `(dAtA []byte) (int, error) {`)
|
||||
p.P(`i := len(dAtA)`)
|
||||
p.field(true, &numGen, field)
|
||||
p.P(`return len(dAtA) - i, nil`)
|
||||
p.P(`}`)
|
||||
}
|
||||
}
|
||||
|
||||
func (p *marshal) reverseListRange(expression ...string) string {
|
||||
exp := strings.Join(expression, "")
|
||||
p.P(`for iNdEx := len(`, exp, `) - 1; iNdEx >= 0; iNdEx-- {`)
|
||||
return exp + `[iNdEx]`
|
||||
}
|
||||
|
||||
func (p *marshal) marshalBackwardSize(varInt bool) {
|
||||
p.P(`if err != nil {`)
|
||||
p.P(`return 0, err`)
|
||||
p.P(`}`)
|
||||
p.P(`i -= size`)
|
||||
if varInt {
|
||||
p.encodeVarint(`size`)
|
||||
}
|
||||
}
|
||||
|
||||
func (p *marshal) marshalBackward(varName string, varInt bool, message *protogen.Message) {
|
||||
switch {
|
||||
case p.IsWellKnownType(message):
|
||||
p.P(`size, err := (*`, p.WellKnownTypeMap(message), `)(`, varName, `).`, p.methodMarshalToSizedBuffer(), `(dAtA[:i])`)
|
||||
p.marshalBackwardSize(varInt)
|
||||
|
||||
case p.IsLocalMessage(message):
|
||||
p.P(`size, err := `, varName, `.`, p.methodMarshalToSizedBuffer(), `(dAtA[:i])`)
|
||||
p.marshalBackwardSize(varInt)
|
||||
|
||||
default:
|
||||
p.P(`if vtmsg, ok := interface{}(`, varName, `).(interface{`)
|
||||
p.P(p.methodMarshalToSizedBuffer(), `([]byte) (int, error)`)
|
||||
p.P(`}); ok{`)
|
||||
p.P(`size, err := vtmsg.`, p.methodMarshalToSizedBuffer(), `(dAtA[:i])`)
|
||||
p.marshalBackwardSize(varInt)
|
||||
p.P(`} else {`)
|
||||
p.P(`encoded, err := `, p.Ident(generator.ProtoPkg, "Marshal"), `(`, varName, `)`)
|
||||
p.P(`if err != nil {`)
|
||||
p.P(`return 0, err`)
|
||||
p.P(`}`)
|
||||
p.P(`i -= len(encoded)`)
|
||||
p.P(`copy(dAtA[i:], encoded)`)
|
||||
if varInt {
|
||||
p.encodeVarint(`len(encoded)`)
|
||||
}
|
||||
p.P(`}`)
|
||||
}
|
||||
}
|
||||
105
vendor/github.com/planetscale/vtprotobuf/features/pool/pool.go
generated
vendored
Normal file
105
vendor/github.com/planetscale/vtprotobuf/features/pool/pool.go
generated
vendored
Normal file
@@ -0,0 +1,105 @@
|
||||
package pool
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"google.golang.org/protobuf/compiler/protogen"
|
||||
"google.golang.org/protobuf/reflect/protoreflect"
|
||||
|
||||
"github.com/planetscale/vtprotobuf/generator"
|
||||
)
|
||||
|
||||
func init() {
|
||||
generator.RegisterFeature("pool", func(gen *generator.GeneratedFile) generator.FeatureGenerator {
|
||||
return &pool{GeneratedFile: gen}
|
||||
})
|
||||
}
|
||||
|
||||
type pool struct {
|
||||
*generator.GeneratedFile
|
||||
once bool
|
||||
}
|
||||
|
||||
var _ generator.FeatureGenerator = (*pool)(nil)
|
||||
|
||||
func (p *pool) GenerateFile(file *protogen.File) bool {
|
||||
for _, message := range file.Messages {
|
||||
p.message(message)
|
||||
}
|
||||
return p.once
|
||||
}
|
||||
|
||||
func (p *pool) message(message *protogen.Message) {
|
||||
for _, nested := range message.Messages {
|
||||
p.message(nested)
|
||||
}
|
||||
|
||||
if message.Desc.IsMapEntry() || !p.ShouldPool(message) {
|
||||
return
|
||||
}
|
||||
|
||||
p.once = true
|
||||
ccTypeName := message.GoIdent
|
||||
|
||||
p.P(`var vtprotoPool_`, ccTypeName, ` = `, p.Ident("sync", "Pool"), `{`)
|
||||
p.P(`New: func() interface{} {`)
|
||||
p.P(`return &`, ccTypeName, `{}`)
|
||||
p.P(`},`)
|
||||
p.P(`}`)
|
||||
|
||||
p.P(`func (m *`, ccTypeName, `) ResetVT() {`)
|
||||
p.P(`if m != nil {`)
|
||||
var saved []*protogen.Field
|
||||
for _, field := range message.Fields {
|
||||
fieldName := field.GoName
|
||||
|
||||
if field.Desc.IsList() {
|
||||
switch field.Desc.Kind() {
|
||||
case protoreflect.MessageKind, protoreflect.GroupKind:
|
||||
p.P(`for _, mm := range m.`, fieldName, `{`)
|
||||
if p.ShouldPool(field.Message) {
|
||||
p.P(`mm.ResetVT()`)
|
||||
} else {
|
||||
p.P(`mm.Reset()`)
|
||||
}
|
||||
p.P(`}`)
|
||||
}
|
||||
p.P(fmt.Sprintf("f%d", len(saved)), ` := m.`, fieldName, `[:0]`)
|
||||
saved = append(saved, field)
|
||||
} else if field.Oneof != nil && !field.Oneof.Desc.IsSynthetic() {
|
||||
if p.ShouldPool(field.Message) {
|
||||
p.P(`if oneof, ok := m.`, field.Oneof.GoName, `.(*`, field.GoIdent, `); ok {`)
|
||||
p.P(`oneof.`, fieldName, `.ReturnToVTPool()`)
|
||||
p.P(`}`)
|
||||
}
|
||||
} else {
|
||||
switch field.Desc.Kind() {
|
||||
case protoreflect.MessageKind, protoreflect.GroupKind:
|
||||
if !field.Desc.IsMap() && p.ShouldPool(field.Message) {
|
||||
p.P(`m.`, fieldName, `.ReturnToVTPool()`)
|
||||
}
|
||||
case protoreflect.BytesKind:
|
||||
p.P(fmt.Sprintf("f%d", len(saved)), ` := m.`, fieldName, `[:0]`)
|
||||
saved = append(saved, field)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
p.P(`m.Reset()`)
|
||||
for i, field := range saved {
|
||||
p.P(`m.`, field.GoName, ` = `, fmt.Sprintf("f%d", i))
|
||||
}
|
||||
p.P(`}`)
|
||||
p.P(`}`)
|
||||
|
||||
p.P(`func (m *`, ccTypeName, `) ReturnToVTPool() {`)
|
||||
p.P(`if m != nil {`)
|
||||
p.P(`m.ResetVT()`)
|
||||
p.P(`vtprotoPool_`, ccTypeName, `.Put(m)`)
|
||||
p.P(`}`)
|
||||
p.P(`}`)
|
||||
|
||||
p.P(`func `, ccTypeName, `FromVTPool() *`, ccTypeName, `{`)
|
||||
p.P(`return vtprotoPool_`, ccTypeName, `.Get().(*`, ccTypeName, `)`)
|
||||
p.P(`}`)
|
||||
}
|
||||
348
vendor/github.com/planetscale/vtprotobuf/features/size/size.go
generated
vendored
Normal file
348
vendor/github.com/planetscale/vtprotobuf/features/size/size.go
generated
vendored
Normal file
@@ -0,0 +1,348 @@
|
||||
// Copyright (c) 2021 PlanetScale Inc. All rights reserved.
|
||||
// Copyright (c) 2013, The GoGo Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package size
|
||||
|
||||
import (
|
||||
"strconv"
|
||||
|
||||
"github.com/planetscale/vtprotobuf/generator"
|
||||
"google.golang.org/protobuf/compiler/protogen"
|
||||
"google.golang.org/protobuf/encoding/protowire"
|
||||
"google.golang.org/protobuf/reflect/protoreflect"
|
||||
)
|
||||
|
||||
func init() {
|
||||
generator.RegisterFeature("size", func(gen *generator.GeneratedFile) generator.FeatureGenerator {
|
||||
return &size{GeneratedFile: gen}
|
||||
})
|
||||
}
|
||||
|
||||
type size struct {
|
||||
*generator.GeneratedFile
|
||||
once bool
|
||||
}
|
||||
|
||||
var _ generator.FeatureGenerator = (*size)(nil)
|
||||
|
||||
func (p *size) Name() string {
|
||||
return "size"
|
||||
}
|
||||
|
||||
func (p *size) GenerateFile(file *protogen.File) bool {
|
||||
for _, message := range file.Messages {
|
||||
p.message(message)
|
||||
}
|
||||
|
||||
return p.once
|
||||
}
|
||||
|
||||
func (p *size) messageSize(varName, sizeName string, message *protogen.Message) {
|
||||
switch {
|
||||
case p.IsWellKnownType(message):
|
||||
p.P(`l = (*`, p.WellKnownTypeMap(message), `)(`, varName, `).`, sizeName, `()`)
|
||||
|
||||
case p.IsLocalMessage(message):
|
||||
p.P(`l = `, varName, `.`, sizeName, `()`)
|
||||
|
||||
default:
|
||||
p.P(`if size, ok := interface{}(`, varName, `).(interface{`)
|
||||
p.P(sizeName, `() int`)
|
||||
p.P(`}); ok{`)
|
||||
p.P(`l = size.`, sizeName, `()`)
|
||||
p.P(`} else {`)
|
||||
p.P(`l = `, p.Ident(generator.ProtoPkg, "Size"), `(`, varName, `)`)
|
||||
p.P(`}`)
|
||||
}
|
||||
}
|
||||
|
||||
func (p *size) field(oneof bool, field *protogen.Field, sizeName string) {
|
||||
fieldname := field.GoName
|
||||
nullable := field.Message != nil || (!oneof && field.Desc.HasPresence())
|
||||
repeated := field.Desc.Cardinality() == protoreflect.Repeated
|
||||
if repeated {
|
||||
p.P(`if len(m.`, fieldname, `) > 0 {`)
|
||||
} else if nullable {
|
||||
p.P(`if m.`, fieldname, ` != nil {`)
|
||||
}
|
||||
packed := field.Desc.IsPacked()
|
||||
wireType := generator.ProtoWireType(field.Desc.Kind())
|
||||
fieldNumber := field.Desc.Number()
|
||||
if packed {
|
||||
wireType = protowire.BytesType
|
||||
}
|
||||
key := generator.KeySize(fieldNumber, wireType)
|
||||
switch field.Desc.Kind() {
|
||||
case protoreflect.DoubleKind, protoreflect.Fixed64Kind, protoreflect.Sfixed64Kind:
|
||||
if packed {
|
||||
p.P(`n+=`, strconv.Itoa(key), `+`, p.Helper("SizeOfVarint"), `(uint64(len(m.`, fieldname, `)*8))`, `+len(m.`, fieldname, `)*8`)
|
||||
} else if repeated {
|
||||
p.P(`n+=`, strconv.Itoa(key+8), `*len(m.`, fieldname, `)`)
|
||||
} else if !oneof && !nullable {
|
||||
p.P(`if m.`, fieldname, ` != 0 {`)
|
||||
p.P(`n+=`, strconv.Itoa(key+8))
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(`n+=`, strconv.Itoa(key+8))
|
||||
}
|
||||
case protoreflect.FloatKind, protoreflect.Fixed32Kind, protoreflect.Sfixed32Kind:
|
||||
if packed {
|
||||
p.P(`n+=`, strconv.Itoa(key), `+`, p.Helper("SizeOfVarint"), `(uint64(len(m.`, fieldname, `)*4))`, `+len(m.`, fieldname, `)*4`)
|
||||
} else if repeated {
|
||||
p.P(`n+=`, strconv.Itoa(key+4), `*len(m.`, fieldname, `)`)
|
||||
} else if !oneof && !nullable {
|
||||
p.P(`if m.`, fieldname, ` != 0 {`)
|
||||
p.P(`n+=`, strconv.Itoa(key+4))
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(`n+=`, strconv.Itoa(key+4))
|
||||
}
|
||||
case protoreflect.Int64Kind, protoreflect.Uint64Kind, protoreflect.Uint32Kind, protoreflect.EnumKind, protoreflect.Int32Kind:
|
||||
if packed {
|
||||
p.P(`l = 0`)
|
||||
p.P(`for _, e := range m.`, fieldname, ` {`)
|
||||
p.P(`l+=`, p.Helper("SizeOfVarint"), `(uint64(e))`)
|
||||
p.P(`}`)
|
||||
p.P(`n+=`, strconv.Itoa(key), `+`, p.Helper("SizeOfVarint"), `(uint64(l))+l`)
|
||||
} else if repeated {
|
||||
p.P(`for _, e := range m.`, fieldname, ` {`)
|
||||
p.P(`n+=`, strconv.Itoa(key), `+`, p.Helper("SizeOfVarint"), `(uint64(e))`)
|
||||
p.P(`}`)
|
||||
} else if nullable {
|
||||
p.P(`n+=`, strconv.Itoa(key), `+`, p.Helper("SizeOfVarint"), `(uint64(*m.`, fieldname, `))`)
|
||||
} else if !oneof {
|
||||
p.P(`if m.`, fieldname, ` != 0 {`)
|
||||
p.P(`n+=`, strconv.Itoa(key), `+`, p.Helper("SizeOfVarint"), `(uint64(m.`, fieldname, `))`)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(`n+=`, strconv.Itoa(key), `+`, p.Helper("SizeOfVarint"), `(uint64(m.`, fieldname, `))`)
|
||||
}
|
||||
case protoreflect.BoolKind:
|
||||
if packed {
|
||||
p.P(`n+=`, strconv.Itoa(key), `+`, p.Helper("SizeOfVarint"), `(uint64(len(m.`, fieldname, `)))`, `+len(m.`, fieldname, `)*1`)
|
||||
} else if repeated {
|
||||
p.P(`n+=`, strconv.Itoa(key+1), `*len(m.`, fieldname, `)`)
|
||||
} else if !oneof && !nullable {
|
||||
p.P(`if m.`, fieldname, ` {`)
|
||||
p.P(`n+=`, strconv.Itoa(key+1))
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(`n+=`, strconv.Itoa(key+1))
|
||||
}
|
||||
case protoreflect.StringKind:
|
||||
if repeated {
|
||||
p.P(`for _, s := range m.`, fieldname, ` { `)
|
||||
p.P(`l = len(s)`)
|
||||
p.P(`n+=`, strconv.Itoa(key), `+l+`, p.Helper("SizeOfVarint"), `(uint64(l))`)
|
||||
p.P(`}`)
|
||||
} else if nullable {
|
||||
p.P(`l=len(*m.`, fieldname, `)`)
|
||||
p.P(`n+=`, strconv.Itoa(key), `+l+`, p.Helper("SizeOfVarint"), `(uint64(l))`)
|
||||
} else if !oneof {
|
||||
p.P(`l=len(m.`, fieldname, `)`)
|
||||
p.P(`if l > 0 {`)
|
||||
p.P(`n+=`, strconv.Itoa(key), `+l+`, p.Helper("SizeOfVarint"), `(uint64(l))`)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(`l=len(m.`, fieldname, `)`)
|
||||
p.P(`n+=`, strconv.Itoa(key), `+l+`, p.Helper("SizeOfVarint"), `(uint64(l))`)
|
||||
}
|
||||
case protoreflect.GroupKind:
|
||||
p.messageSize("m."+fieldname, sizeName, field.Message)
|
||||
p.P(`n+=l+`, strconv.Itoa(2*key))
|
||||
case protoreflect.MessageKind:
|
||||
if field.Desc.IsMap() {
|
||||
fieldKeySize := generator.KeySize(field.Desc.Number(), generator.ProtoWireType(field.Desc.Kind()))
|
||||
keyKeySize := generator.KeySize(1, generator.ProtoWireType(field.Message.Fields[0].Desc.Kind()))
|
||||
valueKeySize := generator.KeySize(2, generator.ProtoWireType(field.Message.Fields[1].Desc.Kind()))
|
||||
p.P(`for k, v := range m.`, fieldname, ` { `)
|
||||
p.P(`_ = k`)
|
||||
p.P(`_ = v`)
|
||||
sum := []interface{}{strconv.Itoa(keyKeySize)}
|
||||
|
||||
switch field.Message.Fields[0].Desc.Kind() {
|
||||
case protoreflect.DoubleKind, protoreflect.Fixed64Kind, protoreflect.Sfixed64Kind:
|
||||
sum = append(sum, `8`)
|
||||
case protoreflect.FloatKind, protoreflect.Fixed32Kind, protoreflect.Sfixed32Kind:
|
||||
sum = append(sum, `4`)
|
||||
case protoreflect.Int64Kind, protoreflect.Uint64Kind, protoreflect.Uint32Kind, protoreflect.EnumKind, protoreflect.Int32Kind:
|
||||
sum = append(sum, p.Helper("SizeOfVarint"), `(uint64(k))`)
|
||||
case protoreflect.BoolKind:
|
||||
sum = append(sum, `1`)
|
||||
case protoreflect.StringKind, protoreflect.BytesKind:
|
||||
sum = append(sum, `len(k)`, p.Helper("SizeOfVarint"), `(uint64(len(k)))`)
|
||||
case protoreflect.Sint32Kind, protoreflect.Sint64Kind:
|
||||
sum = append(sum, p.Helper("SizeOfZigzag"), `(uint64(k))`)
|
||||
}
|
||||
|
||||
switch field.Message.Fields[1].Desc.Kind() {
|
||||
case protoreflect.DoubleKind, protoreflect.Fixed64Kind, protoreflect.Sfixed64Kind:
|
||||
sum = append(sum, strconv.Itoa(valueKeySize))
|
||||
sum = append(sum, strconv.Itoa(8))
|
||||
case protoreflect.FloatKind, protoreflect.Fixed32Kind, protoreflect.Sfixed32Kind:
|
||||
sum = append(sum, strconv.Itoa(valueKeySize))
|
||||
sum = append(sum, strconv.Itoa(4))
|
||||
case protoreflect.Int64Kind, protoreflect.Uint64Kind, protoreflect.Uint32Kind, protoreflect.EnumKind, protoreflect.Int32Kind:
|
||||
sum = append(sum, strconv.Itoa(valueKeySize))
|
||||
sum = append(sum, p.Helper("SizeOfVarint"), `(uint64(v))`)
|
||||
case protoreflect.BoolKind:
|
||||
sum = append(sum, strconv.Itoa(valueKeySize))
|
||||
sum = append(sum, `1`)
|
||||
case protoreflect.StringKind:
|
||||
sum = append(sum, strconv.Itoa(valueKeySize))
|
||||
sum = append(sum, `len(v)`, p.Helper("SizeOfVarint"), `(uint64(len(v)))`)
|
||||
case protoreflect.BytesKind:
|
||||
p.P(`l = `, strconv.Itoa(valueKeySize), ` + len(v)+`, p.Helper("SizeOfVarint"), `(uint64(len(v)))`)
|
||||
sum = append(sum, `l`)
|
||||
case protoreflect.Sint32Kind, protoreflect.Sint64Kind:
|
||||
sum = append(sum, strconv.Itoa(valueKeySize))
|
||||
sum = append(sum, p.Helper("SizeOfZigzag"), `(uint64(v))`)
|
||||
case protoreflect.MessageKind:
|
||||
p.P(`l = 0`)
|
||||
p.P(`if v != nil {`)
|
||||
p.messageSize("v", sizeName, field.Message.Fields[1].Message)
|
||||
p.P(`}`)
|
||||
p.P(`l += `, strconv.Itoa(valueKeySize), ` + `, p.Helper("SizeOfVarint"), `(uint64(l))`)
|
||||
sum = append(sum, `l`)
|
||||
}
|
||||
mapEntrySize := []interface{}{"mapEntrySize := "}
|
||||
for i, elt := range sum {
|
||||
mapEntrySize = append(mapEntrySize, elt)
|
||||
// if elt is not a string, then it is a helper function call
|
||||
if _, ok := elt.(string); ok && i < len(sum)-1 {
|
||||
mapEntrySize = append(mapEntrySize, "+")
|
||||
}
|
||||
}
|
||||
p.P(mapEntrySize...)
|
||||
p.P(`n+=mapEntrySize+`, fieldKeySize, `+`, p.Helper("SizeOfVarint"), `(uint64(mapEntrySize))`)
|
||||
p.P(`}`)
|
||||
} else if field.Desc.IsList() {
|
||||
p.P(`for _, e := range m.`, fieldname, ` { `)
|
||||
p.messageSize("e", sizeName, field.Message)
|
||||
p.P(`n+=`, strconv.Itoa(key), `+l+`, p.Helper("SizeOfVarint"), `(uint64(l))`)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.messageSize("m."+fieldname, sizeName, field.Message)
|
||||
p.P(`n+=`, strconv.Itoa(key), `+l+`, p.Helper("SizeOfVarint"), `(uint64(l))`)
|
||||
}
|
||||
case protoreflect.BytesKind:
|
||||
if repeated {
|
||||
p.P(`for _, b := range m.`, fieldname, ` { `)
|
||||
p.P(`l = len(b)`)
|
||||
p.P(`n+=`, strconv.Itoa(key), `+l+`, p.Helper("SizeOfVarint"), `(uint64(l))`)
|
||||
p.P(`}`)
|
||||
} else if !oneof && !field.Desc.HasPresence() {
|
||||
p.P(`l=len(m.`, fieldname, `)`)
|
||||
p.P(`if l > 0 {`)
|
||||
p.P(`n+=`, strconv.Itoa(key), `+l+`, p.Helper("SizeOfVarint"), `(uint64(l))`)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(`l=len(m.`, fieldname, `)`)
|
||||
p.P(`n+=`, strconv.Itoa(key), `+l+`, p.Helper("SizeOfVarint"), `(uint64(l))`)
|
||||
}
|
||||
case protoreflect.Sint32Kind, protoreflect.Sint64Kind:
|
||||
if packed {
|
||||
p.P(`l = 0`)
|
||||
p.P(`for _, e := range m.`, fieldname, ` {`)
|
||||
p.P(`l+=`, p.Helper("SizeOfZigzag"), `(uint64(e))`)
|
||||
p.P(`}`)
|
||||
p.P(`n+=`, strconv.Itoa(key), `+`, p.Helper("SizeOfVarint"), `(uint64(l))+l`)
|
||||
} else if repeated {
|
||||
p.P(`for _, e := range m.`, fieldname, ` {`)
|
||||
p.P(`n+=`, strconv.Itoa(key), `+`, p.Helper("SizeOfZigzag"), `(uint64(e))`)
|
||||
p.P(`}`)
|
||||
} else if nullable {
|
||||
p.P(`n+=`, strconv.Itoa(key), `+`, p.Helper("SizeOfZigzag"), `(uint64(*m.`, fieldname, `))`)
|
||||
} else if !oneof {
|
||||
p.P(`if m.`, fieldname, ` != 0 {`)
|
||||
p.P(`n+=`, strconv.Itoa(key), `+`, p.Helper("SizeOfZigzag"), `(uint64(m.`, fieldname, `))`)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(`n+=`, strconv.Itoa(key), `+`, p.Helper("SizeOfZigzag"), `(uint64(m.`, fieldname, `))`)
|
||||
}
|
||||
default:
|
||||
panic("not implemented")
|
||||
}
|
||||
// Empty protobufs should emit a message or compatibility with Golang protobuf;
|
||||
// See https://github.com/planetscale/vtprotobuf/issues/61
|
||||
// Size is always 3 so just hardcode that here
|
||||
if oneof && field.Desc.Kind() == protoreflect.MessageKind && !field.Desc.IsMap() && !field.Desc.IsList() {
|
||||
p.P("} else { n += 3 }")
|
||||
} else if repeated || nullable {
|
||||
p.P(`}`)
|
||||
}
|
||||
}
|
||||
|
||||
func (p *size) message(message *protogen.Message) {
|
||||
for _, nested := range message.Messages {
|
||||
p.message(nested)
|
||||
}
|
||||
|
||||
if message.Desc.IsMapEntry() {
|
||||
return
|
||||
}
|
||||
|
||||
p.once = true
|
||||
|
||||
sizeName := "SizeVT"
|
||||
ccTypeName := message.GoIdent.GoName
|
||||
|
||||
p.P(`func (m *`, ccTypeName, `) `, sizeName, `() (n int) {`)
|
||||
p.P(`if m == nil {`)
|
||||
p.P(`return 0`)
|
||||
p.P(`}`)
|
||||
p.P(`var l int`)
|
||||
p.P(`_ = l`)
|
||||
oneofs := make(map[string]struct{})
|
||||
for _, field := range message.Fields {
|
||||
oneof := field.Oneof != nil && !field.Oneof.Desc.IsSynthetic()
|
||||
if !oneof {
|
||||
p.field(false, field, sizeName)
|
||||
} else {
|
||||
fieldname := field.Oneof.GoName
|
||||
if _, ok := oneofs[fieldname]; ok {
|
||||
continue
|
||||
}
|
||||
oneofs[fieldname] = struct{}{}
|
||||
if p.IsWellKnownType(message) {
|
||||
p.P(`switch c := m.`, fieldname, `.(type) {`)
|
||||
for _, f := range field.Oneof.Fields {
|
||||
p.P(`case *`, f.GoIdent, `:`)
|
||||
p.P(`n += (*`, p.WellKnownFieldMap(f), `)(c).`, sizeName, `()`)
|
||||
}
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(`if vtmsg, ok := m.`, fieldname, `.(interface{ SizeVT() int }); ok {`)
|
||||
p.P(`n+=vtmsg.`, sizeName, `()`)
|
||||
p.P(`}`)
|
||||
}
|
||||
}
|
||||
}
|
||||
if !p.Wrapper() {
|
||||
p.P(`n+=len(m.unknownFields)`)
|
||||
}
|
||||
p.P(`return n`)
|
||||
p.P(`}`)
|
||||
p.P()
|
||||
|
||||
for _, field := range message.Fields {
|
||||
if field.Oneof == nil || field.Oneof.Desc.IsSynthetic() {
|
||||
continue
|
||||
}
|
||||
ccTypeName := field.GoIdent
|
||||
if p.IsWellKnownType(message) && p.IsLocalMessage(message) {
|
||||
ccTypeName.GoImportPath = ""
|
||||
}
|
||||
p.P(`func (m *`, ccTypeName, `) `, sizeName, `() (n int) {`)
|
||||
p.P(`if m == nil {`)
|
||||
p.P(`return 0`)
|
||||
p.P(`}`)
|
||||
p.P(`var l int`)
|
||||
p.P(`_ = l`)
|
||||
p.field(true, field, sizeName)
|
||||
p.P(`return n`)
|
||||
p.P(`}`)
|
||||
}
|
||||
}
|
||||
872
vendor/github.com/planetscale/vtprotobuf/features/unmarshal/unmarshal.go
generated
vendored
Normal file
872
vendor/github.com/planetscale/vtprotobuf/features/unmarshal/unmarshal.go
generated
vendored
Normal file
@@ -0,0 +1,872 @@
|
||||
// Copyright (c) 2021 PlanetScale Inc. All rights reserved.
|
||||
// Copyright (c) 2013, The GoGo Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package unmarshal
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
"google.golang.org/protobuf/compiler/protogen"
|
||||
"google.golang.org/protobuf/encoding/protowire"
|
||||
"google.golang.org/protobuf/reflect/protoreflect"
|
||||
|
||||
"github.com/planetscale/vtprotobuf/generator"
|
||||
)
|
||||
|
||||
func init() {
|
||||
generator.RegisterFeature("unmarshal", func(gen *generator.GeneratedFile) generator.FeatureGenerator {
|
||||
return &unmarshal{GeneratedFile: gen}
|
||||
})
|
||||
|
||||
generator.RegisterFeature("unmarshal_unsafe", func(gen *generator.GeneratedFile) generator.FeatureGenerator {
|
||||
return &unmarshal{GeneratedFile: gen, unsafe: true}
|
||||
})
|
||||
}
|
||||
|
||||
type unmarshal struct {
|
||||
*generator.GeneratedFile
|
||||
unsafe bool
|
||||
once bool
|
||||
}
|
||||
|
||||
var _ generator.FeatureGenerator = (*unmarshal)(nil)
|
||||
|
||||
func (p *unmarshal) GenerateFile(file *protogen.File) bool {
|
||||
proto3 := file.Desc.Syntax() == protoreflect.Proto3
|
||||
for _, message := range file.Messages {
|
||||
p.message(proto3, message)
|
||||
}
|
||||
|
||||
return p.once
|
||||
}
|
||||
|
||||
func (p *unmarshal) methodUnmarshal() string {
|
||||
if p.unsafe {
|
||||
return "UnmarshalVTUnsafe"
|
||||
}
|
||||
return "UnmarshalVT"
|
||||
}
|
||||
|
||||
func (p *unmarshal) decodeMessage(varName, buf string, message *protogen.Message) {
|
||||
switch {
|
||||
case p.IsWellKnownType(message):
|
||||
p.P(`if err := (*`, p.WellKnownTypeMap(message), `)(`, varName, `).`, p.methodUnmarshal(), `(`, buf, `); err != nil {`)
|
||||
p.P(`return err`)
|
||||
p.P(`}`)
|
||||
|
||||
case p.IsLocalMessage(message):
|
||||
p.P(`if err := `, varName, `.`, p.methodUnmarshal(), `(`, buf, `); err != nil {`)
|
||||
p.P(`return err`)
|
||||
p.P(`}`)
|
||||
|
||||
default:
|
||||
p.P(`if unmarshal, ok := interface{}(`, varName, `).(interface{`)
|
||||
p.P(p.methodUnmarshal(), `([]byte) error`)
|
||||
p.P(`}); ok{`)
|
||||
p.P(`if err := unmarshal.`, p.methodUnmarshal(), `(`, buf, `); err != nil {`)
|
||||
p.P(`return err`)
|
||||
p.P(`}`)
|
||||
p.P(`} else {`)
|
||||
p.P(`if err := `, p.Ident(generator.ProtoPkg, "Unmarshal"), `(`, buf, `, `, varName, `); err != nil {`)
|
||||
p.P(`return err`)
|
||||
p.P(`}`)
|
||||
p.P(`}`)
|
||||
}
|
||||
}
|
||||
|
||||
func (p *unmarshal) decodeVarint(varName string, typName string) {
|
||||
p.P(`for shift := uint(0); ; shift += 7 {`)
|
||||
p.P(`if shift >= 64 {`)
|
||||
p.P(`return `, p.Helper("ErrIntOverflow"))
|
||||
p.P(`}`)
|
||||
p.P(`if iNdEx >= l {`)
|
||||
p.P(`return `, p.Ident("io", `ErrUnexpectedEOF`))
|
||||
p.P(`}`)
|
||||
p.P(`b := dAtA[iNdEx]`)
|
||||
p.P(`iNdEx++`)
|
||||
p.P(varName, ` |= `, typName, `(b&0x7F) << shift`)
|
||||
p.P(`if b < 0x80 {`)
|
||||
p.P(`break`)
|
||||
p.P(`}`)
|
||||
p.P(`}`)
|
||||
}
|
||||
|
||||
func (p *unmarshal) decodeFixed32(varName string, typeName string) {
|
||||
p.P(`if (iNdEx+4) > l {`)
|
||||
p.P(`return `, p.Ident("io", `ErrUnexpectedEOF`))
|
||||
p.P(`}`)
|
||||
p.P(varName, ` = `, typeName, `(`, p.Ident("encoding/binary", "LittleEndian"), `.Uint32(dAtA[iNdEx:]))`)
|
||||
p.P(`iNdEx += 4`)
|
||||
}
|
||||
|
||||
func (p *unmarshal) decodeFixed64(varName string, typeName string) {
|
||||
p.P(`if (iNdEx+8) > l {`)
|
||||
p.P(`return `, p.Ident("io", `ErrUnexpectedEOF`))
|
||||
p.P(`}`)
|
||||
p.P(varName, ` = `, typeName, `(`, p.Ident("encoding/binary", "LittleEndian"), `.Uint64(dAtA[iNdEx:]))`)
|
||||
p.P(`iNdEx += 8`)
|
||||
}
|
||||
|
||||
func (p *unmarshal) declareMapField(varName string, nullable bool, field *protogen.Field) {
|
||||
switch field.Desc.Kind() {
|
||||
case protoreflect.DoubleKind:
|
||||
p.P(`var `, varName, ` float64`)
|
||||
case protoreflect.FloatKind:
|
||||
p.P(`var `, varName, ` float32`)
|
||||
case protoreflect.Int64Kind:
|
||||
p.P(`var `, varName, ` int64`)
|
||||
case protoreflect.Uint64Kind:
|
||||
p.P(`var `, varName, ` uint64`)
|
||||
case protoreflect.Int32Kind:
|
||||
p.P(`var `, varName, ` int32`)
|
||||
case protoreflect.Fixed64Kind:
|
||||
p.P(`var `, varName, ` uint64`)
|
||||
case protoreflect.Fixed32Kind:
|
||||
p.P(`var `, varName, ` uint32`)
|
||||
case protoreflect.BoolKind:
|
||||
p.P(`var `, varName, ` bool`)
|
||||
case protoreflect.StringKind:
|
||||
p.P(`var `, varName, ` `, field.GoIdent)
|
||||
case protoreflect.MessageKind:
|
||||
msgname := field.GoIdent
|
||||
if nullable {
|
||||
p.P(`var `, varName, ` *`, msgname)
|
||||
} else {
|
||||
p.P(varName, ` := &`, msgname, `{}`)
|
||||
}
|
||||
case protoreflect.BytesKind:
|
||||
p.P(varName, ` := []byte{}`)
|
||||
case protoreflect.Uint32Kind:
|
||||
p.P(`var `, varName, ` uint32`)
|
||||
case protoreflect.EnumKind:
|
||||
p.P(`var `, varName, ` `, field.GoIdent)
|
||||
case protoreflect.Sfixed32Kind:
|
||||
p.P(`var `, varName, ` int32`)
|
||||
case protoreflect.Sfixed64Kind:
|
||||
p.P(`var `, varName, ` int64`)
|
||||
case protoreflect.Sint32Kind:
|
||||
p.P(`var `, varName, ` int32`)
|
||||
case protoreflect.Sint64Kind:
|
||||
p.P(`var `, varName, ` int64`)
|
||||
}
|
||||
}
|
||||
|
||||
func (p *unmarshal) mapField(varName string, field *protogen.Field) {
|
||||
switch field.Desc.Kind() {
|
||||
case protoreflect.DoubleKind:
|
||||
p.P(`var `, varName, `temp uint64`)
|
||||
p.decodeFixed64(varName+"temp", "uint64")
|
||||
p.P(varName, ` = `, p.Ident("math", "Float64frombits"), `(`, varName, `temp)`)
|
||||
case protoreflect.FloatKind:
|
||||
p.P(`var `, varName, `temp uint32`)
|
||||
p.decodeFixed32(varName+"temp", "uint32")
|
||||
p.P(varName, ` = `, p.Ident("math", "Float32frombits"), `(`, varName, `temp)`)
|
||||
case protoreflect.Int64Kind:
|
||||
p.decodeVarint(varName, "int64")
|
||||
case protoreflect.Uint64Kind:
|
||||
p.decodeVarint(varName, "uint64")
|
||||
case protoreflect.Int32Kind:
|
||||
p.decodeVarint(varName, "int32")
|
||||
case protoreflect.Fixed64Kind:
|
||||
p.decodeFixed64(varName, "uint64")
|
||||
case protoreflect.Fixed32Kind:
|
||||
p.decodeFixed32(varName, "uint32")
|
||||
case protoreflect.BoolKind:
|
||||
p.P(`var `, varName, `temp int`)
|
||||
p.decodeVarint(varName+"temp", "int")
|
||||
p.P(varName, ` = bool(`, varName, `temp != 0)`)
|
||||
case protoreflect.StringKind:
|
||||
p.P(`var stringLen`, varName, ` uint64`)
|
||||
p.decodeVarint("stringLen"+varName, "uint64")
|
||||
p.P(`intStringLen`, varName, ` := int(stringLen`, varName, `)`)
|
||||
p.P(`if intStringLen`, varName, ` < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`postStringIndex`, varName, ` := iNdEx + intStringLen`, varName)
|
||||
p.P(`if postStringIndex`, varName, ` < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`if postStringIndex`, varName, ` > l {`)
|
||||
p.P(`return `, p.Ident("io", `ErrUnexpectedEOF`))
|
||||
p.P(`}`)
|
||||
if p.unsafe {
|
||||
p.P(`if intStringLen`, varName, ` == 0 {`)
|
||||
p.P(varName, ` = ""`)
|
||||
p.P(`} else {`)
|
||||
p.P(varName, ` = `, p.Ident("unsafe", `String`), `(&dAtA[iNdEx], intStringLen`, varName, `)`)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(varName, ` = `, "string", `(dAtA[iNdEx:postStringIndex`, varName, `])`)
|
||||
}
|
||||
p.P(`iNdEx = postStringIndex`, varName)
|
||||
case protoreflect.MessageKind:
|
||||
p.P(`var mapmsglen int`)
|
||||
p.decodeVarint("mapmsglen", "int")
|
||||
p.P(`if mapmsglen < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`postmsgIndex := iNdEx + mapmsglen`)
|
||||
p.P(`if postmsgIndex < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`if postmsgIndex > l {`)
|
||||
p.P(`return `, p.Ident("io", `ErrUnexpectedEOF`))
|
||||
p.P(`}`)
|
||||
buf := `dAtA[iNdEx:postmsgIndex]`
|
||||
p.P(varName, ` = &`, p.noStarOrSliceType(field), `{}`)
|
||||
p.decodeMessage(varName, buf, field.Message)
|
||||
p.P(`iNdEx = postmsgIndex`)
|
||||
case protoreflect.BytesKind:
|
||||
p.P(`var mapbyteLen uint64`)
|
||||
p.decodeVarint("mapbyteLen", "uint64")
|
||||
p.P(`intMapbyteLen := int(mapbyteLen)`)
|
||||
p.P(`if intMapbyteLen < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`postbytesIndex := iNdEx + intMapbyteLen`)
|
||||
p.P(`if postbytesIndex < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`if postbytesIndex > l {`)
|
||||
p.P(`return `, p.Ident("io", `ErrUnexpectedEOF`))
|
||||
p.P(`}`)
|
||||
if p.unsafe {
|
||||
p.P(varName, ` = dAtA[iNdEx:postbytesIndex]`)
|
||||
} else {
|
||||
p.P(varName, ` = make([]byte, mapbyteLen)`)
|
||||
p.P(`copy(`, varName, `, dAtA[iNdEx:postbytesIndex])`)
|
||||
}
|
||||
p.P(`iNdEx = postbytesIndex`)
|
||||
case protoreflect.Uint32Kind:
|
||||
p.decodeVarint(varName, "uint32")
|
||||
case protoreflect.EnumKind:
|
||||
goTypV, _ := p.FieldGoType(field)
|
||||
p.decodeVarint(varName, goTypV)
|
||||
case protoreflect.Sfixed32Kind:
|
||||
p.decodeFixed32(varName, "int32")
|
||||
case protoreflect.Sfixed64Kind:
|
||||
p.decodeFixed64(varName, "int64")
|
||||
case protoreflect.Sint32Kind:
|
||||
p.P(`var `, varName, `temp int32`)
|
||||
p.decodeVarint(varName+"temp", "int32")
|
||||
p.P(varName, `temp = int32((uint32(`, varName, `temp) >> 1) ^ uint32(((`, varName, `temp&1)<<31)>>31))`)
|
||||
p.P(varName, ` = int32(`, varName, `temp)`)
|
||||
case protoreflect.Sint64Kind:
|
||||
p.P(`var `, varName, `temp uint64`)
|
||||
p.decodeVarint(varName+"temp", "uint64")
|
||||
p.P(varName, `temp = (`, varName, `temp >> 1) ^ uint64((int64(`, varName, `temp&1)<<63)>>63)`)
|
||||
p.P(varName, ` = int64(`, varName, `temp)`)
|
||||
}
|
||||
}
|
||||
|
||||
func (p *unmarshal) noStarOrSliceType(field *protogen.Field) string {
|
||||
typ, _ := p.FieldGoType(field)
|
||||
if typ[0] == '[' && typ[1] == ']' {
|
||||
typ = typ[2:]
|
||||
}
|
||||
if typ[0] == '*' {
|
||||
typ = typ[1:]
|
||||
}
|
||||
return typ
|
||||
}
|
||||
|
||||
func (p *unmarshal) fieldItem(field *protogen.Field, fieldname string, message *protogen.Message, proto3 bool) {
|
||||
repeated := field.Desc.Cardinality() == protoreflect.Repeated
|
||||
typ := p.noStarOrSliceType(field)
|
||||
oneof := field.Oneof != nil && !field.Oneof.Desc.IsSynthetic()
|
||||
nullable := field.Oneof != nil && field.Oneof.Desc.IsSynthetic()
|
||||
|
||||
switch field.Desc.Kind() {
|
||||
case protoreflect.DoubleKind:
|
||||
p.P(`var v uint64`)
|
||||
p.decodeFixed64("v", "uint64")
|
||||
if oneof {
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, `{`, field.GoName, ": ", typ, "(", p.Ident("math", `Float64frombits`), `(v))}`)
|
||||
} else if repeated {
|
||||
p.P(`v2 := `, typ, "(", p.Ident("math", "Float64frombits"), `(v))`)
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v2)`)
|
||||
} else if proto3 && !nullable {
|
||||
p.P(`m.`, fieldname, ` = `, typ, "(", p.Ident("math", "Float64frombits"), `(v))`)
|
||||
} else {
|
||||
p.P(`v2 := `, typ, "(", p.Ident("math", "Float64frombits"), `(v))`)
|
||||
p.P(`m.`, fieldname, ` = &v2`)
|
||||
}
|
||||
case protoreflect.FloatKind:
|
||||
p.P(`var v uint32`)
|
||||
p.decodeFixed32("v", "uint32")
|
||||
if oneof {
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, `{`, field.GoName, ": ", typ, "(", p.Ident("math", "Float32frombits"), `(v))}`)
|
||||
} else if repeated {
|
||||
p.P(`v2 := `, typ, "(", p.Ident("math", "Float32frombits"), `(v))`)
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v2)`)
|
||||
} else if proto3 && !nullable {
|
||||
p.P(`m.`, fieldname, ` = `, typ, "(", p.Ident("math", "Float32frombits"), `(v))`)
|
||||
} else {
|
||||
p.P(`v2 := `, typ, "(", p.Ident("math", "Float32frombits"), `(v))`)
|
||||
p.P(`m.`, fieldname, ` = &v2`)
|
||||
}
|
||||
case protoreflect.Int64Kind:
|
||||
if oneof {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, "{", field.GoName, `: v}`)
|
||||
} else if repeated {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
|
||||
} else if proto3 && !nullable {
|
||||
p.P(`m.`, fieldname, ` = 0`)
|
||||
p.decodeVarint("m."+fieldname, typ)
|
||||
} else {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &v`)
|
||||
}
|
||||
case protoreflect.Uint64Kind:
|
||||
if oneof {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, "{", field.GoName, `: v}`)
|
||||
} else if repeated {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
|
||||
} else if proto3 && !nullable {
|
||||
p.P(`m.`, fieldname, ` = 0`)
|
||||
p.decodeVarint("m."+fieldname, typ)
|
||||
} else {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &v`)
|
||||
}
|
||||
case protoreflect.Int32Kind:
|
||||
if oneof {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, "{", field.GoName, `: v}`)
|
||||
} else if repeated {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
|
||||
} else if proto3 && !nullable {
|
||||
p.P(`m.`, fieldname, ` = 0`)
|
||||
p.decodeVarint("m."+fieldname, typ)
|
||||
} else {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &v`)
|
||||
}
|
||||
case protoreflect.Fixed64Kind:
|
||||
if oneof {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeFixed64("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, "{", field.GoName, `: v}`)
|
||||
} else if repeated {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeFixed64("v", typ)
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
|
||||
} else if proto3 && !nullable {
|
||||
p.P(`m.`, fieldname, ` = 0`)
|
||||
p.decodeFixed64("m."+fieldname, typ)
|
||||
} else {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeFixed64("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &v`)
|
||||
}
|
||||
case protoreflect.Fixed32Kind:
|
||||
if oneof {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeFixed32("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, "{", field.GoName, `: v}`)
|
||||
} else if repeated {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeFixed32("v", typ)
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
|
||||
} else if proto3 && !nullable {
|
||||
p.P(`m.`, fieldname, ` = 0`)
|
||||
p.decodeFixed32("m."+fieldname, typ)
|
||||
} else {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeFixed32("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &v`)
|
||||
}
|
||||
case protoreflect.BoolKind:
|
||||
p.P(`var v int`)
|
||||
p.decodeVarint("v", "int")
|
||||
if oneof {
|
||||
p.P(`b := `, typ, `(v != 0)`)
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, "{", field.GoName, `: b}`)
|
||||
} else if repeated {
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, `, typ, `(v != 0))`)
|
||||
} else if proto3 && !nullable {
|
||||
p.P(`m.`, fieldname, ` = `, typ, `(v != 0)`)
|
||||
} else {
|
||||
p.P(`b := `, typ, `(v != 0)`)
|
||||
p.P(`m.`, fieldname, ` = &b`)
|
||||
}
|
||||
case protoreflect.StringKind:
|
||||
p.P(`var stringLen uint64`)
|
||||
p.decodeVarint("stringLen", "uint64")
|
||||
p.P(`intStringLen := int(stringLen)`)
|
||||
p.P(`if intStringLen < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`postIndex := iNdEx + intStringLen`)
|
||||
p.P(`if postIndex < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`if postIndex > l {`)
|
||||
p.P(`return `, p.Ident("io", `ErrUnexpectedEOF`))
|
||||
p.P(`}`)
|
||||
str := "string(dAtA[iNdEx:postIndex])"
|
||||
if p.unsafe {
|
||||
str = "stringValue"
|
||||
p.P(`var stringValue string`)
|
||||
p.P(`if intStringLen > 0 {`)
|
||||
p.P(`stringValue = `, p.Ident("unsafe", `String`), `(&dAtA[iNdEx], intStringLen)`)
|
||||
p.P(`}`)
|
||||
}
|
||||
if oneof {
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, `{`, field.GoName, ": ", str, `}`)
|
||||
} else if repeated {
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, `, str, `)`)
|
||||
} else if proto3 && !nullable {
|
||||
p.P(`m.`, fieldname, ` = `, str)
|
||||
} else {
|
||||
p.P(`s := `, str)
|
||||
p.P(`m.`, fieldname, ` = &s`)
|
||||
}
|
||||
p.P(`iNdEx = postIndex`)
|
||||
case protoreflect.GroupKind:
|
||||
p.P(`groupStart := iNdEx`)
|
||||
p.P(`for {`)
|
||||
p.P(`maybeGroupEnd := iNdEx`)
|
||||
p.P(`var groupFieldWire uint64`)
|
||||
p.decodeVarint("groupFieldWire", "uint64")
|
||||
p.P(`groupWireType := int(wire & 0x7)`)
|
||||
p.P(`if groupWireType == `, strconv.Itoa(int(protowire.EndGroupType)), `{`)
|
||||
p.decodeMessage("m."+fieldname, "dAtA[groupStart:maybeGroupEnd]", field.Message)
|
||||
p.P(`break`)
|
||||
p.P(`}`)
|
||||
p.P(`skippy, err := `, p.Helper("Skip"), `(dAtA[iNdEx:])`)
|
||||
p.P(`if err != nil {`)
|
||||
p.P(`return err`)
|
||||
p.P(`}`)
|
||||
p.P(`if (skippy < 0) || (iNdEx + skippy) < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`iNdEx += skippy`)
|
||||
p.P(`}`)
|
||||
case protoreflect.MessageKind:
|
||||
p.P(`var msglen int`)
|
||||
p.decodeVarint("msglen", "int")
|
||||
p.P(`if msglen < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`postIndex := iNdEx + msglen`)
|
||||
p.P(`if postIndex < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`if postIndex > l {`)
|
||||
p.P(`return `, p.Ident("io", `ErrUnexpectedEOF`))
|
||||
p.P(`}`)
|
||||
if oneof {
|
||||
buf := `dAtA[iNdEx:postIndex]`
|
||||
msgname := p.noStarOrSliceType(field)
|
||||
p.P(`if oneof, ok := m.`, fieldname, `.(*`, field.GoIdent, `); ok {`)
|
||||
p.decodeMessage("oneof."+field.GoName, buf, field.Message)
|
||||
p.P(`} else {`)
|
||||
if p.ShouldPool(message) && p.ShouldPool(field.Message) {
|
||||
p.P(`v := `, msgname, `FromVTPool()`)
|
||||
} else {
|
||||
p.P(`v := &`, msgname, `{}`)
|
||||
}
|
||||
p.decodeMessage("v", buf, field.Message)
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, "{", field.GoName, `: v}`)
|
||||
p.P(`}`)
|
||||
} else if field.Desc.IsMap() {
|
||||
goTyp, _ := p.FieldGoType(field)
|
||||
goTypK, _ := p.FieldGoType(field.Message.Fields[0])
|
||||
goTypV, _ := p.FieldGoType(field.Message.Fields[1])
|
||||
|
||||
p.P(`if m.`, fieldname, ` == nil {`)
|
||||
p.P(`m.`, fieldname, ` = make(`, goTyp, `)`)
|
||||
p.P(`}`)
|
||||
|
||||
p.P("var mapkey ", goTypK)
|
||||
p.P("var mapvalue ", goTypV)
|
||||
p.P(`for iNdEx < postIndex {`)
|
||||
|
||||
p.P(`entryPreIndex := iNdEx`)
|
||||
p.P(`var wire uint64`)
|
||||
p.decodeVarint("wire", "uint64")
|
||||
p.P(`fieldNum := int32(wire >> 3)`)
|
||||
|
||||
p.P(`if fieldNum == 1 {`)
|
||||
p.mapField("mapkey", field.Message.Fields[0])
|
||||
p.P(`} else if fieldNum == 2 {`)
|
||||
p.mapField("mapvalue", field.Message.Fields[1])
|
||||
p.P(`} else {`)
|
||||
p.P(`iNdEx = entryPreIndex`)
|
||||
p.P(`skippy, err := `, p.Helper("Skip"), `(dAtA[iNdEx:])`)
|
||||
p.P(`if err != nil {`)
|
||||
p.P(`return err`)
|
||||
p.P(`}`)
|
||||
p.P(`if (skippy < 0) || (iNdEx + skippy) < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`if (iNdEx + skippy) > postIndex {`)
|
||||
p.P(`return `, p.Ident("io", `ErrUnexpectedEOF`))
|
||||
p.P(`}`)
|
||||
p.P(`iNdEx += skippy`)
|
||||
p.P(`}`)
|
||||
p.P(`}`)
|
||||
p.P(`m.`, fieldname, `[mapkey] = mapvalue`)
|
||||
} else if repeated {
|
||||
if p.ShouldPool(message) {
|
||||
p.P(`if len(m.`, fieldname, `) == cap(m.`, fieldname, `) {`)
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, &`, field.Message.GoIdent, `{})`)
|
||||
p.P(`} else {`)
|
||||
p.P(`m.`, fieldname, ` = m.`, fieldname, `[:len(m.`, fieldname, `) + 1]`)
|
||||
p.P(`if m.`, fieldname, `[len(m.`, fieldname, `) - 1] == nil {`)
|
||||
p.P(`m.`, fieldname, `[len(m.`, fieldname, `) - 1] = &`, field.Message.GoIdent, `{}`)
|
||||
p.P(`}`)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, &`, field.Message.GoIdent, `{})`)
|
||||
}
|
||||
varname := fmt.Sprintf("m.%s[len(m.%s) - 1]", fieldname, fieldname)
|
||||
buf := `dAtA[iNdEx:postIndex]`
|
||||
p.decodeMessage(varname, buf, field.Message)
|
||||
} else {
|
||||
p.P(`if m.`, fieldname, ` == nil {`)
|
||||
if p.ShouldPool(message) && p.ShouldPool(field.Message) {
|
||||
p.P(`m.`, fieldname, ` = `, field.Message.GoIdent, `FromVTPool()`)
|
||||
} else {
|
||||
p.P(`m.`, fieldname, ` = &`, field.Message.GoIdent, `{}`)
|
||||
}
|
||||
p.P(`}`)
|
||||
p.decodeMessage("m."+fieldname, "dAtA[iNdEx:postIndex]", field.Message)
|
||||
}
|
||||
p.P(`iNdEx = postIndex`)
|
||||
|
||||
case protoreflect.BytesKind:
|
||||
p.P(`var byteLen int`)
|
||||
p.decodeVarint("byteLen", "int")
|
||||
p.P(`if byteLen < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`postIndex := iNdEx + byteLen`)
|
||||
p.P(`if postIndex < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`if postIndex > l {`)
|
||||
p.P(`return `, p.Ident("io", `ErrUnexpectedEOF`))
|
||||
p.P(`}`)
|
||||
if oneof {
|
||||
if p.unsafe {
|
||||
p.P(`v := dAtA[iNdEx:postIndex]`)
|
||||
} else {
|
||||
p.P(`v := make([]byte, postIndex-iNdEx)`)
|
||||
p.P(`copy(v, dAtA[iNdEx:postIndex])`)
|
||||
}
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, "{", field.GoName, `: v}`)
|
||||
} else if repeated {
|
||||
if p.unsafe {
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, dAtA[iNdEx:postIndex])`)
|
||||
} else {
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, make([]byte, postIndex-iNdEx))`)
|
||||
p.P(`copy(m.`, fieldname, `[len(m.`, fieldname, `)-1], dAtA[iNdEx:postIndex])`)
|
||||
}
|
||||
} else {
|
||||
if p.unsafe {
|
||||
p.P(`m.`, fieldname, ` = dAtA[iNdEx:postIndex]`)
|
||||
} else {
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `[:0] , dAtA[iNdEx:postIndex]...)`)
|
||||
p.P(`if m.`, fieldname, ` == nil {`)
|
||||
p.P(`m.`, fieldname, ` = []byte{}`)
|
||||
p.P(`}`)
|
||||
}
|
||||
}
|
||||
p.P(`iNdEx = postIndex`)
|
||||
case protoreflect.Uint32Kind:
|
||||
if oneof {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, "{", field.GoName, `: v}`)
|
||||
} else if repeated {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
|
||||
} else if proto3 && !nullable {
|
||||
p.P(`m.`, fieldname, ` = 0`)
|
||||
p.decodeVarint("m."+fieldname, typ)
|
||||
} else {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &v`)
|
||||
}
|
||||
case protoreflect.EnumKind:
|
||||
if oneof {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, "{", field.GoName, `: v}`)
|
||||
} else if repeated {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
|
||||
} else if proto3 && !nullable {
|
||||
p.P(`m.`, fieldname, ` = 0`)
|
||||
p.decodeVarint("m."+fieldname, typ)
|
||||
} else {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &v`)
|
||||
}
|
||||
case protoreflect.Sfixed32Kind:
|
||||
if oneof {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeFixed32("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, "{", field.GoName, `: v}`)
|
||||
} else if repeated {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeFixed32("v", typ)
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
|
||||
} else if proto3 && !nullable {
|
||||
p.P(`m.`, fieldname, ` = 0`)
|
||||
p.decodeFixed32("m."+fieldname, typ)
|
||||
} else {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeFixed32("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &v`)
|
||||
}
|
||||
case protoreflect.Sfixed64Kind:
|
||||
if oneof {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeFixed64("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, "{", field.GoName, `: v}`)
|
||||
} else if repeated {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeFixed64("v", typ)
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
|
||||
} else if proto3 && !nullable {
|
||||
p.P(`m.`, fieldname, ` = 0`)
|
||||
p.decodeFixed64("m."+fieldname, typ)
|
||||
} else {
|
||||
p.P(`var v `, typ)
|
||||
p.decodeFixed64("v", typ)
|
||||
p.P(`m.`, fieldname, ` = &v`)
|
||||
}
|
||||
case protoreflect.Sint32Kind:
|
||||
p.P(`var v `, typ)
|
||||
p.decodeVarint("v", typ)
|
||||
p.P(`v = `, typ, `((uint32(v) >> 1) ^ uint32(((v&1)<<31)>>31))`)
|
||||
if oneof {
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, "{", field.GoName, `: v}`)
|
||||
} else if repeated {
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, v)`)
|
||||
} else if proto3 && !nullable {
|
||||
p.P(`m.`, fieldname, ` = v`)
|
||||
} else {
|
||||
p.P(`m.`, fieldname, ` = &v`)
|
||||
}
|
||||
case protoreflect.Sint64Kind:
|
||||
p.P(`var v uint64`)
|
||||
p.decodeVarint("v", "uint64")
|
||||
p.P(`v = (v >> 1) ^ uint64((int64(v&1)<<63)>>63)`)
|
||||
if oneof {
|
||||
p.P(`m.`, fieldname, ` = &`, field.GoIdent, `{`, field.GoName, ": ", typ, `(v)}`)
|
||||
} else if repeated {
|
||||
p.P(`m.`, fieldname, ` = append(m.`, fieldname, `, `, typ, `(v))`)
|
||||
} else if proto3 && !nullable {
|
||||
p.P(`m.`, fieldname, ` = `, typ, `(v)`)
|
||||
} else {
|
||||
p.P(`v2 := `, typ, `(v)`)
|
||||
p.P(`m.`, fieldname, ` = &v2`)
|
||||
}
|
||||
default:
|
||||
panic("not implemented")
|
||||
}
|
||||
}
|
||||
|
||||
func (p *unmarshal) field(proto3, oneof bool, field *protogen.Field, message *protogen.Message, required protoreflect.FieldNumbers) {
|
||||
fieldname := field.GoName
|
||||
errFieldname := fieldname
|
||||
if field.Oneof != nil && !field.Oneof.Desc.IsSynthetic() {
|
||||
fieldname = field.Oneof.GoName
|
||||
}
|
||||
|
||||
p.P(`case `, strconv.Itoa(int(field.Desc.Number())), `:`)
|
||||
wireType := generator.ProtoWireType(field.Desc.Kind())
|
||||
if field.Desc.IsList() && wireType != protowire.BytesType {
|
||||
p.P(`if wireType == `, strconv.Itoa(int(wireType)), `{`)
|
||||
p.fieldItem(field, fieldname, message, false)
|
||||
p.P(`} else if wireType == `, strconv.Itoa(int(protowire.BytesType)), `{`)
|
||||
p.P(`var packedLen int`)
|
||||
p.decodeVarint("packedLen", "int")
|
||||
p.P(`if packedLen < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`postIndex := iNdEx + packedLen`)
|
||||
p.P(`if postIndex < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`if postIndex > l {`)
|
||||
p.P(`return `, p.Ident("io", "ErrUnexpectedEOF"))
|
||||
p.P(`}`)
|
||||
|
||||
p.P(`var elementCount int`)
|
||||
switch field.Desc.Kind() {
|
||||
case protoreflect.DoubleKind, protoreflect.Fixed64Kind, protoreflect.Sfixed64Kind:
|
||||
p.P(`elementCount = packedLen/`, 8)
|
||||
case protoreflect.FloatKind, protoreflect.Fixed32Kind, protoreflect.Sfixed32Kind:
|
||||
p.P(`elementCount = packedLen/`, 4)
|
||||
case protoreflect.Int64Kind, protoreflect.Uint64Kind, protoreflect.Int32Kind, protoreflect.Uint32Kind, protoreflect.Sint32Kind, protoreflect.Sint64Kind:
|
||||
p.P(`var count int`)
|
||||
p.P(`for _, integer := range dAtA[iNdEx:postIndex] {`)
|
||||
p.P(`if integer < 128 {`)
|
||||
p.P(`count++`)
|
||||
p.P(`}`)
|
||||
p.P(`}`)
|
||||
p.P(`elementCount = count`)
|
||||
case protoreflect.BoolKind:
|
||||
p.P(`elementCount = packedLen`)
|
||||
}
|
||||
|
||||
if p.ShouldPool(message) {
|
||||
p.P(`if elementCount != 0 && len(m.`, fieldname, `) == 0 && cap(m.`, fieldname, `) < elementCount {`)
|
||||
} else {
|
||||
p.P(`if elementCount != 0 && len(m.`, fieldname, `) == 0 {`)
|
||||
}
|
||||
|
||||
fieldtyp, _ := p.FieldGoType(field)
|
||||
p.P(`m.`, fieldname, ` = make(`, fieldtyp, `, 0, elementCount)`)
|
||||
p.P(`}`)
|
||||
|
||||
p.P(`for iNdEx < postIndex {`)
|
||||
p.fieldItem(field, fieldname, message, false)
|
||||
p.P(`}`)
|
||||
p.P(`} else {`)
|
||||
p.P(`return `, p.Ident("fmt", "Errorf"), `("proto: wrong wireType = %d for field `, errFieldname, `", wireType)`)
|
||||
p.P(`}`)
|
||||
} else {
|
||||
p.P(`if wireType != `, strconv.Itoa(int(wireType)), `{`)
|
||||
p.P(`return `, p.Ident("fmt", "Errorf"), `("proto: wrong wireType = %d for field `, errFieldname, `", wireType)`)
|
||||
p.P(`}`)
|
||||
p.fieldItem(field, fieldname, message, proto3)
|
||||
}
|
||||
|
||||
if field.Desc.Cardinality() == protoreflect.Required {
|
||||
var fieldBit int
|
||||
for fieldBit = 0; fieldBit < required.Len(); fieldBit++ {
|
||||
if required.Get(fieldBit) == field.Desc.Number() {
|
||||
break
|
||||
}
|
||||
}
|
||||
if fieldBit == required.Len() {
|
||||
panic("missing required field")
|
||||
}
|
||||
p.P(`hasFields[`, strconv.Itoa(fieldBit/64), `] |= uint64(`, fmt.Sprintf("0x%08x", uint64(1)<<(fieldBit%64)), `)`)
|
||||
}
|
||||
}
|
||||
|
||||
func (p *unmarshal) message(proto3 bool, message *protogen.Message) {
|
||||
for _, nested := range message.Messages {
|
||||
p.message(proto3, nested)
|
||||
}
|
||||
|
||||
if message.Desc.IsMapEntry() {
|
||||
return
|
||||
}
|
||||
|
||||
p.once = true
|
||||
ccTypeName := message.GoIdent.GoName
|
||||
required := message.Desc.RequiredNumbers()
|
||||
|
||||
p.P(`func (m *`, ccTypeName, `) `, p.methodUnmarshal(), `(dAtA []byte) error {`)
|
||||
if required.Len() > 0 {
|
||||
p.P(`var hasFields [`, strconv.Itoa(1+(required.Len()-1)/64), `]uint64`)
|
||||
}
|
||||
p.P(`l := len(dAtA)`)
|
||||
p.P(`iNdEx := 0`)
|
||||
p.P(`for iNdEx < l {`)
|
||||
p.P(`preIndex := iNdEx`)
|
||||
p.P(`var wire uint64`)
|
||||
p.decodeVarint("wire", "uint64")
|
||||
p.P(`fieldNum := int32(wire >> 3)`)
|
||||
p.P(`wireType := int(wire & 0x7)`)
|
||||
p.P(`if wireType == `, strconv.Itoa(int(protowire.EndGroupType)), ` {`)
|
||||
p.P(`return `, p.Ident("fmt", "Errorf"), `("proto: `, message.GoIdent.GoName, `: wiretype end group for non-group")`)
|
||||
p.P(`}`)
|
||||
p.P(`if fieldNum <= 0 {`)
|
||||
p.P(`return `, p.Ident("fmt", "Errorf"), `("proto: `, message.GoIdent.GoName, `: illegal tag %d (wire type %d)", fieldNum, wire)`)
|
||||
p.P(`}`)
|
||||
p.P(`switch fieldNum {`)
|
||||
for _, field := range message.Fields {
|
||||
p.field(proto3, false, field, message, required)
|
||||
}
|
||||
p.P(`default:`)
|
||||
p.P(`iNdEx=preIndex`)
|
||||
p.P(`skippy, err := `, p.Helper("Skip"), `(dAtA[iNdEx:])`)
|
||||
p.P(`if err != nil {`)
|
||||
p.P(`return err`)
|
||||
p.P(`}`)
|
||||
p.P(`if (skippy < 0) || (iNdEx + skippy) < 0 {`)
|
||||
p.P(`return `, p.Helper("ErrInvalidLength"))
|
||||
p.P(`}`)
|
||||
p.P(`if (iNdEx + skippy) > l {`)
|
||||
p.P(`return `, p.Ident("io", `ErrUnexpectedEOF`))
|
||||
p.P(`}`)
|
||||
if message.Desc.ExtensionRanges().Len() > 0 {
|
||||
c := []string{}
|
||||
eranges := message.Desc.ExtensionRanges()
|
||||
for e := 0; e < eranges.Len(); e++ {
|
||||
erange := eranges.Get(e)
|
||||
c = append(c, `((fieldNum >= `+strconv.Itoa(int(erange[0]))+`) && (fieldNum < `+strconv.Itoa(int(erange[1]))+`))`)
|
||||
}
|
||||
p.P(`if `, strings.Join(c, "||"), `{`)
|
||||
p.P(`err = `, p.Ident(generator.ProtoPkg, "UnmarshalOptions"), `{AllowPartial: true}.Unmarshal(dAtA[iNdEx:iNdEx+skippy], m)`)
|
||||
p.P(`if err != nil {`)
|
||||
p.P(`return err`)
|
||||
p.P(`}`)
|
||||
p.P(`iNdEx += skippy`)
|
||||
p.P(`} else {`)
|
||||
}
|
||||
if !p.Wrapper() {
|
||||
p.P(`m.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)`)
|
||||
}
|
||||
p.P(`iNdEx += skippy`)
|
||||
if message.Desc.ExtensionRanges().Len() > 0 {
|
||||
p.P(`}`)
|
||||
}
|
||||
p.P(`}`)
|
||||
p.P(`}`)
|
||||
|
||||
for _, field := range message.Fields {
|
||||
if field.Desc.Cardinality() != protoreflect.Required {
|
||||
continue
|
||||
}
|
||||
var fieldBit int
|
||||
for fieldBit = 0; fieldBit < required.Len(); fieldBit++ {
|
||||
if required.Get(fieldBit) == field.Desc.Number() {
|
||||
break
|
||||
}
|
||||
}
|
||||
if fieldBit == required.Len() {
|
||||
panic("missing required field")
|
||||
}
|
||||
p.P(`if hasFields[`, strconv.Itoa(int(fieldBit/64)), `] & uint64(`, fmt.Sprintf("0x%08x", uint64(1)<<(fieldBit%64)), `) == 0 {`)
|
||||
p.P(`return `, p.Ident("fmt", "Errorf"), `("proto: required field `, field.Desc.Name(), ` not set")`)
|
||||
p.P(`}`)
|
||||
}
|
||||
p.P()
|
||||
p.P(`if iNdEx > l {`)
|
||||
p.P(`return `, p.Ident("io", `ErrUnexpectedEOF`))
|
||||
p.P(`}`)
|
||||
p.P(`return nil`)
|
||||
p.P(`}`)
|
||||
}
|
||||
58
vendor/github.com/planetscale/vtprotobuf/generator/features.go
generated
vendored
Normal file
58
vendor/github.com/planetscale/vtprotobuf/generator/features.go
generated
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
// Copyright (c) 2021 PlanetScale Inc. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package generator
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"sort"
|
||||
|
||||
"google.golang.org/protobuf/compiler/protogen"
|
||||
)
|
||||
|
||||
var defaultFeatures = make(map[string]Feature)
|
||||
|
||||
func findFeatures(featureNames []string) ([]Feature, error) {
|
||||
required := make(map[string]Feature)
|
||||
for _, name := range featureNames {
|
||||
if name == "all" {
|
||||
required = defaultFeatures
|
||||
break
|
||||
}
|
||||
|
||||
feat, ok := defaultFeatures[name]
|
||||
if !ok {
|
||||
return nil, fmt.Errorf("unknown feature: %q", name)
|
||||
}
|
||||
required[name] = feat
|
||||
}
|
||||
|
||||
type namefeat struct {
|
||||
name string
|
||||
feat Feature
|
||||
}
|
||||
var sorted []namefeat
|
||||
for name, feat := range required {
|
||||
sorted = append(sorted, namefeat{name, feat})
|
||||
}
|
||||
sort.Slice(sorted, func(i, j int) bool {
|
||||
return sorted[i].name < sorted[j].name
|
||||
})
|
||||
|
||||
var features []Feature
|
||||
for _, sp := range sorted {
|
||||
features = append(features, sp.feat)
|
||||
}
|
||||
return features, nil
|
||||
}
|
||||
|
||||
func RegisterFeature(name string, feat Feature) {
|
||||
defaultFeatures[name] = feat
|
||||
}
|
||||
|
||||
type Feature func(gen *GeneratedFile) FeatureGenerator
|
||||
|
||||
type FeatureGenerator interface {
|
||||
GenerateFile(file *protogen.File) bool
|
||||
}
|
||||
198
vendor/github.com/planetscale/vtprotobuf/generator/generatedfile.go
generated
vendored
Normal file
198
vendor/github.com/planetscale/vtprotobuf/generator/generatedfile.go
generated
vendored
Normal file
@@ -0,0 +1,198 @@
|
||||
// Copyright (c) 2021 PlanetScale Inc. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package generator
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/planetscale/vtprotobuf/vtproto"
|
||||
|
||||
"google.golang.org/protobuf/compiler/protogen"
|
||||
"google.golang.org/protobuf/proto"
|
||||
"google.golang.org/protobuf/reflect/protoreflect"
|
||||
)
|
||||
|
||||
type GeneratedFile struct {
|
||||
*protogen.GeneratedFile
|
||||
Config *Config
|
||||
LocalPackages map[protoreflect.FullName]bool
|
||||
}
|
||||
|
||||
func (p *GeneratedFile) Ident(path, ident string) string {
|
||||
return p.QualifiedGoIdent(protogen.GoImportPath(path).Ident(ident))
|
||||
}
|
||||
|
||||
func (b *GeneratedFile) ShouldPool(message *protogen.Message) bool {
|
||||
// Do not generate pool if message is nil or message excluded by external rules
|
||||
if message == nil || b.Config.PoolableExclude.Contains(message.GoIdent) {
|
||||
return false
|
||||
}
|
||||
|
||||
if b.Config.Poolable.Contains(message.GoIdent) {
|
||||
return true
|
||||
}
|
||||
|
||||
ext := proto.GetExtension(message.Desc.Options(), vtproto.E_Mempool)
|
||||
if mempool, ok := ext.(bool); ok {
|
||||
return mempool
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (b *GeneratedFile) Alloc(vname string, message *protogen.Message, isQualifiedIdent bool) {
|
||||
ident := message.GoIdent.GoName
|
||||
if isQualifiedIdent {
|
||||
ident = b.QualifiedGoIdent(message.GoIdent)
|
||||
}
|
||||
|
||||
if b.ShouldPool(message) {
|
||||
b.P(vname, " := ", ident, `FromVTPool()`)
|
||||
} else {
|
||||
b.P(vname, " := new(", ident, `)`)
|
||||
}
|
||||
}
|
||||
|
||||
func (p *GeneratedFile) FieldGoType(field *protogen.Field) (goType string, pointer bool) {
|
||||
if field.Desc.IsWeak() {
|
||||
return "struct{}", false
|
||||
}
|
||||
|
||||
pointer = field.Desc.HasPresence()
|
||||
switch field.Desc.Kind() {
|
||||
case protoreflect.BoolKind:
|
||||
goType = "bool"
|
||||
case protoreflect.EnumKind:
|
||||
goType = p.QualifiedGoIdent(field.Enum.GoIdent)
|
||||
case protoreflect.Int32Kind, protoreflect.Sint32Kind, protoreflect.Sfixed32Kind:
|
||||
goType = "int32"
|
||||
case protoreflect.Uint32Kind, protoreflect.Fixed32Kind:
|
||||
goType = "uint32"
|
||||
case protoreflect.Int64Kind, protoreflect.Sint64Kind, protoreflect.Sfixed64Kind:
|
||||
goType = "int64"
|
||||
case protoreflect.Uint64Kind, protoreflect.Fixed64Kind:
|
||||
goType = "uint64"
|
||||
case protoreflect.FloatKind:
|
||||
goType = "float32"
|
||||
case protoreflect.DoubleKind:
|
||||
goType = "float64"
|
||||
case protoreflect.StringKind:
|
||||
goType = "string"
|
||||
case protoreflect.BytesKind:
|
||||
goType = "[]byte"
|
||||
pointer = false // rely on nullability of slices for presence
|
||||
case protoreflect.MessageKind, protoreflect.GroupKind:
|
||||
goType = "*" + p.QualifiedGoIdent(field.Message.GoIdent)
|
||||
pointer = false // pointer captured as part of the type
|
||||
}
|
||||
switch {
|
||||
case field.Desc.IsList():
|
||||
return "[]" + goType, false
|
||||
case field.Desc.IsMap():
|
||||
keyType, _ := p.FieldGoType(field.Message.Fields[0])
|
||||
valType, _ := p.FieldGoType(field.Message.Fields[1])
|
||||
return fmt.Sprintf("map[%v]%v", keyType, valType), false
|
||||
}
|
||||
return goType, pointer
|
||||
}
|
||||
|
||||
func (p *GeneratedFile) IsLocalMessage(message *protogen.Message) bool {
|
||||
if message == nil {
|
||||
return false
|
||||
}
|
||||
pkg := message.Desc.ParentFile().Package()
|
||||
return p.LocalPackages[pkg]
|
||||
}
|
||||
|
||||
func (p *GeneratedFile) IsLocalField(field *protogen.Field) bool {
|
||||
if field == nil {
|
||||
return false
|
||||
}
|
||||
pkg := field.Desc.ParentFile().Package()
|
||||
return p.LocalPackages[pkg]
|
||||
}
|
||||
|
||||
const vtHelpersPackage = protogen.GoImportPath("github.com/planetscale/vtprotobuf/protohelpers")
|
||||
|
||||
var helpers = map[string]protogen.GoIdent{
|
||||
"EncodeVarint": {GoName: "EncodeVarint", GoImportPath: vtHelpersPackage},
|
||||
"SizeOfVarint": {GoName: "SizeOfVarint", GoImportPath: vtHelpersPackage},
|
||||
"SizeOfZigzag": {GoName: "SizeOfZigzag", GoImportPath: vtHelpersPackage},
|
||||
"Skip": {GoName: "Skip", GoImportPath: vtHelpersPackage},
|
||||
"ErrInvalidLength": {GoName: "ErrInvalidLength", GoImportPath: vtHelpersPackage},
|
||||
"ErrIntOverflow": {GoName: "ErrIntOverflow", GoImportPath: vtHelpersPackage},
|
||||
"ErrUnexpectedEndOfGroup": {GoName: "ErrUnexpectedEndOfGroup", GoImportPath: vtHelpersPackage},
|
||||
}
|
||||
|
||||
func (p *GeneratedFile) Helper(name string) protogen.GoIdent {
|
||||
return helpers[name]
|
||||
}
|
||||
|
||||
const vtWellKnownPackage = protogen.GoImportPath("github.com/planetscale/vtprotobuf/types/known/")
|
||||
|
||||
var wellKnownTypes = map[protoreflect.FullName]protogen.GoIdent{
|
||||
"google.protobuf.Any": {GoName: "Any", GoImportPath: vtWellKnownPackage + "anypb"},
|
||||
"google.protobuf.Duration": {GoName: "Duration", GoImportPath: vtWellKnownPackage + "durationpb"},
|
||||
"google.protobuf.Empty": {GoName: "Empty", GoImportPath: vtWellKnownPackage + "emptypb"},
|
||||
"google.protobuf.FieldMask": {GoName: "FieldMask", GoImportPath: vtWellKnownPackage + "fieldmaskpb"},
|
||||
"google.protobuf.Timestamp": {GoName: "Timestamp", GoImportPath: vtWellKnownPackage + "timestamppb"},
|
||||
"google.protobuf.DoubleValue": {GoName: "DoubleValue", GoImportPath: vtWellKnownPackage + "wrapperspb"},
|
||||
"google.protobuf.FloatValue": {GoName: "FloatValue", GoImportPath: vtWellKnownPackage + "wrapperspb"},
|
||||
"google.protobuf.Int64Value": {GoName: "Int64Value", GoImportPath: vtWellKnownPackage + "wrapperspb"},
|
||||
"google.protobuf.UInt64Value": {GoName: "UInt64Value", GoImportPath: vtWellKnownPackage + "wrapperspb"},
|
||||
"google.protobuf.Int32Value": {GoName: "Int32Value", GoImportPath: vtWellKnownPackage + "wrapperspb"},
|
||||
"google.protobuf.UInt32Value": {GoName: "UInt32Value", GoImportPath: vtWellKnownPackage + "wrapperspb"},
|
||||
"google.protobuf.BoolValue": {GoName: "BoolValue", GoImportPath: vtWellKnownPackage + "wrapperspb"},
|
||||
"google.protobuf.StringValue": {GoName: "StringValue", GoImportPath: vtWellKnownPackage + "wrapperspb"},
|
||||
"google.protobuf.BytesValue": {GoName: "BytesValue", GoImportPath: vtWellKnownPackage + "wrapperspb"},
|
||||
"google.protobuf.Struct": {GoName: "Struct", GoImportPath: vtWellKnownPackage + "structpb"},
|
||||
"google.protobuf.Value": {GoName: "Value", GoImportPath: vtWellKnownPackage + "structpb"},
|
||||
"google.protobuf.ListValue": {GoName: "ListValue", GoImportPath: vtWellKnownPackage + "structpb"},
|
||||
}
|
||||
|
||||
var wellKnownFields = map[protoreflect.FullName]protogen.GoIdent{
|
||||
"google.protobuf.Value.null_value": {GoName: "Value_NullValue", GoImportPath: vtWellKnownPackage + "structpb"},
|
||||
"google.protobuf.Value.number_value": {GoName: "Value_NumberValue", GoImportPath: vtWellKnownPackage + "structpb"},
|
||||
"google.protobuf.Value.string_value": {GoName: "Value_StringValue", GoImportPath: vtWellKnownPackage + "structpb"},
|
||||
"google.protobuf.Value.bool_value": {GoName: "Value_BoolValue", GoImportPath: vtWellKnownPackage + "structpb"},
|
||||
"google.protobuf.Value.struct_value": {GoName: "Value_StructValue", GoImportPath: vtWellKnownPackage + "structpb"},
|
||||
"google.protobuf.Value.list_value": {GoName: "Value_ListValue", GoImportPath: vtWellKnownPackage + "structpb"},
|
||||
}
|
||||
|
||||
func (p *GeneratedFile) IsWellKnownType(message *protogen.Message) bool {
|
||||
if message == nil {
|
||||
return false
|
||||
}
|
||||
_, ok := wellKnownTypes[message.Desc.FullName()]
|
||||
return ok
|
||||
}
|
||||
|
||||
func (p *GeneratedFile) WellKnownFieldMap(field *protogen.Field) protogen.GoIdent {
|
||||
if field == nil {
|
||||
return protogen.GoIdent{}
|
||||
}
|
||||
res, ff := wellKnownFields[field.Desc.FullName()]
|
||||
if !ff {
|
||||
panic(field.Desc.FullName())
|
||||
}
|
||||
if p.IsLocalField(field) {
|
||||
res.GoImportPath = ""
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
func (p *GeneratedFile) WellKnownTypeMap(message *protogen.Message) protogen.GoIdent {
|
||||
if message == nil {
|
||||
return protogen.GoIdent{}
|
||||
}
|
||||
res := wellKnownTypes[message.Desc.FullName()]
|
||||
if p.IsLocalMessage(message) {
|
||||
res.GoImportPath = ""
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
func (p *GeneratedFile) Wrapper() bool {
|
||||
return p.Config.Wrap
|
||||
}
|
||||
165
vendor/github.com/planetscale/vtprotobuf/generator/generator.go
generated
vendored
Normal file
165
vendor/github.com/planetscale/vtprotobuf/generator/generator.go
generated
vendored
Normal file
@@ -0,0 +1,165 @@
|
||||
// Copyright (c) 2021 PlanetScale Inc. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package generator
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"runtime/debug"
|
||||
|
||||
"google.golang.org/protobuf/compiler/protogen"
|
||||
"google.golang.org/protobuf/reflect/protoreflect"
|
||||
"google.golang.org/protobuf/runtime/protoimpl"
|
||||
"google.golang.org/protobuf/types/pluginpb"
|
||||
|
||||
"github.com/planetscale/vtprotobuf/generator/pattern"
|
||||
)
|
||||
|
||||
type ObjectSet struct {
|
||||
mp map[string]bool
|
||||
}
|
||||
|
||||
func NewObjectSet() ObjectSet {
|
||||
return ObjectSet{
|
||||
mp: map[string]bool{},
|
||||
}
|
||||
}
|
||||
|
||||
func (o ObjectSet) String() string {
|
||||
return fmt.Sprintf("%#v", o)
|
||||
}
|
||||
|
||||
func (o ObjectSet) Contains(g protogen.GoIdent) bool {
|
||||
objectPath := fmt.Sprintf("%s.%s", string(g.GoImportPath), g.GoName)
|
||||
|
||||
for wildcard := range o.mp {
|
||||
// Ignore malformed pattern error because pattern already checked in Set
|
||||
if ok, _ := pattern.Match(wildcard, objectPath); ok {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
func (o ObjectSet) Set(s string) error {
|
||||
if !pattern.ValidatePattern(s) {
|
||||
return pattern.ErrBadPattern
|
||||
}
|
||||
o.mp[s] = true
|
||||
return nil
|
||||
}
|
||||
|
||||
type Config struct {
|
||||
// Poolable rules determines if pool feature generate for particular message
|
||||
Poolable ObjectSet
|
||||
// PoolableExclude rules determines if pool feature disabled for particular message
|
||||
PoolableExclude ObjectSet
|
||||
Wrap bool
|
||||
WellKnownTypes bool
|
||||
AllowEmpty bool
|
||||
BuildTag string
|
||||
}
|
||||
|
||||
type Generator struct {
|
||||
plugin *protogen.Plugin
|
||||
cfg *Config
|
||||
features []Feature
|
||||
local map[protoreflect.FullName]bool
|
||||
}
|
||||
|
||||
const SupportedFeatures = uint64(pluginpb.CodeGeneratorResponse_FEATURE_PROTO3_OPTIONAL)
|
||||
|
||||
func NewGenerator(plugin *protogen.Plugin, featureNames []string, cfg *Config) (*Generator, error) {
|
||||
plugin.SupportedFeatures = SupportedFeatures
|
||||
|
||||
features, err := findFeatures(featureNames)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
local := make(map[protoreflect.FullName]bool)
|
||||
for _, f := range plugin.Files {
|
||||
if f.Generate {
|
||||
local[f.Desc.Package()] = true
|
||||
}
|
||||
}
|
||||
|
||||
return &Generator{
|
||||
plugin: plugin,
|
||||
cfg: cfg,
|
||||
features: features,
|
||||
local: local,
|
||||
}, nil
|
||||
}
|
||||
|
||||
func (gen *Generator) Generate() {
|
||||
for _, file := range gen.plugin.Files {
|
||||
if !file.Generate {
|
||||
continue
|
||||
}
|
||||
|
||||
var importPath protogen.GoImportPath
|
||||
if !gen.cfg.Wrap {
|
||||
importPath = file.GoImportPath
|
||||
}
|
||||
|
||||
gf := gen.plugin.NewGeneratedFile(file.GeneratedFilenamePrefix+"_vtproto.pb.go", importPath)
|
||||
gen.generateFile(gf, file)
|
||||
}
|
||||
}
|
||||
|
||||
func (gen *Generator) generateFile(gf *protogen.GeneratedFile, file *protogen.File) {
|
||||
p := &GeneratedFile{
|
||||
GeneratedFile: gf,
|
||||
Config: gen.cfg,
|
||||
LocalPackages: gen.local,
|
||||
}
|
||||
|
||||
if p.Config.BuildTag != "" {
|
||||
// Support both forms of tags for maximum compatibility
|
||||
p.P("//go:build ", p.Config.BuildTag)
|
||||
p.P("// +build ", p.Config.BuildTag)
|
||||
}
|
||||
p.P("// Code generated by protoc-gen-go-vtproto. DO NOT EDIT.")
|
||||
if bi, ok := debug.ReadBuildInfo(); ok {
|
||||
p.P("// protoc-gen-go-vtproto version: ", bi.Main.Version)
|
||||
}
|
||||
p.P("// source: ", file.Desc.Path())
|
||||
p.P()
|
||||
p.P("package ", file.GoPackageName)
|
||||
p.P()
|
||||
|
||||
protoimplPackage := protogen.GoImportPath("google.golang.org/protobuf/runtime/protoimpl")
|
||||
p.P("const (")
|
||||
p.P("// Verify that this generated code is sufficiently up-to-date.")
|
||||
p.P("_ = ", protoimplPackage.Ident("EnforceVersion"), "(", protoimpl.GenVersion, " - ", protoimplPackage.Ident("MinVersion"), ")")
|
||||
p.P("// Verify that runtime/protoimpl is sufficiently up-to-date.")
|
||||
p.P("_ = ", protoimplPackage.Ident("EnforceVersion"), "(", protoimplPackage.Ident("MaxVersion"), " - ", protoimpl.GenVersion, ")")
|
||||
p.P(")")
|
||||
p.P()
|
||||
|
||||
if p.Wrapper() {
|
||||
for _, msg := range file.Messages {
|
||||
p.P(`type `, msg.GoIdent.GoName, ` `, msg.GoIdent)
|
||||
for _, one := range msg.Oneofs {
|
||||
for _, field := range one.Fields {
|
||||
p.P(`type `, field.GoIdent.GoName, ` `, field.GoIdent)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var generated bool
|
||||
for _, feat := range gen.features {
|
||||
featGenerator := feat(p)
|
||||
if featGenerator.GenerateFile(file) {
|
||||
generated = true
|
||||
}
|
||||
}
|
||||
|
||||
if !generated && !gen.cfg.AllowEmpty {
|
||||
gf.Skip()
|
||||
}
|
||||
}
|
||||
47
vendor/github.com/planetscale/vtprotobuf/generator/helpers.go
generated
vendored
Normal file
47
vendor/github.com/planetscale/vtprotobuf/generator/helpers.go
generated
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
// Copyright (c) 2021 PlanetScale Inc. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package generator
|
||||
|
||||
import (
|
||||
"google.golang.org/protobuf/encoding/protowire"
|
||||
"google.golang.org/protobuf/reflect/protoreflect"
|
||||
)
|
||||
|
||||
const ProtoPkg = "google.golang.org/protobuf/proto"
|
||||
|
||||
func KeySize(fieldNumber protoreflect.FieldNumber, wireType protowire.Type) int {
|
||||
x := uint32(fieldNumber)<<3 | uint32(wireType)
|
||||
size := 0
|
||||
for size = 0; x > 127; size++ {
|
||||
x >>= 7
|
||||
}
|
||||
size++
|
||||
return size
|
||||
}
|
||||
|
||||
var wireTypes = map[protoreflect.Kind]protowire.Type{
|
||||
protoreflect.BoolKind: protowire.VarintType,
|
||||
protoreflect.EnumKind: protowire.VarintType,
|
||||
protoreflect.Int32Kind: protowire.VarintType,
|
||||
protoreflect.Sint32Kind: protowire.VarintType,
|
||||
protoreflect.Uint32Kind: protowire.VarintType,
|
||||
protoreflect.Int64Kind: protowire.VarintType,
|
||||
protoreflect.Sint64Kind: protowire.VarintType,
|
||||
protoreflect.Uint64Kind: protowire.VarintType,
|
||||
protoreflect.Sfixed32Kind: protowire.Fixed32Type,
|
||||
protoreflect.Fixed32Kind: protowire.Fixed32Type,
|
||||
protoreflect.FloatKind: protowire.Fixed32Type,
|
||||
protoreflect.Sfixed64Kind: protowire.Fixed64Type,
|
||||
protoreflect.Fixed64Kind: protowire.Fixed64Type,
|
||||
protoreflect.DoubleKind: protowire.Fixed64Type,
|
||||
protoreflect.StringKind: protowire.BytesType,
|
||||
protoreflect.BytesKind: protowire.BytesType,
|
||||
protoreflect.MessageKind: protowire.BytesType,
|
||||
protoreflect.GroupKind: protowire.StartGroupType,
|
||||
}
|
||||
|
||||
func ProtoWireType(k protoreflect.Kind) protowire.Type {
|
||||
return wireTypes[k]
|
||||
}
|
||||
21
vendor/github.com/planetscale/vtprotobuf/generator/pattern/LICENSE
generated
vendored
Normal file
21
vendor/github.com/planetscale/vtprotobuf/generator/pattern/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2014 Bob Matcuk
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
457
vendor/github.com/planetscale/vtprotobuf/generator/pattern/match.go
generated
vendored
Normal file
457
vendor/github.com/planetscale/vtprotobuf/generator/pattern/match.go
generated
vendored
Normal file
@@ -0,0 +1,457 @@
|
||||
package pattern
|
||||
|
||||
import (
|
||||
"path"
|
||||
"unicode/utf8"
|
||||
)
|
||||
|
||||
var ErrBadPattern = path.ErrBadPattern
|
||||
|
||||
// Match reports whether name matches the shell pattern.
|
||||
// The pattern syntax is:
|
||||
//
|
||||
// pattern:
|
||||
// { term }
|
||||
// term:
|
||||
// '*' matches any sequence of non-path-separators
|
||||
// '/**/' matches zero or more directories
|
||||
// '?' matches any single non-path-separator character
|
||||
// '[' [ '^' '!' ] { character-range } ']'
|
||||
// character class (must be non-empty)
|
||||
// starting with `^` or `!` negates the class
|
||||
// '{' { term } [ ',' { term } ... ] '}'
|
||||
// alternatives
|
||||
// c matches character c (c != '*', '?', '\\', '[')
|
||||
// '\\' c matches character c
|
||||
//
|
||||
// character-range:
|
||||
// c matches character c (c != '\\', '-', ']')
|
||||
// '\\' c matches character c
|
||||
// lo '-' hi matches character c for lo <= c <= hi
|
||||
//
|
||||
// Match returns true if `name` matches the file name `pattern`. `name` and
|
||||
// `pattern` are split on forward slash (`/`) characters and may be relative or
|
||||
// absolute.
|
||||
//
|
||||
// Match requires pattern to match all of name, not just a substring.
|
||||
// The only possible returned error is ErrBadPattern, when pattern
|
||||
// is malformed.
|
||||
//
|
||||
// A doublestar (`**`) should appear surrounded by path separators such as
|
||||
// `/**/`. A mid-pattern doublestar (`**`) behaves like bash's globstar
|
||||
// option: a pattern such as `path/to/**.txt` would return the same results as
|
||||
// `path/to/*.txt`. The pattern you're looking for is `path/to/**/*.txt`.
|
||||
//
|
||||
// Note: this is meant as a drop-in replacement for path.Match() which
|
||||
// always uses '/' as the path separator. If you want to support systems
|
||||
// which use a different path separator (such as Windows), what you want
|
||||
// is PathMatch(). Alternatively, you can run filepath.ToSlash() on both
|
||||
// pattern and name and then use this function.
|
||||
//
|
||||
// Note: users should _not_ count on the returned error,
|
||||
// doublestar.ErrBadPattern, being equal to path.ErrBadPattern.
|
||||
func Match(pattern, name string) (bool, error) {
|
||||
return matchWithSeparator(pattern, name, '/', true)
|
||||
}
|
||||
|
||||
func matchWithSeparator(pattern, name string, separator rune, validate bool) (matched bool, err error) {
|
||||
return doMatchWithSeparator(pattern, name, separator, validate, -1, -1, -1, -1, 0, 0)
|
||||
}
|
||||
|
||||
func doMatchWithSeparator(pattern, name string, separator rune, validate bool, doublestarPatternBacktrack, doublestarNameBacktrack, starPatternBacktrack, starNameBacktrack, patIdx, nameIdx int) (matched bool, err error) {
|
||||
patLen := len(pattern)
|
||||
nameLen := len(name)
|
||||
startOfSegment := true
|
||||
MATCH:
|
||||
for nameIdx < nameLen {
|
||||
if patIdx < patLen {
|
||||
switch pattern[patIdx] {
|
||||
case '*':
|
||||
if patIdx++; patIdx < patLen && pattern[patIdx] == '*' {
|
||||
// doublestar - must begin with a path separator, otherwise we'll
|
||||
// treat it like a single star like bash
|
||||
patIdx++
|
||||
if startOfSegment {
|
||||
if patIdx >= patLen {
|
||||
// pattern ends in `/**`: return true
|
||||
return true, nil
|
||||
}
|
||||
|
||||
// doublestar must also end with a path separator, otherwise we're
|
||||
// just going to treat the doublestar as a single star like bash
|
||||
patRune, patRuneLen := utf8.DecodeRuneInString(pattern[patIdx:])
|
||||
if patRune == separator {
|
||||
patIdx += patRuneLen
|
||||
|
||||
doublestarPatternBacktrack = patIdx
|
||||
doublestarNameBacktrack = nameIdx
|
||||
starPatternBacktrack = -1
|
||||
starNameBacktrack = -1
|
||||
continue
|
||||
}
|
||||
}
|
||||
}
|
||||
startOfSegment = false
|
||||
|
||||
starPatternBacktrack = patIdx
|
||||
starNameBacktrack = nameIdx
|
||||
continue
|
||||
|
||||
case '?':
|
||||
startOfSegment = false
|
||||
nameRune, nameRuneLen := utf8.DecodeRuneInString(name[nameIdx:])
|
||||
if nameRune == separator {
|
||||
// `?` cannot match the separator
|
||||
break
|
||||
}
|
||||
|
||||
patIdx++
|
||||
nameIdx += nameRuneLen
|
||||
continue
|
||||
|
||||
case '[':
|
||||
startOfSegment = false
|
||||
if patIdx++; patIdx >= patLen {
|
||||
// class didn't end
|
||||
return false, ErrBadPattern
|
||||
}
|
||||
nameRune, nameRuneLen := utf8.DecodeRuneInString(name[nameIdx:])
|
||||
|
||||
matched := false
|
||||
negate := pattern[patIdx] == '!' || pattern[patIdx] == '^'
|
||||
if negate {
|
||||
patIdx++
|
||||
}
|
||||
|
||||
if patIdx >= patLen || pattern[patIdx] == ']' {
|
||||
// class didn't end or empty character class
|
||||
return false, ErrBadPattern
|
||||
}
|
||||
|
||||
last := utf8.MaxRune
|
||||
for patIdx < patLen && pattern[patIdx] != ']' {
|
||||
patRune, patRuneLen := utf8.DecodeRuneInString(pattern[patIdx:])
|
||||
patIdx += patRuneLen
|
||||
|
||||
// match a range
|
||||
if last < utf8.MaxRune && patRune == '-' && patIdx < patLen && pattern[patIdx] != ']' {
|
||||
if pattern[patIdx] == '\\' {
|
||||
// next character is escaped
|
||||
patIdx++
|
||||
}
|
||||
patRune, patRuneLen = utf8.DecodeRuneInString(pattern[patIdx:])
|
||||
patIdx += patRuneLen
|
||||
|
||||
if last <= nameRune && nameRune <= patRune {
|
||||
matched = true
|
||||
break
|
||||
}
|
||||
|
||||
// didn't match range - reset `last`
|
||||
last = utf8.MaxRune
|
||||
continue
|
||||
}
|
||||
|
||||
// not a range - check if the next rune is escaped
|
||||
if patRune == '\\' {
|
||||
patRune, patRuneLen = utf8.DecodeRuneInString(pattern[patIdx:])
|
||||
patIdx += patRuneLen
|
||||
}
|
||||
|
||||
// check if the rune matches
|
||||
if patRune == nameRune {
|
||||
matched = true
|
||||
break
|
||||
}
|
||||
|
||||
// no matches yet
|
||||
last = patRune
|
||||
}
|
||||
|
||||
if matched == negate {
|
||||
// failed to match - if we reached the end of the pattern, that means
|
||||
// we never found a closing `]`
|
||||
if patIdx >= patLen {
|
||||
return false, ErrBadPattern
|
||||
}
|
||||
break
|
||||
}
|
||||
|
||||
closingIdx := indexUnescapedByte(pattern[patIdx:], ']', true)
|
||||
if closingIdx == -1 {
|
||||
// no closing `]`
|
||||
return false, ErrBadPattern
|
||||
}
|
||||
|
||||
patIdx += closingIdx + 1
|
||||
nameIdx += nameRuneLen
|
||||
continue
|
||||
|
||||
case '{':
|
||||
startOfSegment = false
|
||||
beforeIdx := patIdx
|
||||
patIdx++
|
||||
closingIdx := indexMatchedClosingAlt(pattern[patIdx:], separator != '\\')
|
||||
if closingIdx == -1 {
|
||||
// no closing `}`
|
||||
return false, ErrBadPattern
|
||||
}
|
||||
closingIdx += patIdx
|
||||
|
||||
for {
|
||||
commaIdx := indexNextAlt(pattern[patIdx:closingIdx], separator != '\\')
|
||||
if commaIdx == -1 {
|
||||
break
|
||||
}
|
||||
commaIdx += patIdx
|
||||
|
||||
result, err := doMatchWithSeparator(pattern[:beforeIdx]+pattern[patIdx:commaIdx]+pattern[closingIdx+1:], name, separator, validate, doublestarPatternBacktrack, doublestarNameBacktrack, starPatternBacktrack, starNameBacktrack, beforeIdx, nameIdx)
|
||||
if result || err != nil {
|
||||
return result, err
|
||||
}
|
||||
|
||||
patIdx = commaIdx + 1
|
||||
}
|
||||
return doMatchWithSeparator(pattern[:beforeIdx]+pattern[patIdx:closingIdx]+pattern[closingIdx+1:], name, separator, validate, doublestarPatternBacktrack, doublestarNameBacktrack, starPatternBacktrack, starNameBacktrack, beforeIdx, nameIdx)
|
||||
|
||||
case '\\':
|
||||
if separator != '\\' {
|
||||
// next rune is "escaped" in the pattern - literal match
|
||||
if patIdx++; patIdx >= patLen {
|
||||
// pattern ended
|
||||
return false, ErrBadPattern
|
||||
}
|
||||
}
|
||||
fallthrough
|
||||
|
||||
default:
|
||||
patRune, patRuneLen := utf8.DecodeRuneInString(pattern[patIdx:])
|
||||
nameRune, nameRuneLen := utf8.DecodeRuneInString(name[nameIdx:])
|
||||
if patRune != nameRune {
|
||||
if separator != '\\' && patIdx > 0 && pattern[patIdx-1] == '\\' {
|
||||
// if this rune was meant to be escaped, we need to move patIdx
|
||||
// back to the backslash before backtracking or validating below
|
||||
patIdx--
|
||||
}
|
||||
break
|
||||
}
|
||||
|
||||
patIdx += patRuneLen
|
||||
nameIdx += nameRuneLen
|
||||
startOfSegment = patRune == separator
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
||||
if starPatternBacktrack >= 0 {
|
||||
// `*` backtrack, but only if the `name` rune isn't the separator
|
||||
nameRune, nameRuneLen := utf8.DecodeRuneInString(name[starNameBacktrack:])
|
||||
if nameRune != separator {
|
||||
starNameBacktrack += nameRuneLen
|
||||
patIdx = starPatternBacktrack
|
||||
nameIdx = starNameBacktrack
|
||||
startOfSegment = false
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
||||
if doublestarPatternBacktrack >= 0 {
|
||||
// `**` backtrack, advance `name` past next separator
|
||||
nameIdx = doublestarNameBacktrack
|
||||
for nameIdx < nameLen {
|
||||
nameRune, nameRuneLen := utf8.DecodeRuneInString(name[nameIdx:])
|
||||
nameIdx += nameRuneLen
|
||||
if nameRune == separator {
|
||||
doublestarNameBacktrack = nameIdx
|
||||
patIdx = doublestarPatternBacktrack
|
||||
startOfSegment = true
|
||||
continue MATCH
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if validate && patIdx < patLen && !doValidatePattern(pattern[patIdx:], separator) {
|
||||
return false, ErrBadPattern
|
||||
}
|
||||
return false, nil
|
||||
}
|
||||
|
||||
if nameIdx < nameLen {
|
||||
// we reached the end of `pattern` before the end of `name`
|
||||
return false, nil
|
||||
}
|
||||
|
||||
// we've reached the end of `name`; we've successfully matched if we've also
|
||||
// reached the end of `pattern`, or if the rest of `pattern` can match a
|
||||
// zero-length string
|
||||
return isZeroLengthPattern(pattern[patIdx:], separator)
|
||||
}
|
||||
|
||||
func isZeroLengthPattern(pattern string, separator rune) (ret bool, err error) {
|
||||
// `/**`, `**/`, and `/**/` are special cases - a pattern such as `path/to/a/**` or `path/to/a/**/`
|
||||
// *should* match `path/to/a` because `a` might be a directory
|
||||
if pattern == "" ||
|
||||
pattern == "*" ||
|
||||
pattern == "**" ||
|
||||
pattern == string(separator)+"**" ||
|
||||
pattern == "**"+string(separator) ||
|
||||
pattern == string(separator)+"**"+string(separator) {
|
||||
return true, nil
|
||||
}
|
||||
|
||||
if pattern[0] == '{' {
|
||||
closingIdx := indexMatchedClosingAlt(pattern[1:], separator != '\\')
|
||||
if closingIdx == -1 {
|
||||
// no closing '}'
|
||||
return false, ErrBadPattern
|
||||
}
|
||||
closingIdx += 1
|
||||
|
||||
patIdx := 1
|
||||
for {
|
||||
commaIdx := indexNextAlt(pattern[patIdx:closingIdx], separator != '\\')
|
||||
if commaIdx == -1 {
|
||||
break
|
||||
}
|
||||
commaIdx += patIdx
|
||||
|
||||
ret, err = isZeroLengthPattern(pattern[patIdx:commaIdx]+pattern[closingIdx+1:], separator)
|
||||
if ret || err != nil {
|
||||
return
|
||||
}
|
||||
|
||||
patIdx = commaIdx + 1
|
||||
}
|
||||
return isZeroLengthPattern(pattern[patIdx:closingIdx]+pattern[closingIdx+1:], separator)
|
||||
}
|
||||
|
||||
// no luck - validate the rest of the pattern
|
||||
if !doValidatePattern(pattern, separator) {
|
||||
return false, ErrBadPattern
|
||||
}
|
||||
return false, nil
|
||||
}
|
||||
|
||||
// Finds the next comma, but ignores any commas that appear inside nested `{}`.
|
||||
// Assumes that each opening bracket has a corresponding closing bracket.
|
||||
func indexNextAlt(s string, allowEscaping bool) int {
|
||||
alts := 1
|
||||
l := len(s)
|
||||
for i := 0; i < l; i++ {
|
||||
if allowEscaping && s[i] == '\\' {
|
||||
// skip next byte
|
||||
i++
|
||||
} else if s[i] == '{' {
|
||||
alts++
|
||||
} else if s[i] == '}' {
|
||||
alts--
|
||||
} else if s[i] == ',' && alts == 1 {
|
||||
return i
|
||||
}
|
||||
}
|
||||
return -1
|
||||
}
|
||||
|
||||
// Finds the index of the first unescaped byte `c`, or negative 1.
|
||||
func indexUnescapedByte(s string, c byte, allowEscaping bool) int {
|
||||
l := len(s)
|
||||
for i := 0; i < l; i++ {
|
||||
if allowEscaping && s[i] == '\\' {
|
||||
// skip next byte
|
||||
i++
|
||||
} else if s[i] == c {
|
||||
return i
|
||||
}
|
||||
}
|
||||
return -1
|
||||
}
|
||||
|
||||
// Assuming the byte before the beginning of `s` is an opening `{`, this
|
||||
// function will find the index of the matching `}`. That is, it'll skip over
|
||||
// any nested `{}` and account for escaping
|
||||
func indexMatchedClosingAlt(s string, allowEscaping bool) int {
|
||||
alts := 1
|
||||
l := len(s)
|
||||
for i := 0; i < l; i++ {
|
||||
if allowEscaping && s[i] == '\\' {
|
||||
// skip next byte
|
||||
i++
|
||||
} else if s[i] == '{' {
|
||||
alts++
|
||||
} else if s[i] == '}' {
|
||||
if alts--; alts == 0 {
|
||||
return i
|
||||
}
|
||||
}
|
||||
}
|
||||
return -1
|
||||
}
|
||||
|
||||
// Validate a pattern. Patterns are validated while they run in Match(),
|
||||
// PathMatch(), and Glob(), so, you normally wouldn't need to call this.
|
||||
// However, there are cases where this might be useful: for example, if your
|
||||
// program allows a user to enter a pattern that you'll run at a later time,
|
||||
// you might want to validate it.
|
||||
//
|
||||
// ValidatePattern assumes your pattern uses '/' as the path separator.
|
||||
func ValidatePattern(s string) bool {
|
||||
return doValidatePattern(s, '/')
|
||||
}
|
||||
|
||||
func doValidatePattern(s string, separator rune) bool {
|
||||
altDepth := 0
|
||||
l := len(s)
|
||||
VALIDATE:
|
||||
for i := 0; i < l; i++ {
|
||||
switch s[i] {
|
||||
case '\\':
|
||||
if separator != '\\' {
|
||||
// skip the next byte - return false if there is no next byte
|
||||
if i++; i >= l {
|
||||
return false
|
||||
}
|
||||
}
|
||||
continue
|
||||
|
||||
case '[':
|
||||
if i++; i >= l {
|
||||
// class didn't end
|
||||
return false
|
||||
}
|
||||
if s[i] == '^' || s[i] == '!' {
|
||||
i++
|
||||
}
|
||||
if i >= l || s[i] == ']' {
|
||||
// class didn't end or empty character class
|
||||
return false
|
||||
}
|
||||
|
||||
for ; i < l; i++ {
|
||||
if separator != '\\' && s[i] == '\\' {
|
||||
i++
|
||||
} else if s[i] == ']' {
|
||||
// looks good
|
||||
continue VALIDATE
|
||||
}
|
||||
}
|
||||
|
||||
// class didn't end
|
||||
return false
|
||||
|
||||
case '{':
|
||||
altDepth++
|
||||
continue
|
||||
|
||||
case '}':
|
||||
if altDepth == 0 {
|
||||
// alt end without a corresponding start
|
||||
return false
|
||||
}
|
||||
altDepth--
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
||||
// valid as long as all alts are closed
|
||||
return altDepth == 0
|
||||
}
|
||||
122
vendor/github.com/planetscale/vtprotobuf/protohelpers/protohelpers.go
generated
vendored
Normal file
122
vendor/github.com/planetscale/vtprotobuf/protohelpers/protohelpers.go
generated
vendored
Normal file
@@ -0,0 +1,122 @@
|
||||
// Package protohelpers provides helper functions for encoding and decoding protobuf messages.
|
||||
// The spec can be found at https://protobuf.dev/programming-guides/encoding/.
|
||||
package protohelpers
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"math/bits"
|
||||
)
|
||||
|
||||
var (
|
||||
// ErrInvalidLength is returned when decoding a negative length.
|
||||
ErrInvalidLength = fmt.Errorf("proto: negative length found during unmarshaling")
|
||||
// ErrIntOverflow is returned when decoding a varint representation of an integer that overflows 64 bits.
|
||||
ErrIntOverflow = fmt.Errorf("proto: integer overflow")
|
||||
// ErrUnexpectedEndOfGroup is returned when decoding a group end without a corresponding group start.
|
||||
ErrUnexpectedEndOfGroup = fmt.Errorf("proto: unexpected end of group")
|
||||
)
|
||||
|
||||
// EncodeVarint encodes a uint64 into a varint-encoded byte slice and returns the offset of the encoded value.
|
||||
// The provided offset is the offset after the last byte of the encoded value.
|
||||
func EncodeVarint(dAtA []byte, offset int, v uint64) int {
|
||||
offset -= SizeOfVarint(v)
|
||||
base := offset
|
||||
for v >= 1<<7 {
|
||||
dAtA[offset] = uint8(v&0x7f | 0x80)
|
||||
v >>= 7
|
||||
offset++
|
||||
}
|
||||
dAtA[offset] = uint8(v)
|
||||
return base
|
||||
}
|
||||
|
||||
// SizeOfVarint returns the size of the varint-encoded value.
|
||||
func SizeOfVarint(x uint64) (n int) {
|
||||
return (bits.Len64(x|1) + 6) / 7
|
||||
}
|
||||
|
||||
// SizeOfZigzag returns the size of the zigzag-encoded value.
|
||||
func SizeOfZigzag(x uint64) (n int) {
|
||||
return SizeOfVarint(uint64((x << 1) ^ uint64((int64(x) >> 63))))
|
||||
}
|
||||
|
||||
// Skip the first record of the byte slice and return the offset of the next record.
|
||||
func Skip(dAtA []byte) (n int, err error) {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
depth := 0
|
||||
for iNdEx < l {
|
||||
var wire uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return 0, ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return 0, io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
wire |= (uint64(b) & 0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
wireType := int(wire & 0x7)
|
||||
switch wireType {
|
||||
case 0:
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return 0, ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return 0, io.ErrUnexpectedEOF
|
||||
}
|
||||
iNdEx++
|
||||
if dAtA[iNdEx-1] < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
case 1:
|
||||
iNdEx += 8
|
||||
case 2:
|
||||
var length int
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return 0, ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return 0, io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
length |= (int(b) & 0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
if length < 0 {
|
||||
return 0, ErrInvalidLength
|
||||
}
|
||||
iNdEx += length
|
||||
case 3:
|
||||
depth++
|
||||
case 4:
|
||||
if depth == 0 {
|
||||
return 0, ErrUnexpectedEndOfGroup
|
||||
}
|
||||
depth--
|
||||
case 5:
|
||||
iNdEx += 4
|
||||
default:
|
||||
return 0, fmt.Errorf("proto: illegal wireType %d", wireType)
|
||||
}
|
||||
if iNdEx < 0 {
|
||||
return 0, ErrInvalidLength
|
||||
}
|
||||
if depth == 0 {
|
||||
return iNdEx, nil
|
||||
}
|
||||
}
|
||||
return 0, io.ErrUnexpectedEOF
|
||||
}
|
||||
317
vendor/github.com/planetscale/vtprotobuf/types/known/timestamppb/timestamp_vtproto.pb.go
generated
vendored
Normal file
317
vendor/github.com/planetscale/vtprotobuf/types/known/timestamppb/timestamp_vtproto.pb.go
generated
vendored
Normal file
@@ -0,0 +1,317 @@
|
||||
// Code generated by protoc-gen-go-vtproto. DO NOT EDIT.
|
||||
// protoc-gen-go-vtproto version: (devel)
|
||||
// source: google/protobuf/timestamp.proto
|
||||
|
||||
package timestamppb
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
protohelpers "github.com/planetscale/vtprotobuf/protohelpers"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
timestamppb "google.golang.org/protobuf/types/known/timestamppb"
|
||||
io "io"
|
||||
)
|
||||
|
||||
const (
|
||||
// Verify that this generated code is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||
)
|
||||
|
||||
type Timestamp timestamppb.Timestamp
|
||||
|
||||
func (m *Timestamp) CloneVT() *Timestamp {
|
||||
if m == nil {
|
||||
return (*Timestamp)(nil)
|
||||
}
|
||||
r := new(Timestamp)
|
||||
r.Seconds = m.Seconds
|
||||
r.Nanos = m.Nanos
|
||||
return r
|
||||
}
|
||||
|
||||
func (this *Timestamp) EqualVT(that *Timestamp) bool {
|
||||
if this == that {
|
||||
return true
|
||||
} else if this == nil || that == nil {
|
||||
return false
|
||||
}
|
||||
if this.Seconds != that.Seconds {
|
||||
return false
|
||||
}
|
||||
if this.Nanos != that.Nanos {
|
||||
return false
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
func (m *Timestamp) MarshalVT() (dAtA []byte, err error) {
|
||||
if m == nil {
|
||||
return nil, nil
|
||||
}
|
||||
size := m.SizeVT()
|
||||
dAtA = make([]byte, size)
|
||||
n, err := m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return dAtA[:n], nil
|
||||
}
|
||||
|
||||
func (m *Timestamp) MarshalToVT(dAtA []byte) (int, error) {
|
||||
size := m.SizeVT()
|
||||
return m.MarshalToSizedBufferVT(dAtA[:size])
|
||||
}
|
||||
|
||||
func (m *Timestamp) MarshalToSizedBufferVT(dAtA []byte) (int, error) {
|
||||
if m == nil {
|
||||
return 0, nil
|
||||
}
|
||||
i := len(dAtA)
|
||||
_ = i
|
||||
var l int
|
||||
_ = l
|
||||
if m.Nanos != 0 {
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(m.Nanos))
|
||||
i--
|
||||
dAtA[i] = 0x10
|
||||
}
|
||||
if m.Seconds != 0 {
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(m.Seconds))
|
||||
i--
|
||||
dAtA[i] = 0x8
|
||||
}
|
||||
return len(dAtA) - i, nil
|
||||
}
|
||||
|
||||
func (m *Timestamp) MarshalVTStrict() (dAtA []byte, err error) {
|
||||
if m == nil {
|
||||
return nil, nil
|
||||
}
|
||||
size := m.SizeVT()
|
||||
dAtA = make([]byte, size)
|
||||
n, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return dAtA[:n], nil
|
||||
}
|
||||
|
||||
func (m *Timestamp) MarshalToVTStrict(dAtA []byte) (int, error) {
|
||||
size := m.SizeVT()
|
||||
return m.MarshalToSizedBufferVTStrict(dAtA[:size])
|
||||
}
|
||||
|
||||
func (m *Timestamp) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {
|
||||
if m == nil {
|
||||
return 0, nil
|
||||
}
|
||||
i := len(dAtA)
|
||||
_ = i
|
||||
var l int
|
||||
_ = l
|
||||
if m.Nanos != 0 {
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(m.Nanos))
|
||||
i--
|
||||
dAtA[i] = 0x10
|
||||
}
|
||||
if m.Seconds != 0 {
|
||||
i = protohelpers.EncodeVarint(dAtA, i, uint64(m.Seconds))
|
||||
i--
|
||||
dAtA[i] = 0x8
|
||||
}
|
||||
return len(dAtA) - i, nil
|
||||
}
|
||||
|
||||
func (m *Timestamp) SizeVT() (n int) {
|
||||
if m == nil {
|
||||
return 0
|
||||
}
|
||||
var l int
|
||||
_ = l
|
||||
if m.Seconds != 0 {
|
||||
n += 1 + protohelpers.SizeOfVarint(uint64(m.Seconds))
|
||||
}
|
||||
if m.Nanos != 0 {
|
||||
n += 1 + protohelpers.SizeOfVarint(uint64(m.Nanos))
|
||||
}
|
||||
return n
|
||||
}
|
||||
|
||||
func (m *Timestamp) UnmarshalVT(dAtA []byte) error {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
for iNdEx < l {
|
||||
preIndex := iNdEx
|
||||
var wire uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
wire |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
fieldNum := int32(wire >> 3)
|
||||
wireType := int(wire & 0x7)
|
||||
if wireType == 4 {
|
||||
return fmt.Errorf("proto: Timestamp: wiretype end group for non-group")
|
||||
}
|
||||
if fieldNum <= 0 {
|
||||
return fmt.Errorf("proto: Timestamp: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
}
|
||||
switch fieldNum {
|
||||
case 1:
|
||||
if wireType != 0 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Seconds", wireType)
|
||||
}
|
||||
m.Seconds = 0
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
m.Seconds |= int64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
case 2:
|
||||
if wireType != 0 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Nanos", wireType)
|
||||
}
|
||||
m.Nanos = 0
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
m.Nanos |= int32(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
default:
|
||||
iNdEx = preIndex
|
||||
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if (iNdEx + skippy) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
iNdEx += skippy
|
||||
}
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
return nil
|
||||
}
|
||||
func (m *Timestamp) UnmarshalVTUnsafe(dAtA []byte) error {
|
||||
l := len(dAtA)
|
||||
iNdEx := 0
|
||||
for iNdEx < l {
|
||||
preIndex := iNdEx
|
||||
var wire uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
wire |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
fieldNum := int32(wire >> 3)
|
||||
wireType := int(wire & 0x7)
|
||||
if wireType == 4 {
|
||||
return fmt.Errorf("proto: Timestamp: wiretype end group for non-group")
|
||||
}
|
||||
if fieldNum <= 0 {
|
||||
return fmt.Errorf("proto: Timestamp: illegal tag %d (wire type %d)", fieldNum, wire)
|
||||
}
|
||||
switch fieldNum {
|
||||
case 1:
|
||||
if wireType != 0 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Seconds", wireType)
|
||||
}
|
||||
m.Seconds = 0
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
m.Seconds |= int64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
case 2:
|
||||
if wireType != 0 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Nanos", wireType)
|
||||
}
|
||||
m.Nanos = 0
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return protohelpers.ErrIntOverflow
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
m.Nanos |= int32(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
default:
|
||||
iNdEx = preIndex
|
||||
skippy, err := protohelpers.Skip(dAtA[iNdEx:])
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if (skippy < 0) || (iNdEx+skippy) < 0 {
|
||||
return protohelpers.ErrInvalidLength
|
||||
}
|
||||
if (iNdEx + skippy) > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
iNdEx += skippy
|
||||
}
|
||||
}
|
||||
|
||||
if iNdEx > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
return nil
|
||||
}
|
||||
95
vendor/github.com/planetscale/vtprotobuf/vtproto/ext.pb.go
generated
vendored
Normal file
95
vendor/github.com/planetscale/vtprotobuf/vtproto/ext.pb.go
generated
vendored
Normal file
@@ -0,0 +1,95 @@
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// versions:
|
||||
// protoc-gen-go v1.31.0
|
||||
// protoc v3.21.12
|
||||
// source: github.com/planetscale/vtprotobuf/vtproto/ext.proto
|
||||
|
||||
package vtproto
|
||||
|
||||
import (
|
||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||
descriptorpb "google.golang.org/protobuf/types/descriptorpb"
|
||||
reflect "reflect"
|
||||
)
|
||||
|
||||
const (
|
||||
// Verify that this generated code is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
||||
)
|
||||
|
||||
var file_github_com_planetscale_vtprotobuf_vtproto_ext_proto_extTypes = []protoimpl.ExtensionInfo{
|
||||
{
|
||||
ExtendedType: (*descriptorpb.MessageOptions)(nil),
|
||||
ExtensionType: (*bool)(nil),
|
||||
Field: 64101,
|
||||
Name: "vtproto.mempool",
|
||||
Tag: "varint,64101,opt,name=mempool",
|
||||
Filename: "github.com/planetscale/vtprotobuf/vtproto/ext.proto",
|
||||
},
|
||||
}
|
||||
|
||||
// Extension fields to descriptorpb.MessageOptions.
|
||||
var (
|
||||
// optional bool mempool = 64101;
|
||||
E_Mempool = &file_github_com_planetscale_vtprotobuf_vtproto_ext_proto_extTypes[0]
|
||||
)
|
||||
|
||||
var File_github_com_planetscale_vtprotobuf_vtproto_ext_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_github_com_planetscale_vtprotobuf_vtproto_ext_proto_rawDesc = []byte{
|
||||
0x0a, 0x33, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x70, 0x6c, 0x61,
|
||||
0x6e, 0x65, 0x74, 0x73, 0x63, 0x61, 0x6c, 0x65, 0x2f, 0x76, 0x74, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||
0x62, 0x75, 0x66, 0x2f, 0x76, 0x74, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x65, 0x78, 0x74, 0x2e,
|
||||
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x07, 0x76, 0x74, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20,
|
||||
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f,
|
||||
0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||
0x3a, 0x3b, 0x0a, 0x07, 0x6d, 0x65, 0x6d, 0x70, 0x6f, 0x6f, 0x6c, 0x12, 0x1f, 0x2e, 0x67, 0x6f,
|
||||
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x4d, 0x65,
|
||||
0x73, 0x73, 0x61, 0x67, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xe5, 0xf4, 0x03,
|
||||
0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x6d, 0x65, 0x6d, 0x70, 0x6f, 0x6f, 0x6c, 0x42, 0x49, 0x0a,
|
||||
0x13, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
||||
0x6f, 0x62, 0x75, 0x66, 0x42, 0x07, 0x56, 0x54, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x5a, 0x29, 0x67,
|
||||
0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x70, 0x6c, 0x61, 0x6e, 0x65, 0x74,
|
||||
0x73, 0x63, 0x61, 0x6c, 0x65, 0x2f, 0x76, 0x74, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
|
||||
0x2f, 0x76, 0x74, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
||||
}
|
||||
|
||||
var file_github_com_planetscale_vtprotobuf_vtproto_ext_proto_goTypes = []interface{}{
|
||||
(*descriptorpb.MessageOptions)(nil), // 0: google.protobuf.MessageOptions
|
||||
}
|
||||
var file_github_com_planetscale_vtprotobuf_vtproto_ext_proto_depIdxs = []int32{
|
||||
0, // 0: vtproto.mempool:extendee -> google.protobuf.MessageOptions
|
||||
1, // [1:1] is the sub-list for method output_type
|
||||
1, // [1:1] is the sub-list for method input_type
|
||||
1, // [1:1] is the sub-list for extension type_name
|
||||
0, // [0:1] is the sub-list for extension extendee
|
||||
0, // [0:0] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_github_com_planetscale_vtprotobuf_vtproto_ext_proto_init() }
|
||||
func file_github_com_planetscale_vtprotobuf_vtproto_ext_proto_init() {
|
||||
if File_github_com_planetscale_vtprotobuf_vtproto_ext_proto != nil {
|
||||
return
|
||||
}
|
||||
type x struct{}
|
||||
out := protoimpl.TypeBuilder{
|
||||
File: protoimpl.DescBuilder{
|
||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: file_github_com_planetscale_vtprotobuf_vtproto_ext_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 0,
|
||||
NumExtensions: 1,
|
||||
NumServices: 0,
|
||||
},
|
||||
GoTypes: file_github_com_planetscale_vtprotobuf_vtproto_ext_proto_goTypes,
|
||||
DependencyIndexes: file_github_com_planetscale_vtprotobuf_vtproto_ext_proto_depIdxs,
|
||||
ExtensionInfos: file_github_com_planetscale_vtprotobuf_vtproto_ext_proto_extTypes,
|
||||
}.Build()
|
||||
File_github_com_planetscale_vtprotobuf_vtproto_ext_proto = out.File
|
||||
file_github_com_planetscale_vtprotobuf_vtproto_ext_proto_rawDesc = nil
|
||||
file_github_com_planetscale_vtprotobuf_vtproto_ext_proto_goTypes = nil
|
||||
file_github_com_planetscale_vtprotobuf_vtproto_ext_proto_depIdxs = nil
|
||||
}
|
||||
4
vendor/github.com/tonistiigi/fsutil/Dockerfile
generated
vendored
4
vendor/github.com/tonistiigi/fsutil/Dockerfile
generated
vendored
@@ -1,7 +1,7 @@
|
||||
# syntax=docker/dockerfile:1
|
||||
|
||||
ARG GO_VERSION=1.21
|
||||
ARG XX_VERSION=1.4.0
|
||||
ARG GO_VERSION=1.23
|
||||
ARG XX_VERSION=1.5.0
|
||||
|
||||
FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx
|
||||
|
||||
|
||||
2
vendor/github.com/tonistiigi/fsutil/receive.go
generated
vendored
2
vendor/github.com/tonistiigi/fsutil/receive.go
generated
vendored
@@ -197,7 +197,7 @@ func (r *receiver) run(ctx context.Context) error {
|
||||
}
|
||||
var p types.Packet
|
||||
for {
|
||||
p = types.Packet{Data: p.Data[:0]}
|
||||
p.ResetVT()
|
||||
if err := r.conn.RecvMsg(&p); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user