analysis_go_proto

package
v0.0.29 Latest Latest
Warning

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

Go to latest
Published: Oct 29, 2018 License: Apache-2.0, NCSA Imports: 6 Imported by: 20

Documentation

Index

Constants

This section is empty.

Variables

View Source
var AnalysisResult_Status_name = map[int32]string{
	0: "COMPLETE",
	1: "INCOMPLETE",
	2: "INVALID_REQUEST",
}
View Source
var AnalysisResult_Status_value = map[string]int32{
	"COMPLETE":        0,
	"INCOMPLETE":      1,
	"INVALID_REQUEST": 2,
}

Functions

This section is empty.

Types

type AnalysisOutput

type AnalysisOutput struct {
	Value                []byte          `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	FinalResult          *AnalysisResult `protobuf:"bytes,10,opt,name=final_result,json=finalResult,proto3" json:"final_result,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*AnalysisOutput) Descriptor

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

func (*AnalysisOutput) GetFinalResult

func (m *AnalysisOutput) GetFinalResult() *AnalysisResult

func (*AnalysisOutput) GetValue

func (m *AnalysisOutput) GetValue() []byte

func (*AnalysisOutput) ProtoMessage

func (*AnalysisOutput) ProtoMessage()

func (*AnalysisOutput) Reset

func (m *AnalysisOutput) Reset()

func (*AnalysisOutput) String

func (m *AnalysisOutput) String() string

func (*AnalysisOutput) XXX_DiscardUnknown

func (m *AnalysisOutput) XXX_DiscardUnknown()

func (*AnalysisOutput) XXX_Marshal

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

func (*AnalysisOutput) XXX_Merge

func (dst *AnalysisOutput) XXX_Merge(src proto.Message)

func (*AnalysisOutput) XXX_Size

func (m *AnalysisOutput) XXX_Size() int

func (*AnalysisOutput) XXX_Unmarshal

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

type AnalysisRequest

type AnalysisRequest struct {
	Compilation          *CompilationUnit `protobuf:"bytes,1,opt,name=compilation,proto3" json:"compilation,omitempty"`
	FileDataService      string           `protobuf:"bytes,2,opt,name=file_data_service,json=fileDataService,proto3" json:"file_data_service,omitempty"`
	Revision             string           `protobuf:"bytes,3,opt,name=revision,proto3" json:"revision,omitempty"`
	BuildId              string           `protobuf:"bytes,4,opt,name=build_id,json=buildId,proto3" json:"build_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*AnalysisRequest) Descriptor

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

func (*AnalysisRequest) GetBuildId

func (m *AnalysisRequest) GetBuildId() string

func (*AnalysisRequest) GetCompilation

func (m *AnalysisRequest) GetCompilation() *CompilationUnit

func (*AnalysisRequest) GetFileDataService

func (m *AnalysisRequest) GetFileDataService() string

func (*AnalysisRequest) GetRevision

func (m *AnalysisRequest) GetRevision() string

func (*AnalysisRequest) ProtoMessage

func (*AnalysisRequest) ProtoMessage()

func (*AnalysisRequest) Reset

func (m *AnalysisRequest) Reset()

func (*AnalysisRequest) String

func (m *AnalysisRequest) String() string

func (*AnalysisRequest) XXX_DiscardUnknown

func (m *AnalysisRequest) XXX_DiscardUnknown()

func (*AnalysisRequest) XXX_Marshal

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

func (*AnalysisRequest) XXX_Merge

func (dst *AnalysisRequest) XXX_Merge(src proto.Message)

func (*AnalysisRequest) XXX_Size

func (m *AnalysisRequest) XXX_Size() int

func (*AnalysisRequest) XXX_Unmarshal

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

type AnalysisResult

type AnalysisResult struct {
	Status               AnalysisResult_Status `protobuf:"varint,1,opt,name=status,proto3,enum=kythe.proto.AnalysisResult_Status" json:"status,omitempty"`
	Summary              string                `protobuf:"bytes,2,opt,name=summary,proto3" json:"summary,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*AnalysisResult) Descriptor

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

func (*AnalysisResult) GetStatus

func (m *AnalysisResult) GetStatus() AnalysisResult_Status

func (*AnalysisResult) GetSummary

func (m *AnalysisResult) GetSummary() string

func (*AnalysisResult) ProtoMessage

func (*AnalysisResult) ProtoMessage()

func (*AnalysisResult) Reset

func (m *AnalysisResult) Reset()

func (*AnalysisResult) String

func (m *AnalysisResult) String() string

func (*AnalysisResult) XXX_DiscardUnknown

func (m *AnalysisResult) XXX_DiscardUnknown()

func (*AnalysisResult) XXX_Marshal

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

func (*AnalysisResult) XXX_Merge

func (dst *AnalysisResult) XXX_Merge(src proto.Message)

func (*AnalysisResult) XXX_Size

func (m *AnalysisResult) XXX_Size() int

func (*AnalysisResult) XXX_Unmarshal

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

type AnalysisResult_Status

type AnalysisResult_Status int32
const (
	AnalysisResult_COMPLETE        AnalysisResult_Status = 0
	AnalysisResult_INCOMPLETE      AnalysisResult_Status = 1
	AnalysisResult_INVALID_REQUEST AnalysisResult_Status = 2
)

func (AnalysisResult_Status) EnumDescriptor

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

func (AnalysisResult_Status) String

func (x AnalysisResult_Status) String() string

type CompilationBundle

type CompilationBundle struct {
	Unit                 *CompilationUnit `protobuf:"bytes,1,opt,name=unit,proto3" json:"unit,omitempty"`
	Files                []*FileData      `protobuf:"bytes,2,rep,name=files,proto3" json:"files,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*CompilationBundle) Descriptor

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

func (*CompilationBundle) GetFiles

func (m *CompilationBundle) GetFiles() []*FileData

func (*CompilationBundle) GetUnit

func (m *CompilationBundle) GetUnit() *CompilationUnit

func (*CompilationBundle) ProtoMessage

func (*CompilationBundle) ProtoMessage()

func (*CompilationBundle) Reset

func (m *CompilationBundle) Reset()

func (*CompilationBundle) String

func (m *CompilationBundle) String() string

func (*CompilationBundle) XXX_DiscardUnknown

func (m *CompilationBundle) XXX_DiscardUnknown()

func (*CompilationBundle) XXX_Marshal

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

func (*CompilationBundle) XXX_Merge

func (dst *CompilationBundle) XXX_Merge(src proto.Message)

func (*CompilationBundle) XXX_Size

func (m *CompilationBundle) XXX_Size() int

func (*CompilationBundle) XXX_Unmarshal

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

type CompilationUnit

type CompilationUnit struct {
	VName                *storage_go_proto.VName      `protobuf:"bytes,1,opt,name=v_name,json=vName,proto3" json:"v_name,omitempty"`
	RequiredInput        []*CompilationUnit_FileInput `protobuf:"bytes,3,rep,name=required_input,json=requiredInput,proto3" json:"required_input,omitempty"`
	HasCompileErrors     bool                         `protobuf:"varint,4,opt,name=has_compile_errors,json=hasCompileErrors,proto3" json:"has_compile_errors,omitempty"`
	Argument             []string                     `protobuf:"bytes,5,rep,name=argument,proto3" json:"argument,omitempty"`
	SourceFile           []string                     `protobuf:"bytes,6,rep,name=source_file,json=sourceFile,proto3" json:"source_file,omitempty"`
	OutputKey            string                       `protobuf:"bytes,7,opt,name=output_key,json=outputKey,proto3" json:"output_key,omitempty"`
	WorkingDirectory     string                       `protobuf:"bytes,8,opt,name=working_directory,json=workingDirectory,proto3" json:"working_directory,omitempty"`
	EntryContext         string                       `protobuf:"bytes,9,opt,name=entry_context,json=entryContext,proto3" json:"entry_context,omitempty"`
	Environment          []*CompilationUnit_Env       `protobuf:"bytes,10,rep,name=environment,proto3" json:"environment,omitempty"`
	Details              []*any.Any                   `protobuf:"bytes,11,rep,name=details,proto3" json:"details,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

func (*CompilationUnit) Descriptor

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

func (*CompilationUnit) GetArgument

func (m *CompilationUnit) GetArgument() []string

func (*CompilationUnit) GetDetails

func (m *CompilationUnit) GetDetails() []*any.Any

func (*CompilationUnit) GetEntryContext

func (m *CompilationUnit) GetEntryContext() string

func (*CompilationUnit) GetEnvironment

func (m *CompilationUnit) GetEnvironment() []*CompilationUnit_Env

func (*CompilationUnit) GetHasCompileErrors

func (m *CompilationUnit) GetHasCompileErrors() bool

func (*CompilationUnit) GetOutputKey

func (m *CompilationUnit) GetOutputKey() string

func (*CompilationUnit) GetRequiredInput

func (m *CompilationUnit) GetRequiredInput() []*CompilationUnit_FileInput

func (*CompilationUnit) GetSourceFile

func (m *CompilationUnit) GetSourceFile() []string

func (*CompilationUnit) GetVName

func (m *CompilationUnit) GetVName() *storage_go_proto.VName

func (*CompilationUnit) GetWorkingDirectory

func (m *CompilationUnit) GetWorkingDirectory() string

func (*CompilationUnit) ProtoMessage

func (*CompilationUnit) ProtoMessage()

func (*CompilationUnit) Reset

func (m *CompilationUnit) Reset()

func (*CompilationUnit) String

func (m *CompilationUnit) String() string

func (*CompilationUnit) XXX_DiscardUnknown

func (m *CompilationUnit) XXX_DiscardUnknown()

func (*CompilationUnit) XXX_Marshal

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

func (*CompilationUnit) XXX_Merge

func (dst *CompilationUnit) XXX_Merge(src proto.Message)

func (*CompilationUnit) XXX_Size

func (m *CompilationUnit) XXX_Size() int

func (*CompilationUnit) XXX_Unmarshal

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

type CompilationUnit_Env

type CompilationUnit_Env struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Value                string   `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CompilationUnit_Env) Descriptor

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

func (*CompilationUnit_Env) GetName

func (m *CompilationUnit_Env) GetName() string

func (*CompilationUnit_Env) GetValue

func (m *CompilationUnit_Env) GetValue() string

func (*CompilationUnit_Env) ProtoMessage

func (*CompilationUnit_Env) ProtoMessage()

func (*CompilationUnit_Env) Reset

func (m *CompilationUnit_Env) Reset()

func (*CompilationUnit_Env) String

func (m *CompilationUnit_Env) String() string

func (*CompilationUnit_Env) XXX_DiscardUnknown

func (m *CompilationUnit_Env) XXX_DiscardUnknown()

func (*CompilationUnit_Env) XXX_Marshal

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

func (*CompilationUnit_Env) XXX_Merge

func (dst *CompilationUnit_Env) XXX_Merge(src proto.Message)

func (*CompilationUnit_Env) XXX_Size

func (m *CompilationUnit_Env) XXX_Size() int

func (*CompilationUnit_Env) XXX_Unmarshal

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

type CompilationUnit_FileInput

type CompilationUnit_FileInput struct {
	VName                *storage_go_proto.VName                       `protobuf:"bytes,1,opt,name=v_name,json=vName,proto3" json:"v_name,omitempty"`
	Info                 *FileInfo                                     `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	Context              *filecontext_go_proto.ContextDependentVersion `protobuf:"bytes,3,opt,name=context,proto3" json:"context,omitempty"` // Deprecated: Do not use.
	Details              []*any.Any                                    `protobuf:"bytes,4,rep,name=details,proto3" json:"details,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                                      `json:"-"`
	XXX_unrecognized     []byte                                        `json:"-"`
	XXX_sizecache        int32                                         `json:"-"`
}

func (*CompilationUnit_FileInput) Descriptor

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

func (*CompilationUnit_FileInput) GetContext deprecated

Deprecated: Do not use.

func (*CompilationUnit_FileInput) GetDetails

func (m *CompilationUnit_FileInput) GetDetails() []*any.Any

func (*CompilationUnit_FileInput) GetInfo

func (m *CompilationUnit_FileInput) GetInfo() *FileInfo

func (*CompilationUnit_FileInput) GetVName

func (*CompilationUnit_FileInput) ProtoMessage

func (*CompilationUnit_FileInput) ProtoMessage()

func (*CompilationUnit_FileInput) Reset

func (m *CompilationUnit_FileInput) Reset()

func (*CompilationUnit_FileInput) String

func (m *CompilationUnit_FileInput) String() string

func (*CompilationUnit_FileInput) XXX_DiscardUnknown

func (m *CompilationUnit_FileInput) XXX_DiscardUnknown()

func (*CompilationUnit_FileInput) XXX_Marshal

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

func (*CompilationUnit_FileInput) XXX_Merge

func (dst *CompilationUnit_FileInput) XXX_Merge(src proto.Message)

func (*CompilationUnit_FileInput) XXX_Size

func (m *CompilationUnit_FileInput) XXX_Size() int

func (*CompilationUnit_FileInput) XXX_Unmarshal

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

type FileData

type FileData struct {
	Content              []byte    `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
	Info                 *FileInfo `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
	Missing              bool      `protobuf:"varint,3,opt,name=missing,proto3" json:"missing,omitempty"`
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (*FileData) Descriptor

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

func (*FileData) GetContent

func (m *FileData) GetContent() []byte

func (*FileData) GetInfo

func (m *FileData) GetInfo() *FileInfo

func (*FileData) GetMissing

func (m *FileData) GetMissing() bool

func (*FileData) ProtoMessage

func (*FileData) ProtoMessage()

func (*FileData) Reset

func (m *FileData) Reset()

func (*FileData) String

func (m *FileData) String() string

func (*FileData) XXX_DiscardUnknown

func (m *FileData) XXX_DiscardUnknown()

func (*FileData) XXX_Marshal

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

func (*FileData) XXX_Merge

func (dst *FileData) XXX_Merge(src proto.Message)

func (*FileData) XXX_Size

func (m *FileData) XXX_Size() int

func (*FileData) XXX_Unmarshal

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

type FileInfo

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

func (*FileInfo) Descriptor

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

func (*FileInfo) GetDigest

func (m *FileInfo) GetDigest() string

func (*FileInfo) GetPath

func (m *FileInfo) GetPath() string

func (*FileInfo) ProtoMessage

func (*FileInfo) ProtoMessage()

func (*FileInfo) Reset

func (m *FileInfo) Reset()

func (*FileInfo) String

func (m *FileInfo) String() string

func (*FileInfo) XXX_DiscardUnknown

func (m *FileInfo) XXX_DiscardUnknown()

func (*FileInfo) XXX_Marshal

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

func (*FileInfo) XXX_Merge

func (dst *FileInfo) XXX_Merge(src proto.Message)

func (*FileInfo) XXX_Size

func (m *FileInfo) XXX_Size() int

func (*FileInfo) XXX_Unmarshal

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

type FilesRequest

type FilesRequest struct {
	Files                []*FileInfo `protobuf:"bytes,1,rep,name=files,proto3" json:"files,omitempty"`
	XXX_NoUnkeyedLiteral struct{}    `json:"-"`
	XXX_unrecognized     []byte      `json:"-"`
	XXX_sizecache        int32       `json:"-"`
}

func (*FilesRequest) Descriptor

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

func (*FilesRequest) GetFiles

func (m *FilesRequest) GetFiles() []*FileInfo

func (*FilesRequest) ProtoMessage

func (*FilesRequest) ProtoMessage()

func (*FilesRequest) Reset

func (m *FilesRequest) Reset()

func (*FilesRequest) String

func (m *FilesRequest) String() string

func (*FilesRequest) XXX_DiscardUnknown

func (m *FilesRequest) XXX_DiscardUnknown()

func (*FilesRequest) XXX_Marshal

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

func (*FilesRequest) XXX_Merge

func (dst *FilesRequest) XXX_Merge(src proto.Message)

func (*FilesRequest) XXX_Size

func (m *FilesRequest) XXX_Size() int

func (*FilesRequest) XXX_Unmarshal

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

type IndexedCompilation

type IndexedCompilation struct {
	Unit                 *CompilationUnit          `protobuf:"bytes,1,opt,name=unit,proto3" json:"unit,omitempty"`
	Index                *IndexedCompilation_Index `protobuf:"bytes,2,opt,name=index,proto3" json:"index,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
}

func (*IndexedCompilation) Descriptor

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

func (*IndexedCompilation) GetIndex

func (*IndexedCompilation) GetUnit

func (m *IndexedCompilation) GetUnit() *CompilationUnit

func (*IndexedCompilation) ProtoMessage

func (*IndexedCompilation) ProtoMessage()

func (*IndexedCompilation) Reset

func (m *IndexedCompilation) Reset()

func (*IndexedCompilation) String

func (m *IndexedCompilation) String() string

func (*IndexedCompilation) XXX_DiscardUnknown

func (m *IndexedCompilation) XXX_DiscardUnknown()

func (*IndexedCompilation) XXX_Marshal

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

func (*IndexedCompilation) XXX_Merge

func (dst *IndexedCompilation) XXX_Merge(src proto.Message)

func (*IndexedCompilation) XXX_Size

func (m *IndexedCompilation) XXX_Size() int

func (*IndexedCompilation) XXX_Unmarshal

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

type IndexedCompilation_Index

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

func (*IndexedCompilation_Index) Descriptor

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

func (*IndexedCompilation_Index) GetRevisions

func (m *IndexedCompilation_Index) GetRevisions() []string

func (*IndexedCompilation_Index) ProtoMessage

func (*IndexedCompilation_Index) ProtoMessage()

func (*IndexedCompilation_Index) Reset

func (m *IndexedCompilation_Index) Reset()

func (*IndexedCompilation_Index) String

func (m *IndexedCompilation_Index) String() string

func (*IndexedCompilation_Index) XXX_DiscardUnknown

func (m *IndexedCompilation_Index) XXX_DiscardUnknown()

func (*IndexedCompilation_Index) XXX_Marshal

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

func (*IndexedCompilation_Index) XXX_Merge

func (dst *IndexedCompilation_Index) XXX_Merge(src proto.Message)

func (*IndexedCompilation_Index) XXX_Size

func (m *IndexedCompilation_Index) XXX_Size() int

func (*IndexedCompilation_Index) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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