forked from MichaelMULLER/theia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[plugin] Implement registerDeclarationProvider
Signed-off-by: Alex Tugarev <[email protected]>
- Loading branch information
1 parent
6580940
commit 4360a39
Showing
9 changed files
with
182 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/******************************************************************************** | ||
* Copyright (C) 2019 TypeFox and others. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* This Source Code may also be made available under the following Secondary | ||
* Licenses when the conditions for such availability set forth in the Eclipse | ||
* Public License v. 2.0 are satisfied: GNU General Public License, version 2 | ||
* with the GNU Classpath Exception which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
********************************************************************************/ | ||
|
||
import URI from 'vscode-uri/lib/umd'; | ||
import * as theia from '@theia/plugin'; | ||
import { DocumentsExtImpl } from '../documents'; | ||
import * as types from '../types-impl'; | ||
import * as Converter from '../type-converters'; | ||
import { Position } from '../../common/plugin-api-rpc'; | ||
import { Definition, DefinitionLink, Location } from '../../common/plugin-api-rpc-model'; | ||
import { isDefinitionLinkArray, isLocationArray } from './util'; | ||
|
||
export class DeclarationAdapter { | ||
|
||
constructor( | ||
private readonly provider: theia.DeclarationProvider, | ||
private readonly documents: DocumentsExtImpl) { | ||
} | ||
|
||
provideDeclaration(resource: URI, position: Position, token: theia.CancellationToken): Promise<Definition | DefinitionLink[] | undefined> { | ||
const documentData = this.documents.getDocumentData(resource); | ||
if (!documentData) { | ||
return Promise.reject(new Error(`There is no document for ${resource}`)); | ||
} | ||
|
||
const document = documentData.document; | ||
const zeroBasedPosition = Converter.toPosition(position); | ||
|
||
return Promise.resolve(this.provider.provideDeclaration(document, zeroBasedPosition, token)).then(definition => { | ||
if (!definition) { | ||
return undefined; | ||
} | ||
|
||
if (definition instanceof types.Location) { | ||
return Converter.fromLocation(definition); | ||
} | ||
|
||
if (isLocationArray(definition)) { | ||
const locations: Location[] = []; | ||
|
||
for (const location of definition) { | ||
locations.push(Converter.fromLocation(location)); | ||
} | ||
|
||
return locations; | ||
} | ||
|
||
if (isDefinitionLinkArray(definition)) { | ||
const definitionLinks: DefinitionLink[] = []; | ||
|
||
for (const definitionLink of definition) { | ||
definitionLinks.push(Converter.fromDefinitionLink(definitionLink)); | ||
} | ||
|
||
return definitionLinks; | ||
} | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters