Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvements to recently introduced sourceinfo stuff #500

Merged
merged 3 commits into from
Feb 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions desc/builder/builder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -540,8 +540,9 @@ func roundTripFile(t *testing.T, fd *desc.FileDescriptor) {
fdp.PublicDependency = nil
fdp.WeakDependency = nil

// Remove source code info that the builder generated since the original
// has none.
// Remove source code info: what the builder generates is not expected to
// match the original source.
fdp.SourceCodeInfo = nil
roundTripped.AsFileDescriptorProto().SourceCodeInfo = nil

// Finally, sort the imports. That way they match the built result (which
Expand Down
2 changes: 2 additions & 0 deletions desc/load.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"github.com/golang/protobuf/proto"
dpb "github.com/golang/protobuf/protoc-gen-go/descriptor"

"github.com/jhump/protoreflect/desc/sourceinfo"
"github.com/jhump/protoreflect/internal"
)

Expand Down Expand Up @@ -54,6 +55,7 @@ func loadFileDescriptorLocked(file string, r *ImportResolver) (*FileDescriptor,
}

func toFileDescriptorLocked(fd *dpb.FileDescriptorProto, r *ImportResolver) (*FileDescriptor, error) {
fd.SourceCodeInfo = sourceinfo.SourceInfoForFile(fd.GetName())
deps := make([]*FileDescriptor, len(fd.GetDependency()))
for i, dep := range fd.GetDependency() {
resolvedDep := r.ResolveImport(fd.GetName(), dep)
Expand Down
3 changes: 3 additions & 0 deletions desc/protoparse/linker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ func checkFiles(t *testing.T, act, exp *desc.FileDescriptor, checked map[string]
}
checked[act.GetName()] = struct{}{}

// remove any source code info from expected value, since actual won't have any
exp.AsFileDescriptorProto().SourceCodeInfo = nil

testutil.Require(t, proto.Equal(exp.AsFileDescriptorProto(), act.AsProto()), "linked descriptor did not match output from protoc:\nwanted: %s\ngot: %s", toString(exp.AsProto()), toString(act.AsProto()))

for i, dep := range act.GetDependencies() {
Expand Down
2 changes: 1 addition & 1 deletion desc/protoprint/testfiles/desc_test2-compact.proto
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
syntax = "proto2";
option go_package = "github.com/jhump/protoreflect/internal/testprotos";
package testprotos;
import "desc_test1.proto";
import "pkg/desc_test_pkg.proto";
import "nopkg/desc_test_nopkg.proto";
option go_package = "github.com/jhump/protoreflect/internal/testprotos";
message Frobnitz {
optional TestMessage a = 1;
optional AnotherTestMessage b = 2;
Expand Down
4 changes: 2 additions & 2 deletions desc/protoprint/testfiles/desc_test2-default.proto
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
syntax = "proto2";

option go_package = "github.com/jhump/protoreflect/internal/testprotos";

package testprotos;

import "desc_test1.proto";
Expand All @@ -8,8 +10,6 @@ import "pkg/desc_test_pkg.proto";

import "nopkg/desc_test_nopkg.proto";

option go_package = "github.com/jhump/protoreflect/internal/testprotos";

message Frobnitz {
optional TestMessage a = 1;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
syntax = "proto2";

option go_package = "github.com/jhump/protoreflect/internal/testprotos";

package testprotos;

import "desc_test1.proto";
Expand All @@ -8,8 +10,6 @@ import "pkg/desc_test_pkg.proto";

import "nopkg/desc_test_nopkg.proto";

option go_package = "github.com/jhump/protoreflect/internal/testprotos";

message Frobnitz {
optional TestMessage a = 1;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
syntax = "proto2";

option go_package = "github.com/jhump/protoreflect/internal/testprotos";

package testprotos;

import "desc_test1.proto";
Expand All @@ -8,8 +10,6 @@ import "pkg/desc_test_pkg.proto";

import "nopkg/desc_test_nopkg.proto";

option go_package = "github.com/jhump/protoreflect/internal/testprotos";

message Frobnitz {
optional TestMessage a = 1;

Expand Down
4 changes: 2 additions & 2 deletions desc/protoprint/testfiles/desc_test2-only-doc-comments.proto
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
syntax = "proto2";

option go_package = "github.com/jhump/protoreflect/internal/testprotos";

package testprotos;

import "desc_test1.proto";
Expand All @@ -8,8 +10,6 @@ import "pkg/desc_test_pkg.proto";

import "nopkg/desc_test_nopkg.proto";

option go_package = "github.com/jhump/protoreflect/internal/testprotos";

message Frobnitz {
optional TestMessage a = 1;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
syntax = "proto2";

option go_package = "github.com/jhump/protoreflect/internal/testprotos";

package testprotos;

import "desc_test1.proto";
Expand All @@ -8,8 +10,6 @@ import "pkg/desc_test_pkg.proto";

import "nopkg/desc_test_nopkg.proto";

option go_package = "github.com/jhump/protoreflect/internal/testprotos";

message Frobnitz {
optional TestMessage a = 1;

Expand Down
8 changes: 2 additions & 6 deletions desc/sourceinfo/cmd/protoc-gen-gosrcinfo/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@ package main
import (
"fmt"
"path"
"reflect"
"strings"

"github.com/golang/protobuf/proto"
"github.com/jhump/gopoet"
"github.com/jhump/goprotoc/plugins"
"google.golang.org/protobuf/types/descriptorpb"
"google.golang.org/protobuf/types/pluginpb"

"github.com/jhump/protoreflect/desc"
Expand Down Expand Up @@ -61,8 +59,6 @@ func genSourceInfo(req *plugins.CodeGenRequest, resp *plugins.CodeGenResponse) e
return nil
}

var typeOfSourceInfo = reflect.TypeOf((*descriptorpb.SourceCodeInfo)(nil)).Elem()

func generateSourceInfo(fd *desc.FileDescriptor, names *plugins.GoNames, resp *plugins.CodeGenResponse, args codeGenArgs) error {
si := fd.AsFileDescriptorProto().GetSourceCodeInfo()
if len(si.GetLocation()) == 0 {
Expand All @@ -80,7 +76,7 @@ func generateSourceInfo(fd *desc.FileDescriptor, names *plugins.GoNames, resp *p
return fmt.Errorf("failed to serialize source code info: %w", err)
}

srcCodeInfo := f.EnsureTypeImported(gopoet.TypeNameForReflectType(typeOfSourceInfo))
descpbPkg := f.RegisterImport("google.golang.org/protobuf/types/descriptorpb", "descriptorpb")
srcInfoPkg := f.RegisterImport("github.com/jhump/protoreflect/desc/sourceinfo", "sourceinfo")
protoPkg := f.RegisterImport("google.golang.org/protobuf/proto", "proto")

Expand All @@ -104,7 +100,7 @@ func generateSourceInfo(fd *desc.FileDescriptor, names *plugins.GoNames, resp *p
initBlock.Println("}")
f.AddVar(gopoet.NewVar(varName).SetInitializer(&initBlock))
f.AddElement(gopoet.NewFunc("init").
Printlnf("var si %s", srcCodeInfo).
Printlnf("var si %sSourceCodeInfo", descpbPkg).
Printlnf("if err := %sUnmarshal(%s, &si); err != nil {", protoPkg, varName).
Println(" panic(err)").
Println("}").
Expand Down
6 changes: 6 additions & 0 deletions desc/sourceinfo/srcinforeflection/serverreflection.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
// that includes source code info, if the protoc-gen-gosrcinfo plugin was used
// for the files that contain the descriptors being served. This allows for
// sending comment information to dynamic/reflective clients.
//
// NOTE: This package is EXPERIMENTAL! It may not see the light of day in an
// actual release. Instead, the hope is that the core gRPC reflection package
// can be updated in a way to more easily accommodate customizations, such as
// the caller wanting to use sourceinfo.GlobalFiles as the source of descriptors.
// Related: https://github.com/grpc/grpc-go/pull/5197
package srcinforeflection

import (
Expand Down
3 changes: 3 additions & 0 deletions dynamic/dynamic_message_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2045,6 +2045,9 @@ func TestGetDescriptor(t *testing.T) {
testutil.Eq(t, expectedPath, actualPath, "%s: descriptor paths are not the same", testCase.name)

actualFd, err := internal.DecodeFileDescriptor("TestMessage", actualBytes)
// desc.LoadMessageDescriptorForMessage above can incorporate source code info that will
// not be present when directly calling generated messages's Descriptor method
actualFd.SourceCodeInfo = nil
testutil.Ok(t, err, "%s: failed to decode descriptor from bytes", testCase.name)
expectedFd, err := internal.DecodeFileDescriptor("TestMessage", expectedBytes)
testutil.Ok(t, err, "%s: failed to decode descriptor from bytes", testCase.name)
Expand Down
2 changes: 1 addition & 1 deletion internal/testprotos/desc_test1.pb.srcinfo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/testprotos/desc_test2.pb.srcinfo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/testprotos/desc_test_comments.pb.srcinfo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/testprotos/desc_test_complex.pb.srcinfo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/testprotos/desc_test_defaults.pb.srcinfo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/testprotos/desc_test_field_types.pb.srcinfo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/testprotos/desc_test_oneof.pb.srcinfo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/testprotos/desc_test_options.pb.srcinfo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/testprotos/desc_test_proto3.pb.srcinfo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/testprotos/desc_test_value.pb.srcinfo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/testprotos/desc_test_wellknowntypes.pb.srcinfo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/testprotos/grpc/test.pb.srcinfo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/testprotos/nopkg/desc_test_nopkg.pb.srcinfo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion internal/testprotos/pkg/desc_test_pkg.pb.srcinfo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.