mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-29 17:23:25 -05:00
* Fix initial build breaks from 1.67 merge (#2514) * Update yarn lock files * Update build scripts * Fix tsconfig * Build breaks * WIP * Update yarn lock files * Misc breaks * Updates to package.json * Breaks * Update yarn * Fix breaks * Breaks * Build breaks * Breaks * Breaks * Breaks * Breaks * Breaks * Missing file * Breaks * Breaks * Breaks * Breaks * Breaks * Fix several runtime breaks (#2515) * Missing files * Runtime breaks * Fix proxy ordering issue * Remove commented code * Fix breaks with opening query editor * Fix post merge break * Updates related to setup build and other breaks (#2516) * Fix bundle build issues * Update distro * Fix distro merge and update build JS files * Disable pipeline steps * Remove stats call * Update license name * Make new RPM dependencies a warning * Fix extension manager version checks * Update JS file * Fix a few runtime breaks * Fixes * Fix runtime issues * Fix build breaks * Update notebook tests (part 1) * Fix broken tests * Linting errors * Fix hygiene * Disable lint rules * Bump distro * Turn off smoke tests * Disable integration tests * Remove failing "activate" test * Remove failed test assertion * Disable other broken test * Disable query history tests * Disable extension unit tests * Disable failing tasks
422 lines
13 KiB
TypeScript
422 lines
13 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as vscode from 'vscode';
|
|
import * as nls from 'vscode-nls';
|
|
import * as uri from 'vscode-uri';
|
|
import { OpenDocumentLinkCommand } from '../commands/openDocumentLink';
|
|
import { MarkdownEngine } from '../markdownEngine';
|
|
import { coalesce } from '../util/arrays';
|
|
import { getUriForLinkWithKnownExternalScheme, isOfScheme, Schemes } from '../util/schemes';
|
|
import { SkinnyTextDocument } from '../workspaceContents';
|
|
|
|
const localize = nls.loadMessageBundle();
|
|
|
|
export interface ExternalHref {
|
|
readonly kind: 'external';
|
|
readonly uri: vscode.Uri;
|
|
}
|
|
|
|
export interface InternalHref {
|
|
readonly kind: 'internal';
|
|
readonly path: vscode.Uri;
|
|
readonly fragment: string;
|
|
}
|
|
|
|
export interface ReferenceHref {
|
|
readonly kind: 'reference';
|
|
readonly ref: string;
|
|
}
|
|
|
|
export type LinkHref = ExternalHref | InternalHref | ReferenceHref;
|
|
|
|
|
|
function parseLink(
|
|
document: SkinnyTextDocument,
|
|
link: string,
|
|
): ExternalHref | InternalHref | undefined {
|
|
const cleanLink = stripAngleBrackets(link);
|
|
const externalSchemeUri = getUriForLinkWithKnownExternalScheme(cleanLink);
|
|
if (externalSchemeUri) {
|
|
// Normalize VS Code links to target currently running version
|
|
if (isOfScheme(Schemes.vscode, link) || isOfScheme(Schemes['vscode-insiders'], link)) {
|
|
return { kind: 'external', uri: vscode.Uri.parse(link).with({ scheme: vscode.env.uriScheme }) };
|
|
}
|
|
return { kind: 'external', uri: externalSchemeUri };
|
|
}
|
|
|
|
// Assume it must be an relative or absolute file path
|
|
// Use a fake scheme to avoid parse warnings
|
|
const tempUri = vscode.Uri.parse(`vscode-resource:${link}`);
|
|
|
|
let resourceUri: vscode.Uri | undefined;
|
|
if (!tempUri.path) {
|
|
resourceUri = document.uri;
|
|
} else if (tempUri.path[0] === '/') {
|
|
const root = getWorkspaceFolder(document);
|
|
if (root) {
|
|
resourceUri = vscode.Uri.joinPath(root, tempUri.path);
|
|
}
|
|
} else {
|
|
if (document.uri.scheme === Schemes.untitled) {
|
|
const root = getWorkspaceFolder(document);
|
|
if (root) {
|
|
resourceUri = vscode.Uri.joinPath(root, tempUri.path);
|
|
}
|
|
} else {
|
|
const base = uri.Utils.dirname(document.uri);
|
|
resourceUri = vscode.Uri.joinPath(base, tempUri.path);
|
|
}
|
|
}
|
|
|
|
if (!resourceUri) {
|
|
return undefined;
|
|
}
|
|
|
|
return {
|
|
kind: 'internal',
|
|
path: resourceUri.with({ fragment: '' }),
|
|
fragment: tempUri.fragment,
|
|
};
|
|
}
|
|
|
|
function getWorkspaceFolder(document: SkinnyTextDocument) {
|
|
return vscode.workspace.getWorkspaceFolder(document.uri)?.uri
|
|
|| vscode.workspace.workspaceFolders?.[0]?.uri;
|
|
}
|
|
|
|
interface MdLinkSource {
|
|
readonly text: string;
|
|
readonly resource: vscode.Uri;
|
|
readonly hrefRange: vscode.Range;
|
|
readonly fragmentRange: vscode.Range | undefined;
|
|
}
|
|
|
|
export interface MdInlineLink {
|
|
readonly kind: 'link';
|
|
readonly source: MdLinkSource;
|
|
readonly href: LinkHref;
|
|
}
|
|
|
|
export interface MdLinkDefinition {
|
|
readonly kind: 'definition';
|
|
readonly source: MdLinkSource;
|
|
readonly ref: {
|
|
readonly range: vscode.Range;
|
|
readonly text: string;
|
|
};
|
|
readonly href: ExternalHref | InternalHref;
|
|
}
|
|
|
|
export type MdLink = MdInlineLink | MdLinkDefinition;
|
|
|
|
function extractDocumentLink(
|
|
document: SkinnyTextDocument,
|
|
pre: number,
|
|
link: string,
|
|
matchIndex: number | undefined
|
|
): MdLink | undefined {
|
|
const offset = (matchIndex || 0) + pre;
|
|
const linkStart = document.positionAt(offset);
|
|
const linkEnd = document.positionAt(offset + link.length);
|
|
try {
|
|
const linkTarget = parseLink(document, link);
|
|
if (!linkTarget) {
|
|
return undefined;
|
|
}
|
|
return {
|
|
kind: 'link',
|
|
href: linkTarget,
|
|
source: {
|
|
text: link,
|
|
resource: document.uri,
|
|
hrefRange: new vscode.Range(linkStart, linkEnd),
|
|
fragmentRange: getFragmentRange(link, linkStart, linkEnd),
|
|
}
|
|
};
|
|
} catch {
|
|
return undefined;
|
|
}
|
|
}
|
|
|
|
function getFragmentRange(text: string, start: vscode.Position, end: vscode.Position): vscode.Range | undefined {
|
|
const index = text.indexOf('#');
|
|
if (index < 0) {
|
|
return undefined;
|
|
}
|
|
return new vscode.Range(start.translate({ characterDelta: index + 1 }), end);
|
|
}
|
|
|
|
const angleBracketLinkRe = /^<(.*)>$/;
|
|
|
|
/**
|
|
* Used to strip brackets from the markdown link
|
|
*
|
|
* <http://example.com> will be transformed to http://example.com
|
|
*/
|
|
function stripAngleBrackets(link: string) {
|
|
return link.replace(angleBracketLinkRe, '$1');
|
|
}
|
|
|
|
/**
|
|
* Matches `[text](link)`
|
|
*/
|
|
const linkPattern = /(\[((!\[[^\]]*?\]\(\s*)([^\s\(\)]+?)\s*\)\]|(?:\\\]|[^\]])*\])\(\s*)(([^\s\(\)]|\([^\s\(\)]*?\))+)\s*(".*?")?\)/g;
|
|
|
|
/**
|
|
* Matches `[text][ref]`
|
|
*/
|
|
const referenceLinkPattern = /(?:(\[((?:\\\]|[^\]])+)\]\[\s*?)([^\s\]]*?)\]|\[\s*?([^\s\]]*?)\])(?![\:\(])/g;
|
|
|
|
/**
|
|
* Matches `<http://example.com>`
|
|
*/
|
|
const autoLinkPattern = /\<(\w+:[^\>\s]+)\>/g;
|
|
|
|
/**
|
|
* Matches `[text]: link`
|
|
*/
|
|
const definitionPattern = /^([\t ]*\[(?!\^)((?:\\\]|[^\]])+)\]:\s*)([^<]\S*|<[^>]+>)/gm;
|
|
|
|
const inlineCodePattern = /(?:^|[^`])(`+)(?:.+?|.*?(?:(?:\r?\n).+?)*?)(?:\r?\n)?\1(?:$|[^`])/gm;
|
|
|
|
interface CodeInDocument {
|
|
/**
|
|
* code blocks and fences each represented by [line_start,line_end).
|
|
*/
|
|
readonly multiline: ReadonlyArray<[number, number]>;
|
|
|
|
/**
|
|
* inline code spans each represented by {@link vscode.Range}.
|
|
*/
|
|
readonly inline: readonly vscode.Range[];
|
|
}
|
|
|
|
async function findCode(document: SkinnyTextDocument, engine: MarkdownEngine): Promise<CodeInDocument> {
|
|
const tokens = await engine.parse(document);
|
|
const multiline = tokens.filter(t => (t.type === 'code_block' || t.type === 'fence') && !!t.map).map(t => t.map) as [number, number][];
|
|
|
|
const text = document.getText();
|
|
const inline = [...text.matchAll(inlineCodePattern)].map(match => {
|
|
const start = match.index || 0;
|
|
return new vscode.Range(document.positionAt(start), document.positionAt(start + match[0].length));
|
|
});
|
|
|
|
return { multiline, inline };
|
|
}
|
|
|
|
function isLinkInsideCode(code: CodeInDocument, linkHrefRange: vscode.Range) {
|
|
return code.multiline.some(interval => linkHrefRange.start.line >= interval[0] && linkHrefRange.start.line < interval[1]) ||
|
|
code.inline.some(position => position.intersection(linkHrefRange));
|
|
}
|
|
|
|
export class MdLinkProvider implements vscode.DocumentLinkProvider {
|
|
|
|
constructor(
|
|
private readonly engine: MarkdownEngine
|
|
) { }
|
|
|
|
public async provideDocumentLinks(
|
|
document: SkinnyTextDocument,
|
|
token: vscode.CancellationToken
|
|
): Promise<vscode.DocumentLink[]> {
|
|
const allLinks = await this.getAllLinks(document, token);
|
|
if (token.isCancellationRequested) {
|
|
return [];
|
|
}
|
|
|
|
const definitionSet = new LinkDefinitionSet(allLinks);
|
|
return coalesce(allLinks
|
|
.map(data => this.toValidDocumentLink(data, definitionSet)));
|
|
}
|
|
|
|
private toValidDocumentLink(link: MdLink, definitionSet: LinkDefinitionSet): vscode.DocumentLink | undefined {
|
|
switch (link.href.kind) {
|
|
case 'external': {
|
|
return new vscode.DocumentLink(link.source.hrefRange, link.href.uri);
|
|
}
|
|
case 'internal': {
|
|
const uri = OpenDocumentLinkCommand.createCommandUri(link.source.resource, link.href.path, link.href.fragment);
|
|
const documentLink = new vscode.DocumentLink(link.source.hrefRange, uri);
|
|
documentLink.tooltip = localize('documentLink.tooltip', 'Follow link');
|
|
return documentLink;
|
|
}
|
|
case 'reference': {
|
|
const def = definitionSet.lookup(link.href.ref);
|
|
if (def) {
|
|
return new vscode.DocumentLink(
|
|
link.source.hrefRange,
|
|
vscode.Uri.parse(`command:_markdown.moveCursorToPosition?${encodeURIComponent(JSON.stringify([def.source.hrefRange.start.line, def.source.hrefRange.start.character]))}`));
|
|
} else {
|
|
return undefined;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public async getAllLinks(document: SkinnyTextDocument, token: vscode.CancellationToken): Promise<MdLink[]> {
|
|
const codeInDocument = await findCode(document, this.engine);
|
|
if (token.isCancellationRequested) {
|
|
return [];
|
|
}
|
|
|
|
return Array.from([
|
|
...this.getInlineLinks(document, codeInDocument),
|
|
...this.getReferenceLinks(document, codeInDocument),
|
|
...this.getLinkDefinitions2(document, codeInDocument),
|
|
...this.getAutoLinks(document, codeInDocument),
|
|
]);
|
|
}
|
|
|
|
private *getInlineLinks(document: SkinnyTextDocument, codeInDocument: CodeInDocument): Iterable<MdLink> {
|
|
const text = document.getText();
|
|
|
|
for (const match of text.matchAll(linkPattern)) {
|
|
const matchImageData = match[4] && extractDocumentLink(document, match[3].length + 1, match[4], match.index);
|
|
if (matchImageData && !isLinkInsideCode(codeInDocument, matchImageData.source.hrefRange)) {
|
|
yield matchImageData;
|
|
}
|
|
const matchLinkData = extractDocumentLink(document, match[1].length, match[5], match.index);
|
|
if (matchLinkData && !isLinkInsideCode(codeInDocument, matchLinkData.source.hrefRange)) {
|
|
yield matchLinkData;
|
|
}
|
|
}
|
|
}
|
|
|
|
private *getAutoLinks(document: SkinnyTextDocument, codeInDocument: CodeInDocument): Iterable<MdLink> {
|
|
const text = document.getText();
|
|
|
|
for (const match of text.matchAll(autoLinkPattern)) {
|
|
const link = match[1];
|
|
const linkTarget = parseLink(document, link);
|
|
if (linkTarget) {
|
|
const offset = (match.index ?? 0) + 1;
|
|
const linkStart = document.positionAt(offset);
|
|
const linkEnd = document.positionAt(offset + link.length);
|
|
const hrefRange = new vscode.Range(linkStart, linkEnd);
|
|
if (isLinkInsideCode(codeInDocument, hrefRange)) {
|
|
continue;
|
|
}
|
|
yield {
|
|
kind: 'link',
|
|
href: linkTarget,
|
|
source: {
|
|
text: link,
|
|
resource: document.uri,
|
|
hrefRange: new vscode.Range(linkStart, linkEnd),
|
|
fragmentRange: getFragmentRange(link, linkStart, linkEnd),
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
private *getReferenceLinks(document: SkinnyTextDocument, codeInDocument: CodeInDocument): Iterable<MdLink> {
|
|
const text = document.getText();
|
|
for (const match of text.matchAll(referenceLinkPattern)) {
|
|
let linkStart: vscode.Position;
|
|
let linkEnd: vscode.Position;
|
|
let reference = match[3];
|
|
if (reference) { // [text][ref]
|
|
const pre = match[1];
|
|
const offset = (match.index || 0) + pre.length;
|
|
linkStart = document.positionAt(offset);
|
|
linkEnd = document.positionAt(offset + reference.length);
|
|
} else if (match[4]) { // [ref][], [ref]
|
|
reference = match[4];
|
|
const offset = (match.index || 0) + 1;
|
|
linkStart = document.positionAt(offset);
|
|
linkEnd = document.positionAt(offset + reference.length);
|
|
} else {
|
|
continue;
|
|
}
|
|
|
|
const hrefRange = new vscode.Range(linkStart, linkEnd);
|
|
if (isLinkInsideCode(codeInDocument, hrefRange)) {
|
|
continue;
|
|
}
|
|
|
|
yield {
|
|
kind: 'link',
|
|
source: {
|
|
text: reference,
|
|
resource: document.uri,
|
|
hrefRange,
|
|
fragmentRange: undefined,
|
|
},
|
|
href: {
|
|
kind: 'reference',
|
|
ref: reference,
|
|
}
|
|
};
|
|
}
|
|
}
|
|
|
|
public async getLinkDefinitions(document: SkinnyTextDocument): Promise<Iterable<MdLinkDefinition>> {
|
|
const codeInDocument = await findCode(document, this.engine);
|
|
return this.getLinkDefinitions2(document, codeInDocument);
|
|
}
|
|
|
|
private *getLinkDefinitions2(document: SkinnyTextDocument, codeInDocument: CodeInDocument): Iterable<MdLinkDefinition> {
|
|
const text = document.getText();
|
|
for (const match of text.matchAll(definitionPattern)) {
|
|
const pre = match[1];
|
|
const reference = match[2];
|
|
const link = match[3].trim();
|
|
const offset = (match.index || 0) + pre.length;
|
|
|
|
const refStart = document.positionAt((match.index ?? 0) + 1);
|
|
const refRange = new vscode.Range(refStart, refStart.translate({ characterDelta: reference.length }));
|
|
|
|
let linkStart: vscode.Position;
|
|
let linkEnd: vscode.Position;
|
|
let text: string;
|
|
if (angleBracketLinkRe.test(link)) {
|
|
linkStart = document.positionAt(offset + 1);
|
|
linkEnd = document.positionAt(offset + link.length - 1);
|
|
text = link.substring(1, link.length - 1);
|
|
} else {
|
|
linkStart = document.positionAt(offset);
|
|
linkEnd = document.positionAt(offset + link.length);
|
|
text = link;
|
|
}
|
|
const hrefRange = new vscode.Range(linkStart, linkEnd);
|
|
if (isLinkInsideCode(codeInDocument, hrefRange)) {
|
|
continue;
|
|
}
|
|
const target = parseLink(document, text);
|
|
if (target) {
|
|
yield {
|
|
kind: 'definition',
|
|
source: {
|
|
text: link,
|
|
resource: document.uri,
|
|
hrefRange,
|
|
fragmentRange: getFragmentRange(link, linkStart, linkEnd),
|
|
},
|
|
ref: { text: reference, range: refRange },
|
|
href: target,
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
export class LinkDefinitionSet {
|
|
private readonly _map = new Map<string, MdLinkDefinition>();
|
|
|
|
constructor(links: Iterable<MdLink>) {
|
|
for (const link of links) {
|
|
if (link.kind === 'definition') {
|
|
this._map.set(link.ref.text, link);
|
|
}
|
|
}
|
|
}
|
|
|
|
public lookup(ref: string): MdLinkDefinition | undefined {
|
|
return this._map.get(ref);
|
|
}
|
|
}
|