Skip to content

Commit

Permalink
Add initial implementation of protoc-gen-go plugin.
Browse files Browse the repository at this point in the history
  * (A) protoyangplugin
    - This PR adds an initial implementation of a protoc-gen-go plugin
      which is able to extract the yext schema path annotation from an
      input proto file and output a map of the path to types.
  • Loading branch information
robshakir committed Aug 16, 2018
1 parent b6230b7 commit 11ef9b7
Show file tree
Hide file tree
Showing 5 changed files with 12,264 additions and 0 deletions.
220 changes: 220 additions & 0 deletions protoyangplugin/pkg/testproto/test.pb.go

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

35 changes: 35 additions & 0 deletions protoyangplugin/pkg/testproto/test.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
// Copyright 2018 Google Inc.
//
// 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.

syntax = "proto3";

package test;
import "github.com/openconfig/ygot/proto/yext/yext.proto";


message AMessage {
BMessage set = 1 [(yext.schemapath) = "/b"];
BMessage unset = 2;
CMessage nested = 3 [(yext.schemapath) = "/b/c"];
message CMessage {
DMessage nested = 4 [(yext.schemapath) = "/b/c/d"];
message DMessage {
string field = 1 [(yext.schemapath) = "/b/c/d/field"];
}
}
}

message BMessage {
string field = 1;
}

0 comments on commit 11ef9b7

Please sign in to comment.