Skip to content

Commit 017b504

Browse files
Mikhail T.Mikhail T.
Mikhail T.
authored and
Mikhail T.
committed
Resolve the conflict in golang#346 and raise the versions.
1 parent 90f7188 commit 017b504

File tree

121 files changed

+28403
-16563
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+28403
-16563
lines changed

appengine.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"context"
1313
"net/http"
1414

15-
"github.com/golang/protobuf/proto"
15+
"google.golang.org/protobuf/proto"
1616

1717
"google.golang.org/appengine/internal"
1818
)

blobstore/blobstore.go

+4-6
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ import (
2323
"strings"
2424
"time"
2525

26-
"github.com/golang/protobuf/proto"
2726
"golang.org/x/text/encoding/htmlindex"
28-
2927
"google.golang.org/appengine"
3028
"google.golang.org/appengine/datastore"
3129
"google.golang.org/appengine/internal"
@@ -100,7 +98,7 @@ func Send(response http.ResponseWriter, blobKey appengine.BlobKey) {
10098
// opts parameter may be nil.
10199
func UploadURL(c context.Context, successPath string, opts *UploadURLOptions) (*url.URL, error) {
102100
req := &blobpb.CreateUploadURLRequest{
103-
SuccessPath: proto.String(successPath),
101+
SuccessPath: successPath,
104102
}
105103
if opts != nil {
106104
if n := opts.MaxUploadBytes; n != 0 {
@@ -117,7 +115,7 @@ func UploadURL(c context.Context, successPath string, opts *UploadURLOptions) (*
117115
if err := internal.Call(c, "blobstore", "CreateUploadURL", req, res); err != nil {
118116
return nil, err
119117
}
120-
return url.Parse(*res.Url)
118+
return url.Parse(res.Url)
121119
}
122120

123121
// UploadURLOptions are the options to create an upload URL.
@@ -296,11 +294,11 @@ func NewReader(c context.Context, blobKey appengine.BlobKey) Reader {
296294
// The filename should be of the form "/gs/bucket_name/object_name".
297295
func BlobKeyForFile(c context.Context, filename string) (appengine.BlobKey, error) {
298296
req := &blobpb.CreateEncodedGoogleStorageKeyRequest{
299-
Filename: &filename,
297+
Filename: filename,
300298
}
301299
res := &blobpb.CreateEncodedGoogleStorageKeyResponse{}
302300
if err := internal.Call(c, "blobstore", "CreateEncodedGoogleStorageKey", req, res); err != nil {
303301
return "", err
304302
}
305-
return appengine.BlobKey(*res.BlobKey), nil
303+
return appengine.BlobKey(res.BlobKey), nil
306304
}

blobstore/blobstore_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ func min(x, y int) int {
4040
}
4141

4242
func fakeFetchData(req *pb.FetchDataRequest, res *pb.FetchDataResponse) error {
43-
i0 := int(*req.StartIndex)
44-
i1 := int(*req.EndIndex + 1) // Blobstore's end-indices are inclusive; Go's are exclusive.
45-
bk := *req.BlobKey
43+
i0 := int(req.StartIndex)
44+
i1 := int(req.EndIndex + 1) // Blobstore's end-indices are inclusive; Go's are exclusive.
45+
bk := req.BlobKey
4646
if i := strings.Index(bk, "."); i != -1 {
4747
// Strip everything past the ".".
4848
bk = bk[:i]

blobstore/read.go

+3-5
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ import (
1212
"os"
1313
"sync"
1414

15-
"github.com/golang/protobuf/proto"
16-
1715
"google.golang.org/appengine"
1816
"google.golang.org/appengine/internal"
1917

@@ -132,9 +130,9 @@ func (r *reader) Seek(offset int64, whence int) (ret int64, err error) {
132130
// the data is saved as r.buf.
133131
func (r *reader) fetch(off int64) error {
134132
req := &blobpb.FetchDataRequest{
135-
BlobKey: proto.String(string(r.blobKey)),
136-
StartIndex: proto.Int64(off),
137-
EndIndex: proto.Int64(off + readBufferSize - 1), // EndIndex is inclusive.
133+
BlobKey: string(r.blobKey),
134+
StartIndex: off,
135+
EndIndex: off + readBufferSize - 1, // EndIndex is inclusive.
138136
}
139137
res := &blobpb.FetchDataResponse{}
140138
if err := internal.Call(r.c, "blobstore", "FetchData", req, res); err != nil {

capability/capability.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ func Enabled(ctx context.Context, api, capability string) bool {
3636
}
3737

3838
req := &pb.IsEnabledRequest{
39-
Package: &api,
39+
Package: api,
4040
Capability: []string{capability},
4141
}
4242
res := &pb.IsEnabledResponse{}

channel/channel.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import (
3838
// The clientID is an application-provided string used to identify the client.
3939
func Create(c context.Context, clientID string) (token string, err error) {
4040
req := &pb.CreateChannelRequest{
41-
ApplicationKey: &clientID,
41+
ApplicationKey: clientID,
4242
}
4343
resp := &pb.CreateChannelResponse{}
4444
err = internal.Call(c, service, "CreateChannel", req, resp)
@@ -49,8 +49,8 @@ func Create(c context.Context, clientID string) (token string, err error) {
4949
// Send sends a message on the channel associated with clientID.
5050
func Send(c context.Context, clientID, message string) error {
5151
req := &pb.SendMessageRequest{
52-
ApplicationKey: &clientID,
53-
Message: &message,
52+
ApplicationKey: clientID,
53+
Message: message,
5454
}
5555
resp := &basepb.VoidProto{}
5656
return remapError(internal.Call(c, service, "SendChannelMessage", req, resp))

datastore/datastore.go

+15-12
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"fmt"
1111
"reflect"
1212

13-
"github.com/golang/protobuf/proto"
13+
"google.golang.org/protobuf/proto"
1414

1515
"google.golang.org/appengine"
1616
"google.golang.org/appengine/internal"
@@ -48,6 +48,9 @@ func (e *ErrFieldMismatch) Error() string {
4848
func protoToKey(r *pb.Reference) (k *Key, err error) {
4949
appID := r.GetApp()
5050
namespace := r.GetNameSpace()
51+
if r.Path == nil {
52+
return nil, fmt.Errorf("path is empty: %w", ErrInvalidKey)
53+
}
5154
for _, e := range r.Path.Element {
5255
k = &Key{
5356
kind: e.GetType(),
@@ -74,11 +77,11 @@ func keyToProto(defaultAppID string, k *Key) *pb.Reference {
7477
for i := k; i != nil; i = i.parent {
7578
n++
7679
}
77-
e := make([]*pb.Path_Element, n)
80+
e := make([]*pb.Path_ElementType, n)
7881
for i := k; i != nil; i = i.parent {
7982
n--
80-
e[n] = &pb.Path_Element{
81-
Type: &i.kind,
83+
e[n] = &pb.Path_ElementType{
84+
Type: i.kind,
8285
}
8386
// At most one of {Name,Id} should be set.
8487
// Neither will be set for incomplete keys.
@@ -93,7 +96,7 @@ func keyToProto(defaultAppID string, k *Key) *pb.Reference {
9396
namespace = proto.String(k.namespace)
9497
}
9598
return &pb.Reference{
96-
App: proto.String(appID),
99+
App: appID,
97100
NameSpace: namespace,
98101
Path: &pb.Path{
99102
Element: e,
@@ -138,10 +141,10 @@ func multiValid(key []*Key) error {
138141

139142
// referenceValueToKey is the same as protoToKey except the input is a
140143
// PropertyValue_ReferenceValue instead of a Reference.
141-
func referenceValueToKey(r *pb.PropertyValue_ReferenceValue) (k *Key, err error) {
144+
func referenceValueToKey(r *pb.PropertyValue_ReferenceValueType) (k *Key, err error) {
142145
appID := r.GetApp()
143146
namespace := r.GetNameSpace()
144-
for _, e := range r.Pathelement {
147+
for _, e := range r.PathElement {
145148
k = &Key{
146149
kind: e.GetType(),
147150
stringID: e.GetName(),
@@ -159,20 +162,20 @@ func referenceValueToKey(r *pb.PropertyValue_ReferenceValue) (k *Key, err error)
159162

160163
// keyToReferenceValue is the same as keyToProto except the output is a
161164
// PropertyValue_ReferenceValue instead of a Reference.
162-
func keyToReferenceValue(defaultAppID string, k *Key) *pb.PropertyValue_ReferenceValue {
165+
func keyToReferenceValue(defaultAppID string, k *Key) *pb.PropertyValue_ReferenceValueType {
163166
ref := keyToProto(defaultAppID, k)
164-
pe := make([]*pb.PropertyValue_ReferenceValue_PathElement, len(ref.Path.Element))
167+
pe := make([]*pb.PropertyValue_ReferenceValueType_PathElementType, len(ref.Path.Element))
165168
for i, e := range ref.Path.Element {
166-
pe[i] = &pb.PropertyValue_ReferenceValue_PathElement{
169+
pe[i] = &pb.PropertyValue_ReferenceValueType_PathElementType{
167170
Type: e.Type,
168171
Id: e.Id,
169172
Name: e.Name,
170173
}
171174
}
172-
return &pb.PropertyValue_ReferenceValue{
175+
return &pb.PropertyValue_ReferenceValueType{
173176
App: ref.App,
174177
NameSpace: ref.NameSpace,
175-
Pathelement: pe,
178+
PathElement: pe,
176179
}
177180
}
178181

datastore/internal/cloudkey/cloudkey.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"errors"
1313
"strings"
1414

15-
"github.com/golang/protobuf/proto"
1615
cloudpb "google.golang.org/appengine/datastore/internal/cloudpb"
16+
"google.golang.org/protobuf/proto"
1717
)
1818

1919
/////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)