regen files with never protoc (#6)

* regen files with never protoc
* rewrite import path

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2020-08-19 17:47:17 +03:00
committed by GitHub
parent 7a407d5792
commit 06136312bb
357 changed files with 8755 additions and 3310 deletions

View File

@@ -4,8 +4,8 @@ import (
"time"
"github.com/google/uuid"
"github.com/micro/go-micro/v3/auth"
"github.com/micro/go-micro/v3/logger"
"github.com/unistack-org/micro/v3/auth"
"github.com/unistack-org/micro/v3/logger"
)
// Verify the auth credentials and refresh the auth token periodically

View File

@@ -3,7 +3,7 @@ package client
import (
"context"
"github.com/micro/go-micro/v3/client"
"github.com/unistack-org/micro/v3/client"
)
type staticClient struct {

View File

@@ -4,17 +4,17 @@ import (
"context"
"testing"
"github.com/micro/go-micro/v3/broker"
bmemory "github.com/micro/go-micro/v3/broker/memory"
"github.com/micro/go-micro/v3/client"
"github.com/micro/go-micro/v3/client/grpc"
rmemory "github.com/micro/go-micro/v3/registry/memory"
"github.com/micro/go-micro/v3/router"
rtreg "github.com/micro/go-micro/v3/router/registry"
"github.com/micro/go-micro/v3/server"
grpcsrv "github.com/micro/go-micro/v3/server/grpc"
tmemory "github.com/micro/go-micro/v3/transport/memory"
cw "github.com/micro/go-micro/v3/util/client"
"github.com/unistack-org/micro/v3/broker"
bmemory "github.com/unistack-org/micro/v3/broker/memory"
"github.com/unistack-org/micro/v3/client"
"github.com/unistack-org/micro/v3/client/grpc"
rmemory "github.com/unistack-org/micro/v3/registry/memory"
"github.com/unistack-org/micro/v3/router"
rtreg "github.com/unistack-org/micro/v3/router/registry"
"github.com/unistack-org/micro/v3/server"
grpcsrv "github.com/unistack-org/micro/v3/server/grpc"
tmemory "github.com/unistack-org/micro/v3/transport/memory"
cw "github.com/unistack-org/micro/v3/util/client"
)
type TestFoo struct {

View File

@@ -6,7 +6,7 @@ import (
"net/textproto"
"strings"
"github.com/micro/go-micro/v3/metadata"
"github.com/unistack-org/micro/v3/metadata"
)
func FromRequest(r *http.Request) context.Context {

View File

@@ -4,7 +4,7 @@ import (
"net/http"
"testing"
"github.com/micro/go-micro/v3/metadata"
"github.com/unistack-org/micro/v3/metadata"
)
func TestRequestToContext(t *testing.T) {

View File

@@ -9,8 +9,8 @@ import (
"log"
"os"
"github.com/micro/go-micro/v3/client"
proto "github.com/micro/go-micro/v3/util/file/proto"
"github.com/unistack-org/micro/v3/client"
proto "github.com/unistack-org/micro/v3/util/file/proto"
)
// Client is the client interface to access files

View File

@@ -6,10 +6,10 @@ import (
"path/filepath"
"sync"
"github.com/micro/go-micro/v3/errors"
"github.com/micro/go-micro/v3/logger"
"github.com/micro/go-micro/v3/server"
proto "github.com/micro/go-micro/v3/util/file/proto"
"github.com/unistack-org/micro/v3/errors"
"github.com/unistack-org/micro/v3/logger"
"github.com/unistack-org/micro/v3/server"
proto "github.com/unistack-org/micro/v3/util/file/proto"
"golang.org/x/net/context"
)

File diff suppressed because it is too large Load Diff

View File

@@ -11,9 +11,9 @@ import (
import (
context "context"
api "github.com/micro/go-micro/v3/api"
client "github.com/micro/go-micro/v3/client"
server "github.com/micro/go-micro/v3/server"
api "github.com/unistack-org/micro/v3/api"
client "github.com/unistack-org/micro/v3/client"
server "github.com/unistack-org/micro/v3/server"
)
// Reference imports to suppress errors if they are not otherwise used.

View File

@@ -0,0 +1,234 @@
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
package go_micro_server
import (
context "context"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
)
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion6
// FileClient is the client API for File service.
//
// 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.
type FileClient interface {
Open(ctx context.Context, in *OpenRequest, opts ...grpc.CallOption) (*OpenResponse, error)
Stat(ctx context.Context, in *StatRequest, opts ...grpc.CallOption) (*StatResponse, error)
Read(ctx context.Context, in *ReadRequest, opts ...grpc.CallOption) (*ReadResponse, error)
Write(ctx context.Context, in *WriteRequest, opts ...grpc.CallOption) (*WriteResponse, error)
Close(ctx context.Context, in *CloseRequest, opts ...grpc.CallOption) (*CloseResponse, error)
}
type fileClient struct {
cc grpc.ClientConnInterface
}
func NewFileClient(cc grpc.ClientConnInterface) FileClient {
return &fileClient{cc}
}
func (c *fileClient) Open(ctx context.Context, in *OpenRequest, opts ...grpc.CallOption) (*OpenResponse, error) {
out := new(OpenResponse)
err := c.cc.Invoke(ctx, "/go.micro.server.File/Open", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *fileClient) Stat(ctx context.Context, in *StatRequest, opts ...grpc.CallOption) (*StatResponse, error) {
out := new(StatResponse)
err := c.cc.Invoke(ctx, "/go.micro.server.File/Stat", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *fileClient) Read(ctx context.Context, in *ReadRequest, opts ...grpc.CallOption) (*ReadResponse, error) {
out := new(ReadResponse)
err := c.cc.Invoke(ctx, "/go.micro.server.File/Read", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *fileClient) Write(ctx context.Context, in *WriteRequest, opts ...grpc.CallOption) (*WriteResponse, error) {
out := new(WriteResponse)
err := c.cc.Invoke(ctx, "/go.micro.server.File/Write", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *fileClient) Close(ctx context.Context, in *CloseRequest, opts ...grpc.CallOption) (*CloseResponse, error) {
out := new(CloseResponse)
err := c.cc.Invoke(ctx, "/go.micro.server.File/Close", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// FileServer is the server API for File service.
// All implementations must embed UnimplementedFileServer
// for forward compatibility
type FileServer interface {
Open(context.Context, *OpenRequest) (*OpenResponse, error)
Stat(context.Context, *StatRequest) (*StatResponse, error)
Read(context.Context, *ReadRequest) (*ReadResponse, error)
Write(context.Context, *WriteRequest) (*WriteResponse, error)
Close(context.Context, *CloseRequest) (*CloseResponse, error)
mustEmbedUnimplementedFileServer()
}
// UnimplementedFileServer must be embedded to have forward compatible implementations.
type UnimplementedFileServer struct {
}
func (*UnimplementedFileServer) Open(context.Context, *OpenRequest) (*OpenResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method Open not implemented")
}
func (*UnimplementedFileServer) Stat(context.Context, *StatRequest) (*StatResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method Stat not implemented")
}
func (*UnimplementedFileServer) Read(context.Context, *ReadRequest) (*ReadResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method Read not implemented")
}
func (*UnimplementedFileServer) Write(context.Context, *WriteRequest) (*WriteResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method Write not implemented")
}
func (*UnimplementedFileServer) Close(context.Context, *CloseRequest) (*CloseResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method Close not implemented")
}
func (*UnimplementedFileServer) mustEmbedUnimplementedFileServer() {}
func RegisterFileServer(s *grpc.Server, srv FileServer) {
s.RegisterService(&_File_serviceDesc, srv)
}
func _File_Open_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(OpenRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FileServer).Open(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/go.micro.server.File/Open",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FileServer).Open(ctx, req.(*OpenRequest))
}
return interceptor(ctx, in, info, handler)
}
func _File_Stat_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(StatRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FileServer).Stat(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/go.micro.server.File/Stat",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FileServer).Stat(ctx, req.(*StatRequest))
}
return interceptor(ctx, in, info, handler)
}
func _File_Read_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ReadRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FileServer).Read(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/go.micro.server.File/Read",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FileServer).Read(ctx, req.(*ReadRequest))
}
return interceptor(ctx, in, info, handler)
}
func _File_Write_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(WriteRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FileServer).Write(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/go.micro.server.File/Write",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FileServer).Write(ctx, req.(*WriteRequest))
}
return interceptor(ctx, in, info, handler)
}
func _File_Close_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(CloseRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(FileServer).Close(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/go.micro.server.File/Close",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(FileServer).Close(ctx, req.(*CloseRequest))
}
return interceptor(ctx, in, info, handler)
}
var _File_serviceDesc = grpc.ServiceDesc{
ServiceName: "go.micro.server.File",
HandlerType: (*FileServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "Open",
Handler: _File_Open_Handler,
},
{
MethodName: "Stat",
Handler: _File_Stat_Handler,
},
{
MethodName: "Read",
Handler: _File_Read_Handler,
},
{
MethodName: "Write",
Handler: _File_Write_Handler,
},
{
MethodName: "Close",
Handler: _File_Close_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "util/file/proto/file.proto",
}

View File

@@ -8,9 +8,9 @@ import (
"net/http"
"strings"
"github.com/micro/go-micro/v3/metadata"
"github.com/micro/go-micro/v3/router/registry"
"github.com/micro/go-micro/v3/selector/random"
"github.com/unistack-org/micro/v3/metadata"
"github.com/unistack-org/micro/v3/router/registry"
"github.com/unistack-org/micro/v3/selector/random"
)
// Write sets the status and body on a http ResponseWriter

View File

@@ -6,10 +6,10 @@ import (
"net/http"
"testing"
"github.com/micro/go-micro/v3/registry"
"github.com/micro/go-micro/v3/registry/memory"
"github.com/micro/go-micro/v3/router"
regRouter "github.com/micro/go-micro/v3/router/registry"
"github.com/unistack-org/micro/v3/registry"
"github.com/unistack-org/micro/v3/registry/memory"
"github.com/unistack-org/micro/v3/router"
regRouter "github.com/unistack-org/micro/v3/router/registry"
)
func TestRoundTripper(t *testing.T) {

View File

@@ -1,6 +1,6 @@
package http
import "github.com/micro/go-micro/v3/router"
import "github.com/unistack-org/micro/v3/router"
type Options struct {
Router router.Router

View File

@@ -4,8 +4,8 @@ import (
"errors"
"net/http"
"github.com/micro/go-micro/v3/router"
"github.com/micro/go-micro/v3/selector"
"github.com/unistack-org/micro/v3/router"
"github.com/unistack-org/micro/v3/selector"
)
type roundTripper struct {

View File

@@ -4,7 +4,7 @@ package io
import (
"io"
"github.com/micro/go-micro/v3/transport"
"github.com/unistack-org/micro/v3/transport"
)
type rwc struct {

View File

@@ -10,7 +10,7 @@ import (
"net/http"
"net/url"
"github.com/micro/go-micro/v3/logger"
"github.com/unistack-org/micro/v3/logger"
)
// Request is used to construct a http request for the k8s API.

View File

@@ -13,8 +13,8 @@ import (
"regexp"
"strings"
"github.com/micro/go-micro/v3/logger"
"github.com/micro/go-micro/v3/util/kubernetes/api"
"github.com/unistack-org/micro/v3/logger"
"github.com/unistack-org/micro/v3/util/kubernetes/api"
)
var (

View File

@@ -7,7 +7,7 @@ import (
"errors"
"net/http"
"github.com/micro/go-micro/v3/util/kubernetes/api"
"github.com/unistack-org/micro/v3/util/kubernetes/api"
)
const (

View File

@@ -1,5 +1,5 @@
// Package log is a global internal logger
// DEPRECATED: this is frozen package, use github.com/micro/go-micro/v3/logger
// DEPRECATED: this is frozen package, use github.com/unistack-org/micro/v3/logger
package log
import (
@@ -7,8 +7,8 @@ import (
"os"
"sync/atomic"
dlog "github.com/micro/go-micro/v3/debug/log"
nlog "github.com/micro/go-micro/v3/logger"
dlog "github.com/unistack-org/micro/v3/debug/log"
nlog "github.com/unistack-org/micro/v3/logger"
)
// level is a log level

View File

@@ -8,7 +8,7 @@ import (
"sync/atomic"
"time"
log "github.com/micro/go-micro/v3/logger"
log "github.com/unistack-org/micro/v3/logger"
"github.com/miekg/dns"
"golang.org/x/net/ipv4"
"golang.org/x/net/ipv6"

View File

@@ -5,7 +5,7 @@ import (
"time"
"github.com/google/uuid"
"github.com/micro/go-micro/v3/transport"
"github.com/unistack-org/micro/v3/transport"
)
type pool struct {

View File

@@ -4,8 +4,8 @@ import (
"testing"
"time"
"github.com/micro/go-micro/v3/transport"
"github.com/micro/go-micro/v3/transport/memory"
"github.com/unistack-org/micro/v3/transport"
"github.com/unistack-org/micro/v3/transport/memory"
)
func testPool(t *testing.T, size int, ttl time.Duration) {

View File

@@ -3,7 +3,7 @@ package pool
import (
"time"
"github.com/micro/go-micro/v3/transport"
"github.com/unistack-org/micro/v3/transport"
)
type Options struct {

View File

@@ -4,7 +4,7 @@ package pool
import (
"time"
"github.com/micro/go-micro/v3/transport"
"github.com/unistack-org/micro/v3/transport"
)
// Pool is an interface for connection pooling

View File

@@ -1,7 +1,7 @@
package registry
import (
"github.com/micro/go-micro/v3/registry"
"github.com/unistack-org/micro/v3/registry"
)
func addNodes(old, neu []*registry.Node) []*registry.Node {

View File

@@ -4,7 +4,7 @@ import (
"os"
"testing"
"github.com/micro/go-micro/v3/registry"
"github.com/unistack-org/micro/v3/registry"
)
func TestRemove(t *testing.T) {

View File

@@ -6,7 +6,7 @@ import (
"fmt"
"strings"
"github.com/micro/go-micro/v3/logger"
"github.com/unistack-org/micro/v3/logger"
)
// InvalidTemplateError indicates that the path template is not valid.

View File

@@ -8,7 +8,7 @@ import (
"reflect"
"testing"
"github.com/micro/go-micro/v3/logger"
"github.com/unistack-org/micro/v3/logger"
)
func TestTokenize(t *testing.T) {

View File

@@ -1,8 +1,8 @@
package router
import (
"github.com/micro/go-micro/v3/registry"
"github.com/micro/go-micro/v3/router"
"github.com/unistack-org/micro/v3/registry"
"github.com/unistack-org/micro/v3/router"
)
type apiRouter struct {

View File

@@ -7,7 +7,7 @@ import (
"fmt"
"strings"
"github.com/micro/go-micro/v3/logger"
"github.com/unistack-org/micro/v3/logger"
)
var (

View File

@@ -3,7 +3,7 @@ package scope
import (
"fmt"
"github.com/micro/go-micro/v3/store"
"github.com/unistack-org/micro/v3/store"
)
// Scope extends the store, applying a prefix to each request

View File

@@ -4,7 +4,7 @@ package socket
import (
"io"
"github.com/micro/go-micro/v3/transport"
"github.com/unistack-org/micro/v3/transport"
)
// Socket is our pseudo socket for transport.Socket

View File

@@ -5,11 +5,11 @@ import (
"context"
"sync"
"github.com/micro/go-micro/v3/client"
"github.com/micro/go-micro/v3/client/mucp"
"github.com/micro/go-micro/v3/codec"
"github.com/micro/go-micro/v3/metadata"
"github.com/micro/go-micro/v3/server"
"github.com/unistack-org/micro/v3/client"
"github.com/unistack-org/micro/v3/client/mucp"
"github.com/unistack-org/micro/v3/codec"
"github.com/unistack-org/micro/v3/metadata"
"github.com/unistack-org/micro/v3/server"
)
type Stream interface {

View File

@@ -3,7 +3,7 @@ package sync
import (
"time"
"github.com/micro/go-micro/v3/store"
"github.com/unistack-org/micro/v3/store"
"github.com/pkg/errors"
)

View File

@@ -3,7 +3,7 @@ package sync
import (
"time"
"github.com/micro/go-micro/v3/store"
"github.com/unistack-org/micro/v3/store"
)
// Options represents Sync options

View File

@@ -7,7 +7,7 @@ import (
"time"
"github.com/ef-ds/deque"
"github.com/micro/go-micro/v3/store"
"github.com/unistack-org/micro/v3/store"
"github.com/pkg/errors"
)

View File

@@ -1,7 +1,7 @@
package test
import (
"github.com/micro/go-micro/v3/registry"
"github.com/unistack-org/micro/v3/registry"
)
var (

View File

@@ -6,9 +6,9 @@ import (
"time"
"github.com/google/uuid"
"github.com/micro/go-micro/v3/auth"
"github.com/micro/go-micro/v3/store"
"github.com/micro/go-micro/v3/util/token"
"github.com/unistack-org/micro/v3/auth"
"github.com/unistack-org/micro/v3/store"
"github.com/unistack-org/micro/v3/util/token"
)
// Basic implementation of token provider, backed by the store

View File

@@ -3,9 +3,9 @@ package basic
import (
"testing"
"github.com/micro/go-micro/v3/auth"
"github.com/micro/go-micro/v3/store/memory"
"github.com/micro/go-micro/v3/util/token"
"github.com/unistack-org/micro/v3/auth"
"github.com/unistack-org/micro/v3/store/memory"
"github.com/unistack-org/micro/v3/util/token"
)
func TestGenerate(t *testing.T) {

View File

@@ -5,8 +5,8 @@ import (
"time"
"github.com/dgrijalva/jwt-go"
"github.com/micro/go-micro/v3/auth"
"github.com/micro/go-micro/v3/util/token"
"github.com/unistack-org/micro/v3/auth"
"github.com/unistack-org/micro/v3/util/token"
)
// authClaims to be encoded in the JWT

View File

@@ -5,8 +5,8 @@ import (
"testing"
"time"
"github.com/micro/go-micro/v3/auth"
"github.com/micro/go-micro/v3/util/token"
"github.com/unistack-org/micro/v3/auth"
"github.com/unistack-org/micro/v3/util/token"
)
func TestGenerate(t *testing.T) {

View File

@@ -3,7 +3,7 @@ package token
import (
"time"
"github.com/micro/go-micro/v3/store"
"github.com/unistack-org/micro/v3/store"
)
type Options struct {

View File

@@ -4,7 +4,7 @@ import (
"errors"
"time"
"github.com/micro/go-micro/v3/auth"
"github.com/unistack-org/micro/v3/auth"
)
var (