service

package
v0.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 9, 2020 License: GPL-3.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var DiagnosticNode_Severity_name = map[int32]string{
	0: "UNDEF",
	1: "INFO",
	2: "WARNING",
	3: "ERROR",
}
View Source
var DiagnosticNode_Severity_value = map[string]int32{
	"UNDEF":   0,
	"INFO":    1,
	"WARNING": 2,
	"ERROR":   3,
}
View Source
var EventClass_name = map[int32]string{
	0: "ALL",
	1: "PHASE",
	2: "MODULE",
}
View Source
var EventClass_value = map[string]int32{
	"ALL":    0,
	"PHASE":  1,
	"MODULE": 2,
}
View Source
var ExceptionType_name = map[int32]string{
	0: "ERROR",
	1: "WARNING",
}
View Source
var ExceptionType_value = map[string]int32{
	"ERROR":   0,
	"WARNING": 1,
}
View Source
var Phase_name = map[int32]string{
	0: "INIT",
	1: "BUILD",
	2: "ANALYSIS",
	3: "REPORT",
	4: "FAIL",
}
View Source
var Phase_value = map[string]int32{
	"INIT":     0,
	"BUILD":    1,
	"ANALYSIS": 2,
	"REPORT":   3,
	"FAIL":     4,
}

Functions

func RegisterAnalysisServiceServer

func RegisterAnalysisServiceServer(s *grpc.Server, srv AnalysisServiceServer)

func RegisterBuildServiceServer

func RegisterBuildServiceServer(s *grpc.Server, srv BuildServiceServer)

func RegisterControlServiceServer

func RegisterControlServiceServer(s *grpc.Server, srv ControlServiceServer)

func RegisterReportServiceServer

func RegisterReportServiceServer(s *grpc.Server, srv ReportServiceServer)

func RemoveSlash

func RemoveSlash(value string) string

Types

type AnalysisServiceClient

type AnalysisServiceClient interface {
	GetAnalyzerConfig(ctx context.Context, in *AnalyzerConfigRequest, opts ...grpc.CallOption) (*AnalyzerConfigResponse, error)
	SendInfoNodes(ctx context.Context, opts ...grpc.CallOption) (AnalysisService_SendInfoNodesClient, error)
	SendDiagnosticNode(ctx context.Context, opts ...grpc.CallOption) (AnalysisService_SendDiagnosticNodeClient, error)
	GetSourceFileNodes(ctx context.Context, in *DummyRequest, opts ...grpc.CallOption) (AnalysisService_GetSourceFileNodesClient, error)
}

AnalysisServiceClient is the client API for AnalysisService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewAnalysisServiceClient

func NewAnalysisServiceClient(cc *grpc.ClientConn) AnalysisServiceClient

type AnalysisServiceServer

type AnalysisServiceServer interface {
	GetAnalyzerConfig(context.Context, *AnalyzerConfigRequest) (*AnalyzerConfigResponse, error)
	SendInfoNodes(AnalysisService_SendInfoNodesServer) error
	SendDiagnosticNode(AnalysisService_SendDiagnosticNodeServer) error
	GetSourceFileNodes(*DummyRequest, AnalysisService_GetSourceFileNodesServer) error
}

AnalysisServiceServer is the server API for AnalysisService service.

type AnalysisService_GetSourceFileNodesClient

type AnalysisService_GetSourceFileNodesClient interface {
	Recv() (*FileNode, error)
	grpc.ClientStream
}

type AnalysisService_GetSourceFileNodesServer

type AnalysisService_GetSourceFileNodesServer interface {
	Send(*FileNode) error
	grpc.ServerStream
}

type AnalysisService_SendDiagnosticNodeClient

type AnalysisService_SendDiagnosticNodeClient interface {
	Send(*DiagnosticNodeMessage) error
	CloseAndRecv() (*SendResponse, error)
	grpc.ClientStream
}

type AnalysisService_SendDiagnosticNodeServer

type AnalysisService_SendDiagnosticNodeServer interface {
	SendAndClose(*SendResponse) error
	Recv() (*DiagnosticNodeMessage, error)
	grpc.ServerStream
}

type AnalysisService_SendInfoNodesClient

type AnalysisService_SendInfoNodesClient interface {
	Send(*InfoNodesMessage) error
	CloseAndRecv() (*SendResponse, error)
	grpc.ClientStream
}

type AnalysisService_SendInfoNodesServer

type AnalysisService_SendInfoNodesServer interface {
	SendAndClose(*SendResponse) error
	Recv() (*InfoNodesMessage, error)
	grpc.ServerStream
}

type Analyzer

type Analyzer struct {
	Uid                  string              `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Name                 string              `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	AnalyzerNodeType     string              `protobuf:"bytes,3,opt,name=analyzerNodeType,proto3" json:"analyzerNodeType,omitempty"`
	TrustLevel           int64               `protobuf:"varint,4,opt,name=trustLevel,proto3" json:"trustLevel,omitempty"`
	PathSub              []*PathSubstitution `protobuf:"bytes,5,rep,name=pathSub,proto3" json:"pathSub,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*Analyzer) Descriptor

func (*Analyzer) Descriptor() ([]byte, []int)

func (*Analyzer) GetAnalyzerNodeType

func (m *Analyzer) GetAnalyzerNodeType() string

func (*Analyzer) GetName

func (m *Analyzer) GetName() string

func (*Analyzer) GetPathSub

func (m *Analyzer) GetPathSub() []*PathSubstitution

func (*Analyzer) GetTrustLevel

func (m *Analyzer) GetTrustLevel() int64

func (*Analyzer) GetUid

func (m *Analyzer) GetUid() string

func (*Analyzer) ProtoMessage

func (*Analyzer) ProtoMessage()

func (*Analyzer) Reset

func (m *Analyzer) Reset()

func (*Analyzer) String

func (m *Analyzer) String() string

func (*Analyzer) XXX_DiscardUnknown

func (m *Analyzer) XXX_DiscardUnknown()

func (*Analyzer) XXX_Marshal

func (m *Analyzer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Analyzer) XXX_Merge

func (m *Analyzer) XXX_Merge(src proto.Message)

func (*Analyzer) XXX_Size

func (m *Analyzer) XXX_Size() int

func (*Analyzer) XXX_Unmarshal

func (m *Analyzer) XXX_Unmarshal(b []byte) error

type AnalyzerConfigRequest

type AnalyzerConfigRequest struct {
	AnalyzerID           int32    `protobuf:"varint,1,opt,name=analyzerID,proto3" json:"analyzerID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*AnalyzerConfigRequest) Descriptor

func (*AnalyzerConfigRequest) Descriptor() ([]byte, []int)

func (*AnalyzerConfigRequest) GetAnalyzerID

func (m *AnalyzerConfigRequest) GetAnalyzerID() int32

func (*AnalyzerConfigRequest) ProtoMessage

func (*AnalyzerConfigRequest) ProtoMessage()

func (*AnalyzerConfigRequest) Reset

func (m *AnalyzerConfigRequest) Reset()

func (*AnalyzerConfigRequest) String

func (m *AnalyzerConfigRequest) String() string

func (*AnalyzerConfigRequest) XXX_DiscardUnknown

func (m *AnalyzerConfigRequest) XXX_DiscardUnknown()

func (*AnalyzerConfigRequest) XXX_Marshal

func (m *AnalyzerConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AnalyzerConfigRequest) XXX_Merge

func (m *AnalyzerConfigRequest) XXX_Merge(src proto.Message)

func (*AnalyzerConfigRequest) XXX_Size

func (m *AnalyzerConfigRequest) XXX_Size() int

func (*AnalyzerConfigRequest) XXX_Unmarshal

func (m *AnalyzerConfigRequest) XXX_Unmarshal(b []byte) error

type AnalyzerConfigResponse

type AnalyzerConfigResponse struct {
	ConfigMap            map[string]string   `` /* 159-byte string literal not displayed */
	PathSub              []*PathSubstitution `protobuf:"bytes,3,rep,name=pathSub,proto3" json:"pathSub,omitempty"`
	Token                int64               `protobuf:"varint,4,opt,name=token,proto3" json:"token,omitempty"`
	Name                 string              `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
}

func (*AnalyzerConfigResponse) Descriptor

func (*AnalyzerConfigResponse) Descriptor() ([]byte, []int)

func (*AnalyzerConfigResponse) GetConfigMap

func (m *AnalyzerConfigResponse) GetConfigMap() map[string]string

func (*AnalyzerConfigResponse) GetName

func (m *AnalyzerConfigResponse) GetName() string

func (*AnalyzerConfigResponse) GetPathSub

func (m *AnalyzerConfigResponse) GetPathSub() []*PathSubstitution

func (*AnalyzerConfigResponse) GetToken

func (m *AnalyzerConfigResponse) GetToken() int64

func (*AnalyzerConfigResponse) ProtoMessage

func (*AnalyzerConfigResponse) ProtoMessage()

func (*AnalyzerConfigResponse) Reset

func (m *AnalyzerConfigResponse) Reset()

func (*AnalyzerConfigResponse) String

func (m *AnalyzerConfigResponse) String() string

func (*AnalyzerConfigResponse) XXX_DiscardUnknown

func (m *AnalyzerConfigResponse) XXX_DiscardUnknown()

func (*AnalyzerConfigResponse) XXX_Marshal

func (m *AnalyzerConfigResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AnalyzerConfigResponse) XXX_Merge

func (m *AnalyzerConfigResponse) XXX_Merge(src proto.Message)

func (*AnalyzerConfigResponse) XXX_Size

func (m *AnalyzerConfigResponse) XXX_Size() int

func (*AnalyzerConfigResponse) XXX_Unmarshal

func (m *AnalyzerConfigResponse) XXX_Unmarshal(b []byte) error

type BuildResponse

type BuildResponse struct {
	Success              bool     `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BuildResponse) Descriptor

func (*BuildResponse) Descriptor() ([]byte, []int)

func (*BuildResponse) GetSuccess

func (m *BuildResponse) GetSuccess() bool

func (*BuildResponse) ProtoMessage

func (*BuildResponse) ProtoMessage()

func (*BuildResponse) Reset

func (m *BuildResponse) Reset()

func (*BuildResponse) String

func (m *BuildResponse) String() string

func (*BuildResponse) XXX_DiscardUnknown

func (m *BuildResponse) XXX_DiscardUnknown()

func (*BuildResponse) XXX_Marshal

func (m *BuildResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BuildResponse) XXX_Merge

func (m *BuildResponse) XXX_Merge(src proto.Message)

func (*BuildResponse) XXX_Size

func (m *BuildResponse) XXX_Size() int

func (*BuildResponse) XXX_Unmarshal

func (m *BuildResponse) XXX_Unmarshal(b []byte) error

type BuildServiceClient

type BuildServiceClient interface {
	Build(ctx context.Context, opts ...grpc.CallOption) (BuildService_BuildClient, error)
	SendBuildError(ctx context.Context, in *InfoNode, opts ...grpc.CallOption) (*BuildResponse, error)
	PushFile(ctx context.Context, in *PushFileMessage, opts ...grpc.CallOption) (*PushFileResponse, error)
	UpdatePackageNode(ctx context.Context, in *UpdatePackageNodeMessage, opts ...grpc.CallOption) (*BuildResponse, error)
	CreatePackage(ctx context.Context, in *PackageNode, opts ...grpc.CallOption) (*BuildResponse, error)
	CreateProject(ctx context.Context, in *ProjectNode, opts ...grpc.CallOption) (*BuildResponse, error)
	UpdateProjectNode(ctx context.Context, opts ...grpc.CallOption) (BuildService_UpdateProjectNodeClient, error)
	GetProjectNode(ctx context.Context, in *ProjectNode, opts ...grpc.CallOption) (*ProjectNode, error)
	DeleteNode(ctx context.Context, opts ...grpc.CallOption) (BuildService_DeleteNodeClient, error)
	DeleteEdge(ctx context.Context, in *DeleteMessage, opts ...grpc.CallOption) (*BuildResponse, error)
}

BuildServiceClient is the client API for BuildService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewBuildServiceClient

func NewBuildServiceClient(cc *grpc.ClientConn) BuildServiceClient

type BuildServiceServer

BuildServiceServer is the server API for BuildService service.

type BuildService_BuildClient

type BuildService_BuildClient interface {
	Send(*FileNode) error
	CloseAndRecv() (*BuildResponse, error)
	grpc.ClientStream
}

type BuildService_BuildServer

type BuildService_BuildServer interface {
	SendAndClose(*BuildResponse) error
	Recv() (*FileNode, error)
	grpc.ServerStream
}

type BuildService_DeleteNodeClient

type BuildService_DeleteNodeClient interface {
	Send(*DeleteMessage) error
	CloseAndRecv() (*BuildResponse, error)
	grpc.ClientStream
}

type BuildService_DeleteNodeServer

type BuildService_DeleteNodeServer interface {
	SendAndClose(*BuildResponse) error
	Recv() (*DeleteMessage, error)
	grpc.ServerStream
}

type BuildService_UpdateProjectNodeClient

type BuildService_UpdateProjectNodeClient interface {
	Send(*PackageNode) error
	CloseAndRecv() (*BuildResponse, error)
	grpc.ClientStream
}

type BuildService_UpdateProjectNodeServer

type BuildService_UpdateProjectNodeServer interface {
	SendAndClose(*BuildResponse) error
	Recv() (*PackageNode, error)
	grpc.ServerStream
}

type ControlServiceClient

ControlServiceClient is the client API for ControlService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewControlServiceClient

func NewControlServiceClient(cc *grpc.ClientConn) ControlServiceClient

type ControlService_GetDiagnosticNodeClient

type ControlService_GetDiagnosticNodeClient interface {
	Recv() (*DiagnosticNode, error)
	grpc.ClientStream
}

type ControlService_GetDiagnosticNodeServer

type ControlService_GetDiagnosticNodeServer interface {
	Send(*DiagnosticNode) error
	grpc.ServerStream
}

type ControlService_GetFileNodeClient

type ControlService_GetFileNodeClient interface {
	Recv() (*FileNode, error)
	grpc.ClientStream
}

type ControlService_GetFileNodeServer

type ControlService_GetFileNodeServer interface {
	Send(*FileNode) error
	grpc.ServerStream
}

type ControlService_GetPackageNodeClient

type ControlService_GetPackageNodeClient interface {
	Recv() (*PackageNode, error)
	grpc.ClientStream
}

type ControlService_GetPackageNodeServer

type ControlService_GetPackageNodeServer interface {
	Send(*PackageNode) error
	grpc.ServerStream
}

type ControlService_GetPackageTargetsClient

type ControlService_GetPackageTargetsClient interface {
	Recv() (*FileNode, error)
	grpc.ClientStream
}

type ControlService_GetPackageTargetsServer

type ControlService_GetPackageTargetsServer interface {
	Send(*FileNode) error
	grpc.ServerStream
}

type ControlService_SubscribeEventsClient

type ControlService_SubscribeEventsClient interface {
	Recv() (*Event, error)
	grpc.ClientStream
}

type ControlService_SubscribeEventsServer

type ControlService_SubscribeEventsServer interface {
	Send(*Event) error
	grpc.ServerStream
}

type DeleteMessage

type DeleteMessage struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Edge                 string   `protobuf:"bytes,2,opt,name=edge,proto3" json:"edge,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DeleteMessage) Descriptor

func (*DeleteMessage) Descriptor() ([]byte, []int)

func (*DeleteMessage) GetEdge

func (m *DeleteMessage) GetEdge() string

func (*DeleteMessage) GetUid

func (m *DeleteMessage) GetUid() string

func (*DeleteMessage) ProtoMessage

func (*DeleteMessage) ProtoMessage()

func (*DeleteMessage) Reset

func (m *DeleteMessage) Reset()

func (*DeleteMessage) String

func (m *DeleteMessage) String() string

func (*DeleteMessage) XXX_DiscardUnknown

func (m *DeleteMessage) XXX_DiscardUnknown()

func (*DeleteMessage) XXX_Marshal

func (m *DeleteMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DeleteMessage) XXX_Merge

func (m *DeleteMessage) XXX_Merge(src proto.Message)

func (*DeleteMessage) XXX_Size

func (m *DeleteMessage) XXX_Size() int

func (*DeleteMessage) XXX_Unmarshal

func (m *DeleteMessage) XXX_Unmarshal(b []byte) error

type DiagnosticNode

type DiagnosticNode struct {
	Uid                  string                  `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	DiagnosticNodeType   string                  `protobuf:"bytes,2,opt,name=diagnosticNodeType,proto3" json:"diagnosticNodeType,omitempty"`
	Severity             DiagnosticNode_Severity `protobuf:"varint,3,opt,name=severity,proto3,enum=service.DiagnosticNode_Severity" json:"severity,omitempty"`
	Message              string                  `protobuf:"bytes,4,opt,name=message,proto3" json:"message,omitempty"`
	Analyzer             []*Analyzer             `protobuf:"bytes,5,rep,name=analyzer,proto3" json:"analyzer,omitempty"`
	Timestamp            string                  `protobuf:"bytes,6,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*DiagnosticNode) Descriptor

func (*DiagnosticNode) Descriptor() ([]byte, []int)

func (*DiagnosticNode) GetAnalyzer

func (m *DiagnosticNode) GetAnalyzer() []*Analyzer

func (*DiagnosticNode) GetDiagnosticNodeType

func (m *DiagnosticNode) GetDiagnosticNodeType() string

func (*DiagnosticNode) GetMessage

func (m *DiagnosticNode) GetMessage() string

func (*DiagnosticNode) GetSeverity

func (m *DiagnosticNode) GetSeverity() DiagnosticNode_Severity

func (*DiagnosticNode) GetTimestamp

func (m *DiagnosticNode) GetTimestamp() string

func (*DiagnosticNode) GetUid

func (m *DiagnosticNode) GetUid() string

func (*DiagnosticNode) ProtoMessage

func (*DiagnosticNode) ProtoMessage()

func (*DiagnosticNode) Reset

func (m *DiagnosticNode) Reset()

func (*DiagnosticNode) String

func (m *DiagnosticNode) String() string

func (*DiagnosticNode) XXX_DiscardUnknown

func (m *DiagnosticNode) XXX_DiscardUnknown()

func (*DiagnosticNode) XXX_Marshal

func (m *DiagnosticNode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DiagnosticNode) XXX_Merge

func (m *DiagnosticNode) XXX_Merge(src proto.Message)

func (*DiagnosticNode) XXX_Size

func (m *DiagnosticNode) XXX_Size() int

func (*DiagnosticNode) XXX_Unmarshal

func (m *DiagnosticNode) XXX_Unmarshal(b []byte) error

type DiagnosticNodeMessage

type DiagnosticNodeMessage struct {
	Token                int64           `protobuf:"varint,1,opt,name=token,proto3" json:"token,omitempty"`
	Uid                  string          `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	Diagnosticnode       *DiagnosticNode `protobuf:"bytes,3,opt,name=diagnosticnode,proto3" json:"diagnosticnode,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*DiagnosticNodeMessage) Descriptor

func (*DiagnosticNodeMessage) Descriptor() ([]byte, []int)

func (*DiagnosticNodeMessage) GetDiagnosticnode

func (m *DiagnosticNodeMessage) GetDiagnosticnode() *DiagnosticNode

func (*DiagnosticNodeMessage) GetToken

func (m *DiagnosticNodeMessage) GetToken() int64

func (*DiagnosticNodeMessage) GetUid

func (m *DiagnosticNodeMessage) GetUid() string

func (*DiagnosticNodeMessage) ProtoMessage

func (*DiagnosticNodeMessage) ProtoMessage()

func (*DiagnosticNodeMessage) Reset

func (m *DiagnosticNodeMessage) Reset()

func (*DiagnosticNodeMessage) String

func (m *DiagnosticNodeMessage) String() string

func (*DiagnosticNodeMessage) XXX_DiscardUnknown

func (m *DiagnosticNodeMessage) XXX_DiscardUnknown()

func (*DiagnosticNodeMessage) XXX_Marshal

func (m *DiagnosticNodeMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DiagnosticNodeMessage) XXX_Merge

func (m *DiagnosticNodeMessage) XXX_Merge(src proto.Message)

func (*DiagnosticNodeMessage) XXX_Size

func (m *DiagnosticNodeMessage) XXX_Size() int

func (*DiagnosticNodeMessage) XXX_Unmarshal

func (m *DiagnosticNodeMessage) XXX_Unmarshal(b []byte) error

type DiagnosticNode_Severity

type DiagnosticNode_Severity int32
const (
	DiagnosticNode_UNDEF   DiagnosticNode_Severity = 0
	DiagnosticNode_INFO    DiagnosticNode_Severity = 1
	DiagnosticNode_WARNING DiagnosticNode_Severity = 2
	DiagnosticNode_ERROR   DiagnosticNode_Severity = 3
)

func (DiagnosticNode_Severity) EnumDescriptor

func (DiagnosticNode_Severity) EnumDescriptor() ([]byte, []int)

func (DiagnosticNode_Severity) String

func (x DiagnosticNode_Severity) String() string

type DummyRequest

type DummyRequest struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DummyRequest) Descriptor

func (*DummyRequest) Descriptor() ([]byte, []int)

func (*DummyRequest) ProtoMessage

func (*DummyRequest) ProtoMessage()

func (*DummyRequest) Reset

func (m *DummyRequest) Reset()

func (*DummyRequest) String

func (m *DummyRequest) String() string

func (*DummyRequest) XXX_DiscardUnknown

func (m *DummyRequest) XXX_DiscardUnknown()

func (*DummyRequest) XXX_Marshal

func (m *DummyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DummyRequest) XXX_Merge

func (m *DummyRequest) XXX_Merge(src proto.Message)

func (*DummyRequest) XXX_Size

func (m *DummyRequest) XXX_Size() int

func (*DummyRequest) XXX_Unmarshal

func (m *DummyRequest) XXX_Unmarshal(b []byte) error

type Event

type Event struct {
	Class                EventClass `protobuf:"varint,1,opt,name=class,proto3,enum=service.EventClass" json:"class,omitempty"`
	Message              string     `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*Event) Descriptor

func (*Event) Descriptor() ([]byte, []int)

func (*Event) GetClass

func (m *Event) GetClass() EventClass

func (*Event) GetMessage

func (m *Event) GetMessage() string

func (*Event) ProtoMessage

func (*Event) ProtoMessage()

func (*Event) Reset

func (m *Event) Reset()

func (*Event) String

func (m *Event) String() string

func (*Event) XXX_DiscardUnknown

func (m *Event) XXX_DiscardUnknown()

func (*Event) XXX_Marshal

func (m *Event) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Event) XXX_Merge

func (m *Event) XXX_Merge(src proto.Message)

func (*Event) XXX_Size

func (m *Event) XXX_Size() int

func (*Event) XXX_Unmarshal

func (m *Event) XXX_Unmarshal(b []byte) error

type EventClass

type EventClass int32
const (
	EventClass_ALL    EventClass = 0
	EventClass_PHASE  EventClass = 1
	EventClass_MODULE EventClass = 2
)

func (EventClass) EnumDescriptor

func (EventClass) EnumDescriptor() ([]byte, []int)

func (EventClass) String

func (x EventClass) String() string

type EventMessage

type EventMessage struct {
	Class                EventClass `protobuf:"varint,1,opt,name=class,proto3,enum=service.EventClass" json:"class,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*EventMessage) Descriptor

func (*EventMessage) Descriptor() ([]byte, []int)

func (*EventMessage) GetClass

func (m *EventMessage) GetClass() EventClass

func (*EventMessage) ProtoMessage

func (*EventMessage) ProtoMessage()

func (*EventMessage) Reset

func (m *EventMessage) Reset()

func (*EventMessage) String

func (m *EventMessage) String() string

func (*EventMessage) XXX_DiscardUnknown

func (m *EventMessage) XXX_DiscardUnknown()

func (*EventMessage) XXX_Marshal

func (m *EventMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventMessage) XXX_Merge

func (m *EventMessage) XXX_Merge(src proto.Message)

func (*EventMessage) XXX_Size

func (m *EventMessage) XXX_Size() int

func (*EventMessage) XXX_Unmarshal

func (m *EventMessage) XXX_Unmarshal(b []byte) error

type ExceptionType

type ExceptionType int32
const (
	ExceptionType_ERROR   ExceptionType = 0
	ExceptionType_WARNING ExceptionType = 1
)

func (ExceptionType) EnumDescriptor

func (ExceptionType) EnumDescriptor() ([]byte, []int)

func (ExceptionType) String

func (x ExceptionType) String() string

type ExportRequest

type ExportRequest struct {
	Wait                 bool     `protobuf:"varint,1,opt,name=wait,proto3" json:"wait,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ExportRequest) Descriptor

func (*ExportRequest) Descriptor() ([]byte, []int)

func (*ExportRequest) GetWait

func (m *ExportRequest) GetWait() bool

func (*ExportRequest) ProtoMessage

func (*ExportRequest) ProtoMessage()

func (*ExportRequest) Reset

func (m *ExportRequest) Reset()

func (*ExportRequest) String

func (m *ExportRequest) String() string

func (*ExportRequest) XXX_DiscardUnknown

func (m *ExportRequest) XXX_DiscardUnknown()

func (*ExportRequest) XXX_Marshal

func (m *ExportRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExportRequest) XXX_Merge

func (m *ExportRequest) XXX_Merge(src proto.Message)

func (*ExportRequest) XXX_Size

func (m *ExportRequest) XXX_Size() int

func (*ExportRequest) XXX_Unmarshal

func (m *ExportRequest) XXX_Unmarshal(b []byte) error

type ExportResponse

type ExportResponse struct {
	Success              bool     `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ExportResponse) Descriptor

func (*ExportResponse) Descriptor() ([]byte, []int)

func (*ExportResponse) GetSuccess

func (m *ExportResponse) GetSuccess() bool

func (*ExportResponse) ProtoMessage

func (*ExportResponse) ProtoMessage()

func (*ExportResponse) Reset

func (m *ExportResponse) Reset()

func (*ExportResponse) String

func (m *ExportResponse) String() string

func (*ExportResponse) XXX_DiscardUnknown

func (m *ExportResponse) XXX_DiscardUnknown()

func (*ExportResponse) XXX_Marshal

func (m *ExportResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ExportResponse) XXX_Merge

func (m *ExportResponse) XXX_Merge(src proto.Message)

func (*ExportResponse) XXX_Size

func (m *ExportResponse) XXX_Size() int

func (*ExportResponse) XXX_Unmarshal

func (m *ExportResponse) XXX_Unmarshal(b []byte) error

type FileNode

type FileNode struct {
	Uid                  string                 `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	FileNodeType         string                 `protobuf:"bytes,2,opt,name=fileNodeType,proto3" json:"fileNodeType,omitempty"`
	Path                 string                 `protobuf:"bytes,4,opt,name=path,proto3" json:"path,omitempty"`
	Name                 string                 `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
	FileData             *FileNode_FileDataNode `protobuf:"bytes,6,opt,name=fileData,proto3" json:"fileData,omitempty"`
	Timestamp            string                 `protobuf:"bytes,7,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	DerivedFrom          []*FileNode            `protobuf:"bytes,8,rep,name=derivedFrom,proto3" json:"derivedFrom,omitempty"`
	Dependencies         []*FileNode            `protobuf:"bytes,9,rep,name=dependencies,proto3" json:"dependencies,omitempty"`
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
}

func (*FileNode) Describe

func (fn *FileNode) Describe(less bool, indent string) string

func (*FileNode) Descriptor

func (*FileNode) Descriptor() ([]byte, []int)

func (*FileNode) GetDependencies

func (m *FileNode) GetDependencies() []*FileNode

func (*FileNode) GetDerivedFrom

func (m *FileNode) GetDerivedFrom() []*FileNode

func (*FileNode) GetFileData

func (m *FileNode) GetFileData() *FileNode_FileDataNode

func (*FileNode) GetFileNodeType

func (m *FileNode) GetFileNodeType() string

func (*FileNode) GetName

func (m *FileNode) GetName() string

func (*FileNode) GetPath

func (m *FileNode) GetPath() string

func (*FileNode) GetTimestamp

func (m *FileNode) GetTimestamp() string

func (*FileNode) GetUid

func (m *FileNode) GetUid() string

func (*FileNode) IsValid

func (fn *FileNode) IsValid() bool

func (*FileNode) ProtoMessage

func (*FileNode) ProtoMessage()

func (*FileNode) Reset

func (m *FileNode) Reset()

func (*FileNode) String

func (m *FileNode) String() string

func (*FileNode) XXX_DiscardUnknown

func (m *FileNode) XXX_DiscardUnknown()

func (*FileNode) XXX_Marshal

func (m *FileNode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*FileNode) XXX_Merge

func (m *FileNode) XXX_Merge(src proto.Message)

func (*FileNode) XXX_Size

func (m *FileNode) XXX_Size() int

func (*FileNode) XXX_Unmarshal

func (m *FileNode) XXX_Unmarshal(b []byte) error

type FileNode_FileDataNode

type FileNode_FileDataNode struct {
	Uid                  string            `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	FileDataNodeType     string            `protobuf:"bytes,2,opt,name=fileDataNodeType,proto3" json:"fileDataNodeType,omitempty"`
	Hash                 string            `protobuf:"bytes,3,opt,name=hash,proto3" json:"hash,omitempty"`
	AdditionalInfo       []*InfoNode       `protobuf:"bytes,4,rep,name=additionalInfo,proto3" json:"additionalInfo,omitempty"`
	DiagnosticInfo       []*DiagnosticNode `protobuf:"bytes,5,rep,name=diagnosticInfo,proto3" json:"diagnosticInfo,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*FileNode_FileDataNode) Descriptor

func (*FileNode_FileDataNode) Descriptor() ([]byte, []int)

func (*FileNode_FileDataNode) GetAdditionalInfo

func (m *FileNode_FileDataNode) GetAdditionalInfo() []*InfoNode

func (*FileNode_FileDataNode) GetDiagnosticInfo

func (m *FileNode_FileDataNode) GetDiagnosticInfo() []*DiagnosticNode

func (*FileNode_FileDataNode) GetFileDataNodeType

func (m *FileNode_FileDataNode) GetFileDataNodeType() string

func (*FileNode_FileDataNode) GetHash

func (m *FileNode_FileDataNode) GetHash() string

func (*FileNode_FileDataNode) GetUid

func (m *FileNode_FileDataNode) GetUid() string

func (*FileNode_FileDataNode) ProtoMessage

func (*FileNode_FileDataNode) ProtoMessage()

func (*FileNode_FileDataNode) Reset

func (m *FileNode_FileDataNode) Reset()

func (*FileNode_FileDataNode) String

func (m *FileNode_FileDataNode) String() string

func (*FileNode_FileDataNode) XXX_DiscardUnknown

func (m *FileNode_FileDataNode) XXX_DiscardUnknown()

func (*FileNode_FileDataNode) XXX_Marshal

func (m *FileNode_FileDataNode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*FileNode_FileDataNode) XXX_Merge

func (m *FileNode_FileDataNode) XXX_Merge(src proto.Message)

func (*FileNode_FileDataNode) XXX_Size

func (m *FileNode_FileDataNode) XXX_Size() int

func (*FileNode_FileDataNode) XXX_Unmarshal

func (m *FileNode_FileDataNode) XXX_Unmarshal(b []byte) error

type GetFileNodeMessage

type GetFileNodeMessage struct {
	FileNode             *FileNode `protobuf:"bytes,1,opt,name=fileNode,proto3" json:"fileNode,omitempty"`
	UniqueNode           bool      `protobuf:"varint,2,opt,name=uniqueNode,proto3" json:"uniqueNode,omitempty"`
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (*GetFileNodeMessage) Descriptor

func (*GetFileNodeMessage) Descriptor() ([]byte, []int)

func (*GetFileNodeMessage) GetFileNode

func (m *GetFileNodeMessage) GetFileNode() *FileNode

func (*GetFileNodeMessage) GetUniqueNode

func (m *GetFileNodeMessage) GetUniqueNode() bool

func (*GetFileNodeMessage) ProtoMessage

func (*GetFileNodeMessage) ProtoMessage()

func (*GetFileNodeMessage) Reset

func (m *GetFileNodeMessage) Reset()

func (*GetFileNodeMessage) String

func (m *GetFileNodeMessage) String() string

func (*GetFileNodeMessage) XXX_DiscardUnknown

func (m *GetFileNodeMessage) XXX_DiscardUnknown()

func (*GetFileNodeMessage) XXX_Marshal

func (m *GetFileNodeMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetFileNodeMessage) XXX_Merge

func (m *GetFileNodeMessage) XXX_Merge(src proto.Message)

func (*GetFileNodeMessage) XXX_Size

func (m *GetFileNodeMessage) XXX_Size() int

func (*GetFileNodeMessage) XXX_Unmarshal

func (m *GetFileNodeMessage) XXX_Unmarshal(b []byte) error

type InfoDataRequest

type InfoDataRequest struct {
	RootID               string   `protobuf:"bytes,1,opt,name=rootID,proto3" json:"rootID,omitempty"`
	Infotype             string   `protobuf:"bytes,2,opt,name=infotype,proto3" json:"infotype,omitempty"`
	Datatype             string   `protobuf:"bytes,3,opt,name=datatype,proto3" json:"datatype,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*InfoDataRequest) Descriptor

func (*InfoDataRequest) Descriptor() ([]byte, []int)

func (*InfoDataRequest) GetDatatype

func (m *InfoDataRequest) GetDatatype() string

func (*InfoDataRequest) GetInfotype

func (m *InfoDataRequest) GetInfotype() string

func (*InfoDataRequest) GetRootID

func (m *InfoDataRequest) GetRootID() string

func (*InfoDataRequest) ProtoMessage

func (*InfoDataRequest) ProtoMessage()

func (*InfoDataRequest) Reset

func (m *InfoDataRequest) Reset()

func (*InfoDataRequest) String

func (m *InfoDataRequest) String() string

func (*InfoDataRequest) XXX_DiscardUnknown

func (m *InfoDataRequest) XXX_DiscardUnknown()

func (*InfoDataRequest) XXX_Marshal

func (m *InfoDataRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*InfoDataRequest) XXX_Merge

func (m *InfoDataRequest) XXX_Merge(src proto.Message)

func (*InfoDataRequest) XXX_Size

func (m *InfoDataRequest) XXX_Size() int

func (*InfoDataRequest) XXX_Unmarshal

func (m *InfoDataRequest) XXX_Unmarshal(b []byte) error

type InfoDataResponse

type InfoDataResponse struct {
	Data                 []string `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*InfoDataResponse) Descriptor

func (*InfoDataResponse) Descriptor() ([]byte, []int)

func (*InfoDataResponse) GetData

func (m *InfoDataResponse) GetData() []string

func (*InfoDataResponse) ProtoMessage

func (*InfoDataResponse) ProtoMessage()

func (*InfoDataResponse) Reset

func (m *InfoDataResponse) Reset()

func (*InfoDataResponse) String

func (m *InfoDataResponse) String() string

func (*InfoDataResponse) XXX_DiscardUnknown

func (m *InfoDataResponse) XXX_DiscardUnknown()

func (*InfoDataResponse) XXX_Marshal

func (m *InfoDataResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*InfoDataResponse) XXX_Merge

func (m *InfoDataResponse) XXX_Merge(src proto.Message)

func (*InfoDataResponse) XXX_Size

func (m *InfoDataResponse) XXX_Size() int

func (*InfoDataResponse) XXX_Unmarshal

func (m *InfoDataResponse) XXX_Unmarshal(b []byte) error

type InfoNode

type InfoNode struct {
	Uid                  string               `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	InfoNodeType         string               `protobuf:"bytes,2,opt,name=infoNodeType,proto3" json:"infoNodeType,omitempty"`
	Type                 string               `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
	ConfidenceScore      float64              `protobuf:"fixed64,4,opt,name=confidenceScore,proto3" json:"confidenceScore,omitempty"`
	Analyzer             []*Analyzer          `protobuf:"bytes,5,rep,name=analyzer,proto3" json:"analyzer,omitempty"`
	DataNodes            []*InfoNode_DataNode `protobuf:"bytes,6,rep,name=dataNodes,proto3" json:"dataNodes,omitempty"`
	Timestamp            string               `protobuf:"bytes,7,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func CreateErrorNode

func CreateErrorNode(errorMes string) *InfoNode

func CreateInfoNode

func CreateInfoNode(infoType string, dataNodes ...*InfoNode_DataNode) *InfoNode

func CreateWarningNode

func CreateWarningNode(warning string) *InfoNode

func (*InfoNode) Describe

func (in *InfoNode) Describe(indent string) string

func (*InfoNode) Descriptor

func (*InfoNode) Descriptor() ([]byte, []int)

func (*InfoNode) GetAnalyzer

func (m *InfoNode) GetAnalyzer() []*Analyzer

func (*InfoNode) GetConfidenceScore

func (m *InfoNode) GetConfidenceScore() float64

func (*InfoNode) GetDataNodes

func (m *InfoNode) GetDataNodes() []*InfoNode_DataNode

func (*InfoNode) GetInfoNodeType

func (m *InfoNode) GetInfoNodeType() string

func (*InfoNode) GetTimestamp

func (m *InfoNode) GetTimestamp() string

func (*InfoNode) GetType

func (m *InfoNode) GetType() string

func (*InfoNode) GetUid

func (m *InfoNode) GetUid() string

func (*InfoNode) ProtoMessage

func (*InfoNode) ProtoMessage()

func (*InfoNode) Reset

func (m *InfoNode) Reset()

func (*InfoNode) String

func (m *InfoNode) String() string

func (*InfoNode) XXX_DiscardUnknown

func (m *InfoNode) XXX_DiscardUnknown()

func (*InfoNode) XXX_Marshal

func (m *InfoNode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*InfoNode) XXX_Merge

func (m *InfoNode) XXX_Merge(src proto.Message)

func (*InfoNode) XXX_Size

func (m *InfoNode) XXX_Size() int

func (*InfoNode) XXX_Unmarshal

func (m *InfoNode) XXX_Unmarshal(b []byte) error

type InfoNode_DataNode

type InfoNode_DataNode struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	DataNodeType         string   `protobuf:"bytes,2,opt,name=dataNodeType,proto3" json:"dataNodeType,omitempty"`
	Type                 string   `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
	Data                 string   `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"`
	Timestamp            string   `protobuf:"bytes,5,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*InfoNode_DataNode) Descriptor

func (*InfoNode_DataNode) Descriptor() ([]byte, []int)

func (*InfoNode_DataNode) GetData

func (m *InfoNode_DataNode) GetData() string

func (*InfoNode_DataNode) GetDataNodeType

func (m *InfoNode_DataNode) GetDataNodeType() string

func (*InfoNode_DataNode) GetTimestamp

func (m *InfoNode_DataNode) GetTimestamp() string

func (*InfoNode_DataNode) GetType

func (m *InfoNode_DataNode) GetType() string

func (*InfoNode_DataNode) GetUid

func (m *InfoNode_DataNode) GetUid() string

func (*InfoNode_DataNode) ProtoMessage

func (*InfoNode_DataNode) ProtoMessage()

func (*InfoNode_DataNode) Reset

func (m *InfoNode_DataNode) Reset()

func (*InfoNode_DataNode) String

func (m *InfoNode_DataNode) String() string

func (*InfoNode_DataNode) XXX_DiscardUnknown

func (m *InfoNode_DataNode) XXX_DiscardUnknown()

func (*InfoNode_DataNode) XXX_Marshal

func (m *InfoNode_DataNode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*InfoNode_DataNode) XXX_Merge

func (m *InfoNode_DataNode) XXX_Merge(src proto.Message)

func (*InfoNode_DataNode) XXX_Size

func (m *InfoNode_DataNode) XXX_Size() int

func (*InfoNode_DataNode) XXX_Unmarshal

func (m *InfoNode_DataNode) XXX_Unmarshal(b []byte) error

type InfoNodesMessage

type InfoNodesMessage struct {
	Token                int64       `protobuf:"varint,1,opt,name=token,proto3" json:"token,omitempty"`
	Uid                  string      `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	Infonodes            []*InfoNode `protobuf:"bytes,3,rep,name=infonodes,proto3" json:"infonodes,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

func (*InfoNodesMessage) Descriptor

func (*InfoNodesMessage) Descriptor() ([]byte, []int)

func (*InfoNodesMessage) GetInfonodes

func (m *InfoNodesMessage) GetInfonodes() []*InfoNode

func (*InfoNodesMessage) GetToken

func (m *InfoNodesMessage) GetToken() int64

func (*InfoNodesMessage) GetUid

func (m *InfoNodesMessage) GetUid() string

func (*InfoNodesMessage) ProtoMessage

func (*InfoNodesMessage) ProtoMessage()

func (*InfoNodesMessage) Reset

func (m *InfoNodesMessage) Reset()

func (*InfoNodesMessage) String

func (m *InfoNodesMessage) String() string

func (*InfoNodesMessage) XXX_DiscardUnknown

func (m *InfoNodesMessage) XXX_DiscardUnknown()

func (*InfoNodesMessage) XXX_Marshal

func (m *InfoNodesMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*InfoNodesMessage) XXX_Merge

func (m *InfoNodesMessage) XXX_Merge(src proto.Message)

func (*InfoNodesMessage) XXX_Size

func (m *InfoNodesMessage) XXX_Size() int

func (*InfoNodesMessage) XXX_Unmarshal

func (m *InfoNodesMessage) XXX_Unmarshal(b []byte) error

type LogMessage

type LogMessage struct {
	Msg                  []byte   `protobuf:"bytes,1,opt,name=msg,proto3" json:"msg,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*LogMessage) Descriptor

func (*LogMessage) Descriptor() ([]byte, []int)

func (*LogMessage) GetMsg

func (m *LogMessage) GetMsg() []byte

func (*LogMessage) ProtoMessage

func (*LogMessage) ProtoMessage()

func (*LogMessage) Reset

func (m *LogMessage) Reset()

func (*LogMessage) String

func (m *LogMessage) String() string

func (*LogMessage) XXX_DiscardUnknown

func (m *LogMessage) XXX_DiscardUnknown()

func (*LogMessage) XXX_Marshal

func (m *LogMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LogMessage) XXX_Merge

func (m *LogMessage) XXX_Merge(src proto.Message)

func (*LogMessage) XXX_Size

func (m *LogMessage) XXX_Size() int

func (*LogMessage) XXX_Unmarshal

func (m *LogMessage) XXX_Unmarshal(b []byte) error

type LogResponse

type LogResponse struct {
	Success              bool     `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*LogResponse) Descriptor

func (*LogResponse) Descriptor() ([]byte, []int)

func (*LogResponse) GetSuccess

func (m *LogResponse) GetSuccess() bool

func (*LogResponse) ProtoMessage

func (*LogResponse) ProtoMessage()

func (*LogResponse) Reset

func (m *LogResponse) Reset()

func (*LogResponse) String

func (m *LogResponse) String() string

func (*LogResponse) XXX_DiscardUnknown

func (m *LogResponse) XXX_DiscardUnknown()

func (*LogResponse) XXX_Marshal

func (m *LogResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LogResponse) XXX_Merge

func (m *LogResponse) XXX_Merge(src proto.Message)

func (*LogResponse) XXX_Size

func (m *LogResponse) XXX_Size() int

func (*LogResponse) XXX_Unmarshal

func (m *LogResponse) XXX_Unmarshal(b []byte) error

type PackageNode

type PackageNode struct {
	Uid                  string            `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Name                 string            `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Version              string            `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
	PackageNodeType      string            `protobuf:"bytes,4,opt,name=packageNodeType,proto3" json:"packageNodeType,omitempty"`
	Targets              []*FileNode       `protobuf:"bytes,5,rep,name=targets,proto3" json:"targets,omitempty"`
	AdditionalInfo       []*InfoNode       `protobuf:"bytes,6,rep,name=additionalInfo,proto3" json:"additionalInfo,omitempty"`
	BuildConfig          string            `protobuf:"bytes,7,opt,name=buildConfig,proto3" json:"buildConfig,omitempty"`
	DiagnosticInfo       []*DiagnosticNode `protobuf:"bytes,8,rep,name=diagnosticInfo,proto3" json:"diagnosticInfo,omitempty"`
	Timestamp            string            `protobuf:"bytes,9,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*PackageNode) Describe

func (pkg *PackageNode) Describe(less bool, indent string) string

func (*PackageNode) Descriptor

func (*PackageNode) Descriptor() ([]byte, []int)

func (*PackageNode) GetAdditionalInfo

func (m *PackageNode) GetAdditionalInfo() []*InfoNode

func (*PackageNode) GetBuildConfig

func (m *PackageNode) GetBuildConfig() string

func (*PackageNode) GetDiagnosticInfo

func (m *PackageNode) GetDiagnosticInfo() []*DiagnosticNode

func (*PackageNode) GetMetaData

func (pn *PackageNode) GetMetaData(key string, defaultValue string) string

func (*PackageNode) GetName

func (m *PackageNode) GetName() string

func (*PackageNode) GetPackageNodeType

func (m *PackageNode) GetPackageNodeType() string

func (*PackageNode) GetTargets

func (m *PackageNode) GetTargets() []*FileNode

func (*PackageNode) GetTimestamp

func (m *PackageNode) GetTimestamp() string

func (*PackageNode) GetUid

func (m *PackageNode) GetUid() string

func (*PackageNode) GetVersion

func (m *PackageNode) GetVersion() string

func (*PackageNode) IsEmpty

func (pn *PackageNode) IsEmpty() bool

func (*PackageNode) IsValid

func (pn *PackageNode) IsValid() bool

func (*PackageNode) ProtoMessage

func (*PackageNode) ProtoMessage()

func (*PackageNode) Reset

func (m *PackageNode) Reset()

func (*PackageNode) String

func (m *PackageNode) String() string

func (*PackageNode) XXX_DiscardUnknown

func (m *PackageNode) XXX_DiscardUnknown()

func (*PackageNode) XXX_Marshal

func (m *PackageNode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PackageNode) XXX_Merge

func (m *PackageNode) XXX_Merge(src proto.Message)

func (*PackageNode) XXX_Size

func (m *PackageNode) XXX_Size() int

func (*PackageNode) XXX_Unmarshal

func (m *PackageNode) XXX_Unmarshal(b []byte) error

type PathSubstitution

type PathSubstitution struct {
	Old                  string   `protobuf:"bytes,1,opt,name=old,proto3" json:"old,omitempty"`
	New                  string   `protobuf:"bytes,2,opt,name=new,proto3" json:"new,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PathSubstitution) Descriptor

func (*PathSubstitution) Descriptor() ([]byte, []int)

func (*PathSubstitution) GetNew

func (m *PathSubstitution) GetNew() string

func (*PathSubstitution) GetOld

func (m *PathSubstitution) GetOld() string

func (*PathSubstitution) ProtoMessage

func (*PathSubstitution) ProtoMessage()

func (*PathSubstitution) Reset

func (m *PathSubstitution) Reset()

func (*PathSubstitution) String

func (m *PathSubstitution) String() string

func (*PathSubstitution) XXX_DiscardUnknown

func (m *PathSubstitution) XXX_DiscardUnknown()

func (*PathSubstitution) XXX_Marshal

func (m *PathSubstitution) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PathSubstitution) XXX_Merge

func (m *PathSubstitution) XXX_Merge(src proto.Message)

func (*PathSubstitution) XXX_Size

func (m *PathSubstitution) XXX_Size() int

func (*PathSubstitution) XXX_Unmarshal

func (m *PathSubstitution) XXX_Unmarshal(b []byte) error

type Phase

type Phase int32
const (
	Phase_INIT     Phase = 0
	Phase_BUILD    Phase = 1
	Phase_ANALYSIS Phase = 2
	Phase_REPORT   Phase = 3
	Phase_FAIL     Phase = 4
)

func (Phase) EnumDescriptor

func (Phase) EnumDescriptor() ([]byte, []int)

func (Phase) String

func (x Phase) String() string

type ProjectNode

type ProjectNode struct {
	Uid                  string         `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	Name                 string         `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	ProjectNodeType      string         `protobuf:"bytes,3,opt,name=projectNodeType,proto3" json:"projectNodeType,omitempty"`
	Packages             []*PackageNode `protobuf:"bytes,4,rep,name=packages,proto3" json:"packages,omitempty"`
	AdditionalInfo       []*InfoNode    `protobuf:"bytes,5,rep,name=additionalInfo,proto3" json:"additionalInfo,omitempty"`
	Timestamp            string         `protobuf:"bytes,6,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ProjectNode) Describe

func (pn *ProjectNode) Describe(less bool) string

func (*ProjectNode) Descriptor

func (*ProjectNode) Descriptor() ([]byte, []int)

func (*ProjectNode) GetAdditionalInfo

func (m *ProjectNode) GetAdditionalInfo() []*InfoNode

func (*ProjectNode) GetMetaData

func (prn *ProjectNode) GetMetaData(key string, defaultValue string) string

func (*ProjectNode) GetName

func (m *ProjectNode) GetName() string

func (*ProjectNode) GetPackages

func (m *ProjectNode) GetPackages() []*PackageNode

func (*ProjectNode) GetProjectNodeType

func (m *ProjectNode) GetProjectNodeType() string

func (*ProjectNode) GetTimestamp

func (m *ProjectNode) GetTimestamp() string

func (*ProjectNode) GetUid

func (m *ProjectNode) GetUid() string

func (*ProjectNode) IsValid

func (prn *ProjectNode) IsValid() bool

func (*ProjectNode) ProtoMessage

func (*ProjectNode) ProtoMessage()

func (*ProjectNode) Reset

func (m *ProjectNode) Reset()

func (*ProjectNode) String

func (m *ProjectNode) String() string

func (*ProjectNode) XXX_DiscardUnknown

func (m *ProjectNode) XXX_DiscardUnknown()

func (*ProjectNode) XXX_Marshal

func (m *ProjectNode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProjectNode) XXX_Merge

func (m *ProjectNode) XXX_Merge(src proto.Message)

func (*ProjectNode) XXX_Size

func (m *ProjectNode) XXX_Size() int

func (*ProjectNode) XXX_Unmarshal

func (m *ProjectNode) XXX_Unmarshal(b []byte) error

type PushFileMessage

type PushFileMessage struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Hash                 string   `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"`
	Data                 []byte   `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PushFileMessage) Descriptor

func (*PushFileMessage) Descriptor() ([]byte, []int)

func (*PushFileMessage) GetData

func (m *PushFileMessage) GetData() []byte

func (*PushFileMessage) GetHash

func (m *PushFileMessage) GetHash() string

func (*PushFileMessage) GetName

func (m *PushFileMessage) GetName() string

func (*PushFileMessage) ProtoMessage

func (*PushFileMessage) ProtoMessage()

func (*PushFileMessage) Reset

func (m *PushFileMessage) Reset()

func (*PushFileMessage) String

func (m *PushFileMessage) String() string

func (*PushFileMessage) XXX_DiscardUnknown

func (m *PushFileMessage) XXX_DiscardUnknown()

func (*PushFileMessage) XXX_Marshal

func (m *PushFileMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PushFileMessage) XXX_Merge

func (m *PushFileMessage) XXX_Merge(src proto.Message)

func (*PushFileMessage) XXX_Size

func (m *PushFileMessage) XXX_Size() int

func (*PushFileMessage) XXX_Unmarshal

func (m *PushFileMessage) XXX_Unmarshal(b []byte) error

type PushFileResponse

type PushFileResponse struct {
	Path                 string   `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*PushFileResponse) Descriptor

func (*PushFileResponse) Descriptor() ([]byte, []int)

func (*PushFileResponse) GetPath

func (m *PushFileResponse) GetPath() string

func (*PushFileResponse) ProtoMessage

func (*PushFileResponse) ProtoMessage()

func (*PushFileResponse) Reset

func (m *PushFileResponse) Reset()

func (*PushFileResponse) String

func (m *PushFileResponse) String() string

func (*PushFileResponse) XXX_DiscardUnknown

func (m *PushFileResponse) XXX_DiscardUnknown()

func (*PushFileResponse) XXX_Marshal

func (m *PushFileResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*PushFileResponse) XXX_Merge

func (m *PushFileResponse) XXX_Merge(src proto.Message)

func (*PushFileResponse) XXX_Size

func (m *PushFileResponse) XXX_Size() int

func (*PushFileResponse) XXX_Unmarshal

func (m *PushFileResponse) XXX_Unmarshal(b []byte) error

type QmstrStateNode

type QmstrStateNode struct {
	Uid                  string   `protobuf:"bytes,1,opt,name=uid,proto3" json:"uid,omitempty"`
	QmstrStateNodeType   string   `protobuf:"bytes,2,opt,name=qmstrStateNodeType,proto3" json:"qmstrStateNodeType,omitempty"`
	Phase                Phase    `protobuf:"varint,3,opt,name=phase,proto3,enum=service.Phase" json:"phase,omitempty"`
	Done                 bool     `protobuf:"varint,4,opt,name=done,proto3" json:"done,omitempty"`
	Timestamp            string   `protobuf:"bytes,5,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*QmstrStateNode) Descriptor

func (*QmstrStateNode) Descriptor() ([]byte, []int)

func (*QmstrStateNode) GetDone

func (m *QmstrStateNode) GetDone() bool

func (*QmstrStateNode) GetPhase

func (m *QmstrStateNode) GetPhase() Phase

func (*QmstrStateNode) GetQmstrStateNodeType

func (m *QmstrStateNode) GetQmstrStateNodeType() string

func (*QmstrStateNode) GetTimestamp

func (m *QmstrStateNode) GetTimestamp() string

func (*QmstrStateNode) GetUid

func (m *QmstrStateNode) GetUid() string

func (*QmstrStateNode) ProtoMessage

func (*QmstrStateNode) ProtoMessage()

func (*QmstrStateNode) Reset

func (m *QmstrStateNode) Reset()

func (*QmstrStateNode) String

func (m *QmstrStateNode) String() string

func (*QmstrStateNode) XXX_DiscardUnknown

func (m *QmstrStateNode) XXX_DiscardUnknown()

func (*QmstrStateNode) XXX_Marshal

func (m *QmstrStateNode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QmstrStateNode) XXX_Merge

func (m *QmstrStateNode) XXX_Merge(src proto.Message)

func (*QmstrStateNode) XXX_Size

func (m *QmstrStateNode) XXX_Size() int

func (*QmstrStateNode) XXX_Unmarshal

func (m *QmstrStateNode) XXX_Unmarshal(b []byte) error

type QuitMessage

type QuitMessage struct {
	Kill                 bool     `protobuf:"varint,1,opt,name=kill,proto3" json:"kill,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*QuitMessage) Descriptor

func (*QuitMessage) Descriptor() ([]byte, []int)

func (*QuitMessage) GetKill

func (m *QuitMessage) GetKill() bool

func (*QuitMessage) ProtoMessage

func (*QuitMessage) ProtoMessage()

func (*QuitMessage) Reset

func (m *QuitMessage) Reset()

func (*QuitMessage) String

func (m *QuitMessage) String() string

func (*QuitMessage) XXX_DiscardUnknown

func (m *QuitMessage) XXX_DiscardUnknown()

func (*QuitMessage) XXX_Marshal

func (m *QuitMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QuitMessage) XXX_Merge

func (m *QuitMessage) XXX_Merge(src proto.Message)

func (*QuitMessage) XXX_Size

func (m *QuitMessage) XXX_Size() int

func (*QuitMessage) XXX_Unmarshal

func (m *QuitMessage) XXX_Unmarshal(b []byte) error

type QuitResponse

type QuitResponse struct {
	Success              bool     `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*QuitResponse) Descriptor

func (*QuitResponse) Descriptor() ([]byte, []int)

func (*QuitResponse) GetSuccess

func (m *QuitResponse) GetSuccess() bool

func (*QuitResponse) ProtoMessage

func (*QuitResponse) ProtoMessage()

func (*QuitResponse) Reset

func (m *QuitResponse) Reset()

func (*QuitResponse) String

func (m *QuitResponse) String() string

func (*QuitResponse) XXX_DiscardUnknown

func (m *QuitResponse) XXX_DiscardUnknown()

func (*QuitResponse) XXX_Marshal

func (m *QuitResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QuitResponse) XXX_Merge

func (m *QuitResponse) XXX_Merge(src proto.Message)

func (*QuitResponse) XXX_Size

func (m *QuitResponse) XXX_Size() int

func (*QuitResponse) XXX_Unmarshal

func (m *QuitResponse) XXX_Unmarshal(b []byte) error

type ReportServiceClient

type ReportServiceClient interface {
	GetReporterConfig(ctx context.Context, in *ReporterConfigRequest, opts ...grpc.CallOption) (*ReporterConfigResponse, error)
	GetInfoData(ctx context.Context, in *InfoDataRequest, opts ...grpc.CallOption) (*InfoDataResponse, error)
	GetProjectNode(ctx context.Context, in *ProjectNode, opts ...grpc.CallOption) (*ProjectNode, error)
}

ReportServiceClient is the client API for ReportService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewReportServiceClient

func NewReportServiceClient(cc *grpc.ClientConn) ReportServiceClient

type ReportServiceServer

type ReportServiceServer interface {
	GetReporterConfig(context.Context, *ReporterConfigRequest) (*ReporterConfigResponse, error)
	GetInfoData(context.Context, *InfoDataRequest) (*InfoDataResponse, error)
	GetProjectNode(context.Context, *ProjectNode) (*ProjectNode, error)
}

ReportServiceServer is the server API for ReportService service.

type ReporterConfigRequest

type ReporterConfigRequest struct {
	ReporterID           int32    `protobuf:"varint,1,opt,name=reporterID,proto3" json:"reporterID,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReporterConfigRequest) Descriptor

func (*ReporterConfigRequest) Descriptor() ([]byte, []int)

func (*ReporterConfigRequest) GetReporterID

func (m *ReporterConfigRequest) GetReporterID() int32

func (*ReporterConfigRequest) ProtoMessage

func (*ReporterConfigRequest) ProtoMessage()

func (*ReporterConfigRequest) Reset

func (m *ReporterConfigRequest) Reset()

func (*ReporterConfigRequest) String

func (m *ReporterConfigRequest) String() string

func (*ReporterConfigRequest) XXX_DiscardUnknown

func (m *ReporterConfigRequest) XXX_DiscardUnknown()

func (*ReporterConfigRequest) XXX_Marshal

func (m *ReporterConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReporterConfigRequest) XXX_Merge

func (m *ReporterConfigRequest) XXX_Merge(src proto.Message)

func (*ReporterConfigRequest) XXX_Size

func (m *ReporterConfigRequest) XXX_Size() int

func (*ReporterConfigRequest) XXX_Unmarshal

func (m *ReporterConfigRequest) XXX_Unmarshal(b []byte) error

type ReporterConfigResponse

type ReporterConfigResponse struct {
	ConfigMap            map[string]string `` /* 159-byte string literal not displayed */
	Name                 string            `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*ReporterConfigResponse) Descriptor

func (*ReporterConfigResponse) Descriptor() ([]byte, []int)

func (*ReporterConfigResponse) GetConfigMap

func (m *ReporterConfigResponse) GetConfigMap() map[string]string

func (*ReporterConfigResponse) GetName

func (m *ReporterConfigResponse) GetName() string

func (*ReporterConfigResponse) ProtoMessage

func (*ReporterConfigResponse) ProtoMessage()

func (*ReporterConfigResponse) Reset

func (m *ReporterConfigResponse) Reset()

func (*ReporterConfigResponse) String

func (m *ReporterConfigResponse) String() string

func (*ReporterConfigResponse) XXX_DiscardUnknown

func (m *ReporterConfigResponse) XXX_DiscardUnknown()

func (*ReporterConfigResponse) XXX_Marshal

func (m *ReporterConfigResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReporterConfigResponse) XXX_Merge

func (m *ReporterConfigResponse) XXX_Merge(src proto.Message)

func (*ReporterConfigResponse) XXX_Size

func (m *ReporterConfigResponse) XXX_Size() int

func (*ReporterConfigResponse) XXX_Unmarshal

func (m *ReporterConfigResponse) XXX_Unmarshal(b []byte) error

type SendResponse

type SendResponse struct {
	Success              bool     `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SendResponse) Descriptor

func (*SendResponse) Descriptor() ([]byte, []int)

func (*SendResponse) GetSuccess

func (m *SendResponse) GetSuccess() bool

func (*SendResponse) ProtoMessage

func (*SendResponse) ProtoMessage()

func (*SendResponse) Reset

func (m *SendResponse) Reset()

func (*SendResponse) String

func (m *SendResponse) String() string

func (*SendResponse) XXX_DiscardUnknown

func (m *SendResponse) XXX_DiscardUnknown()

func (*SendResponse) XXX_Marshal

func (m *SendResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SendResponse) XXX_Merge

func (m *SendResponse) XXX_Merge(src proto.Message)

func (*SendResponse) XXX_Size

func (m *SendResponse) XXX_Size() int

func (*SendResponse) XXX_Unmarshal

func (m *SendResponse) XXX_Unmarshal(b []byte) error

type StatusMessage

type StatusMessage struct {
	Phase                bool     `protobuf:"varint,1,opt,name=phase,proto3" json:"phase,omitempty"`
	Switch               bool     `protobuf:"varint,2,opt,name=switch,proto3" json:"switch,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StatusMessage) Descriptor

func (*StatusMessage) Descriptor() ([]byte, []int)

func (*StatusMessage) GetPhase

func (m *StatusMessage) GetPhase() bool

func (*StatusMessage) GetSwitch

func (m *StatusMessage) GetSwitch() bool

func (*StatusMessage) ProtoMessage

func (*StatusMessage) ProtoMessage()

func (*StatusMessage) Reset

func (m *StatusMessage) Reset()

func (*StatusMessage) String

func (m *StatusMessage) String() string

func (*StatusMessage) XXX_DiscardUnknown

func (m *StatusMessage) XXX_DiscardUnknown()

func (*StatusMessage) XXX_Marshal

func (m *StatusMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StatusMessage) XXX_Merge

func (m *StatusMessage) XXX_Merge(src proto.Message)

func (*StatusMessage) XXX_Size

func (m *StatusMessage) XXX_Size() int

func (*StatusMessage) XXX_Unmarshal

func (m *StatusMessage) XXX_Unmarshal(b []byte) error

type StatusResponse

type StatusResponse struct {
	Phase                string   `protobuf:"bytes,1,opt,name=phase,proto3" json:"phase,omitempty"`
	PhaseID              Phase    `protobuf:"varint,2,opt,name=phaseID,proto3,enum=service.Phase" json:"phaseID,omitempty"`
	Switching            bool     `protobuf:"varint,3,opt,name=switching,proto3" json:"switching,omitempty"`
	Error                string   `protobuf:"bytes,4,opt,name=error,proto3" json:"error,omitempty"`
	PendingInserts       uint64   `protobuf:"varint,5,opt,name=pendingInserts,proto3" json:"pendingInserts,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*StatusResponse) Descriptor

func (*StatusResponse) Descriptor() ([]byte, []int)

func (*StatusResponse) GetError

func (m *StatusResponse) GetError() string

func (*StatusResponse) GetPendingInserts

func (m *StatusResponse) GetPendingInserts() uint64

func (*StatusResponse) GetPhase

func (m *StatusResponse) GetPhase() string

func (*StatusResponse) GetPhaseID

func (m *StatusResponse) GetPhaseID() Phase

func (*StatusResponse) GetSwitching

func (m *StatusResponse) GetSwitching() bool

func (*StatusResponse) ProtoMessage

func (*StatusResponse) ProtoMessage()

func (*StatusResponse) Reset

func (m *StatusResponse) Reset()

func (*StatusResponse) String

func (m *StatusResponse) String() string

func (*StatusResponse) XXX_DiscardUnknown

func (m *StatusResponse) XXX_DiscardUnknown()

func (*StatusResponse) XXX_Marshal

func (m *StatusResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StatusResponse) XXX_Merge

func (m *StatusResponse) XXX_Merge(src proto.Message)

func (*StatusResponse) XXX_Size

func (m *StatusResponse) XXX_Size() int

func (*StatusResponse) XXX_Unmarshal

func (m *StatusResponse) XXX_Unmarshal(b []byte) error

type SwitchPhaseMessage

type SwitchPhaseMessage struct {
	Phase                Phase    `protobuf:"varint,1,opt,name=phase,proto3,enum=service.Phase" json:"phase,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SwitchPhaseMessage) Descriptor

func (*SwitchPhaseMessage) Descriptor() ([]byte, []int)

func (*SwitchPhaseMessage) GetPhase

func (m *SwitchPhaseMessage) GetPhase() Phase

func (*SwitchPhaseMessage) ProtoMessage

func (*SwitchPhaseMessage) ProtoMessage()

func (*SwitchPhaseMessage) Reset

func (m *SwitchPhaseMessage) Reset()

func (*SwitchPhaseMessage) String

func (m *SwitchPhaseMessage) String() string

func (*SwitchPhaseMessage) XXX_DiscardUnknown

func (m *SwitchPhaseMessage) XXX_DiscardUnknown()

func (*SwitchPhaseMessage) XXX_Marshal

func (m *SwitchPhaseMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SwitchPhaseMessage) XXX_Merge

func (m *SwitchPhaseMessage) XXX_Merge(src proto.Message)

func (*SwitchPhaseMessage) XXX_Size

func (m *SwitchPhaseMessage) XXX_Size() int

func (*SwitchPhaseMessage) XXX_Unmarshal

func (m *SwitchPhaseMessage) XXX_Unmarshal(b []byte) error

type SwitchPhaseResponse

type SwitchPhaseResponse struct {
	Success              bool     `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	Error                string   `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SwitchPhaseResponse) Descriptor

func (*SwitchPhaseResponse) Descriptor() ([]byte, []int)

func (*SwitchPhaseResponse) GetError

func (m *SwitchPhaseResponse) GetError() string

func (*SwitchPhaseResponse) GetSuccess

func (m *SwitchPhaseResponse) GetSuccess() bool

func (*SwitchPhaseResponse) ProtoMessage

func (*SwitchPhaseResponse) ProtoMessage()

func (*SwitchPhaseResponse) Reset

func (m *SwitchPhaseResponse) Reset()

func (*SwitchPhaseResponse) String

func (m *SwitchPhaseResponse) String() string

func (*SwitchPhaseResponse) XXX_DiscardUnknown

func (m *SwitchPhaseResponse) XXX_DiscardUnknown()

func (*SwitchPhaseResponse) XXX_Marshal

func (m *SwitchPhaseResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SwitchPhaseResponse) XXX_Merge

func (m *SwitchPhaseResponse) XXX_Merge(src proto.Message)

func (*SwitchPhaseResponse) XXX_Size

func (m *SwitchPhaseResponse) XXX_Size() int

func (*SwitchPhaseResponse) XXX_Unmarshal

func (m *SwitchPhaseResponse) XXX_Unmarshal(b []byte) error

type UnimplementedAnalysisServiceServer

type UnimplementedAnalysisServiceServer struct {
}

UnimplementedAnalysisServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedAnalysisServiceServer) GetAnalyzerConfig

func (*UnimplementedAnalysisServiceServer) GetSourceFileNodes

func (*UnimplementedAnalysisServiceServer) SendDiagnosticNode

func (*UnimplementedAnalysisServiceServer) SendInfoNodes

type UnimplementedBuildServiceServer

type UnimplementedBuildServiceServer struct {
}

UnimplementedBuildServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedBuildServiceServer) Build

func (*UnimplementedBuildServiceServer) CreatePackage

func (*UnimplementedBuildServiceServer) CreateProject

func (*UnimplementedBuildServiceServer) DeleteEdge

func (*UnimplementedBuildServiceServer) DeleteNode

func (*UnimplementedBuildServiceServer) GetProjectNode

func (*UnimplementedBuildServiceServer) PushFile

func (*UnimplementedBuildServiceServer) SendBuildError

func (*UnimplementedBuildServiceServer) UpdatePackageNode

func (*UnimplementedBuildServiceServer) UpdateProjectNode

type UnimplementedControlServiceServer

type UnimplementedControlServiceServer struct {
}

UnimplementedControlServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedControlServiceServer) ExportSnapshot

func (*UnimplementedControlServiceServer) GetDiagnosticNode

func (*UnimplementedControlServiceServer) GetFileNode

func (*UnimplementedControlServiceServer) GetPackageNode

func (*UnimplementedControlServiceServer) GetPackageTargets

func (*UnimplementedControlServiceServer) Log

func (*UnimplementedControlServiceServer) Quit

func (*UnimplementedControlServiceServer) Status

func (*UnimplementedControlServiceServer) SubscribeEvents

func (*UnimplementedControlServiceServer) SwitchPhase

type UnimplementedReportServiceServer

type UnimplementedReportServiceServer struct {
}

UnimplementedReportServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedReportServiceServer) GetInfoData

func (*UnimplementedReportServiceServer) GetProjectNode

func (*UnimplementedReportServiceServer) GetReporterConfig

type UpdatePackageNodeMessage

type UpdatePackageNodeMessage struct {
	Package              *PackageNode `protobuf:"bytes,1,opt,name=package,proto3" json:"package,omitempty"`
	Targets              []*FileNode  `protobuf:"bytes,2,rep,name=targets,proto3" json:"targets,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*UpdatePackageNodeMessage) Descriptor

func (*UpdatePackageNodeMessage) Descriptor() ([]byte, []int)

func (*UpdatePackageNodeMessage) GetPackage

func (m *UpdatePackageNodeMessage) GetPackage() *PackageNode

func (*UpdatePackageNodeMessage) GetTargets

func (m *UpdatePackageNodeMessage) GetTargets() []*FileNode

func (*UpdatePackageNodeMessage) ProtoMessage

func (*UpdatePackageNodeMessage) ProtoMessage()

func (*UpdatePackageNodeMessage) Reset

func (m *UpdatePackageNodeMessage) Reset()

func (*UpdatePackageNodeMessage) String

func (m *UpdatePackageNodeMessage) String() string

func (*UpdatePackageNodeMessage) XXX_DiscardUnknown

func (m *UpdatePackageNodeMessage) XXX_DiscardUnknown()

func (*UpdatePackageNodeMessage) XXX_Marshal

func (m *UpdatePackageNodeMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdatePackageNodeMessage) XXX_Merge

func (m *UpdatePackageNodeMessage) XXX_Merge(src proto.Message)

func (*UpdatePackageNodeMessage) XXX_Size

func (m *UpdatePackageNodeMessage) XXX_Size() int

func (*UpdatePackageNodeMessage) XXX_Unmarshal

func (m *UpdatePackageNodeMessage) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL