pb

package
v10.7.2 Latest Latest
Warning

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

Go to latest
Published: Jan 14, 2020 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AnalysisResults

type AnalysisResults struct {
	Header *Metadata `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// the mapped values are dynamic messages which require the second parsing pass.
	Contents             map[string][]byte `` /* 157-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*AnalysisResults) Descriptor

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

func (*AnalysisResults) GetContents

func (m *AnalysisResults) GetContents() map[string][]byte

func (*AnalysisResults) GetHeader

func (m *AnalysisResults) GetHeader() *Metadata

func (*AnalysisResults) ProtoMessage

func (*AnalysisResults) ProtoMessage()

func (*AnalysisResults) Reset

func (m *AnalysisResults) Reset()

func (*AnalysisResults) String

func (m *AnalysisResults) String() string

func (*AnalysisResults) XXX_DiscardUnknown

func (m *AnalysisResults) XXX_DiscardUnknown()

func (*AnalysisResults) XXX_Marshal

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

func (*AnalysisResults) XXX_Merge

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

func (*AnalysisResults) XXX_Size

func (m *AnalysisResults) XXX_Size() int

func (*AnalysisResults) XXX_Unmarshal

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

type BurndownAnalysisResults

type BurndownAnalysisResults struct {
	// how many ticks are in each band [burndown_project, burndown_file, burndown_developer]
	Granularity int32 `protobuf:"varint,1,opt,name=granularity,proto3" json:"granularity,omitempty"`
	// how frequently we measure the state of each band [burndown_project, burndown_file, burndown_developer]
	Sampling int32 `protobuf:"varint,2,opt,name=sampling,proto3" json:"sampling,omitempty"`
	// always exists
	Project *BurndownSparseMatrix `protobuf:"bytes,3,opt,name=project,proto3" json:"project,omitempty"`
	// this is included if `--burndown-files` was specified
	Files []*BurndownSparseMatrix `protobuf:"bytes,4,rep,name=files,proto3" json:"files,omitempty"`
	// these two are included if `--burndown-people` was specified
	People []*BurndownSparseMatrix `protobuf:"bytes,5,rep,name=people,proto3" json:"people,omitempty"`
	// rows and cols order correspond to `burndown_developer`
	PeopleInteraction *CompressedSparseRowMatrix `protobuf:"bytes,6,opt,name=people_interaction,json=peopleInteraction,proto3" json:"people_interaction,omitempty"`
	// How many lines belong to relevant developers for each file. The order is the same as in `files`.
	FilesOwnership []*FilesOwnership `protobuf:"bytes,7,rep,name=files_ownership,json=filesOwnership,proto3" json:"files_ownership,omitempty"`
	// how long each tick is, as an int64 nanosecond count (Go's time.Duration)
	TickSize             int64    `protobuf:"varint,8,opt,name=tick_size,json=tickSize,proto3" json:"tick_size,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BurndownAnalysisResults) Descriptor

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

func (*BurndownAnalysisResults) GetFiles

func (*BurndownAnalysisResults) GetFilesOwnership

func (m *BurndownAnalysisResults) GetFilesOwnership() []*FilesOwnership

func (*BurndownAnalysisResults) GetGranularity

func (m *BurndownAnalysisResults) GetGranularity() int32

func (*BurndownAnalysisResults) GetPeople

func (*BurndownAnalysisResults) GetPeopleInteraction

func (m *BurndownAnalysisResults) GetPeopleInteraction() *CompressedSparseRowMatrix

func (*BurndownAnalysisResults) GetProject

func (*BurndownAnalysisResults) GetSampling

func (m *BurndownAnalysisResults) GetSampling() int32

func (*BurndownAnalysisResults) GetTickSize

func (m *BurndownAnalysisResults) GetTickSize() int64

func (*BurndownAnalysisResults) ProtoMessage

func (*BurndownAnalysisResults) ProtoMessage()

func (*BurndownAnalysisResults) Reset

func (m *BurndownAnalysisResults) Reset()

func (*BurndownAnalysisResults) String

func (m *BurndownAnalysisResults) String() string

func (*BurndownAnalysisResults) XXX_DiscardUnknown

func (m *BurndownAnalysisResults) XXX_DiscardUnknown()

func (*BurndownAnalysisResults) XXX_Marshal

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

func (*BurndownAnalysisResults) XXX_Merge

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

func (*BurndownAnalysisResults) XXX_Size

func (m *BurndownAnalysisResults) XXX_Size() int

func (*BurndownAnalysisResults) XXX_Unmarshal

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

type BurndownSparseMatrix

type BurndownSparseMatrix struct {
	Name            string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	NumberOfRows    int32  `protobuf:"varint,2,opt,name=number_of_rows,json=numberOfRows,proto3" json:"number_of_rows,omitempty"`
	NumberOfColumns int32  `protobuf:"varint,3,opt,name=number_of_columns,json=numberOfColumns,proto3" json:"number_of_columns,omitempty"`
	// `len(row)` matches `number_of_rows`
	Rows                 []*BurndownSparseMatrixRow `protobuf:"bytes,4,rep,name=rows,proto3" json:"rows,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func ToBurndownSparseMatrix

func ToBurndownSparseMatrix(matrix [][]int64, name string) *BurndownSparseMatrix

ToBurndownSparseMatrix converts a rectangular integer matrix to the corresponding Protobuf object. It is specific to hercules.BurndownAnalysis.

func (*BurndownSparseMatrix) Descriptor

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

func (*BurndownSparseMatrix) GetName

func (m *BurndownSparseMatrix) GetName() string

func (*BurndownSparseMatrix) GetNumberOfColumns

func (m *BurndownSparseMatrix) GetNumberOfColumns() int32

func (*BurndownSparseMatrix) GetNumberOfRows

func (m *BurndownSparseMatrix) GetNumberOfRows() int32

func (*BurndownSparseMatrix) GetRows

func (*BurndownSparseMatrix) ProtoMessage

func (*BurndownSparseMatrix) ProtoMessage()

func (*BurndownSparseMatrix) Reset

func (m *BurndownSparseMatrix) Reset()

func (*BurndownSparseMatrix) String

func (m *BurndownSparseMatrix) String() string

func (*BurndownSparseMatrix) XXX_DiscardUnknown

func (m *BurndownSparseMatrix) XXX_DiscardUnknown()

func (*BurndownSparseMatrix) XXX_Marshal

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

func (*BurndownSparseMatrix) XXX_Merge

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

func (*BurndownSparseMatrix) XXX_Size

func (m *BurndownSparseMatrix) XXX_Size() int

func (*BurndownSparseMatrix) XXX_Unmarshal

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

type BurndownSparseMatrixRow

type BurndownSparseMatrixRow struct {
	// the first `len(column)` elements are stored,
	// the rest `number_of_columns - len(column)` values are zeros
	Columns              []uint32 `protobuf:"varint,1,rep,packed,name=columns,proto3" json:"columns,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BurndownSparseMatrixRow) Descriptor

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

func (*BurndownSparseMatrixRow) GetColumns

func (m *BurndownSparseMatrixRow) GetColumns() []uint32

func (*BurndownSparseMatrixRow) ProtoMessage

func (*BurndownSparseMatrixRow) ProtoMessage()

func (*BurndownSparseMatrixRow) Reset

func (m *BurndownSparseMatrixRow) Reset()

func (*BurndownSparseMatrixRow) String

func (m *BurndownSparseMatrixRow) String() string

func (*BurndownSparseMatrixRow) XXX_DiscardUnknown

func (m *BurndownSparseMatrixRow) XXX_DiscardUnknown()

func (*BurndownSparseMatrixRow) XXX_Marshal

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

func (*BurndownSparseMatrixRow) XXX_Merge

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

func (*BurndownSparseMatrixRow) XXX_Size

func (m *BurndownSparseMatrixRow) XXX_Size() int

func (*BurndownSparseMatrixRow) XXX_Unmarshal

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

type CommentSentimentResults

type CommentSentimentResults struct {
	SentimentByTick      map[int32]*Sentiment `` /* 197-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*CommentSentimentResults) Descriptor

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

func (*CommentSentimentResults) GetSentimentByTick

func (m *CommentSentimentResults) GetSentimentByTick() map[int32]*Sentiment

func (*CommentSentimentResults) ProtoMessage

func (*CommentSentimentResults) ProtoMessage()

func (*CommentSentimentResults) Reset

func (m *CommentSentimentResults) Reset()

func (*CommentSentimentResults) String

func (m *CommentSentimentResults) String() string

func (*CommentSentimentResults) XXX_DiscardUnknown

func (m *CommentSentimentResults) XXX_DiscardUnknown()

func (*CommentSentimentResults) XXX_Marshal

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

func (*CommentSentimentResults) XXX_Merge

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

func (*CommentSentimentResults) XXX_Size

func (m *CommentSentimentResults) XXX_Size() int

func (*CommentSentimentResults) XXX_Unmarshal

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

type Commit

type Commit struct {
	Hash                 string        `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
	WhenUnixTime         int64         `protobuf:"varint,2,opt,name=when_unix_time,json=whenUnixTime,proto3" json:"when_unix_time,omitempty"`
	Author               int32         `protobuf:"varint,3,opt,name=author,proto3" json:"author,omitempty"`
	Files                []*CommitFile `protobuf:"bytes,4,rep,name=files,proto3" json:"files,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*Commit) Descriptor

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

func (*Commit) GetAuthor

func (m *Commit) GetAuthor() int32

func (*Commit) GetFiles

func (m *Commit) GetFiles() []*CommitFile

func (*Commit) GetHash

func (m *Commit) GetHash() string

func (*Commit) GetWhenUnixTime

func (m *Commit) GetWhenUnixTime() int64

func (*Commit) ProtoMessage

func (*Commit) ProtoMessage()

func (*Commit) Reset

func (m *Commit) Reset()

func (*Commit) String

func (m *Commit) String() string

func (*Commit) XXX_DiscardUnknown

func (m *Commit) XXX_DiscardUnknown()

func (*Commit) XXX_Marshal

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

func (*Commit) XXX_Merge

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

func (*Commit) XXX_Size

func (m *Commit) XXX_Size() int

func (*Commit) XXX_Unmarshal

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

type CommitFile

type CommitFile struct {
	Name                 string     `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Language             string     `protobuf:"bytes,3,opt,name=language,proto3" json:"language,omitempty"`
	Stats                *LineStats `protobuf:"bytes,4,opt,name=stats,proto3" json:"stats,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

func (*CommitFile) Descriptor

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

func (*CommitFile) GetLanguage

func (m *CommitFile) GetLanguage() string

func (*CommitFile) GetName

func (m *CommitFile) GetName() string

func (*CommitFile) GetStats

func (m *CommitFile) GetStats() *LineStats

func (*CommitFile) ProtoMessage

func (*CommitFile) ProtoMessage()

func (*CommitFile) Reset

func (m *CommitFile) Reset()

func (*CommitFile) String

func (m *CommitFile) String() string

func (*CommitFile) XXX_DiscardUnknown

func (m *CommitFile) XXX_DiscardUnknown()

func (*CommitFile) XXX_Marshal

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

func (*CommitFile) XXX_Merge

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

func (*CommitFile) XXX_Size

func (m *CommitFile) XXX_Size() int

func (*CommitFile) XXX_Unmarshal

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

type CommitsAnalysisResults

type CommitsAnalysisResults struct {
	Commits              []*Commit `protobuf:"bytes,1,rep,name=commits,proto3" json:"commits,omitempty"`
	AuthorIndex          []string  `protobuf:"bytes,2,rep,name=author_index,json=authorIndex,proto3" json:"author_index,omitempty"`
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (*CommitsAnalysisResults) Descriptor

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

func (*CommitsAnalysisResults) GetAuthorIndex

func (m *CommitsAnalysisResults) GetAuthorIndex() []string

func (*CommitsAnalysisResults) GetCommits

func (m *CommitsAnalysisResults) GetCommits() []*Commit

func (*CommitsAnalysisResults) ProtoMessage

func (*CommitsAnalysisResults) ProtoMessage()

func (*CommitsAnalysisResults) Reset

func (m *CommitsAnalysisResults) Reset()

func (*CommitsAnalysisResults) String

func (m *CommitsAnalysisResults) String() string

func (*CommitsAnalysisResults) XXX_DiscardUnknown

func (m *CommitsAnalysisResults) XXX_DiscardUnknown()

func (*CommitsAnalysisResults) XXX_Marshal

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

func (*CommitsAnalysisResults) XXX_Merge

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

func (*CommitsAnalysisResults) XXX_Size

func (m *CommitsAnalysisResults) XXX_Size() int

func (*CommitsAnalysisResults) XXX_Unmarshal

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

type CompressedSparseRowMatrix

type CompressedSparseRowMatrix struct {
	NumberOfRows    int32 `protobuf:"varint,1,opt,name=number_of_rows,json=numberOfRows,proto3" json:"number_of_rows,omitempty"`
	NumberOfColumns int32 `protobuf:"varint,2,opt,name=number_of_columns,json=numberOfColumns,proto3" json:"number_of_columns,omitempty"`
	// https://en.wikipedia.org/wiki/Sparse_matrix#Compressed_sparse_row_.28CSR.2C_CRS_or_Yale_format.29
	Data                 []int64  `protobuf:"varint,3,rep,packed,name=data,proto3" json:"data,omitempty"`
	Indices              []int32  `protobuf:"varint,4,rep,packed,name=indices,proto3" json:"indices,omitempty"`
	Indptr               []int64  `protobuf:"varint,5,rep,packed,name=indptr,proto3" json:"indptr,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func DenseToCompressedSparseRowMatrix

func DenseToCompressedSparseRowMatrix(matrix [][]int64) *CompressedSparseRowMatrix

DenseToCompressedSparseRowMatrix takes an integer matrix and converts it to a Protobuf CSR. CSR format: https://en.wikipedia.org/wiki/Sparse_matrix#Compressed_sparse_row_.28CSR.2C_CRS_or_Yale_format.29

func MapToCompressedSparseRowMatrix

func MapToCompressedSparseRowMatrix(matrix []map[int]int64) *CompressedSparseRowMatrix

MapToCompressedSparseRowMatrix takes an integer matrix and converts it to a Protobuf CSR. In contrast to DenseToCompressedSparseRowMatrix, a matrix here is already in DOK format. CSR format: https://en.wikipedia.org/wiki/Sparse_matrix#Compressed_sparse_row_.28CSR.2C_CRS_or_Yale_format.29

func (*CompressedSparseRowMatrix) Descriptor

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

func (*CompressedSparseRowMatrix) GetData

func (m *CompressedSparseRowMatrix) GetData() []int64

func (*CompressedSparseRowMatrix) GetIndices

func (m *CompressedSparseRowMatrix) GetIndices() []int32

func (*CompressedSparseRowMatrix) GetIndptr

func (m *CompressedSparseRowMatrix) GetIndptr() []int64

func (*CompressedSparseRowMatrix) GetNumberOfColumns

func (m *CompressedSparseRowMatrix) GetNumberOfColumns() int32

func (*CompressedSparseRowMatrix) GetNumberOfRows

func (m *CompressedSparseRowMatrix) GetNumberOfRows() int32

func (*CompressedSparseRowMatrix) ProtoMessage

func (*CompressedSparseRowMatrix) ProtoMessage()

func (*CompressedSparseRowMatrix) Reset

func (m *CompressedSparseRowMatrix) Reset()

func (*CompressedSparseRowMatrix) String

func (m *CompressedSparseRowMatrix) String() string

func (*CompressedSparseRowMatrix) XXX_DiscardUnknown

func (m *CompressedSparseRowMatrix) XXX_DiscardUnknown()

func (*CompressedSparseRowMatrix) XXX_Marshal

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

func (*CompressedSparseRowMatrix) XXX_Merge

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

func (*CompressedSparseRowMatrix) XXX_Size

func (m *CompressedSparseRowMatrix) XXX_Size() int

func (*CompressedSparseRowMatrix) XXX_Unmarshal

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

type Couples

type Couples struct {
	// name of each `matrix`'s row and column
	Index []string `protobuf:"bytes,1,rep,name=index,proto3" json:"index,omitempty"`
	// is always square
	Matrix               *CompressedSparseRowMatrix `protobuf:"bytes,2,opt,name=matrix,proto3" json:"matrix,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*Couples) Descriptor

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

func (*Couples) GetIndex

func (m *Couples) GetIndex() []string

func (*Couples) GetMatrix

func (m *Couples) GetMatrix() *CompressedSparseRowMatrix

func (*Couples) ProtoMessage

func (*Couples) ProtoMessage()

func (*Couples) Reset

func (m *Couples) Reset()

func (*Couples) String

func (m *Couples) String() string

func (*Couples) XXX_DiscardUnknown

func (m *Couples) XXX_DiscardUnknown()

func (*Couples) XXX_Marshal

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

func (*Couples) XXX_Merge

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

func (*Couples) XXX_Size

func (m *Couples) XXX_Size() int

func (*Couples) XXX_Unmarshal

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

type CouplesAnalysisResults

type CouplesAnalysisResults struct {
	FileCouples   *Couples `protobuf:"bytes,6,opt,name=file_couples,json=fileCouples,proto3" json:"file_couples,omitempty"`
	PeopleCouples *Couples `protobuf:"bytes,7,opt,name=people_couples,json=peopleCouples,proto3" json:"people_couples,omitempty"`
	// order corresponds to `people_couples::index`
	PeopleFiles []*TouchedFiles `protobuf:"bytes,8,rep,name=people_files,json=peopleFiles,proto3" json:"people_files,omitempty"`
	// order corresponds to `file_couples::index`
	FilesLines           []int32  `protobuf:"varint,9,rep,packed,name=files_lines,json=filesLines,proto3" json:"files_lines,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CouplesAnalysisResults) Descriptor

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

func (*CouplesAnalysisResults) GetFileCouples

func (m *CouplesAnalysisResults) GetFileCouples() *Couples

func (*CouplesAnalysisResults) GetFilesLines

func (m *CouplesAnalysisResults) GetFilesLines() []int32

func (*CouplesAnalysisResults) GetPeopleCouples

func (m *CouplesAnalysisResults) GetPeopleCouples() *Couples

func (*CouplesAnalysisResults) GetPeopleFiles

func (m *CouplesAnalysisResults) GetPeopleFiles() []*TouchedFiles

func (*CouplesAnalysisResults) ProtoMessage

func (*CouplesAnalysisResults) ProtoMessage()

func (*CouplesAnalysisResults) Reset

func (m *CouplesAnalysisResults) Reset()

func (*CouplesAnalysisResults) String

func (m *CouplesAnalysisResults) String() string

func (*CouplesAnalysisResults) XXX_DiscardUnknown

func (m *CouplesAnalysisResults) XXX_DiscardUnknown()

func (*CouplesAnalysisResults) XXX_Marshal

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

func (*CouplesAnalysisResults) XXX_Merge

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

func (*CouplesAnalysisResults) XXX_Size

func (m *CouplesAnalysisResults) XXX_Size() int

func (*CouplesAnalysisResults) XXX_Unmarshal

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

type DevTick

type DevTick struct {
	Commits              int32                 `protobuf:"varint,1,opt,name=commits,proto3" json:"commits,omitempty"`
	Stats                *LineStats            `protobuf:"bytes,2,opt,name=stats,proto3" json:"stats,omitempty"`
	Languages            map[string]*LineStats `` /* 159-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (*DevTick) Descriptor

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

func (*DevTick) GetCommits

func (m *DevTick) GetCommits() int32

func (*DevTick) GetLanguages

func (m *DevTick) GetLanguages() map[string]*LineStats

func (*DevTick) GetStats

func (m *DevTick) GetStats() *LineStats

func (*DevTick) ProtoMessage

func (*DevTick) ProtoMessage()

func (*DevTick) Reset

func (m *DevTick) Reset()

func (*DevTick) String

func (m *DevTick) String() string

func (*DevTick) XXX_DiscardUnknown

func (m *DevTick) XXX_DiscardUnknown()

func (*DevTick) XXX_Marshal

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

func (*DevTick) XXX_Merge

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

func (*DevTick) XXX_Size

func (m *DevTick) XXX_Size() int

func (*DevTick) XXX_Unmarshal

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

type DevsAnalysisResults

type DevsAnalysisResults struct {
	Ticks map[int32]*TickDevs `` /* 152-byte string literal not displayed */
	// developer identities, the indexes correspond to TickDevs' keys.
	DevIndex []string `protobuf:"bytes,2,rep,name=dev_index,json=devIndex,proto3" json:"dev_index,omitempty"`
	// how long each tick is, as an int64 nanosecond count (Go's time.Duration)
	TickSize             int64    `protobuf:"varint,8,opt,name=tick_size,json=tickSize,proto3" json:"tick_size,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*DevsAnalysisResults) Descriptor

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

func (*DevsAnalysisResults) GetDevIndex

func (m *DevsAnalysisResults) GetDevIndex() []string

func (*DevsAnalysisResults) GetTickSize added in v10.1.0

func (m *DevsAnalysisResults) GetTickSize() int64

func (*DevsAnalysisResults) GetTicks

func (m *DevsAnalysisResults) GetTicks() map[int32]*TickDevs

func (*DevsAnalysisResults) ProtoMessage

func (*DevsAnalysisResults) ProtoMessage()

func (*DevsAnalysisResults) Reset

func (m *DevsAnalysisResults) Reset()

func (*DevsAnalysisResults) String

func (m *DevsAnalysisResults) String() string

func (*DevsAnalysisResults) XXX_DiscardUnknown

func (m *DevsAnalysisResults) XXX_DiscardUnknown()

func (*DevsAnalysisResults) XXX_Marshal

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

func (*DevsAnalysisResults) XXX_Merge

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

func (*DevsAnalysisResults) XXX_Size

func (m *DevsAnalysisResults) XXX_Size() int

func (*DevsAnalysisResults) XXX_Unmarshal

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

type FileHistory

type FileHistory struct {
	Commits              []string             `protobuf:"bytes,1,rep,name=commits,proto3" json:"commits,omitempty"`
	ChangesByDeveloper   map[int32]*LineStats `` /* 206-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*FileHistory) Descriptor

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

func (*FileHistory) GetChangesByDeveloper

func (m *FileHistory) GetChangesByDeveloper() map[int32]*LineStats

func (*FileHistory) GetCommits

func (m *FileHistory) GetCommits() []string

func (*FileHistory) ProtoMessage

func (*FileHistory) ProtoMessage()

func (*FileHistory) Reset

func (m *FileHistory) Reset()

func (*FileHistory) String

func (m *FileHistory) String() string

func (*FileHistory) XXX_DiscardUnknown

func (m *FileHistory) XXX_DiscardUnknown()

func (*FileHistory) XXX_Marshal

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

func (*FileHistory) XXX_Merge

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

func (*FileHistory) XXX_Size

func (m *FileHistory) XXX_Size() int

func (*FileHistory) XXX_Unmarshal

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

type FileHistoryResultMessage

type FileHistoryResultMessage struct {
	Files                map[string]*FileHistory `` /* 151-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (*FileHistoryResultMessage) Descriptor

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

func (*FileHistoryResultMessage) GetFiles

func (m *FileHistoryResultMessage) GetFiles() map[string]*FileHistory

func (*FileHistoryResultMessage) ProtoMessage

func (*FileHistoryResultMessage) ProtoMessage()

func (*FileHistoryResultMessage) Reset

func (m *FileHistoryResultMessage) Reset()

func (*FileHistoryResultMessage) String

func (m *FileHistoryResultMessage) String() string

func (*FileHistoryResultMessage) XXX_DiscardUnknown

func (m *FileHistoryResultMessage) XXX_DiscardUnknown()

func (*FileHistoryResultMessage) XXX_Marshal

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

func (*FileHistoryResultMessage) XXX_Merge

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

func (*FileHistoryResultMessage) XXX_Size

func (m *FileHistoryResultMessage) XXX_Size() int

func (*FileHistoryResultMessage) XXX_Unmarshal

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

type FilesOwnership

type FilesOwnership struct {
	// The sum always equals to the total number of lines in the file.
	Value                map[int32]int32 `` /* 153-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*FilesOwnership) Descriptor

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

func (*FilesOwnership) GetValue

func (m *FilesOwnership) GetValue() map[int32]int32

func (*FilesOwnership) ProtoMessage

func (*FilesOwnership) ProtoMessage()

func (*FilesOwnership) Reset

func (m *FilesOwnership) Reset()

func (*FilesOwnership) String

func (m *FilesOwnership) String() string

func (*FilesOwnership) XXX_DiscardUnknown

func (m *FilesOwnership) XXX_DiscardUnknown()

func (*FilesOwnership) XXX_Marshal

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

func (*FilesOwnership) XXX_Merge

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

func (*FilesOwnership) XXX_Size

func (m *FilesOwnership) XXX_Size() int

func (*FilesOwnership) XXX_Unmarshal

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

type ImportsPerDeveloper added in v10.6.0

type ImportsPerDeveloper struct {
	Languages            map[string]*ImportsPerLanguage `` /* 159-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                       `json:"-"`
	XXX_unrecognized     []byte                         `json:"-"`
	XXX_sizecache        int32                          `json:"-"`
}

func (*ImportsPerDeveloper) Descriptor added in v10.6.0

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

func (*ImportsPerDeveloper) GetLanguages added in v10.6.0

func (m *ImportsPerDeveloper) GetLanguages() map[string]*ImportsPerLanguage

func (*ImportsPerDeveloper) ProtoMessage added in v10.6.0

func (*ImportsPerDeveloper) ProtoMessage()

func (*ImportsPerDeveloper) Reset added in v10.6.0

func (m *ImportsPerDeveloper) Reset()

func (*ImportsPerDeveloper) String added in v10.6.0

func (m *ImportsPerDeveloper) String() string

func (*ImportsPerDeveloper) XXX_DiscardUnknown added in v10.6.0

func (m *ImportsPerDeveloper) XXX_DiscardUnknown()

func (*ImportsPerDeveloper) XXX_Marshal added in v10.6.0

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

func (*ImportsPerDeveloper) XXX_Merge added in v10.6.0

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

func (*ImportsPerDeveloper) XXX_Size added in v10.6.0

func (m *ImportsPerDeveloper) XXX_Size() int

func (*ImportsPerDeveloper) XXX_Unmarshal added in v10.6.0

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

type ImportsPerDeveloperResults added in v10.6.0

type ImportsPerDeveloperResults struct {
	Imports     []*ImportsPerDeveloper `protobuf:"bytes,1,rep,name=imports,proto3" json:"imports,omitempty"`
	AuthorIndex []string               `protobuf:"bytes,2,rep,name=author_index,json=authorIndex,proto3" json:"author_index,omitempty"`
	// how long each tick is, as an int64 nanosecond count (Go's time.Duration)
	TickSize             int64    `protobuf:"varint,3,opt,name=tick_size,json=tickSize,proto3" json:"tick_size,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ImportsPerDeveloperResults) Descriptor added in v10.6.0

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

func (*ImportsPerDeveloperResults) GetAuthorIndex added in v10.6.0

func (m *ImportsPerDeveloperResults) GetAuthorIndex() []string

func (*ImportsPerDeveloperResults) GetImports added in v10.6.0

func (*ImportsPerDeveloperResults) GetTickSize added in v10.7.0

func (m *ImportsPerDeveloperResults) GetTickSize() int64

func (*ImportsPerDeveloperResults) ProtoMessage added in v10.6.0

func (*ImportsPerDeveloperResults) ProtoMessage()

func (*ImportsPerDeveloperResults) Reset added in v10.6.0

func (m *ImportsPerDeveloperResults) Reset()

func (*ImportsPerDeveloperResults) String added in v10.6.0

func (m *ImportsPerDeveloperResults) String() string

func (*ImportsPerDeveloperResults) XXX_DiscardUnknown added in v10.6.0

func (m *ImportsPerDeveloperResults) XXX_DiscardUnknown()

func (*ImportsPerDeveloperResults) XXX_Marshal added in v10.6.0

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

func (*ImportsPerDeveloperResults) XXX_Merge added in v10.6.0

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

func (*ImportsPerDeveloperResults) XXX_Size added in v10.6.0

func (m *ImportsPerDeveloperResults) XXX_Size() int

func (*ImportsPerDeveloperResults) XXX_Unmarshal added in v10.6.0

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

type ImportsPerLanguage added in v10.6.0

type ImportsPerLanguage struct {
	Ticks                map[string]*ImportsPerTick `` /* 151-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*ImportsPerLanguage) Descriptor added in v10.6.0

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

func (*ImportsPerLanguage) GetTicks added in v10.7.0

func (m *ImportsPerLanguage) GetTicks() map[string]*ImportsPerTick

func (*ImportsPerLanguage) ProtoMessage added in v10.6.0

func (*ImportsPerLanguage) ProtoMessage()

func (*ImportsPerLanguage) Reset added in v10.6.0

func (m *ImportsPerLanguage) Reset()

func (*ImportsPerLanguage) String added in v10.6.0

func (m *ImportsPerLanguage) String() string

func (*ImportsPerLanguage) XXX_DiscardUnknown added in v10.6.0

func (m *ImportsPerLanguage) XXX_DiscardUnknown()

func (*ImportsPerLanguage) XXX_Marshal added in v10.6.0

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

func (*ImportsPerLanguage) XXX_Merge added in v10.6.0

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

func (*ImportsPerLanguage) XXX_Size added in v10.6.0

func (m *ImportsPerLanguage) XXX_Size() int

func (*ImportsPerLanguage) XXX_Unmarshal added in v10.6.0

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

type ImportsPerTick added in v10.7.0

type ImportsPerTick struct {
	Counts               map[int32]int64 `` /* 155-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*ImportsPerTick) Descriptor added in v10.7.0

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

func (*ImportsPerTick) GetCounts added in v10.7.0

func (m *ImportsPerTick) GetCounts() map[int32]int64

func (*ImportsPerTick) ProtoMessage added in v10.7.0

func (*ImportsPerTick) ProtoMessage()

func (*ImportsPerTick) Reset added in v10.7.0

func (m *ImportsPerTick) Reset()

func (*ImportsPerTick) String added in v10.7.0

func (m *ImportsPerTick) String() string

func (*ImportsPerTick) XXX_DiscardUnknown added in v10.7.0

func (m *ImportsPerTick) XXX_DiscardUnknown()

func (*ImportsPerTick) XXX_Marshal added in v10.7.0

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

func (*ImportsPerTick) XXX_Merge added in v10.7.0

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

func (*ImportsPerTick) XXX_Size added in v10.7.0

func (m *ImportsPerTick) XXX_Size() int

func (*ImportsPerTick) XXX_Unmarshal added in v10.7.0

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

type LineStats

type LineStats struct {
	Added                int32    `protobuf:"varint,1,opt,name=added,proto3" json:"added,omitempty"`
	Removed              int32    `protobuf:"varint,2,opt,name=removed,proto3" json:"removed,omitempty"`
	Changed              int32    `protobuf:"varint,3,opt,name=changed,proto3" json:"changed,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*LineStats) Descriptor

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

func (*LineStats) GetAdded

func (m *LineStats) GetAdded() int32

func (*LineStats) GetChanged

func (m *LineStats) GetChanged() int32

func (*LineStats) GetRemoved

func (m *LineStats) GetRemoved() int32

func (*LineStats) ProtoMessage

func (*LineStats) ProtoMessage()

func (*LineStats) Reset

func (m *LineStats) Reset()

func (*LineStats) String

func (m *LineStats) String() string

func (*LineStats) XXX_DiscardUnknown

func (m *LineStats) XXX_DiscardUnknown()

func (*LineStats) XXX_Marshal

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

func (*LineStats) XXX_Merge

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

func (*LineStats) XXX_Size

func (m *LineStats) XXX_Size() int

func (*LineStats) XXX_Unmarshal

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

type Metadata

type Metadata struct {
	// this format is versioned
	Version int32 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"`
	// git hash of the revision from which Hercules is built
	Hash string `protobuf:"bytes,2,opt,name=hash,proto3" json:"hash,omitempty"`
	// repository's name
	Repository string `protobuf:"bytes,3,opt,name=repository,proto3" json:"repository,omitempty"`
	// UNIX timestamp of the first analysed commit
	BeginUnixTime int64 `protobuf:"varint,4,opt,name=begin_unix_time,json=beginUnixTime,proto3" json:"begin_unix_time,omitempty"`
	// UNIX timestamp of the last analysed commit
	EndUnixTime int64 `protobuf:"varint,5,opt,name=end_unix_time,json=endUnixTime,proto3" json:"end_unix_time,omitempty"`
	// number of processed commits
	Commits int32 `protobuf:"varint,6,opt,name=commits,proto3" json:"commits,omitempty"`
	// duration of the analysis in milliseconds
	RunTime int64 `protobuf:"varint,7,opt,name=run_time,json=runTime,proto3" json:"run_time,omitempty"`
	// time taken by each pipeline item in seconds
	RunTimePerItem       map[string]float64 `` /* 197-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*Metadata) Descriptor

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

func (*Metadata) GetBeginUnixTime

func (m *Metadata) GetBeginUnixTime() int64

func (*Metadata) GetCommits

func (m *Metadata) GetCommits() int32

func (*Metadata) GetEndUnixTime

func (m *Metadata) GetEndUnixTime() int64

func (*Metadata) GetHash

func (m *Metadata) GetHash() string

func (*Metadata) GetRepository

func (m *Metadata) GetRepository() string

func (*Metadata) GetRunTime

func (m *Metadata) GetRunTime() int64

func (*Metadata) GetRunTimePerItem

func (m *Metadata) GetRunTimePerItem() map[string]float64

func (*Metadata) GetVersion

func (m *Metadata) GetVersion() int32

func (*Metadata) ProtoMessage

func (*Metadata) ProtoMessage()

func (*Metadata) Reset

func (m *Metadata) Reset()

func (*Metadata) String

func (m *Metadata) String() string

func (*Metadata) XXX_DiscardUnknown

func (m *Metadata) XXX_DiscardUnknown()

func (*Metadata) XXX_Marshal

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

func (*Metadata) XXX_Merge

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

func (*Metadata) XXX_Size

func (m *Metadata) XXX_Size() int

func (*Metadata) XXX_Unmarshal

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

type Sentiment

type Sentiment struct {
	Value                float32  `protobuf:"fixed32,1,opt,name=value,proto3" json:"value,omitempty"`
	Comments             []string `protobuf:"bytes,2,rep,name=comments,proto3" json:"comments,omitempty"`
	Commits              []string `protobuf:"bytes,3,rep,name=commits,proto3" json:"commits,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Sentiment) Descriptor

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

func (*Sentiment) GetComments

func (m *Sentiment) GetComments() []string

func (*Sentiment) GetCommits

func (m *Sentiment) GetCommits() []string

func (*Sentiment) GetValue

func (m *Sentiment) GetValue() float32

func (*Sentiment) ProtoMessage

func (*Sentiment) ProtoMessage()

func (*Sentiment) Reset

func (m *Sentiment) Reset()

func (*Sentiment) String

func (m *Sentiment) String() string

func (*Sentiment) XXX_DiscardUnknown

func (m *Sentiment) XXX_DiscardUnknown()

func (*Sentiment) XXX_Marshal

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

func (*Sentiment) XXX_Merge

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

func (*Sentiment) XXX_Size

func (m *Sentiment) XXX_Size() int

func (*Sentiment) XXX_Unmarshal

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

type ShotnessAnalysisResults

type ShotnessAnalysisResults struct {
	Records              []*ShotnessRecord `protobuf:"bytes,1,rep,name=records,proto3" json:"records,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*ShotnessAnalysisResults) Descriptor

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

func (*ShotnessAnalysisResults) GetRecords

func (m *ShotnessAnalysisResults) GetRecords() []*ShotnessRecord

func (*ShotnessAnalysisResults) ProtoMessage

func (*ShotnessAnalysisResults) ProtoMessage()

func (*ShotnessAnalysisResults) Reset

func (m *ShotnessAnalysisResults) Reset()

func (*ShotnessAnalysisResults) String

func (m *ShotnessAnalysisResults) String() string

func (*ShotnessAnalysisResults) XXX_DiscardUnknown

func (m *ShotnessAnalysisResults) XXX_DiscardUnknown()

func (*ShotnessAnalysisResults) XXX_Marshal

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

func (*ShotnessAnalysisResults) XXX_Merge

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

func (*ShotnessAnalysisResults) XXX_Size

func (m *ShotnessAnalysisResults) XXX_Size() int

func (*ShotnessAnalysisResults) XXX_Unmarshal

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

type ShotnessRecord

type ShotnessRecord struct {
	Type                 string          `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Name                 string          `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	File                 string          `protobuf:"bytes,3,opt,name=file,proto3" json:"file,omitempty"`
	Counters             map[int32]int32 `` /* 159-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*ShotnessRecord) Descriptor

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

func (*ShotnessRecord) GetCounters

func (m *ShotnessRecord) GetCounters() map[int32]int32

func (*ShotnessRecord) GetFile

func (m *ShotnessRecord) GetFile() string

func (*ShotnessRecord) GetName

func (m *ShotnessRecord) GetName() string

func (*ShotnessRecord) GetType

func (m *ShotnessRecord) GetType() string

func (*ShotnessRecord) ProtoMessage

func (*ShotnessRecord) ProtoMessage()

func (*ShotnessRecord) Reset

func (m *ShotnessRecord) Reset()

func (*ShotnessRecord) String

func (m *ShotnessRecord) String() string

func (*ShotnessRecord) XXX_DiscardUnknown

func (m *ShotnessRecord) XXX_DiscardUnknown()

func (*ShotnessRecord) XXX_Marshal

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

func (*ShotnessRecord) XXX_Merge

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

func (*ShotnessRecord) XXX_Size

func (m *ShotnessRecord) XXX_Size() int

func (*ShotnessRecord) XXX_Unmarshal

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

type TickDevs

type TickDevs struct {
	Devs                 map[int32]*DevTick `` /* 150-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*TickDevs) Descriptor

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

func (*TickDevs) GetDevs

func (m *TickDevs) GetDevs() map[int32]*DevTick

func (*TickDevs) ProtoMessage

func (*TickDevs) ProtoMessage()

func (*TickDevs) Reset

func (m *TickDevs) Reset()

func (*TickDevs) String

func (m *TickDevs) String() string

func (*TickDevs) XXX_DiscardUnknown

func (m *TickDevs) XXX_DiscardUnknown()

func (*TickDevs) XXX_Marshal

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

func (*TickDevs) XXX_Merge

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

func (*TickDevs) XXX_Size

func (m *TickDevs) XXX_Size() int

func (*TickDevs) XXX_Unmarshal

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

type TouchedFiles

type TouchedFiles struct {
	Files                []int32  `protobuf:"varint,1,rep,packed,name=files,proto3" json:"files,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TouchedFiles) Descriptor

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

func (*TouchedFiles) GetFiles

func (m *TouchedFiles) GetFiles() []int32

func (*TouchedFiles) ProtoMessage

func (*TouchedFiles) ProtoMessage()

func (*TouchedFiles) Reset

func (m *TouchedFiles) Reset()

func (*TouchedFiles) String

func (m *TouchedFiles) String() string

func (*TouchedFiles) XXX_DiscardUnknown

func (m *TouchedFiles) XXX_DiscardUnknown()

func (*TouchedFiles) XXX_Marshal

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

func (*TouchedFiles) XXX_Merge

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

func (*TouchedFiles) XXX_Size

func (m *TouchedFiles) XXX_Size() int

func (*TouchedFiles) XXX_Unmarshal

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

type Typo

type Typo struct {
	Wrong                string   `protobuf:"bytes,1,opt,name=wrong,proto3" json:"wrong,omitempty"`
	Correct              string   `protobuf:"bytes,2,opt,name=correct,proto3" json:"correct,omitempty"`
	Commit               string   `protobuf:"bytes,3,opt,name=commit,proto3" json:"commit,omitempty"`
	File                 string   `protobuf:"bytes,4,opt,name=file,proto3" json:"file,omitempty"`
	Line                 int32    `protobuf:"varint,5,opt,name=line,proto3" json:"line,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Typo) Descriptor

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

func (*Typo) GetCommit

func (m *Typo) GetCommit() string

func (*Typo) GetCorrect

func (m *Typo) GetCorrect() string

func (*Typo) GetFile

func (m *Typo) GetFile() string

func (*Typo) GetLine

func (m *Typo) GetLine() int32

func (*Typo) GetWrong

func (m *Typo) GetWrong() string

func (*Typo) ProtoMessage

func (*Typo) ProtoMessage()

func (*Typo) Reset

func (m *Typo) Reset()

func (*Typo) String

func (m *Typo) String() string

func (*Typo) XXX_DiscardUnknown

func (m *Typo) XXX_DiscardUnknown()

func (*Typo) XXX_Marshal

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

func (*Typo) XXX_Merge

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

func (*Typo) XXX_Size

func (m *Typo) XXX_Size() int

func (*Typo) XXX_Unmarshal

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

type TyposDataset

type TyposDataset struct {
	Typos                []*Typo  `protobuf:"bytes,1,rep,name=typos,proto3" json:"typos,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TyposDataset) Descriptor

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

func (*TyposDataset) GetTypos

func (m *TyposDataset) GetTypos() []*Typo

func (*TyposDataset) ProtoMessage

func (*TyposDataset) ProtoMessage()

func (*TyposDataset) Reset

func (m *TyposDataset) Reset()

func (*TyposDataset) String

func (m *TyposDataset) String() string

func (*TyposDataset) XXX_DiscardUnknown

func (m *TyposDataset) XXX_DiscardUnknown()

func (*TyposDataset) XXX_Marshal

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

func (*TyposDataset) XXX_Merge

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

func (*TyposDataset) XXX_Size

func (m *TyposDataset) XXX_Size() int

func (*TyposDataset) XXX_Unmarshal

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

type UASTChange

type UASTChange struct {
	FileName             string   `protobuf:"bytes,1,opt,name=file_name,json=fileName,proto3" json:"file_name,omitempty"`
	SrcBefore            string   `protobuf:"bytes,2,opt,name=src_before,json=srcBefore,proto3" json:"src_before,omitempty"`
	SrcAfter             string   `protobuf:"bytes,3,opt,name=src_after,json=srcAfter,proto3" json:"src_after,omitempty"`
	UastBefore           string   `protobuf:"bytes,4,opt,name=uast_before,json=uastBefore,proto3" json:"uast_before,omitempty"`
	UastAfter            string   `protobuf:"bytes,5,opt,name=uast_after,json=uastAfter,proto3" json:"uast_after,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*UASTChange) Descriptor

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

func (*UASTChange) GetFileName

func (m *UASTChange) GetFileName() string

func (*UASTChange) GetSrcAfter

func (m *UASTChange) GetSrcAfter() string

func (*UASTChange) GetSrcBefore

func (m *UASTChange) GetSrcBefore() string

func (*UASTChange) GetUastAfter

func (m *UASTChange) GetUastAfter() string

func (*UASTChange) GetUastBefore

func (m *UASTChange) GetUastBefore() string

func (*UASTChange) ProtoMessage

func (*UASTChange) ProtoMessage()

func (*UASTChange) Reset

func (m *UASTChange) Reset()

func (*UASTChange) String

func (m *UASTChange) String() string

func (*UASTChange) XXX_DiscardUnknown

func (m *UASTChange) XXX_DiscardUnknown()

func (*UASTChange) XXX_Marshal

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

func (*UASTChange) XXX_Merge

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

func (*UASTChange) XXX_Size

func (m *UASTChange) XXX_Size() int

func (*UASTChange) XXX_Unmarshal

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

type UASTChangesSaverResults

type UASTChangesSaverResults struct {
	Changes              []*UASTChange `protobuf:"bytes,1,rep,name=changes,proto3" json:"changes,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*UASTChangesSaverResults) Descriptor

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

func (*UASTChangesSaverResults) GetChanges

func (m *UASTChangesSaverResults) GetChanges() []*UASTChange

func (*UASTChangesSaverResults) ProtoMessage

func (*UASTChangesSaverResults) ProtoMessage()

func (*UASTChangesSaverResults) Reset

func (m *UASTChangesSaverResults) Reset()

func (*UASTChangesSaverResults) String

func (m *UASTChangesSaverResults) String() string

func (*UASTChangesSaverResults) XXX_DiscardUnknown

func (m *UASTChangesSaverResults) XXX_DiscardUnknown()

func (*UASTChangesSaverResults) XXX_Marshal

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

func (*UASTChangesSaverResults) XXX_Merge

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

func (*UASTChangesSaverResults) XXX_Size

func (m *UASTChangesSaverResults) XXX_Size() int

func (*UASTChangesSaverResults) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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