Compare commits
	
		
			28 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 858bf4716c | |||
| 0c6589a630 | |||
| 6152d866d6 | |||
| 5565534f79 | |||
| 6228457361 | |||
| 190a1903f4 | |||
| d658731441 | |||
| 6256b7061b | |||
| 02ab3ed5f6 | |||
| 5eaac2003d | |||
| 59922913a9 | |||
| d702897cb4 | |||
| ec03ee131e | |||
| 86e3dafc12 | |||
| 221e4aff6d | |||
| d1cc553df8 | |||
| 454d86cbff | |||
| e542efc463 | |||
| 8e9be8cda7 | |||
| 46ff53ccd7 | |||
| 244afcbe64 | |||
| d6307cc251 | |||
| 543132594b | |||
| e4433a0257 | |||
| 4f94497f82 | |||
| 3e1a0a83cf | |||
|  | 91c4cba229 | ||
|  | 76e6924d40 | 
| @@ -23,4 +23,4 @@ $> protoc --go_micro_out=debug=true,components="micro|http":. input.proto | |||||||
|  |  | ||||||
| * Install the **go** compiler and tools from https://golang.org/doc/install | * Install the **go** compiler and tools from https://golang.org/doc/install | ||||||
| * Install **protoc-gen-go**: `go install google.golang.org/protobuf/cmd/protoc-gen-go` | * Install **protoc-gen-go**: `go install google.golang.org/protobuf/cmd/protoc-gen-go` | ||||||
| * Install **protoc-gen-go-micro**: `go install go.unistack.org/protoc-gen-go-micro/v3` | * Install **protoc-gen-go-micro**: `go install go.unistack.org/protoc-gen-go-micro/v4` | ||||||
|   | |||||||
							
								
								
									
										2
									
								
								ast.go
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								ast.go
									
									
									
									
									
								
							| @@ -10,7 +10,7 @@ import ( | |||||||
| 	"strings" | 	"strings" | ||||||
|  |  | ||||||
| 	"github.com/fatih/structtag" | 	"github.com/fatih/structtag" | ||||||
| 	tag_options "go.unistack.org/micro-proto/v3/tag" | 	tag_options "go.unistack.org/micro-proto/v4/tag" | ||||||
| 	"google.golang.org/protobuf/compiler/protogen" | 	"google.golang.org/protobuf/compiler/protogen" | ||||||
| 	"google.golang.org/protobuf/proto" | 	"google.golang.org/protobuf/proto" | ||||||
| ) | ) | ||||||
|   | |||||||
| @@ -2,7 +2,7 @@ syntax = "proto3"; | |||||||
|  |  | ||||||
| package example; | package example; | ||||||
|  |  | ||||||
| option go_package = "github.com/unistack-org/protoc-gen-go-micro/v3/example;examplepb"; | option go_package = "github.com/unistack-org/protoc-gen-go-micro/v4/example;examplepb"; | ||||||
|  |  | ||||||
| import "tag/tag.proto"; | import "tag/tag.proto"; | ||||||
| import "api/annotations.proto"; | import "api/annotations.proto"; | ||||||
|   | |||||||
							
								
								
									
										18
									
								
								go.mod
									
									
									
									
									
								
							
							
						
						
									
										18
									
								
								go.mod
									
									
									
									
									
								
							| @@ -1,10 +1,18 @@ | |||||||
| module go.unistack.org/protoc-gen-go-micro/v3 | module go.unistack.org/protoc-gen-go-micro/v4 | ||||||
|  |  | ||||||
| go 1.16 | go 1.19 | ||||||
|  |  | ||||||
| require ( | require ( | ||||||
| 	github.com/fatih/structtag v1.2.0 | 	github.com/fatih/structtag v1.2.0 | ||||||
| 	go.unistack.org/micro-proto/v3 v3.3.1 | 	go.unistack.org/micro-proto/v4 v4.0.1 | ||||||
| 	golang.org/x/tools v0.6.0 | 	golang.org/x/tools v0.11.0 | ||||||
| 	google.golang.org/protobuf v1.28.1 | 	google.golang.org/protobuf v1.31.0 | ||||||
|  | ) | ||||||
|  |  | ||||||
|  | require ( | ||||||
|  | 	github.com/golang/protobuf v1.5.3 // indirect | ||||||
|  | 	github.com/google/gnostic v0.6.9 // indirect | ||||||
|  | 	golang.org/x/mod v0.12.0 // indirect | ||||||
|  | 	golang.org/x/sys v0.10.0 // indirect | ||||||
|  | 	gopkg.in/yaml.v3 v3.0.1 // indirect | ||||||
| ) | ) | ||||||
|   | |||||||
							
								
								
									
										48
									
								
								go.sum
									
									
									
									
									
								
							
							
						
						
									
										48
									
								
								go.sum
									
									
									
									
									
								
							| @@ -37,8 +37,9 @@ github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QD | |||||||
| github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= | github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= | ||||||
| github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= | github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= | ||||||
| github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= | github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= | ||||||
| github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= |  | ||||||
| github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= | github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= | ||||||
|  | github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= | ||||||
|  | github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= | ||||||
| github.com/google/gnostic v0.6.9 h1:ZK/5VhkoX835RikCHpSUJV9a+S3e1zLh59YnyWeBW+0= | github.com/google/gnostic v0.6.9 h1:ZK/5VhkoX835RikCHpSUJV9a+S3e1zLh59YnyWeBW+0= | ||||||
| github.com/google/gnostic v0.6.9/go.mod h1:Nm8234We1lq6iB9OmlgNv3nH91XLLVZHCDayfA3xq+E= | github.com/google/gnostic v0.6.9/go.mod h1:Nm8234We1lq6iB9OmlgNv3nH91XLLVZHCDayfA3xq+E= | ||||||
| github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= | github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= | ||||||
| @@ -66,42 +67,33 @@ github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5 | |||||||
| github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= | github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= | ||||||
| github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= | github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= | ||||||
| github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= | github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= | ||||||
| github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= |  | ||||||
| go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= | go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= | ||||||
| go.unistack.org/micro-proto/v3 v3.3.1 h1:nQ0MtWvP2G3QrpOgawVOPhpZZYkq6umTGDqs8FxJYIo= | go.unistack.org/micro-proto/v4 v4.0.1 h1:2RKHgtCOOcAFgKsnngGK5bqM/6MWXOjVCdw03dbuoF8= | ||||||
| go.unistack.org/micro-proto/v3 v3.3.1/go.mod h1:cwRyv8uInM2I7EbU7O8Fx2Ls3N90Uw9UCCcq4olOdfE= | go.unistack.org/micro-proto/v4 v4.0.1/go.mod h1:ArmK7o+uFvxSY3dbJhKBBX4Pm1rhWdLEFf3LxBrMtec= | ||||||
| golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= | golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= | ||||||
| golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= | golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= | ||||||
| golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= |  | ||||||
| golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= | golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= | ||||||
| golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= | golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= | ||||||
| golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= | golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= | ||||||
| golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= | golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= | ||||||
| golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= | golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc= | ||||||
| golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= | golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= | ||||||
| golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= |  | ||||||
| golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= | golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= | ||||||
| golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= | golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= | ||||||
| golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= | golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= | ||||||
| golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= | golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= | ||||||
| golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= | golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= | ||||||
| golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= | golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= | ||||||
| golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= |  | ||||||
| golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= | golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= | ||||||
| golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= |  | ||||||
| golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= | golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= | ||||||
| golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= | golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= | ||||||
| golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= |  | ||||||
| golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= |  | ||||||
| golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= | golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= | ||||||
| golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= | golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= | ||||||
| golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= | golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= | ||||||
| golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= | golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= | ||||||
| golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= | golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= | ||||||
| golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= | golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= | ||||||
| golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= | golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E= | ||||||
| golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o= |  | ||||||
| golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= |  | ||||||
| golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= | golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= | ||||||
| golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= | golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= | ||||||
| golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | ||||||
| @@ -110,30 +102,20 @@ golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7w | |||||||
| golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | ||||||
| golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= | ||||||
| golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | ||||||
| golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | golang.org/x/sys v0.10.0 h1:SqMFp9UcQJZa+pmYuAKjd9xq1f0j5rLcDIk0mj4qAsA= | ||||||
| golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= | ||||||
| golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= |  | ||||||
| golang.org/x/sys v0.5.0 h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU= |  | ||||||
| golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= |  | ||||||
| golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= | golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= | ||||||
| golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= |  | ||||||
| golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= |  | ||||||
| golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= | golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= | ||||||
| golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= | golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= | ||||||
| golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= | golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= | ||||||
| golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= | golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= | ||||||
| golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= |  | ||||||
| golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= |  | ||||||
| golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= | golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= | ||||||
| golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= | golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= | ||||||
| golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= | golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= | ||||||
| golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= | golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= | ||||||
| golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= | golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= | ||||||
| golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= | golang.org/x/tools v0.11.0 h1:EMCa6U9S2LtZXLAMoWiR/R8dAQFRqbAitmbJ2UKhoi8= | ||||||
| golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= | golang.org/x/tools v0.11.0/go.mod h1:anzJrxPjNtfgiYQYirP2CPGzGLxrH2u2QBhn6Bf3qY8= | ||||||
| golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= |  | ||||||
| golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= |  | ||||||
| golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= |  | ||||||
| golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= | golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= | ||||||
| golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= | golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= | ||||||
| golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= | golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= | ||||||
| @@ -163,15 +145,15 @@ google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlba | |||||||
| google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= | google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= | ||||||
| google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= | google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= | ||||||
| google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= | google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= | ||||||
| google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w= | google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= | ||||||
| google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= | google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= | ||||||
| gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | ||||||
| gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= | gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= | ||||||
| gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= | ||||||
| gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= | gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= | ||||||
| gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= | gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= | ||||||
| gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= | gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= | ||||||
| gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo= | gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= | ||||||
| gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= | gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= | ||||||
| honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= | honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= | ||||||
| honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= | honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= | ||||||
|   | |||||||
							
								
								
									
										7
									
								
								http.go
									
									
									
									
									
								
							
							
						
						
									
										7
									
								
								http.go
									
									
									
									
									
								
							| @@ -38,14 +38,15 @@ func (g *Generator) httpGenerate(component string, plugin *protogen.Plugin, genC | |||||||
| 		} | 		} | ||||||
|  |  | ||||||
| 		for _, service := range file.Services { | 		for _, service := range file.Services { | ||||||
|  | 			g.generateServiceEndpoints(gfile, service, component) | ||||||
| 			if genClient { | 			if genClient { | ||||||
| 				g.generateServiceClient(gfile, service) | 				g.generateServiceClient(gfile, file, service) | ||||||
| 				g.generateServiceClientMethods(gfile, service, component) | 				g.generateServiceClientMethods(gfile, service, component) | ||||||
| 			} | 			} | ||||||
| 			if genServer { | 			if genServer { | ||||||
| 				generateServiceServer(gfile, service) | 				g.generateServiceServer(gfile, file, service) | ||||||
| 				g.generateServiceServerMethods(gfile, service) | 				g.generateServiceServerMethods(gfile, service) | ||||||
| 				g.generateServiceRegister(gfile, service, component) | 				g.generateServiceRegister(gfile, file, service, component) | ||||||
| 			} | 			} | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|   | |||||||
							
								
								
									
										3
									
								
								main.go
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								main.go
									
									
									
									
									
								
							| @@ -90,6 +90,9 @@ func (g *Generator) Generate(plugin *protogen.Plugin) error { | |||||||
| 			continue | 			continue | ||||||
| 		case "micro": | 		case "micro": | ||||||
| 			err = g.microGenerate(component, plugin, genClient, genServer) | 			err = g.microGenerate(component, plugin, genClient, genServer) | ||||||
|  | 			if err == nil { | ||||||
|  | 				err = g.writeErrors(plugin) | ||||||
|  | 			} | ||||||
| 		case "http": | 		case "http": | ||||||
| 			err = g.httpGenerate(component, plugin, genClient, genServer) | 			err = g.httpGenerate(component, plugin, genClient, genServer) | ||||||
| 		case "grpc", "drpc", "rpc": | 		case "grpc", "drpc", "rpc": | ||||||
|   | |||||||
							
								
								
									
										1
									
								
								micro.go
									
									
									
									
									
								
							
							
						
						
									
										1
									
								
								micro.go
									
									
									
									
									
								
							| @@ -40,7 +40,6 @@ func (g *Generator) microGenerate(component string, plugin *protogen.Plugin, gen | |||||||
| 		// generate services | 		// generate services | ||||||
| 		for _, service := range file.Services { | 		for _, service := range file.Services { | ||||||
| 			g.generateServiceName(gfile, service) | 			g.generateServiceName(gfile, service) | ||||||
| 			g.generateServiceEndpoints(gfile, service) |  | ||||||
| 			if genClient { | 			if genClient { | ||||||
| 				g.generateServiceClientInterface(gfile, service) | 				g.generateServiceClientInterface(gfile, service) | ||||||
| 				g.generateServiceClientStreamInterface(gfile, service) | 				g.generateServiceClientStreamInterface(gfile, service) | ||||||
|   | |||||||
| @@ -24,8 +24,8 @@ import ( | |||||||
| 	"strings" | 	"strings" | ||||||
| 	"sync" | 	"sync" | ||||||
|  |  | ||||||
| 	"go.unistack.org/micro-proto/v3/api" | 	"go.unistack.org/micro-proto/v4/api" | ||||||
| 	v3 "go.unistack.org/micro-proto/v3/openapiv3" | 	v3 "go.unistack.org/micro-proto/v4/openapiv3" | ||||||
| 	"google.golang.org/protobuf/compiler/protogen" | 	"google.golang.org/protobuf/compiler/protogen" | ||||||
| 	"google.golang.org/protobuf/proto" | 	"google.golang.org/protobuf/proto" | ||||||
| 	"google.golang.org/protobuf/reflect/protoreflect" | 	"google.golang.org/protobuf/reflect/protoreflect" | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| package main | package main | ||||||
|  |  | ||||||
| import v3 "go.unistack.org/micro-proto/v3/openapiv3" | import v3 "go.unistack.org/micro-proto/v4/openapiv3" | ||||||
|  |  | ||||||
| func getMediaType(eopt interface{}) string { | func getMediaType(eopt interface{}) string { | ||||||
| 	ctype := "application/json" | 	ctype := "application/json" | ||||||
|   | |||||||
							
								
								
									
										6
									
								
								rpc.go
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								rpc.go
									
									
									
									
									
								
							| @@ -37,13 +37,13 @@ func (g *Generator) rpcGenerate(component string, plugin *protogen.Plugin, genCl | |||||||
| 		} | 		} | ||||||
| 		for _, service := range file.Services { | 		for _, service := range file.Services { | ||||||
| 			if genClient { | 			if genClient { | ||||||
| 				g.generateServiceClient(gfile, service) | 				g.generateServiceClient(gfile, file, service) | ||||||
| 				g.generateServiceClientMethods(gfile, service, component) | 				g.generateServiceClientMethods(gfile, service, component) | ||||||
| 			} | 			} | ||||||
| 			if genServer { | 			if genServer { | ||||||
| 				generateServiceServer(gfile, service) | 				g.generateServiceServer(gfile, file, service) | ||||||
| 				g.generateServiceServerMethods(gfile, service) | 				g.generateServiceServerMethods(gfile, service) | ||||||
| 				g.generateServiceRegister(gfile, service, component) | 				g.generateServiceRegister(gfile, file, service, component) | ||||||
| 			} | 			} | ||||||
| 			if component == "grpc" && g.reflection { | 			if component == "grpc" && g.reflection { | ||||||
| 				g.generateServiceDesc(gfile, file, service) | 				g.generateServiceDesc(gfile, file, service) | ||||||
|   | |||||||
							
								
								
									
										225
									
								
								util.go
									
									
									
									
									
								
							
							
						
						
									
										225
									
								
								util.go
									
									
									
									
									
								
							| @@ -8,9 +8,9 @@ import ( | |||||||
| 	"strings" | 	"strings" | ||||||
| 	"time" | 	"time" | ||||||
|  |  | ||||||
| 	api_options "go.unistack.org/micro-proto/v3/api" | 	api_options "go.unistack.org/micro-proto/v4/api" | ||||||
| 	v2 "go.unistack.org/micro-proto/v3/openapiv2" | 	v2 "go.unistack.org/micro-proto/v4/openapiv2" | ||||||
| 	v3 "go.unistack.org/micro-proto/v3/openapiv3" | 	v3 "go.unistack.org/micro-proto/v4/openapiv3" | ||||||
| 	"google.golang.org/protobuf/compiler/protogen" | 	"google.golang.org/protobuf/compiler/protogen" | ||||||
| 	"google.golang.org/protobuf/proto" | 	"google.golang.org/protobuf/proto" | ||||||
| ) | ) | ||||||
| @@ -31,8 +31,8 @@ func unexport(s string) string { | |||||||
| 	return strings.ToLower(s[:1]) + s[1:] | 	return strings.ToLower(s[:1]) + s[1:] | ||||||
| } | } | ||||||
|  |  | ||||||
| func (g *Generator) generateServiceClient(gfile *protogen.GeneratedFile, service *protogen.Service) { | func (g *Generator) generateServiceClient(gfile *protogen.GeneratedFile, file *protogen.File, service *protogen.Service) { | ||||||
| 	serviceName := service.GoName | 	serviceName := getServiceName(service) | ||||||
| 	// if rule, ok := getMicroApiService(service); ok { | 	// if rule, ok := getMicroApiService(service); ok { | ||||||
| 	//		gfile.P("// client wrappers ", strings.Join(rule.ClientWrappers, ", ")) | 	//		gfile.P("// client wrappers ", strings.Join(rule.ClientWrappers, ", ")) | ||||||
| 	//	} | 	//	} | ||||||
| @@ -41,14 +41,18 @@ func (g *Generator) generateServiceClient(gfile *protogen.GeneratedFile, service | |||||||
| 	gfile.P("name string") | 	gfile.P("name string") | ||||||
| 	gfile.P("}") | 	gfile.P("}") | ||||||
|  |  | ||||||
| 	gfile.P("func New", serviceName, "Client(name string, c ", microClientPackage.Ident("Client"), ") ", serviceName, "Client {") | 	if g.standalone { | ||||||
|  | 		gfile.P("func New", serviceName, "Client(name string, c ", microClientPackage.Ident("Client"), ") ", file.GoImportPath.Ident(serviceName), "Client {") | ||||||
|  | 	} else { | ||||||
|  | 		gfile.P("func New", serviceName, "Client(name string, c ", microClientPackage.Ident("Client"), ") ", serviceName, "Client {") | ||||||
|  | 	} | ||||||
| 	gfile.P("return &", unexport(serviceName), "Client{c: c, name: name}") | 	gfile.P("return &", unexport(serviceName), "Client{c: c, name: name}") | ||||||
| 	gfile.P("}") | 	gfile.P("}") | ||||||
| 	gfile.P() | 	gfile.P() | ||||||
| } | } | ||||||
|  |  | ||||||
| func (g *Generator) generateServiceClientMethods(gfile *protogen.GeneratedFile, service *protogen.Service, component string) { | func (g *Generator) generateServiceClientMethods(gfile *protogen.GeneratedFile, service *protogen.Service, component string) { | ||||||
| 	serviceName := service.GoName | 	serviceName := getServiceName(service) | ||||||
| 	for _, method := range service.Methods { | 	for _, method := range service.Methods { | ||||||
| 		methodName := fmt.Sprintf("%s.%s", serviceName, method.GoName) | 		methodName := fmt.Sprintf("%s.%s", serviceName, method.GoName) | ||||||
| 		if component == "drpc" { | 		if component == "drpc" { | ||||||
| @@ -319,16 +323,20 @@ func (g *Generator) generateServiceClientMethods(gfile *protogen.GeneratedFile, | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| func generateServiceServer(gfile *protogen.GeneratedFile, service *protogen.Service) { | func (g *Generator) generateServiceServer(gfile *protogen.GeneratedFile, file *protogen.File, service *protogen.Service) { | ||||||
| 	serviceName := service.GoName | 	serviceName := getServiceName(service) | ||||||
| 	gfile.P("type ", unexport(serviceName), "Server struct {") | 	gfile.P("type ", unexport(serviceName), "Server struct {") | ||||||
| 	gfile.P(serviceName, "Server") | 	if g.standalone { | ||||||
|  | 		gfile.P(file.GoImportPath.Ident(serviceName), "Server") | ||||||
|  | 	} else { | ||||||
|  | 		gfile.P(serviceName, "Server") | ||||||
|  | 	} | ||||||
| 	gfile.P("}") | 	gfile.P("}") | ||||||
| 	gfile.P() | 	gfile.P() | ||||||
| } | } | ||||||
|  |  | ||||||
| func (g *Generator) generateServiceServerMethods(gfile *protogen.GeneratedFile, service *protogen.Service) { | func (g *Generator) generateServiceServerMethods(gfile *protogen.GeneratedFile, service *protogen.Service) { | ||||||
| 	serviceName := service.GoName | 	serviceName := getServiceName(service) | ||||||
| 	for _, method := range service.Methods { | 	for _, method := range service.Methods { | ||||||
| 		generateServerFuncSignature(gfile, serviceName, method, true) | 		generateServerFuncSignature(gfile, serviceName, method, true) | ||||||
| 		if rule, ok := getMicroApiMethod(method); ok { | 		if rule, ok := getMicroApiMethod(method); ok { | ||||||
| @@ -477,9 +485,13 @@ func (g *Generator) generateServiceServerMethods(gfile *protogen.GeneratedFile, | |||||||
| 	} | 	} | ||||||
| } | } | ||||||
|  |  | ||||||
| func (g *Generator) generateServiceRegister(gfile *protogen.GeneratedFile, service *protogen.Service, component string) { | func (g *Generator) generateServiceRegister(gfile *protogen.GeneratedFile, file *protogen.File, service *protogen.Service, component string) { | ||||||
| 	serviceName := service.GoName | 	serviceName := getServiceName(service) | ||||||
| 	gfile.P("func Register", serviceName, "Server(s ", microServerPackage.Ident("Server"), ", sh ", serviceName, "Server, opts ...", microServerPackage.Ident("HandlerOption"), ") error {") | 	if g.standalone { | ||||||
|  | 		gfile.P("func Register", serviceName, "Server(s ", microServerPackage.Ident("Server"), ", sh ", file.GoImportPath.Ident(serviceName), "Server, opts ...", microOptionsPackage.Ident("Option"), ") error {") | ||||||
|  | 	} else { | ||||||
|  | 		gfile.P("func Register", serviceName, "Server(s ", microServerPackage.Ident("Server"), ", sh ", serviceName, "Server, opts ...", microOptionsPackage.Ident("Option"), ") error {") | ||||||
|  | 	} | ||||||
| 	gfile.P("type ", unexport(serviceName), " interface {") | 	gfile.P("type ", unexport(serviceName), " interface {") | ||||||
| 	for _, method := range service.Methods { | 	for _, method := range service.Methods { | ||||||
| 		generateServerSignature(gfile, serviceName, method, true) | 		generateServerSignature(gfile, serviceName, method, true) | ||||||
| @@ -489,11 +501,15 @@ func (g *Generator) generateServiceRegister(gfile *protogen.GeneratedFile, servi | |||||||
| 	gfile.P(unexport(serviceName)) | 	gfile.P(unexport(serviceName)) | ||||||
| 	gfile.P("}") | 	gfile.P("}") | ||||||
| 	gfile.P("h := &", unexport(serviceName), "Server{sh}") | 	gfile.P("h := &", unexport(serviceName), "Server{sh}") | ||||||
| 	gfile.P("var nopts []", microServerPackage.Ident("HandlerOption")) | 	gfile.P("var nopts []", microOptionsPackage.Ident("Option")) | ||||||
| 	if component == "http" { | 	if component == "http" { | ||||||
|  | 		//	if g.standalone { | ||||||
|  | 		//		gfile.P("nopts = append(nopts, ", microServerHttpPackage.Ident("HandlerEndpoints"), "(", file.GoImportPath.Ident(serviceName), "ServerEndpoints))") | ||||||
|  | 		//	} else { | ||||||
| 		gfile.P("nopts = append(nopts, ", microServerHttpPackage.Ident("HandlerEndpoints"), "(", serviceName, "ServerEndpoints))") | 		gfile.P("nopts = append(nopts, ", microServerHttpPackage.Ident("HandlerEndpoints"), "(", serviceName, "ServerEndpoints))") | ||||||
|  | 		//	} | ||||||
| 	} | 	} | ||||||
| 	gfile.P("return s.Handle(s.NewHandler(&", serviceName, "{h}, append(nopts, opts...)...))") | 	gfile.P("return s.Handle(&", serviceName, "{h}, append(nopts, opts...)...)") | ||||||
| 	gfile.P("}") | 	gfile.P("}") | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -552,11 +568,11 @@ func (g *Generator) generateClientFuncSignature(gfile *protogen.GeneratedFile, s | |||||||
| 	if !method.Desc.IsStreamingClient() { | 	if !method.Desc.IsStreamingClient() { | ||||||
| 		args = append(args, "req *", gfile.QualifiedGoIdent(method.Input.GoIdent), ", ") | 		args = append(args, "req *", gfile.QualifiedGoIdent(method.Input.GoIdent), ", ") | ||||||
| 	} | 	} | ||||||
| 	args = append(args, "opts ...", microClientPackage.Ident("CallOption"), ") (") | 	args = append(args, "opts ...", microOptionsPackage.Ident("Option"), ") (") | ||||||
| 	if !method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() { | 	if !method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() { | ||||||
| 		args = append(args, "*", gfile.QualifiedGoIdent(method.Output.GoIdent)) | 		args = append(args, "*", gfile.QualifiedGoIdent(method.Output.GoIdent)) | ||||||
| 	} else { | 	} else { | ||||||
| 		args = append(args, serviceName, "_", method.GoName, "Client") | 		args = append(args, gfile.QualifiedGoIdent(protogen.GoIdent{GoName: serviceName + "_" + method.GoName + "Client", GoImportPath: method.Output.GoIdent.GoImportPath})) | ||||||
| 	} | 	} | ||||||
| 	args = append(args, ", error) {") | 	args = append(args, ", error) {") | ||||||
| 	gfile.P(args...) | 	gfile.P(args...) | ||||||
| @@ -570,7 +586,7 @@ func generateClientSignature(gfile *protogen.GeneratedFile, serviceName string, | |||||||
| 	if !method.Desc.IsStreamingClient() { | 	if !method.Desc.IsStreamingClient() { | ||||||
| 		args = append(args, "req *", gfile.QualifiedGoIdent(method.Input.GoIdent), ", ") | 		args = append(args, "req *", gfile.QualifiedGoIdent(method.Input.GoIdent), ", ") | ||||||
| 	} | 	} | ||||||
| 	args = append(args, "opts ...", microClientPackage.Ident("CallOption"), ") (") | 	args = append(args, "opts ...", microOptionsPackage.Ident("Option"), ") (") | ||||||
| 	if !method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() { | 	if !method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() { | ||||||
| 		args = append(args, "*", gfile.QualifiedGoIdent(method.Output.GoIdent)) | 		args = append(args, "*", gfile.QualifiedGoIdent(method.Output.GoIdent)) | ||||||
| 	} else { | 	} else { | ||||||
| @@ -581,7 +597,7 @@ func generateClientSignature(gfile *protogen.GeneratedFile, serviceName string, | |||||||
| } | } | ||||||
|  |  | ||||||
| func (g *Generator) generateServiceClientInterface(gfile *protogen.GeneratedFile, service *protogen.Service) { | func (g *Generator) generateServiceClientInterface(gfile *protogen.GeneratedFile, service *protogen.Service) { | ||||||
| 	serviceName := service.GoName | 	serviceName := getServiceName(service) | ||||||
| 	gfile.P("type ", serviceName, "Client interface {") | 	gfile.P("type ", serviceName, "Client interface {") | ||||||
| 	for _, method := range service.Methods { | 	for _, method := range service.Methods { | ||||||
| 		generateClientSignature(gfile, serviceName, method) | 		generateClientSignature(gfile, serviceName, method) | ||||||
| @@ -591,7 +607,7 @@ func (g *Generator) generateServiceClientInterface(gfile *protogen.GeneratedFile | |||||||
| } | } | ||||||
|  |  | ||||||
| func (g *Generator) generateServiceServerInterface(gfile *protogen.GeneratedFile, service *protogen.Service) { | func (g *Generator) generateServiceServerInterface(gfile *protogen.GeneratedFile, service *protogen.Service) { | ||||||
| 	serviceName := service.GoName | 	serviceName := getServiceName(service) | ||||||
| 	gfile.P("type ", serviceName, "Server interface {") | 	gfile.P("type ", serviceName, "Server interface {") | ||||||
| 	for _, method := range service.Methods { | 	for _, method := range service.Methods { | ||||||
| 		generateServerSignature(gfile, serviceName, method, false) | 		generateServerSignature(gfile, serviceName, method, false) | ||||||
| @@ -601,7 +617,7 @@ func (g *Generator) generateServiceServerInterface(gfile *protogen.GeneratedFile | |||||||
| } | } | ||||||
|  |  | ||||||
| func (g *Generator) generateServiceClientStreamInterface(gfile *protogen.GeneratedFile, service *protogen.Service) { | func (g *Generator) generateServiceClientStreamInterface(gfile *protogen.GeneratedFile, service *protogen.Service) { | ||||||
| 	serviceName := service.GoName | 	serviceName := getServiceName(service) | ||||||
| 	for _, method := range service.Methods { | 	for _, method := range service.Methods { | ||||||
| 		if !method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() { | 		if !method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() { | ||||||
| 			continue | 			continue | ||||||
| @@ -613,7 +629,7 @@ func (g *Generator) generateServiceClientStreamInterface(gfile *protogen.Generat | |||||||
| 		gfile.P("RecvMsg(msg interface{}) error") | 		gfile.P("RecvMsg(msg interface{}) error") | ||||||
| 		if method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() { | 		if method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() { | ||||||
| 			gfile.P("CloseAndRecv() (*", gfile.QualifiedGoIdent(method.Output.GoIdent), ", error)") | 			gfile.P("CloseAndRecv() (*", gfile.QualifiedGoIdent(method.Output.GoIdent), ", error)") | ||||||
| 			gfile.P("CloseSend() () error") | 			gfile.P("CloseSend() error") | ||||||
| 		} | 		} | ||||||
| 		gfile.P("Close() error") | 		gfile.P("Close() error") | ||||||
| 		if method.Desc.IsStreamingClient() { | 		if method.Desc.IsStreamingClient() { | ||||||
| @@ -629,7 +645,7 @@ func (g *Generator) generateServiceClientStreamInterface(gfile *protogen.Generat | |||||||
| } | } | ||||||
|  |  | ||||||
| func (g *Generator) generateServiceServerStreamInterface(gfile *protogen.GeneratedFile, service *protogen.Service) { | func (g *Generator) generateServiceServerStreamInterface(gfile *protogen.GeneratedFile, service *protogen.Service) { | ||||||
| 	serviceName := service.GoName | 	serviceName := getServiceName(service) | ||||||
| 	for _, method := range service.Methods { | 	for _, method := range service.Methods { | ||||||
| 		if !method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() { | 		if !method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() { | ||||||
| 			continue | 			continue | ||||||
| @@ -641,7 +657,7 @@ func (g *Generator) generateServiceServerStreamInterface(gfile *protogen.Generat | |||||||
| 		gfile.P("RecvMsg(msg interface{}) error") | 		gfile.P("RecvMsg(msg interface{}) error") | ||||||
| 		if method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() { | 		if method.Desc.IsStreamingClient() && !method.Desc.IsStreamingServer() { | ||||||
| 			gfile.P("SendAndClose(msg *", gfile.QualifiedGoIdent(method.Output.GoIdent), ") error") | 			gfile.P("SendAndClose(msg *", gfile.QualifiedGoIdent(method.Output.GoIdent), ") error") | ||||||
| 			gfile.P("CloseSend() error") | 			//	gfile.P("CloseSend() error") | ||||||
| 		} | 		} | ||||||
| 		gfile.P("Close() error") | 		gfile.P("Close() error") | ||||||
| 		if method.Desc.IsStreamingClient() { | 		if method.Desc.IsStreamingClient() { | ||||||
| @@ -776,6 +792,35 @@ func (g *Generator) getGoIdentByXref(xref string) (protogen.GoIdent, error) { | |||||||
| 	return protogen.GoIdent{}, fmt.Errorf("not found") | 	return protogen.GoIdent{}, fmt.Errorf("not found") | ||||||
| } | } | ||||||
|  |  | ||||||
|  | func (g *Generator) getMessageByXref(xref string) (*protogen.Message, error) { | ||||||
|  | 	idx := strings.LastIndex(xref, ".") | ||||||
|  | 	pkg := xref[:idx] | ||||||
|  | 	msg := xref[idx+1:] | ||||||
|  | 	for _, file := range g.plugin.Files { | ||||||
|  | 		if strings.Compare(pkg, *(file.Proto.Package)) != 0 { | ||||||
|  | 			continue | ||||||
|  | 		} | ||||||
|  | 		if pmsg, err := getProtoMessage(file.Messages, msg); err == nil { | ||||||
|  | 			return pmsg, nil | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | 	return nil, fmt.Errorf("not found") | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func getProtoMessage(messages []*protogen.Message, msg string) (*protogen.Message, error) { | ||||||
|  | 	for _, message := range messages { | ||||||
|  | 		if strings.Compare(msg, message.GoIdent.GoName) == 0 { | ||||||
|  | 			return message, nil | ||||||
|  | 		} | ||||||
|  | 		if len(message.Messages) > 0 { | ||||||
|  | 			if pmsg, err := getProtoMessage(message.Messages, msg); err == nil { | ||||||
|  | 				return pmsg, nil | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | 	return nil, fmt.Errorf("not found") | ||||||
|  | } | ||||||
|  |  | ||||||
| func getGoIdentByMessage(messages []*protogen.Message, msg string) (protogen.GoIdent, error) { | func getGoIdentByMessage(messages []*protogen.Message, msg string) (protogen.GoIdent, error) { | ||||||
| 	for _, message := range messages { | 	for _, message := range messages { | ||||||
| 		if strings.Compare(msg, message.GoIdent.GoName) == 0 { | 		if strings.Compare(msg, message.GoIdent.GoName) == 0 { | ||||||
| @@ -791,7 +836,7 @@ func getGoIdentByMessage(messages []*protogen.Message, msg string) (protogen.GoI | |||||||
| } | } | ||||||
|  |  | ||||||
| func (g *Generator) generateServiceDesc(gfile *protogen.GeneratedFile, file *protogen.File, service *protogen.Service) { | func (g *Generator) generateServiceDesc(gfile *protogen.GeneratedFile, file *protogen.File, service *protogen.Service) { | ||||||
| 	serviceName := service.GoName | 	serviceName := getServiceName(service) | ||||||
|  |  | ||||||
| 	gfile.P("// ", serviceName, "_ServiceDesc", " is the ", grpcPackage.Ident("ServiceDesc"), " for ", serviceName, " service.") | 	gfile.P("// ", serviceName, "_ServiceDesc", " is the ", grpcPackage.Ident("ServiceDesc"), " for ", serviceName, " service.") | ||||||
| 	gfile.P("// It's only intended for direct use with ", grpcPackage.Ident("RegisterService"), ",") | 	gfile.P("// It's only intended for direct use with ", grpcPackage.Ident("RegisterService"), ",") | ||||||
| @@ -833,14 +878,17 @@ func (g *Generator) generateServiceDesc(gfile *protogen.GeneratedFile, file *pro | |||||||
| } | } | ||||||
|  |  | ||||||
| func (g *Generator) generateServiceName(gfile *protogen.GeneratedFile, service *protogen.Service) { | func (g *Generator) generateServiceName(gfile *protogen.GeneratedFile, service *protogen.Service) { | ||||||
| 	serviceName := service.GoName | 	serviceName := getServiceName(service) | ||||||
| 	gfile.P("var (") | 	gfile.P("var (") | ||||||
| 	gfile.P(serviceName, "Name", "=", `"`, serviceName, `"`) | 	gfile.P(serviceName, "Name", "=", `"`, serviceName, `"`) | ||||||
| 	gfile.P(")") | 	gfile.P(")") | ||||||
| } | } | ||||||
|  |  | ||||||
| func (g *Generator) generateServiceEndpoints(gfile *protogen.GeneratedFile, service *protogen.Service) { | func (g *Generator) generateServiceEndpoints(gfile *protogen.GeneratedFile, service *protogen.Service, component string) { | ||||||
| 	serviceName := service.GoName | 	if component != "http" { | ||||||
|  | 		return | ||||||
|  | 	} | ||||||
|  | 	serviceName := getServiceName(service) | ||||||
|  |  | ||||||
| 	gfile.P("var (") | 	gfile.P("var (") | ||||||
| 	gfile.P(serviceName, "ServerEndpoints = []", microServerHttpPackage.Ident("EndpointMetadata"), "{") | 	gfile.P(serviceName, "ServerEndpoints = []", microServerHttpPackage.Ident("EndpointMetadata"), "{") | ||||||
| @@ -865,3 +913,122 @@ func (g *Generator) generateServiceEndpoints(gfile *protogen.GeneratedFile, serv | |||||||
| 	gfile.P("}") | 	gfile.P("}") | ||||||
| 	gfile.P(")") | 	gfile.P(")") | ||||||
| } | } | ||||||
|  |  | ||||||
|  | func getServiceName(s *protogen.Service) string { | ||||||
|  | 	if strings.HasSuffix(s.GoName, "Service") { | ||||||
|  | 		return s.GoName | ||||||
|  | 	} | ||||||
|  | 	return s.GoName + "Service" | ||||||
|  | } | ||||||
|  |  | ||||||
|  | func (g *Generator) writeErrors(plugin *protogen.Plugin) error { | ||||||
|  | 	errorsMap := make(map[string]struct{}) | ||||||
|  |  | ||||||
|  | 	for _, file := range plugin.Files { | ||||||
|  | 		for _, service := range file.Services { | ||||||
|  | 			for _, method := range service.Methods { | ||||||
|  | 				if method.Desc.Options() != nil { | ||||||
|  | 					if proto.HasExtension(method.Desc.Options(), v2.E_Openapiv2Operation) { | ||||||
|  | 						opts := proto.GetExtension(method.Desc.Options(), v2.E_Openapiv2Operation) | ||||||
|  | 						if opts != nil { | ||||||
|  | 							r := opts.(*v2.Operation) | ||||||
|  | 							if r.Responses == nil { | ||||||
|  | 								continue | ||||||
|  | 							} | ||||||
|  |  | ||||||
|  | 							for _, rsp := range r.Responses.ResponseCode { | ||||||
|  | 								if schema := rsp.Value.GetJsonReference(); schema != nil { | ||||||
|  | 									xref := schema.XRef | ||||||
|  | 									if xref[0] == '.' { | ||||||
|  | 										xref = xref[1:] | ||||||
|  | 									} | ||||||
|  | 									errorsMap[xref] = struct{}{} | ||||||
|  | 								} | ||||||
|  | 							} | ||||||
|  | 						} | ||||||
|  | 					} | ||||||
|  | 					if proto.HasExtension(method.Desc.Options(), v3.E_Openapiv3Operation) { | ||||||
|  | 						opts := proto.GetExtension(method.Desc.Options(), v3.E_Openapiv3Operation) | ||||||
|  | 						if opts != nil { | ||||||
|  | 							r := opts.(*v3.Operation) | ||||||
|  | 							if r.Responses == nil { | ||||||
|  | 								continue | ||||||
|  | 							} | ||||||
|  | 							resps := r.Responses.ResponseOrReference | ||||||
|  | 							if r.Responses.GetDefault() != nil { | ||||||
|  | 								resps = append(resps, &v3.NamedResponseOrReference{Name: "default", Value: r.Responses.GetDefault()}) | ||||||
|  | 							} | ||||||
|  | 							for _, rsp := range resps { | ||||||
|  | 								if schema := rsp.Value.GetReference(); schema != nil { | ||||||
|  | 									xref := schema.XRef | ||||||
|  | 									if xref[0] == '.' { | ||||||
|  | 										xref = xref[1:] | ||||||
|  | 									} | ||||||
|  | 									errorsMap[xref] = struct{}{} | ||||||
|  | 								} | ||||||
|  | 							} | ||||||
|  | 						} | ||||||
|  | 					} | ||||||
|  | 				} | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	var gfile *protogen.GeneratedFile | ||||||
|  | 	var importPath protogen.GoImportPath | ||||||
|  |  | ||||||
|  | 	if len(errorsMap) > 0 { | ||||||
|  |  | ||||||
|  | 		var packageName string | ||||||
|  |  | ||||||
|  | 		for _, file := range plugin.Files { | ||||||
|  | 			if !file.Generate { | ||||||
|  | 				continue | ||||||
|  | 			} | ||||||
|  | 			if len(file.Services) == 0 { | ||||||
|  | 				continue | ||||||
|  | 			} | ||||||
|  | 			packageName = string(file.GoPackageName) | ||||||
|  | 			importPath = file.GoImportPath | ||||||
|  | 			break | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		if g.standalone { | ||||||
|  | 			importPath = "." | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		gfile = plugin.NewGeneratedFile("micro_errors.pb.go", importPath) | ||||||
|  |  | ||||||
|  | 		gfile.P("// Code generated by protoc-gen-go-micro. DO NOT EDIT.") | ||||||
|  | 		gfile.P("// protoc-gen-go-micro version: " + versionComment) | ||||||
|  | 		gfile.P() | ||||||
|  | 		gfile.P("package ", packageName) | ||||||
|  | 		gfile.P() | ||||||
|  |  | ||||||
|  | 		gfile.Import(protojsonPackage) | ||||||
|  |  | ||||||
|  | 		gfile.P("var (") | ||||||
|  | 		gfile.P("marshaler = ", protojsonPackage.Ident("MarshalOptions"), "{}") | ||||||
|  | 		gfile.P(")") | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	for xref := range errorsMap { | ||||||
|  | 		msg, err := g.getMessageByXref(xref) | ||||||
|  | 		if err != nil { | ||||||
|  | 			return err | ||||||
|  | 		} | ||||||
|  |  | ||||||
|  | 		for _, field := range msg.Fields { | ||||||
|  | 			if field.GoName == "Error" { | ||||||
|  | 				return fmt.Errorf("failed generate Error() string interface for %s message %s already have Error field", field.Location.SourceFile, msg.Desc.Name()) | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 		gfile.P(`func (m *`, msg.GoIdent.GoName, `) Error() string {`) | ||||||
|  | 		gfile.P(`buf, _ := marshaler.Marshal(m)`) | ||||||
|  | 		gfile.P("return string(buf)") | ||||||
|  | 		gfile.P(`}`) | ||||||
|  | 		// log.Printf("xref %#+v %v\n", msg.GoIdent.GoName, err) | ||||||
|  | 	} | ||||||
|  |  | ||||||
|  | 	return nil | ||||||
|  | } | ||||||
|   | |||||||
							
								
								
									
										18
									
								
								variables.go
									
									
									
									
									
								
							
							
						
						
									
										18
									
								
								variables.go
									
									
									
									
									
								
							| @@ -11,15 +11,17 @@ var ( | |||||||
| 	gorillaMuxPackage      = protogen.GoImportPath("github.com/gorilla/mux") | 	gorillaMuxPackage      = protogen.GoImportPath("github.com/gorilla/mux") | ||||||
| 	chiPackage             = protogen.GoImportPath("github.com/go-chi/chi/v5") | 	chiPackage             = protogen.GoImportPath("github.com/go-chi/chi/v5") | ||||||
| 	chiMiddlewarePackage   = protogen.GoImportPath("github.com/go-chi/chi/v5/middleware") | 	chiMiddlewarePackage   = protogen.GoImportPath("github.com/go-chi/chi/v5/middleware") | ||||||
| 	microMetadataPackage   = protogen.GoImportPath("go.unistack.org/micro/v3/metadata") | 	microMetadataPackage   = protogen.GoImportPath("go.unistack.org/micro/v4/metadata") | ||||||
| 	microClientPackage     = protogen.GoImportPath("go.unistack.org/micro/v3/client") | 	microClientPackage     = protogen.GoImportPath("go.unistack.org/micro/v4/client") | ||||||
| 	microServerPackage     = protogen.GoImportPath("go.unistack.org/micro/v3/server") | 	microServerPackage     = protogen.GoImportPath("go.unistack.org/micro/v4/server") | ||||||
| 	microClientHttpPackage = protogen.GoImportPath("go.unistack.org/micro-client-http/v3") | 	microClientHttpPackage = protogen.GoImportPath("go.unistack.org/micro-client-http/v4") | ||||||
| 	microServerHttpPackage = protogen.GoImportPath("go.unistack.org/micro-server-http/v3") | 	microServerHttpPackage = protogen.GoImportPath("go.unistack.org/micro-server-http/v4") | ||||||
| 	microCodecPackage      = protogen.GoImportPath("go.unistack.org/micro/v3/codec") | 	microCodecPackage      = protogen.GoImportPath("go.unistack.org/micro-proto/v4/codec") | ||||||
| 	microErrorsPackage     = protogen.GoImportPath("go.unistack.org/micro/v3/errors") | 	microErrorsPackage     = protogen.GoImportPath("go.unistack.org/micro/v4/errors") | ||||||
|  | 	microOptionsPackage    = protogen.GoImportPath("go.unistack.org/micro/v4/options") | ||||||
| 	grpcPackage            = protogen.GoImportPath("google.golang.org/grpc") | 	grpcPackage            = protogen.GoImportPath("google.golang.org/grpc") | ||||||
|  | 	protojsonPackage       = protogen.GoImportPath("google.golang.org/protobuf/encoding/protojson") | ||||||
| 	timePackage            = protogen.GoImportPath("time") | 	timePackage            = protogen.GoImportPath("time") | ||||||
| 	deprecationComment     = "// Deprecated: Do not use." | 	deprecationComment     = "// Deprecated: Do not use." | ||||||
| 	versionComment         = "v3.10.2" | 	versionComment         = "v4.0.2" | ||||||
| ) | ) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user