search.ts 2.4 KB
Newer Older
J
Joao Moreno 已提交
1 2 3 4 5 6 7
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

'use strict';

8
import { PPromise, TPromise } from 'vs/base/common/winjs.base';
B
Benjamin Pasero 已提交
9
import { IExpression } from 'vs/base/common/glob';
10
import { IProgress, ILineMatch, IPatternInfo, ISearchStats, ISearchLog } from 'vs/platform/search/common/search';
C
Christof Marti 已提交
11
import { ITelemetryData } from 'vs/platform/telemetry/common/telemetry';
J
Joao Moreno 已提交
12

R
Rob Lourens 已提交
13 14 15
export interface IFolderSearch {
	folder: string;
	excludePattern?: IExpression;
16
	includePattern?: IExpression;
R
Rob Lourens 已提交
17 18 19
	fileEncoding?: string;
}

J
Joao Moreno 已提交
20
export interface IRawSearch {
R
Rob Lourens 已提交
21
	folderQueries: IFolderSearch[];
22
	ignoreSymlinks?: boolean;
J
Joao Moreno 已提交
23 24
	extraFiles?: string[];
	filePattern?: string;
B
Benjamin Pasero 已提交
25 26
	excludePattern?: IExpression;
	includePattern?: IExpression;
J
Joao Moreno 已提交
27 28
	contentPattern?: IPatternInfo;
	maxResults?: number;
29
	exists?: boolean;
30 31
	sortByScore?: boolean;
	cacheKey?: string;
J
Joao Moreno 已提交
32
	maxFilesize?: number;
33
	useRipgrep?: boolean;
R
Rob Lourens 已提交
34
	disregardIgnoreFiles?: boolean;
J
Joao Moreno 已提交
35 36
}

C
Christof Marti 已提交
37 38 39 40 41
export interface ITelemetryEvent {
	eventName: string;
	data: ITelemetryData;
}

J
Joao Moreno 已提交
42 43 44
export interface IRawSearchService {
	fileSearch(search: IRawSearch): PPromise<ISerializedSearchComplete, ISerializedSearchProgressItem>;
	textSearch(search: IRawSearch): PPromise<ISerializedSearchComplete, ISerializedSearchProgressItem>;
45
	clearCache(cacheKey: string): TPromise<void>;
C
Christof Marti 已提交
46
	fetchTelemetry(): PPromise<void, ITelemetryEvent>;
J
Joao Moreno 已提交
47 48
}

49
export interface IRawFileMatch {
C
Christof Marti 已提交
50
	base?: string;
51
	relativePath: string;
52
	basename: string;
C
Christof Marti 已提交
53
	size?: number;
54 55 56
}

export interface ISearchEngine<T> {
57
	search: (onResult: (matches: T) => void, onProgress: (progress: IProgress) => void, done: (error: Error, complete: ISerializedSearchComplete) => void) => void;
J
Joao Moreno 已提交
58 59 60 61 62
	cancel: () => void;
}

export interface ISerializedSearchComplete {
	limitHit: boolean;
C
chrmarti 已提交
63
	stats: ISearchStats;
J
Joao Moreno 已提交
64 65 66
}

export interface ISerializedFileMatch {
67
	path: string;
J
Joao Moreno 已提交
68
	lineMatches?: ILineMatch[];
69
	numMatches?: number;
J
Joao Moreno 已提交
70 71
}

C
chrmarti 已提交
72
// Type of the possible values for progress calls from the engine
73 74
export type ISerializedSearchProgressItem = ISerializedFileMatch | ISerializedFileMatch[] | IProgress | ISearchLog;
export type IFileSearchProgressItem = IRawFileMatch | IRawFileMatch[] | IProgress;