mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 15:51:43 +00:00
Also renames a bunch of related types such as - config.IndexJob -> config.AutoIndexJobSpec - IndexLoader -> AutoIndexJobLoader and so on.
198 lines
5.5 KiB
Go
198 lines
5.5 KiB
Go
package resolvers
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/graph-gophers/graphql-go"
|
|
|
|
"github.com/sourcegraph/sourcegraph/internal/gqlutil"
|
|
)
|
|
|
|
type UploadsServiceResolver interface {
|
|
// Fetch precise indexes
|
|
PreciseIndexes(ctx context.Context, args *PreciseIndexesQueryArgs) (PreciseIndexConnectionResolver, error)
|
|
PreciseIndexByID(ctx context.Context, id graphql.ID) (PreciseIndexResolver, error)
|
|
IndexerKeys(ctx context.Context, args *IndexerKeyQueryArgs) ([]string, error)
|
|
|
|
// Modify precise indexes
|
|
DeletePreciseIndex(ctx context.Context, args *struct{ ID graphql.ID }) (*EmptyResponse, error)
|
|
DeletePreciseIndexes(ctx context.Context, args *DeletePreciseIndexesArgs) (*EmptyResponse, error)
|
|
ReindexPreciseIndex(ctx context.Context, args *struct{ ID graphql.ID }) (*EmptyResponse, error)
|
|
ReindexPreciseIndexes(ctx context.Context, args *ReindexPreciseIndexesArgs) (*EmptyResponse, error)
|
|
|
|
// Status
|
|
CommitGraph(ctx context.Context, id graphql.ID) (CodeIntelligenceCommitGraphResolver, error)
|
|
|
|
// Coverage
|
|
CodeIntelSummary(ctx context.Context) (CodeIntelSummaryResolver, error)
|
|
RepositorySummary(ctx context.Context, id graphql.ID) (CodeIntelRepositorySummaryResolver, error)
|
|
}
|
|
|
|
type PreciseIndexesQueryArgs struct {
|
|
PagedConnectionArgs
|
|
Repo *graphql.ID
|
|
Query *string
|
|
States *[]string
|
|
IndexerKey *string
|
|
DependencyOf *string
|
|
DependentOf *string
|
|
IncludeDeleted *bool
|
|
}
|
|
|
|
type IndexerKeyQueryArgs struct {
|
|
Repo *graphql.ID
|
|
}
|
|
|
|
type DeletePreciseIndexesArgs struct {
|
|
Query *string
|
|
States *[]string
|
|
IndexerKey *string
|
|
Repository *graphql.ID
|
|
IsLatestForRepo *bool
|
|
}
|
|
|
|
type ReindexPreciseIndexesArgs struct {
|
|
Query *string
|
|
States *[]string
|
|
IndexerKey *string
|
|
Repository *graphql.ID
|
|
IsLatestForRepo *bool
|
|
}
|
|
|
|
type CodeIntelligenceCommitGraphResolver interface {
|
|
Stale() bool
|
|
UpdatedAt() *gqlutil.DateTime
|
|
}
|
|
|
|
type (
|
|
PreciseIndexConnectionResolver = PagedConnectionWithTotalCountResolver[PreciseIndexResolver]
|
|
)
|
|
|
|
type PreciseIndexResolver interface {
|
|
ID() graphql.ID
|
|
ProjectRoot(ctx context.Context) (GitTreeEntryResolver, error)
|
|
InputCommit() string
|
|
Tags(ctx context.Context) ([]string, error)
|
|
InputRoot() string
|
|
InputIndexer() string
|
|
Indexer() CodeIntelIndexerResolver
|
|
State() string
|
|
QueuedAt() *gqlutil.DateTime
|
|
UploadedAt() *gqlutil.DateTime
|
|
IndexingStartedAt() *gqlutil.DateTime
|
|
ProcessingStartedAt() *gqlutil.DateTime
|
|
IndexingFinishedAt() *gqlutil.DateTime
|
|
ProcessingFinishedAt() *gqlutil.DateTime
|
|
Steps() AutoIndexJobStepsResolver
|
|
Failure() *string
|
|
PlaceInQueue() *int32
|
|
ShouldReindex(ctx context.Context) bool
|
|
IsLatestForRepo() bool
|
|
RetentionPolicyOverview(ctx context.Context, args *LSIFUploadRetentionPolicyMatchesArgs) (CodeIntelligenceRetentionPolicyMatchesConnectionResolver, error)
|
|
AuditLogs(ctx context.Context) (*[]LSIFUploadsAuditLogsResolver, error)
|
|
}
|
|
|
|
type LSIFUploadRetentionPolicyMatchesArgs struct {
|
|
MatchesOnly bool
|
|
PagedConnectionArgs
|
|
Query *string
|
|
}
|
|
|
|
type CodeIntelligenceRetentionPolicyMatchesConnectionResolver = PagedConnectionWithTotalCountResolver[CodeIntelligenceRetentionPolicyMatchResolver]
|
|
|
|
type CodeIntelligenceRetentionPolicyMatchResolver interface {
|
|
ConfigurationPolicy() CodeIntelligenceConfigurationPolicyResolver
|
|
Matches() bool
|
|
ProtectingCommits() *[]string
|
|
}
|
|
|
|
type LSIFUploadsAuditLogsResolver interface {
|
|
LogTimestamp() gqlutil.DateTime
|
|
UploadDeletedAt() *gqlutil.DateTime
|
|
Reason() *string
|
|
ChangedColumns() []AuditLogColumnChange
|
|
UploadID() graphql.ID
|
|
InputCommit() string
|
|
InputRoot() string
|
|
InputIndexer() string
|
|
UploadedAt() gqlutil.DateTime
|
|
Operation() string
|
|
}
|
|
|
|
type AuditLogColumnChange interface {
|
|
Column() string
|
|
Old() *string
|
|
New() *string
|
|
}
|
|
|
|
type AutoIndexJobDescriptionResolver interface {
|
|
Root() string
|
|
Indexer() CodeIntelIndexerResolver
|
|
ComparisonKey() string
|
|
Steps() AutoIndexJobStepsResolver
|
|
}
|
|
|
|
type CodeIntelIndexerResolver interface {
|
|
Key() string
|
|
Name() string
|
|
URL() string
|
|
ImageName() *string
|
|
}
|
|
|
|
type AutoIndexJobStepsResolver interface {
|
|
Setup() []ExecutionLogEntryResolver
|
|
PreIndex() []PreIndexStepResolver
|
|
Index() IndexStepResolver
|
|
Upload() ExecutionLogEntryResolver
|
|
Teardown() []ExecutionLogEntryResolver
|
|
}
|
|
|
|
type ExecutionLogEntryResolver interface {
|
|
Key() string
|
|
Command() []string
|
|
StartTime() gqlutil.DateTime
|
|
ExitCode() *int32
|
|
Out(ctx context.Context) (string, error)
|
|
DurationMilliseconds() *int32
|
|
}
|
|
|
|
type PreIndexStepResolver interface {
|
|
Root() string
|
|
Image() string
|
|
Commands() []string
|
|
LogEntry() ExecutionLogEntryResolver
|
|
}
|
|
|
|
type IndexStepResolver interface {
|
|
Commands() []string
|
|
IndexerArgs() []string
|
|
Outfile() *string
|
|
RequestedEnvVars() *[]string
|
|
LogEntry() ExecutionLogEntryResolver
|
|
}
|
|
|
|
type CodeIntelSummaryResolver interface {
|
|
NumRepositoriesWithCodeIntelligence(ctx context.Context) (int32, error)
|
|
RepositoriesWithErrors(ctx context.Context, args *RepositoriesWithErrorsArgs) (CodeIntelRepositoryWithErrorConnectionResolver, error)
|
|
RepositoriesWithConfiguration(ctx context.Context, args *RepositoriesWithConfigurationArgs) (CodeIntelRepositoryWithConfigurationConnectionResolver, error)
|
|
}
|
|
|
|
type CodeIntelRepositorySummaryResolver interface {
|
|
RecentActivity(ctx context.Context) ([]PreciseIndexResolver, error)
|
|
LastUploadRetentionScan() *gqlutil.DateTime
|
|
LastIndexScan() *gqlutil.DateTime
|
|
AvailableIndexers() []InferredAvailableIndexersResolver
|
|
LimitError() *string
|
|
}
|
|
|
|
type InferredAvailableIndexersResolver interface {
|
|
Indexer() CodeIntelIndexerResolver
|
|
Roots() []string
|
|
RootsWithKeys() []RootsWithKeyResolver
|
|
}
|
|
|
|
type RootsWithKeyResolver interface {
|
|
Root() string
|
|
ComparisonKey() string
|
|
}
|