Complete residential site build with Docker Compose & Gitea Actions deployment
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
export declare enum YamlCommands {
|
||||
JUMP_TO_SCHEMA = "jumpToSchema"
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Red Hat, Inc. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
export var YamlCommands;
|
||||
(function (YamlCommands) {
|
||||
YamlCommands["JUMP_TO_SCHEMA"] = "jumpToSchema";
|
||||
})(YamlCommands || (YamlCommands = {}));
|
||||
//# sourceMappingURL=commands.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"commands.js","sourceRoot":"","sources":["../../src/commands.ts"],"names":[],"mappings":"AAAA;;;gGAGgG;AAEhG,MAAM,CAAN,IAAY,YAEX;AAFD,WAAY,YAAY;IACtB,+CAA+B,CAAA;AACjC,CAAC,EAFW,YAAY,KAAZ,YAAY,QAEvB"}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
export * from './languageservice/yamlLanguageService';
|
||||
export { getLanguageService as getJSONLanguageService } from 'vscode-json-languageservice';
|
||||
export * from 'vscode-languageserver-types';
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export * from './languageservice/yamlLanguageService';
|
||||
export { getLanguageService as getJSONLanguageService } from 'vscode-json-languageservice';
|
||||
export * from 'vscode-languageserver-types';
|
||||
//# sourceMappingURL=index.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAC;AACtD,OAAO,EAAE,kBAAkB,IAAI,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAC3F,cAAc,6BAA6B,CAAC"}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
import { ExecuteCommandParams } from 'vscode-languageserver-protocol';
|
||||
export interface CommandHandler {
|
||||
(...args: unknown[]): void;
|
||||
}
|
||||
export declare class CommandExecutor {
|
||||
private commands;
|
||||
executeCommand(params: ExecuteCommandParams): void;
|
||||
registerCommand(commandId: string, handler: CommandHandler): void;
|
||||
}
|
||||
export declare const commandExecutor: CommandExecutor;
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Red Hat, Inc. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
export class CommandExecutor {
|
||||
constructor() {
|
||||
this.commands = new Map();
|
||||
}
|
||||
executeCommand(params) {
|
||||
if (this.commands.has(params.command)) {
|
||||
const handler = this.commands.get(params.command);
|
||||
return handler(...params.arguments);
|
||||
}
|
||||
throw new Error(`Command '${params.command}' not found`);
|
||||
}
|
||||
registerCommand(commandId, handler) {
|
||||
this.commands.set(commandId, handler);
|
||||
}
|
||||
}
|
||||
export const commandExecutor = new CommandExecutor();
|
||||
//# sourceMappingURL=commandExecutor.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"commandExecutor.js","sourceRoot":"","sources":["../../../src/languageserver/commandExecutor.ts"],"names":[],"mappings":"AAAA;;;gGAGgG;AAQhG,MAAM,OAAO,eAAe;IAA5B;QACU,aAAQ,GAAG,IAAI,GAAG,EAA0B,CAAC;IAYvD,CAAC;IAXC,cAAc,CAAC,MAA4B;QACzC,IAAI,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE;YACrC,MAAM,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;YAClD,OAAO,OAAO,CAAC,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;SACrC;QACD,MAAM,IAAI,KAAK,CAAC,YAAY,MAAM,CAAC,OAAO,aAAa,CAAC,CAAC;IAC3D,CAAC;IAED,eAAe,CAAC,SAAiB,EAAE,OAAuB;QACxD,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;IACxC,CAAC;CACF;AAED,MAAM,CAAC,MAAM,eAAe,GAAG,IAAI,eAAe,EAAE,CAAC"}
|
||||
Generated
Vendored
+60
@@ -0,0 +1,60 @@
|
||||
/// <reference types="node" />
|
||||
import { Connection } from 'vscode-languageserver';
|
||||
import { CodeActionParams, DidChangeWatchedFilesParams, DocumentFormattingParams, DocumentLinkParams, DocumentOnTypeFormattingParams, DocumentSymbolParams, FoldingRangeParams, SelectionRangeParams, TextDocumentPositionParams, CodeLensParams, DefinitionParams, PrepareRenameParams, RenameParams } from 'vscode-languageserver-protocol';
|
||||
import { CodeAction, CodeLens, CompletionList, DefinitionLink, DocumentLink, DocumentSymbol, Hover, FoldingRange, Range, SelectionRange, SymbolInformation, TextEdit, WorkspaceEdit } from 'vscode-languageserver-types';
|
||||
import { LanguageService } from '../../languageservice/yamlLanguageService';
|
||||
import { SettingsState } from '../../yamlSettings';
|
||||
import { ValidationHandler } from './validationHandlers';
|
||||
export declare class LanguageHandlers {
|
||||
private readonly connection;
|
||||
private languageService;
|
||||
private yamlSettings;
|
||||
private validationHandler;
|
||||
pendingLimitExceededWarnings: {
|
||||
[uri: string]: {
|
||||
features: {
|
||||
[name: string]: string;
|
||||
};
|
||||
timeout?: NodeJS.Timeout;
|
||||
};
|
||||
};
|
||||
constructor(connection: Connection, languageService: LanguageService, yamlSettings: SettingsState, validationHandler: ValidationHandler);
|
||||
registerHandlers(): void;
|
||||
documentLinkHandler(params: DocumentLinkParams): Promise<DocumentLink[]>;
|
||||
/**
|
||||
* Called when the code outline in an editor needs to be populated
|
||||
* Returns a list of symbols that is then shown in the code outline
|
||||
*/
|
||||
documentSymbolHandler(documentSymbolParams: DocumentSymbolParams): DocumentSymbol[] | SymbolInformation[];
|
||||
/**
|
||||
* Called when the formatter is invoked
|
||||
* Returns the formatted document content using prettier
|
||||
*/
|
||||
formatterHandler(formatParams: DocumentFormattingParams): Promise<TextEdit[]>;
|
||||
formatOnTypeHandler(params: DocumentOnTypeFormattingParams): Promise<TextEdit[] | undefined> | TextEdit[] | undefined;
|
||||
/**
|
||||
* Called when the user hovers with their mouse over a keyword
|
||||
* Returns an informational tooltip
|
||||
*/
|
||||
hoverHandler(textDocumentPositionParams: TextDocumentPositionParams): Promise<Hover>;
|
||||
/**
|
||||
* Called when auto-complete is triggered in an editor
|
||||
* Returns a list of valid completion items
|
||||
*/
|
||||
completionHandler(textDocumentPosition: TextDocumentPositionParams): Promise<CompletionList>;
|
||||
/**
|
||||
* Called when a monitored file is changed in an editor
|
||||
* Re-validates the entire document
|
||||
*/
|
||||
watchedFilesHandler(change: DidChangeWatchedFilesParams): void;
|
||||
foldingRangeHandler(params: FoldingRangeParams): Promise<FoldingRange[] | undefined> | FoldingRange[] | undefined;
|
||||
selectionRangeHandler(params: SelectionRangeParams): SelectionRange[] | undefined;
|
||||
codeActionHandler(params: CodeActionParams): CodeAction[] | undefined;
|
||||
codeLensHandler(params: CodeLensParams): PromiseLike<CodeLens[] | undefined> | CodeLens[] | undefined;
|
||||
codeLensResolveHandler(param: CodeLens): PromiseLike<CodeLens> | CodeLens;
|
||||
definitionHandler(params: DefinitionParams): DefinitionLink[];
|
||||
prepareRenameHandler(params: PrepareRenameParams): Range | null;
|
||||
renameHandler(params: RenameParams): WorkspaceEdit | null;
|
||||
private cancelLimitExceededWarnings;
|
||||
private onResultLimitExceeded;
|
||||
}
|
||||
Generated
Vendored
+214
@@ -0,0 +1,214 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Red Hat, Inc. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
import { isKubernetesAssociatedDocument } from '../../languageservice/parser/isKubernetes';
|
||||
import { ResultLimitReachedNotification } from '../../requestTypes';
|
||||
import * as path from 'path';
|
||||
export class LanguageHandlers {
|
||||
constructor(connection, languageService, yamlSettings, validationHandler) {
|
||||
this.connection = connection;
|
||||
this.languageService = languageService;
|
||||
this.yamlSettings = yamlSettings;
|
||||
this.validationHandler = validationHandler;
|
||||
this.pendingLimitExceededWarnings = {};
|
||||
}
|
||||
registerHandlers() {
|
||||
this.connection.onDocumentLinks((params) => this.documentLinkHandler(params));
|
||||
this.connection.onDocumentSymbol((documentSymbolParams) => this.documentSymbolHandler(documentSymbolParams));
|
||||
this.connection.onDocumentFormatting((formatParams) => this.formatterHandler(formatParams));
|
||||
this.connection.onHover((textDocumentPositionParams) => this.hoverHandler(textDocumentPositionParams));
|
||||
this.connection.onCompletion((textDocumentPosition) => this.completionHandler(textDocumentPosition));
|
||||
this.connection.onDidChangeWatchedFiles((change) => this.watchedFilesHandler(change));
|
||||
this.connection.onFoldingRanges((params) => this.foldingRangeHandler(params));
|
||||
this.connection.onSelectionRanges((params) => this.selectionRangeHandler(params));
|
||||
this.connection.onCodeAction((params) => this.codeActionHandler(params));
|
||||
this.connection.onDocumentOnTypeFormatting((params) => this.formatOnTypeHandler(params));
|
||||
this.connection.onCodeLens((params) => this.codeLensHandler(params));
|
||||
this.connection.onCodeLensResolve((params) => this.codeLensResolveHandler(params));
|
||||
this.connection.onDefinition((params) => this.definitionHandler(params));
|
||||
this.connection.onPrepareRename((params) => this.prepareRenameHandler(params));
|
||||
this.connection.onRenameRequest((params) => this.renameHandler(params));
|
||||
this.yamlSettings.documents.onDidChangeContent((change) => this.cancelLimitExceededWarnings(change.document.uri));
|
||||
this.yamlSettings.documents.onDidClose((event) => this.cancelLimitExceededWarnings(event.document.uri));
|
||||
}
|
||||
documentLinkHandler(params) {
|
||||
const document = this.yamlSettings.documents.get(params.textDocument.uri);
|
||||
if (!document) {
|
||||
return Promise.resolve([]);
|
||||
}
|
||||
return this.languageService.findLinks(document);
|
||||
}
|
||||
/**
|
||||
* Called when the code outline in an editor needs to be populated
|
||||
* Returns a list of symbols that is then shown in the code outline
|
||||
*/
|
||||
documentSymbolHandler(documentSymbolParams) {
|
||||
const document = this.yamlSettings.documents.get(documentSymbolParams.textDocument.uri);
|
||||
if (!document) {
|
||||
return;
|
||||
}
|
||||
const onResultLimitExceeded = this.onResultLimitExceeded(document.uri, this.yamlSettings.maxItemsComputed, 'document symbols');
|
||||
const context = { resultLimit: this.yamlSettings.maxItemsComputed, onResultLimitExceeded };
|
||||
if (this.yamlSettings.hierarchicalDocumentSymbolSupport) {
|
||||
return this.languageService.findDocumentSymbols2(document, context);
|
||||
}
|
||||
else {
|
||||
return this.languageService.findDocumentSymbols(document, context);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Called when the formatter is invoked
|
||||
* Returns the formatted document content using prettier
|
||||
*/
|
||||
formatterHandler(formatParams) {
|
||||
const document = this.yamlSettings.documents.get(formatParams.textDocument.uri);
|
||||
if (!document) {
|
||||
return;
|
||||
}
|
||||
const customFormatterSettings = {
|
||||
tabWidth: formatParams.options.tabSize,
|
||||
...this.yamlSettings.yamlFormatterSettings,
|
||||
};
|
||||
return this.languageService.doFormat(document, customFormatterSettings);
|
||||
}
|
||||
formatOnTypeHandler(params) {
|
||||
const document = this.yamlSettings.documents.get(params.textDocument.uri);
|
||||
if (!document) {
|
||||
return;
|
||||
}
|
||||
return this.languageService.doDocumentOnTypeFormatting(document, params);
|
||||
}
|
||||
/**
|
||||
* Called when the user hovers with their mouse over a keyword
|
||||
* Returns an informational tooltip
|
||||
*/
|
||||
hoverHandler(textDocumentPositionParams) {
|
||||
const document = this.yamlSettings.documents.get(textDocumentPositionParams.textDocument.uri);
|
||||
if (!document) {
|
||||
return Promise.resolve(undefined);
|
||||
}
|
||||
return this.languageService.doHover(document, textDocumentPositionParams.position);
|
||||
}
|
||||
/**
|
||||
* Called when auto-complete is triggered in an editor
|
||||
* Returns a list of valid completion items
|
||||
*/
|
||||
completionHandler(textDocumentPosition) {
|
||||
const textDocument = this.yamlSettings.documents.get(textDocumentPosition.textDocument.uri);
|
||||
const result = {
|
||||
items: [],
|
||||
isIncomplete: false,
|
||||
};
|
||||
if (!textDocument) {
|
||||
return Promise.resolve(result);
|
||||
}
|
||||
return this.languageService.doComplete(textDocument, textDocumentPosition.position, isKubernetesAssociatedDocument(textDocument, this.yamlSettings.specificValidatorPaths));
|
||||
}
|
||||
/**
|
||||
* Called when a monitored file is changed in an editor
|
||||
* Re-validates the entire document
|
||||
*/
|
||||
watchedFilesHandler(change) {
|
||||
let hasChanges = false;
|
||||
change.changes.forEach((c) => {
|
||||
if (this.languageService.resetSchema(c.uri)) {
|
||||
hasChanges = true;
|
||||
}
|
||||
});
|
||||
if (hasChanges) {
|
||||
this.yamlSettings.documents.all().forEach((document) => this.validationHandler.validate(document));
|
||||
}
|
||||
}
|
||||
foldingRangeHandler(params) {
|
||||
const textDocument = this.yamlSettings.documents.get(params.textDocument.uri);
|
||||
if (!textDocument) {
|
||||
return;
|
||||
}
|
||||
const capabilities = this.yamlSettings.capabilities.textDocument.foldingRange;
|
||||
const rangeLimit = this.yamlSettings.maxItemsComputed || capabilities.rangeLimit;
|
||||
const onRangeLimitExceeded = this.onResultLimitExceeded(textDocument.uri, rangeLimit, 'folding ranges');
|
||||
const context = {
|
||||
rangeLimit,
|
||||
onRangeLimitExceeded,
|
||||
lineFoldingOnly: capabilities.lineFoldingOnly,
|
||||
};
|
||||
return this.languageService.getFoldingRanges(textDocument, context);
|
||||
}
|
||||
selectionRangeHandler(params) {
|
||||
const textDocument = this.yamlSettings.documents.get(params.textDocument.uri);
|
||||
if (!textDocument) {
|
||||
return;
|
||||
}
|
||||
return this.languageService.getSelectionRanges(textDocument, params.positions);
|
||||
}
|
||||
codeActionHandler(params) {
|
||||
const textDocument = this.yamlSettings.documents.get(params.textDocument.uri);
|
||||
if (!textDocument) {
|
||||
return;
|
||||
}
|
||||
return this.languageService.getCodeAction(textDocument, params);
|
||||
}
|
||||
codeLensHandler(params) {
|
||||
const textDocument = this.yamlSettings.documents.get(params.textDocument.uri);
|
||||
if (!textDocument) {
|
||||
return;
|
||||
}
|
||||
return this.languageService.getCodeLens(textDocument);
|
||||
}
|
||||
codeLensResolveHandler(param) {
|
||||
return this.languageService.resolveCodeLens(param);
|
||||
}
|
||||
definitionHandler(params) {
|
||||
const textDocument = this.yamlSettings.documents.get(params.textDocument.uri);
|
||||
if (!textDocument) {
|
||||
return;
|
||||
}
|
||||
return this.languageService.doDefinition(textDocument, params);
|
||||
}
|
||||
prepareRenameHandler(params) {
|
||||
const textDocument = this.yamlSettings.documents.get(params.textDocument.uri);
|
||||
if (!textDocument) {
|
||||
return null;
|
||||
}
|
||||
return this.languageService.prepareRename(textDocument, params);
|
||||
}
|
||||
renameHandler(params) {
|
||||
const textDocument = this.yamlSettings.documents.get(params.textDocument.uri);
|
||||
if (!textDocument) {
|
||||
return null;
|
||||
}
|
||||
return this.languageService.doRename(textDocument, params);
|
||||
}
|
||||
// Adapted from:
|
||||
// https://github.com/microsoft/vscode/blob/94c9ea46838a9a619aeafb7e8afd1170c967bb55/extensions/json-language-features/server/src/jsonServer.ts#L172
|
||||
cancelLimitExceededWarnings(uri) {
|
||||
const warning = this.pendingLimitExceededWarnings[uri];
|
||||
if (warning && warning.timeout) {
|
||||
clearTimeout(warning.timeout);
|
||||
delete this.pendingLimitExceededWarnings[uri];
|
||||
}
|
||||
}
|
||||
onResultLimitExceeded(uri, resultLimit, name) {
|
||||
return () => {
|
||||
let warning = this.pendingLimitExceededWarnings[uri];
|
||||
if (warning) {
|
||||
if (!warning.timeout) {
|
||||
// already shown
|
||||
return;
|
||||
}
|
||||
warning.features[name] = name;
|
||||
warning.timeout.refresh();
|
||||
}
|
||||
else {
|
||||
warning = { features: { [name]: name } };
|
||||
warning.timeout = setTimeout(() => {
|
||||
this.connection.sendNotification(ResultLimitReachedNotification.type, `${path.basename(uri)}: For performance reasons, ${Object.keys(warning.features).join(' and ')} have been limited to ${resultLimit} items.`);
|
||||
warning.timeout = undefined;
|
||||
}, 2000);
|
||||
this.pendingLimitExceededWarnings[uri] = warning;
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=languageHandlers.js.map
|
||||
Generated
Vendored
+1
File diff suppressed because one or more lines are too long
Generated
Vendored
+29
@@ -0,0 +1,29 @@
|
||||
import { Connection } from 'vscode-languageserver';
|
||||
import { LanguageService } from '../../languageservice/yamlLanguageService';
|
||||
import { SettingsState } from '../../yamlSettings';
|
||||
import { SettingsHandler } from './settingsHandlers';
|
||||
export declare class NotificationHandlers {
|
||||
private readonly connection;
|
||||
private languageService;
|
||||
private yamlSettings;
|
||||
private settingsHandler;
|
||||
constructor(connection: Connection, languageService: LanguageService, yamlSettings: SettingsState, settingsHandler: SettingsHandler);
|
||||
registerHandlers(): void;
|
||||
/**
|
||||
* Received a notification from the client with schema associations from other extensions
|
||||
* Update the associations in the server
|
||||
*/
|
||||
private schemaAssociationNotificationHandler;
|
||||
/**
|
||||
* Received a notification from the client that it can accept custom schema requests
|
||||
* Register the custom schema provider and use it for requests of unknown scheme
|
||||
*/
|
||||
private dynamicSchemaRequestHandler;
|
||||
/**
|
||||
* Received a notification from the client that it can accept content requests
|
||||
* This means that the server sends schemas back to the client side to get resolved rather
|
||||
* than resolving them on the extension side
|
||||
*/
|
||||
private vscodeContentRequestHandler;
|
||||
private schemaSelectionRequestHandler;
|
||||
}
|
||||
Generated
Vendored
+46
@@ -0,0 +1,46 @@
|
||||
import { CustomSchemaRequest, DynamicCustomSchemaRequestRegistration, SchemaAssociationNotification, SchemaSelectionRequests, VSCodeContentRequestRegistration, } from '../../requestTypes';
|
||||
export class NotificationHandlers {
|
||||
constructor(connection, languageService, yamlSettings, settingsHandler) {
|
||||
this.connection = connection;
|
||||
this.languageService = languageService;
|
||||
this.yamlSettings = yamlSettings;
|
||||
this.settingsHandler = settingsHandler;
|
||||
}
|
||||
registerHandlers() {
|
||||
this.connection.onNotification(SchemaAssociationNotification.type, (associations) => this.schemaAssociationNotificationHandler(associations));
|
||||
this.connection.onNotification(DynamicCustomSchemaRequestRegistration.type, () => this.dynamicSchemaRequestHandler());
|
||||
this.connection.onNotification(VSCodeContentRequestRegistration.type, () => this.vscodeContentRequestHandler());
|
||||
this.connection.onNotification(SchemaSelectionRequests.type, () => this.schemaSelectionRequestHandler());
|
||||
}
|
||||
/**
|
||||
* Received a notification from the client with schema associations from other extensions
|
||||
* Update the associations in the server
|
||||
*/
|
||||
schemaAssociationNotificationHandler(associations) {
|
||||
this.yamlSettings.schemaAssociations = associations;
|
||||
this.yamlSettings.specificValidatorPaths = [];
|
||||
this.settingsHandler.pullConfiguration().catch((error) => console.log(error));
|
||||
}
|
||||
/**
|
||||
* Received a notification from the client that it can accept custom schema requests
|
||||
* Register the custom schema provider and use it for requests of unknown scheme
|
||||
*/
|
||||
dynamicSchemaRequestHandler() {
|
||||
const schemaProvider = ((resource) => {
|
||||
return this.connection.sendRequest(CustomSchemaRequest.type, resource);
|
||||
});
|
||||
this.languageService.registerCustomSchemaProvider(schemaProvider);
|
||||
}
|
||||
/**
|
||||
* Received a notification from the client that it can accept content requests
|
||||
* This means that the server sends schemas back to the client side to get resolved rather
|
||||
* than resolving them on the extension side
|
||||
*/
|
||||
vscodeContentRequestHandler() {
|
||||
this.yamlSettings.useVSCodeContentRequest = true;
|
||||
}
|
||||
schemaSelectionRequestHandler() {
|
||||
this.yamlSettings.useSchemaSelectionRequests = true;
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=notificationHandlers.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"notificationHandlers.js","sourceRoot":"","sources":["../../../../src/languageserver/handlers/notificationHandlers.ts"],"names":[],"mappings":"AAOA,OAAO,EACL,mBAAmB,EACnB,sCAAsC,EACtC,6BAA6B,EAC7B,uBAAuB,EACvB,gCAAgC,GACjC,MAAM,oBAAoB,CAAC;AAI5B,MAAM,OAAO,oBAAoB;IAK/B,YACmB,UAAsB,EACvC,eAAgC,EAChC,YAA2B,EAC3B,eAAgC;QAHf,eAAU,GAAV,UAAU,CAAY;QAKvC,IAAI,CAAC,eAAe,GAAG,eAAe,CAAC;QACvC,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;QACjC,IAAI,CAAC,eAAe,GAAG,eAAe,CAAC;IACzC,CAAC;IAEM,gBAAgB;QACrB,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,6BAA6B,CAAC,IAAI,EAAE,CAAC,YAAY,EAAE,EAAE,CAClF,IAAI,CAAC,oCAAoC,CAAC,YAAY,CAAC,CACxD,CAAC;QACF,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,sCAAsC,CAAC,IAAI,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,2BAA2B,EAAE,CAAC,CAAC;QACtH,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,gCAAgC,CAAC,IAAI,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,2BAA2B,EAAE,CAAC,CAAC;QAChH,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,uBAAuB,CAAC,IAAI,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,6BAA6B,EAAE,CAAC,CAAC;IAC3G,CAAC;IAED;;;OAGG;IACK,oCAAoC,CAAC,YAA8D;QACzG,IAAI,CAAC,YAAY,CAAC,kBAAkB,GAAG,YAAY,CAAC;QACpD,IAAI,CAAC,YAAY,CAAC,sBAAsB,GAAG,EAAE,CAAC;QAC9C,IAAI,CAAC,eAAe,CAAC,iBAAiB,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC;IAChF,CAAC;IAED;;;OAGG;IACK,2BAA2B;QACjC,MAAM,cAAc,GAAG,CAAC,CAAC,QAAQ,EAAE,EAAE;YACnC,OAAO,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,mBAAmB,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;QACzE,CAAC,CAAyB,CAAC;QAC3B,IAAI,CAAC,eAAe,CAAC,4BAA4B,CAAC,cAAc,CAAC,CAAC;IACpE,CAAC;IAED;;;;OAIG;IACK,2BAA2B;QACjC,IAAI,CAAC,YAAY,CAAC,uBAAuB,GAAG,IAAI,CAAC;IACnD,CAAC;IAEO,6BAA6B;QACnC,IAAI,CAAC,YAAY,CAAC,0BAA0B,GAAG,IAAI,CAAC;IACtD,CAAC;CACF"}
|
||||
Generated
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
import { Connection } from 'vscode-languageserver';
|
||||
import { LanguageService } from '../../languageservice/yamlLanguageService';
|
||||
export declare class RequestHandlers {
|
||||
private readonly connection;
|
||||
private languageService;
|
||||
constructor(connection: Connection, languageService: LanguageService);
|
||||
registerHandlers(): void;
|
||||
private registerSchemaModificationNotificationHandler;
|
||||
}
|
||||
Generated
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
import { MODIFICATION_ACTIONS, } from '../../languageservice/services/yamlSchemaService';
|
||||
import { SchemaModificationNotification } from '../../requestTypes';
|
||||
export class RequestHandlers {
|
||||
constructor(connection, languageService) {
|
||||
this.connection = connection;
|
||||
this.languageService = languageService;
|
||||
}
|
||||
registerHandlers() {
|
||||
this.connection.onRequest(SchemaModificationNotification.type, (modifications) => this.registerSchemaModificationNotificationHandler(modifications));
|
||||
}
|
||||
registerSchemaModificationNotificationHandler(modifications) {
|
||||
if (modifications.action === MODIFICATION_ACTIONS.add) {
|
||||
this.languageService.modifySchemaContent(modifications);
|
||||
}
|
||||
else if (modifications.action === MODIFICATION_ACTIONS.delete) {
|
||||
this.languageService.deleteSchemaContent(modifications);
|
||||
}
|
||||
else if (modifications.action === MODIFICATION_ACTIONS.deleteAll) {
|
||||
this.languageService.deleteSchemasWhole(modifications);
|
||||
}
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=requestHandlers.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"requestHandlers.js","sourceRoot":"","sources":["../../../../src/languageserver/handlers/requestHandlers.ts"],"names":[],"mappings":"AAKA,OAAO,EACL,oBAAoB,GAIrB,MAAM,kDAAkD,CAAC;AAE1D,OAAO,EAAE,8BAA8B,EAAE,MAAM,oBAAoB,CAAC;AAEpE,MAAM,OAAO,eAAe;IAE1B,YACmB,UAAsB,EACvC,eAAgC;QADf,eAAU,GAAV,UAAU,CAAY;QAGvC,IAAI,CAAC,eAAe,GAAG,eAAe,CAAC;IACzC,CAAC;IAEM,gBAAgB;QACrB,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,8BAA8B,CAAC,IAAI,EAAE,CAAC,aAAa,EAAE,EAAE,CAC/E,IAAI,CAAC,6CAA6C,CAAC,aAAa,CAAC,CAClE,CAAC;IACJ,CAAC;IAEO,6CAA6C,CACnD,aAAqE;QAErE,IAAI,aAAa,CAAC,MAAM,KAAK,oBAAoB,CAAC,GAAG,EAAE;YACrD,IAAI,CAAC,eAAe,CAAC,mBAAmB,CAAC,aAAa,CAAC,CAAC;SACzD;aAAM,IAAI,aAAa,CAAC,MAAM,KAAK,oBAAoB,CAAC,MAAM,EAAE;YAC/D,IAAI,CAAC,eAAe,CAAC,mBAAmB,CAAC,aAAa,CAAC,CAAC;SACzD;aAAM,IAAI,aAAa,CAAC,MAAM,KAAK,oBAAoB,CAAC,SAAS,EAAE;YAClE,IAAI,CAAC,eAAe,CAAC,kBAAkB,CAAC,aAAa,CAAC,CAAC;SACxD;IACH,CAAC;CACF"}
|
||||
Generated
Vendored
+13
@@ -0,0 +1,13 @@
|
||||
import { Connection } from 'vscode-languageserver/node';
|
||||
import { YAMLSchemaService } from '../../languageservice/services/yamlSchemaService';
|
||||
import { SettingsState } from '../../yamlSettings';
|
||||
import { JSONSchemaDescription, JSONSchemaDescriptionExt } from '../../requestTypes';
|
||||
export declare class JSONSchemaSelection {
|
||||
private readonly schemaService;
|
||||
private readonly yamlSettings?;
|
||||
private readonly connection?;
|
||||
constructor(schemaService: YAMLSchemaService, yamlSettings?: SettingsState, connection?: Connection);
|
||||
getSchemas(docUri: string): Promise<JSONSchemaDescription[]>;
|
||||
private getSchemasForFile;
|
||||
getAllSchemas(docUri: string): Promise<JSONSchemaDescriptionExt[]>;
|
||||
}
|
||||
Generated
Vendored
+72
@@ -0,0 +1,72 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Red Hat, Inc. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
import { yamlDocumentsCache } from '../../languageservice/parser/yaml-documents';
|
||||
import { getSchemaUrls } from '../../languageservice/utils/schemaUrls';
|
||||
import { SchemaSelectionRequests } from '../../requestTypes';
|
||||
export class JSONSchemaSelection {
|
||||
constructor(schemaService, yamlSettings, connection) {
|
||||
this.schemaService = schemaService;
|
||||
this.yamlSettings = yamlSettings;
|
||||
this.connection = connection;
|
||||
this.connection?.onRequest(SchemaSelectionRequests.getSchema, (fileUri) => {
|
||||
return this.getSchemas(fileUri);
|
||||
});
|
||||
this.connection?.onRequest(SchemaSelectionRequests.getAllSchemas, (fileUri) => {
|
||||
return this.getAllSchemas(fileUri);
|
||||
});
|
||||
}
|
||||
async getSchemas(docUri) {
|
||||
const schemas = await this.getSchemasForFile(docUri);
|
||||
return Array.from(schemas).map((val) => {
|
||||
return {
|
||||
name: val[1].title,
|
||||
uri: val[0],
|
||||
description: val[1].description,
|
||||
versions: val[1].versions,
|
||||
};
|
||||
});
|
||||
}
|
||||
async getSchemasForFile(docUri) {
|
||||
const document = this.yamlSettings?.documents.get(docUri);
|
||||
const schemas = new Map();
|
||||
if (!document) {
|
||||
return schemas;
|
||||
}
|
||||
const yamlDoc = yamlDocumentsCache.getYamlDocument(document);
|
||||
for (const currentYAMLDoc of yamlDoc.documents) {
|
||||
const schema = await this.schemaService.getSchemaForResource(document.uri, currentYAMLDoc);
|
||||
if (schema?.schema) {
|
||||
const schemaUrls = getSchemaUrls(schema?.schema);
|
||||
if (schemaUrls.size === 0) {
|
||||
continue;
|
||||
}
|
||||
for (const urlToSchema of schemaUrls) {
|
||||
schemas.set(urlToSchema[0], urlToSchema[1]);
|
||||
}
|
||||
}
|
||||
}
|
||||
return schemas;
|
||||
}
|
||||
async getAllSchemas(docUri) {
|
||||
const fileSchemas = await this.getSchemasForFile(docUri);
|
||||
const fileSchemasHandle = Array.from(fileSchemas.entries()).map((val) => {
|
||||
return {
|
||||
uri: val[0],
|
||||
fromStore: false,
|
||||
usedForCurrentFile: true,
|
||||
name: val[1].title,
|
||||
description: val[1].description,
|
||||
versions: val[1].versions,
|
||||
};
|
||||
});
|
||||
const result = [];
|
||||
let allSchemas = this.schemaService.getAllSchemas();
|
||||
allSchemas = allSchemas.filter((val) => !fileSchemas.has(val.uri));
|
||||
result.push(...fileSchemasHandle);
|
||||
result.push(...allSchemas);
|
||||
return result;
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=schemaSelectionHandlers.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"schemaSelectionHandlers.js","sourceRoot":"","sources":["../../../../src/languageserver/handlers/schemaSelectionHandlers.ts"],"names":[],"mappings":"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"}
|
||||
Generated
Vendored
+42
@@ -0,0 +1,42 @@
|
||||
import { Connection } from 'vscode-languageserver';
|
||||
import { LanguageService } from '../../languageservice/yamlLanguageService';
|
||||
import { SettingsState } from '../../yamlSettings';
|
||||
import { Telemetry } from '../../languageservice/telemetry';
|
||||
import { ValidationHandler } from './validationHandlers';
|
||||
export declare class SettingsHandler {
|
||||
private readonly connection;
|
||||
private readonly languageService;
|
||||
private readonly yamlSettings;
|
||||
private readonly validationHandler;
|
||||
private readonly telemetry;
|
||||
constructor(connection: Connection, languageService: LanguageService, yamlSettings: SettingsState, validationHandler: ValidationHandler, telemetry: Telemetry);
|
||||
registerHandlers(): Promise<void>;
|
||||
/**
|
||||
* The server pull the 'yaml', 'http.proxy', 'http.proxyStrictSSL', '[yaml]' settings sections
|
||||
*/
|
||||
pullConfiguration(): Promise<void>;
|
||||
private setConfiguration;
|
||||
/**
|
||||
* This function helps set the schema store if it hasn't already been set
|
||||
* AND the schema store setting is enabled. If the schema store setting
|
||||
* is not enabled we need to clear the schemas.
|
||||
*/
|
||||
private setSchemaStoreSettingsIfNotSet;
|
||||
/**
|
||||
* When the schema store is enabled, download and store YAML schema associations
|
||||
*/
|
||||
private getSchemaStoreMatchingSchemas;
|
||||
/**
|
||||
* Called when server settings or schema associations are changed
|
||||
* Re-creates schema associations and re-validates any open YAML files
|
||||
*/
|
||||
private updateConfiguration;
|
||||
/**
|
||||
* Stores schema associations in server settings, handling kubernetes
|
||||
* @param uri string path to schema (whether local or online)
|
||||
* @param fileMatch file pattern to apply the schema to
|
||||
* @param schema schema id
|
||||
* @param languageSettings current server settings
|
||||
*/
|
||||
private configureSchemas;
|
||||
}
|
||||
Generated
Vendored
+312
@@ -0,0 +1,312 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Red Hat, Inc. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
import { configure as configureHttpRequests, xhr } from 'request-light';
|
||||
import { DidChangeConfigurationNotification, DocumentFormattingRequest } from 'vscode-languageserver';
|
||||
import { isRelativePath, relativeToAbsolutePath } from '../../languageservice/utils/paths';
|
||||
import { checkSchemaURI, JSON_SCHEMASTORE_URL, KUBERNETES_SCHEMA_URL } from '../../languageservice/utils/schemaUrls';
|
||||
import { SchemaPriority } from '../../languageservice/yamlLanguageService';
|
||||
import { SchemaSelectionRequests } from '../../requestTypes';
|
||||
export class SettingsHandler {
|
||||
constructor(connection, languageService, yamlSettings, validationHandler, telemetry) {
|
||||
this.connection = connection;
|
||||
this.languageService = languageService;
|
||||
this.yamlSettings = yamlSettings;
|
||||
this.validationHandler = validationHandler;
|
||||
this.telemetry = telemetry;
|
||||
}
|
||||
async registerHandlers() {
|
||||
if (this.yamlSettings.hasConfigurationCapability && this.yamlSettings.clientDynamicRegisterSupport) {
|
||||
try {
|
||||
// Register for all configuration changes.
|
||||
await this.connection.client.register(DidChangeConfigurationNotification.type);
|
||||
}
|
||||
catch (err) {
|
||||
this.telemetry.sendError('yaml.settings.error', err);
|
||||
}
|
||||
}
|
||||
this.connection.onDidChangeConfiguration(() => this.pullConfiguration());
|
||||
}
|
||||
/**
|
||||
* The server pull the 'yaml', 'http.proxy', 'http.proxyStrictSSL', '[yaml]' settings sections
|
||||
*/
|
||||
async pullConfiguration() {
|
||||
const config = await this.connection.workspace.getConfiguration([
|
||||
{ section: 'yaml' },
|
||||
{ section: 'http' },
|
||||
{ section: '[yaml]', scopeUri: 'null' },
|
||||
{ section: 'editor' },
|
||||
{ section: 'files' },
|
||||
]);
|
||||
const settings = {
|
||||
yaml: config[0],
|
||||
http: {
|
||||
proxy: config[1]?.proxy ?? '',
|
||||
proxyStrictSSL: config[1]?.proxyStrictSSL ?? false,
|
||||
},
|
||||
yamlEditor: config[2],
|
||||
vscodeEditor: config[3],
|
||||
files: config[4],
|
||||
};
|
||||
await this.setConfiguration(settings);
|
||||
}
|
||||
async setConfiguration(settings) {
|
||||
configureHttpRequests(settings.http && settings.http.proxy, settings.http && settings.http.proxyStrictSSL);
|
||||
this.yamlSettings.specificValidatorPaths = [];
|
||||
if (settings.yaml) {
|
||||
if (Object.prototype.hasOwnProperty.call(settings.yaml, 'schemas')) {
|
||||
this.yamlSettings.yamlConfigurationSettings = settings.yaml.schemas;
|
||||
}
|
||||
if (Object.prototype.hasOwnProperty.call(settings.yaml, 'validate')) {
|
||||
this.yamlSettings.yamlShouldValidate = settings.yaml.validate;
|
||||
}
|
||||
if (Object.prototype.hasOwnProperty.call(settings.yaml, 'hover')) {
|
||||
this.yamlSettings.yamlShouldHover = settings.yaml.hover;
|
||||
}
|
||||
if (Object.prototype.hasOwnProperty.call(settings.yaml, 'hoverAnchor')) {
|
||||
this.yamlSettings.yamlShouldHoverAnchor = settings.yaml.hoverAnchor;
|
||||
}
|
||||
if (Object.prototype.hasOwnProperty.call(settings.yaml, 'completion')) {
|
||||
this.yamlSettings.yamlShouldCompletion = settings.yaml.completion;
|
||||
}
|
||||
this.yamlSettings.customTags = settings.yaml.customTags ? settings.yaml.customTags : [];
|
||||
this.yamlSettings.maxItemsComputed = Math.trunc(Math.max(0, Number(settings.yaml.maxItemsComputed))) || 5000;
|
||||
if (settings.yaml.schemaStore) {
|
||||
this.yamlSettings.schemaStoreEnabled = settings.yaml.schemaStore.enable;
|
||||
if (settings.yaml.schemaStore.url) {
|
||||
this.yamlSettings.schemaStoreUrl = settings.yaml.schemaStore.url;
|
||||
}
|
||||
}
|
||||
if (settings.yaml.kubernetesCRDStore) {
|
||||
this.yamlSettings.kubernetesCRDStoreEnabled = settings.yaml.kubernetesCRDStore.enable;
|
||||
if (settings.yaml.kubernetesCRDStore.url?.length !== 0) {
|
||||
this.yamlSettings.kubernetesCRDStoreUrl = settings.yaml.kubernetesCRDStore.url;
|
||||
}
|
||||
}
|
||||
if (settings.files?.associations) {
|
||||
for (const [ext, languageId] of Object.entries(settings.files.associations)) {
|
||||
if (languageId === 'yaml') {
|
||||
this.yamlSettings.fileExtensions.push(ext);
|
||||
}
|
||||
}
|
||||
}
|
||||
this.yamlSettings.yamlVersion = settings.yaml.yamlVersion ?? '1.2';
|
||||
if (settings.yaml.format) {
|
||||
this.yamlSettings.yamlFormatterSettings = {
|
||||
proseWrap: settings.yaml.format.proseWrap || 'preserve',
|
||||
printWidth: settings.yaml.format.printWidth || 80,
|
||||
};
|
||||
if (settings.yaml.format.singleQuote !== undefined) {
|
||||
this.yamlSettings.yamlFormatterSettings.singleQuote = settings.yaml.format.singleQuote;
|
||||
}
|
||||
if (settings.yaml.format.bracketSpacing !== undefined) {
|
||||
this.yamlSettings.yamlFormatterSettings.bracketSpacing = settings.yaml.format.bracketSpacing;
|
||||
}
|
||||
if (settings.yaml.format.trailingComma !== undefined) {
|
||||
this.yamlSettings.yamlFormatterSettings.trailingComma = settings.yaml.format.trailingComma;
|
||||
}
|
||||
if (settings.yaml.format.enable !== undefined) {
|
||||
this.yamlSettings.yamlFormatterSettings.enable = settings.yaml.format.enable;
|
||||
}
|
||||
}
|
||||
this.yamlSettings.disableAdditionalProperties = settings.yaml.disableAdditionalProperties;
|
||||
this.yamlSettings.disableDefaultProperties = settings.yaml.disableDefaultProperties;
|
||||
if (settings.yaml.suggest) {
|
||||
this.yamlSettings.suggest.parentSkeletonSelectedFirst = settings.yaml.suggest.parentSkeletonSelectedFirst;
|
||||
}
|
||||
this.yamlSettings.style = {
|
||||
flowMapping: settings.yaml.style?.flowMapping ?? 'allow',
|
||||
flowSequence: settings.yaml.style?.flowSequence ?? 'allow',
|
||||
};
|
||||
this.yamlSettings.keyOrdering = settings.yaml.keyOrdering ?? false;
|
||||
}
|
||||
this.yamlSettings.schemaConfigurationSettings = [];
|
||||
let tabSize = 2;
|
||||
if (settings.vscodeEditor) {
|
||||
tabSize =
|
||||
!settings.vscodeEditor['detectIndentation'] && settings.yamlEditor ? settings.yamlEditor['editor.tabSize'] : tabSize;
|
||||
}
|
||||
if (settings.yamlEditor && settings.yamlEditor['editor.tabSize']) {
|
||||
this.yamlSettings.indentation = ' '.repeat(tabSize);
|
||||
}
|
||||
for (const uri in this.yamlSettings.yamlConfigurationSettings) {
|
||||
const globPattern = this.yamlSettings.yamlConfigurationSettings[uri];
|
||||
const schemaObj = {
|
||||
fileMatch: Array.isArray(globPattern) ? globPattern : [globPattern],
|
||||
uri: checkSchemaURI(this.yamlSettings.workspaceFolders, this.yamlSettings.workspaceRoot, uri, this.telemetry),
|
||||
};
|
||||
this.yamlSettings.schemaConfigurationSettings.push(schemaObj);
|
||||
}
|
||||
await this.setSchemaStoreSettingsIfNotSet();
|
||||
this.updateConfiguration();
|
||||
if (this.yamlSettings.useSchemaSelectionRequests) {
|
||||
this.connection.sendNotification(SchemaSelectionRequests.schemaStoreInitialized, {});
|
||||
}
|
||||
// dynamically enable & disable the formatter
|
||||
if (this.yamlSettings.clientDynamicRegisterSupport) {
|
||||
const enableFormatter = settings && settings.yaml && settings.yaml.format && settings.yaml.format.enable;
|
||||
if (enableFormatter) {
|
||||
if (!this.yamlSettings.formatterRegistration) {
|
||||
this.yamlSettings.formatterRegistration = this.connection.client.register(DocumentFormattingRequest.type, {
|
||||
documentSelector: [
|
||||
{ language: 'yaml' },
|
||||
{ language: 'dockercompose' },
|
||||
{ language: 'github-actions-workflow' },
|
||||
{ language: 'yaml-textmate' },
|
||||
{ language: 'yaml-tmlanguage' },
|
||||
{ pattern: '**/*.{yaml,yml}' },
|
||||
],
|
||||
});
|
||||
}
|
||||
}
|
||||
else if (this.yamlSettings.formatterRegistration) {
|
||||
this.yamlSettings.formatterRegistration.then((r) => {
|
||||
return r.dispose();
|
||||
});
|
||||
this.yamlSettings.formatterRegistration = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
/**
|
||||
* This function helps set the schema store if it hasn't already been set
|
||||
* AND the schema store setting is enabled. If the schema store setting
|
||||
* is not enabled we need to clear the schemas.
|
||||
*/
|
||||
async setSchemaStoreSettingsIfNotSet() {
|
||||
const schemaStoreIsSet = this.yamlSettings.schemaStoreSettings.length !== 0;
|
||||
const schemaStoreUrl = this.yamlSettings.schemaStoreUrl || JSON_SCHEMASTORE_URL;
|
||||
if (this.yamlSettings.schemaStoreEnabled && !schemaStoreIsSet) {
|
||||
try {
|
||||
const schemaStore = await this.getSchemaStoreMatchingSchemas(schemaStoreUrl);
|
||||
this.yamlSettings.schemaStoreSettings = schemaStore.schemas;
|
||||
}
|
||||
catch (err) {
|
||||
// ignore
|
||||
}
|
||||
}
|
||||
else if (!this.yamlSettings.schemaStoreEnabled) {
|
||||
this.yamlSettings.schemaStoreSettings = [];
|
||||
}
|
||||
}
|
||||
/**
|
||||
* When the schema store is enabled, download and store YAML schema associations
|
||||
*/
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
async getSchemaStoreMatchingSchemas(schemaStoreUrl) {
|
||||
const response = await xhr({ url: schemaStoreUrl });
|
||||
const languageSettings = {
|
||||
schemas: [],
|
||||
};
|
||||
// Parse the schema store catalog as JSON
|
||||
const schemas = JSON.parse(response.responseText);
|
||||
for (const schemaIndex in schemas.schemas) {
|
||||
const schema = schemas.schemas[schemaIndex];
|
||||
if (schema && schema.fileMatch) {
|
||||
for (const fileMatch in schema.fileMatch) {
|
||||
const currFileMatch = schema.fileMatch[fileMatch];
|
||||
// If the schema is for files with a YAML extension, save the schema association
|
||||
if (this.yamlSettings.fileExtensions.findIndex((value) => {
|
||||
return currFileMatch.indexOf(value) > -1;
|
||||
}) > -1) {
|
||||
languageSettings.schemas.push({
|
||||
uri: schema.url,
|
||||
fileMatch: [currFileMatch],
|
||||
priority: SchemaPriority.SchemaStore,
|
||||
name: schema.name,
|
||||
description: schema.description,
|
||||
versions: schema.versions,
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return languageSettings;
|
||||
}
|
||||
/**
|
||||
* Called when server settings or schema associations are changed
|
||||
* Re-creates schema associations and re-validates any open YAML files
|
||||
*/
|
||||
updateConfiguration() {
|
||||
let languageSettings = {
|
||||
validate: this.yamlSettings.yamlShouldValidate,
|
||||
hover: this.yamlSettings.yamlShouldHover,
|
||||
hoverAnchor: this.yamlSettings.yamlShouldHoverAnchor,
|
||||
completion: this.yamlSettings.yamlShouldCompletion,
|
||||
schemas: [],
|
||||
customTags: this.yamlSettings.customTags,
|
||||
format: this.yamlSettings.yamlFormatterSettings.enable,
|
||||
indentation: this.yamlSettings.indentation,
|
||||
disableAdditionalProperties: this.yamlSettings.disableAdditionalProperties,
|
||||
disableDefaultProperties: this.yamlSettings.disableDefaultProperties,
|
||||
parentSkeletonSelectedFirst: this.yamlSettings.suggest.parentSkeletonSelectedFirst,
|
||||
flowMapping: this.yamlSettings.style?.flowMapping,
|
||||
flowSequence: this.yamlSettings.style?.flowSequence,
|
||||
yamlVersion: this.yamlSettings.yamlVersion,
|
||||
keyOrdering: this.yamlSettings.keyOrdering,
|
||||
};
|
||||
if (this.yamlSettings.schemaAssociations) {
|
||||
if (Array.isArray(this.yamlSettings.schemaAssociations)) {
|
||||
this.yamlSettings.schemaAssociations.forEach((association) => {
|
||||
languageSettings = this.configureSchemas(association.uri, association.fileMatch, association.schema, languageSettings, SchemaPriority.SchemaAssociation);
|
||||
});
|
||||
}
|
||||
else {
|
||||
for (const uri in this.yamlSettings.schemaAssociations) {
|
||||
const fileMatch = this.yamlSettings.schemaAssociations[uri];
|
||||
languageSettings = this.configureSchemas(uri, fileMatch, null, languageSettings, SchemaPriority.SchemaAssociation);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (this.yamlSettings.schemaConfigurationSettings) {
|
||||
this.yamlSettings.schemaConfigurationSettings.forEach((schema) => {
|
||||
let uri = schema.uri;
|
||||
if (!uri && schema.schema) {
|
||||
uri = schema.schema.id;
|
||||
}
|
||||
if (!uri && schema.fileMatch) {
|
||||
uri = 'vscode://schemas/custom/' + encodeURIComponent(schema.fileMatch.join('&'));
|
||||
}
|
||||
if (uri) {
|
||||
if (isRelativePath(uri)) {
|
||||
uri = relativeToAbsolutePath(this.yamlSettings.workspaceFolders, this.yamlSettings.workspaceRoot, uri);
|
||||
}
|
||||
languageSettings = this.configureSchemas(uri, schema.fileMatch, schema.schema, languageSettings, SchemaPriority.Settings);
|
||||
}
|
||||
});
|
||||
}
|
||||
if (this.yamlSettings.schemaStoreSettings) {
|
||||
languageSettings.schemas = languageSettings.schemas.concat(this.yamlSettings.schemaStoreSettings);
|
||||
}
|
||||
this.languageService.configure(languageSettings);
|
||||
// Revalidate any open text documents
|
||||
this.yamlSettings.documents.all().forEach((document) => this.validationHandler.validate(document));
|
||||
}
|
||||
/**
|
||||
* Stores schema associations in server settings, handling kubernetes
|
||||
* @param uri string path to schema (whether local or online)
|
||||
* @param fileMatch file pattern to apply the schema to
|
||||
* @param schema schema id
|
||||
* @param languageSettings current server settings
|
||||
*/
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
configureSchemas(uri, fileMatch, schema, languageSettings, priorityLevel) {
|
||||
uri = checkSchemaURI(this.yamlSettings.workspaceFolders, this.yamlSettings.workspaceRoot, uri, this.telemetry);
|
||||
if (schema === null) {
|
||||
languageSettings.schemas.push({ uri, fileMatch: fileMatch, priority: priorityLevel });
|
||||
}
|
||||
else {
|
||||
languageSettings.schemas.push({ uri, fileMatch: fileMatch, schema: schema, priority: priorityLevel });
|
||||
}
|
||||
if (fileMatch.constructor === Array && uri === KUBERNETES_SCHEMA_URL) {
|
||||
fileMatch.forEach((url) => {
|
||||
this.yamlSettings.specificValidatorPaths.push(url);
|
||||
});
|
||||
}
|
||||
else if (uri === KUBERNETES_SCHEMA_URL) {
|
||||
this.yamlSettings.specificValidatorPaths.push(fileMatch);
|
||||
}
|
||||
return languageSettings;
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=settingsHandlers.js.map
|
||||
Generated
Vendored
+1
File diff suppressed because one or more lines are too long
Generated
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
import { Connection } from 'vscode-languageserver';
|
||||
import { TextDocument } from 'vscode-languageserver-textdocument';
|
||||
import { Diagnostic } from 'vscode-languageserver-types';
|
||||
import { LanguageService } from '../../languageservice/yamlLanguageService';
|
||||
import { SettingsState } from '../../yamlSettings';
|
||||
export declare class ValidationHandler {
|
||||
private readonly connection;
|
||||
private languageService;
|
||||
private yamlSettings;
|
||||
constructor(connection: Connection, languageService: LanguageService, yamlSettings: SettingsState);
|
||||
validate(textDocument: TextDocument): void;
|
||||
private cleanPendingValidation;
|
||||
validateTextDocument(textDocument: TextDocument): Promise<Diagnostic[]>;
|
||||
}
|
||||
Generated
Vendored
+54
@@ -0,0 +1,54 @@
|
||||
import { isKubernetesAssociatedDocument } from '../../languageservice/parser/isKubernetes';
|
||||
import { removeDuplicatesObj } from '../../languageservice/utils/arrUtils';
|
||||
export class ValidationHandler {
|
||||
constructor(connection, languageService, yamlSettings) {
|
||||
this.connection = connection;
|
||||
this.languageService = languageService;
|
||||
this.yamlSettings = yamlSettings;
|
||||
this.yamlSettings.documents.onDidChangeContent((change) => {
|
||||
this.validate(change.document);
|
||||
});
|
||||
this.yamlSettings.documents.onDidClose((event) => {
|
||||
this.cleanPendingValidation(event.document);
|
||||
this.connection.sendDiagnostics({ uri: event.document.uri, diagnostics: [] });
|
||||
});
|
||||
}
|
||||
validate(textDocument) {
|
||||
this.cleanPendingValidation(textDocument);
|
||||
this.yamlSettings.pendingValidationRequests[textDocument.uri] = setTimeout(() => {
|
||||
delete this.yamlSettings.pendingValidationRequests[textDocument.uri];
|
||||
this.validateTextDocument(textDocument);
|
||||
}, this.yamlSettings.validationDelayMs);
|
||||
}
|
||||
cleanPendingValidation(textDocument) {
|
||||
const request = this.yamlSettings.pendingValidationRequests[textDocument.uri];
|
||||
if (request) {
|
||||
clearTimeout(request);
|
||||
delete this.yamlSettings.pendingValidationRequests[textDocument.uri];
|
||||
}
|
||||
}
|
||||
validateTextDocument(textDocument) {
|
||||
if (!textDocument) {
|
||||
return;
|
||||
}
|
||||
return this.languageService
|
||||
.doValidation(textDocument, isKubernetesAssociatedDocument(textDocument, this.yamlSettings.specificValidatorPaths))
|
||||
.then((diagnosticResults) => {
|
||||
const diagnostics = [];
|
||||
for (const diagnosticItem of diagnosticResults) {
|
||||
// Convert all warnings to errors
|
||||
if (diagnosticItem.severity === 2) {
|
||||
diagnosticItem.severity = 1;
|
||||
}
|
||||
diagnostics.push(diagnosticItem);
|
||||
}
|
||||
const removeDuplicatesDiagnostics = removeDuplicatesObj(diagnostics);
|
||||
this.connection.sendDiagnostics({
|
||||
uri: textDocument.uri,
|
||||
diagnostics: removeDuplicatesDiagnostics,
|
||||
});
|
||||
return removeDuplicatesDiagnostics;
|
||||
});
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=validationHandlers.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"validationHandlers.js","sourceRoot":"","sources":["../../../../src/languageserver/handlers/validationHandlers.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,8BAA8B,EAAE,MAAM,2CAA2C,CAAC;AAC3F,OAAO,EAAE,mBAAmB,EAAE,MAAM,sCAAsC,CAAC;AAI3E,MAAM,OAAO,iBAAiB;IAI5B,YACmB,UAAsB,EACvC,eAAgC,EAChC,YAA2B;QAFV,eAAU,GAAV,UAAU,CAAY;QAIvC,IAAI,CAAC,eAAe,GAAG,eAAe,CAAC;QACvC,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;QAEjC,IAAI,CAAC,YAAY,CAAC,SAAS,CAAC,kBAAkB,CAAC,CAAC,MAAM,EAAE,EAAE;YACxD,IAAI,CAAC,QAAQ,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QACjC,CAAC,CAAC,CAAC;QACH,IAAI,CAAC,YAAY,CAAC,SAAS,CAAC,UAAU,CAAC,CAAC,KAAK,EAAE,EAAE;YAC/C,IAAI,CAAC,sBAAsB,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;YAC5C,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,KAAK,CAAC,QAAQ,CAAC,GAAG,EAAE,WAAW,EAAE,EAAE,EAAE,CAAC,CAAC;QAChF,CAAC,CAAC,CAAC;IACL,CAAC;IAED,QAAQ,CAAC,YAA0B;QACjC,IAAI,CAAC,sBAAsB,CAAC,YAAY,CAAC,CAAC;QAC1C,IAAI,CAAC,YAAY,CAAC,yBAAyB,CAAC,YAAY,CAAC,GAAG,CAAC,GAAG,UAAU,CAAC,GAAG,EAAE;YAC9E,OAAO,IAAI,CAAC,YAAY,CAAC,yBAAyB,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC;YACrE,IAAI,CAAC,oBAAoB,CAAC,YAAY,CAAC,CAAC;QAC1C,CAAC,EAAE,IAAI,CAAC,YAAY,CAAC,iBAAiB,CAAC,CAAC;IAC1C,CAAC;IAEO,sBAAsB,CAAC,YAA0B;QACvD,MAAM,OAAO,GAAG,IAAI,CAAC,YAAY,CAAC,yBAAyB,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC;QAE9E,IAAI,OAAO,EAAE;YACX,YAAY,CAAC,OAAO,CAAC,CAAC;YACtB,OAAO,IAAI,CAAC,YAAY,CAAC,yBAAyB,CAAC,YAAY,CAAC,GAAG,CAAC,CAAC;SACtE;IACH,CAAC;IAED,oBAAoB,CAAC,YAA0B;QAC7C,IAAI,CAAC,YAAY,EAAE;YACjB,OAAO;SACR;QAED,OAAO,IAAI,CAAC,eAAe;aACxB,YAAY,CAAC,YAAY,EAAE,8BAA8B,CAAC,YAAY,EAAE,IAAI,CAAC,YAAY,CAAC,sBAAsB,CAAC,CAAC;aAClH,IAAI,CAAC,CAAC,iBAAiB,EAAE,EAAE;YAC1B,MAAM,WAAW,GAAiB,EAAE,CAAC;YACrC,KAAK,MAAM,cAAc,IAAI,iBAAiB,EAAE;gBAC9C,iCAAiC;gBACjC,IAAI,cAAc,CAAC,QAAQ,KAAK,CAAC,EAAE;oBACjC,cAAc,CAAC,QAAQ,GAAG,CAAC,CAAC;iBAC7B;gBACD,WAAW,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;aAClC;YAED,MAAM,2BAA2B,GAAG,mBAAmB,CAAC,WAAW,CAAC,CAAC;YACrE,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC;gBAC9B,GAAG,EAAE,YAAY,CAAC,GAAG;gBACrB,WAAW,EAAE,2BAA2B;aACzC,CAAC,CAAC;YACH,OAAO,2BAA2B,CAAC;QACrC,CAAC,CAAC,CAAC;IACP,CAAC;CACF"}
|
||||
Generated
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
import { Connection } from 'vscode-languageserver';
|
||||
import { CommandExecutor } from '../commandExecutor';
|
||||
export declare class WorkspaceHandlers {
|
||||
private readonly connection;
|
||||
private readonly commandExecutor;
|
||||
constructor(connection: Connection, commandExecutor: CommandExecutor);
|
||||
registerHandlers(): void;
|
||||
private executeCommand;
|
||||
}
|
||||
Generated
Vendored
+17
@@ -0,0 +1,17 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Red Hat, Inc. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
export class WorkspaceHandlers {
|
||||
constructor(connection, commandExecutor) {
|
||||
this.connection = connection;
|
||||
this.commandExecutor = commandExecutor;
|
||||
}
|
||||
registerHandlers() {
|
||||
this.connection.onExecuteCommand((params) => this.executeCommand(params));
|
||||
}
|
||||
executeCommand(params) {
|
||||
return this.commandExecutor.executeCommand(params);
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=workspaceHandlers.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"workspaceHandlers.js","sourceRoot":"","sources":["../../../../src/languageserver/handlers/workspaceHandlers.ts"],"names":[],"mappings":"AAAA;;;gGAGgG;AAKhG,MAAM,OAAO,iBAAiB;IAC5B,YACmB,UAAsB,EACtB,eAAgC;QADhC,eAAU,GAAV,UAAU,CAAY;QACtB,oBAAe,GAAf,eAAe,CAAiB;IAChD,CAAC;IAEJ,gBAAgB;QACd,IAAI,CAAC,UAAU,CAAC,gBAAgB,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC;IAC5E,CAAC;IAEO,cAAc,CAAC,MAA4B;QACjD,OAAO,IAAI,CAAC,eAAe,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC;IACrD,CAAC;CACF"}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
import { Connection } from 'vscode-languageserver';
|
||||
import { TelemetryEvent, Telemetry } from '../languageservice/telemetry';
|
||||
export declare class TelemetryImpl implements Telemetry {
|
||||
private readonly connection;
|
||||
constructor(connection: Connection);
|
||||
send(event: TelemetryEvent): void;
|
||||
sendError(name: string, error: unknown): void;
|
||||
sendTrack(name: string, properties: unknown): void;
|
||||
}
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Red Hat, Inc. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
import { convertErrorToTelemetryMsg } from '../languageservice/utils/objects';
|
||||
export class TelemetryImpl {
|
||||
constructor(connection) {
|
||||
this.connection = connection;
|
||||
}
|
||||
send(event) {
|
||||
this.connection.telemetry.logEvent(event);
|
||||
}
|
||||
sendError(name, error) {
|
||||
this.send({ name, type: 'track', properties: { error: convertErrorToTelemetryMsg(error) } });
|
||||
}
|
||||
sendTrack(name, properties) {
|
||||
this.send({ name, type: 'track', properties: properties });
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=telemetry.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"telemetry.js","sourceRoot":"","sources":["../../../src/languageserver/telemetry.ts"],"names":[],"mappings":"AAAA;;;gGAGgG;AAIhG,OAAO,EAAE,0BAA0B,EAAE,MAAM,kCAAkC,CAAC;AAE9E,MAAM,OAAO,aAAa;IACxB,YAA6B,UAAsB;QAAtB,eAAU,GAAV,UAAU,CAAY;IAAG,CAAC;IAEvD,IAAI,CAAC,KAAqB;QACxB,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;IAC5C,CAAC;IAED,SAAS,CAAC,IAAY,EAAE,KAAc;QACpC,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,UAAU,EAAE,EAAE,KAAK,EAAE,0BAA0B,CAAC,KAAK,CAAC,EAAE,EAAE,CAAC,CAAC;IAC/F,CAAC;IAED,SAAS,CAAC,IAAY,EAAE,UAAmB;QACzC,IAAI,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC,CAAC;IAC7D,CAAC;CACF"}
|
||||
+49
@@ -0,0 +1,49 @@
|
||||
import { Node, Pair } from 'yaml';
|
||||
export type YamlNode = Node | Pair;
|
||||
export type ASTNode = ObjectASTNode | PropertyASTNode | ArrayASTNode | StringASTNode | NumberASTNode | BooleanASTNode | NullASTNode;
|
||||
export interface BaseASTNode {
|
||||
readonly type: 'object' | 'array' | 'property' | 'string' | 'number' | 'boolean' | 'null';
|
||||
readonly parent?: ASTNode;
|
||||
readonly offset: number;
|
||||
readonly length: number;
|
||||
readonly children?: ASTNode[];
|
||||
readonly value?: string | boolean | number | null;
|
||||
readonly internalNode: YamlNode;
|
||||
location: string;
|
||||
getNodeFromOffsetEndInclusive(offset: number): ASTNode;
|
||||
}
|
||||
export interface ObjectASTNode extends BaseASTNode {
|
||||
readonly type: 'object';
|
||||
readonly properties: PropertyASTNode[];
|
||||
readonly children: ASTNode[];
|
||||
}
|
||||
export interface PropertyASTNode extends BaseASTNode {
|
||||
readonly type: 'property';
|
||||
readonly keyNode: StringASTNode;
|
||||
readonly valueNode?: ASTNode;
|
||||
readonly colonOffset?: number;
|
||||
readonly children: ASTNode[];
|
||||
}
|
||||
export interface ArrayASTNode extends BaseASTNode {
|
||||
readonly type: 'array';
|
||||
readonly items: ASTNode[];
|
||||
readonly children: ASTNode[];
|
||||
}
|
||||
export interface StringASTNode extends BaseASTNode {
|
||||
readonly type: 'string';
|
||||
readonly value: string;
|
||||
}
|
||||
export interface NumberASTNode extends BaseASTNode {
|
||||
readonly type: 'number';
|
||||
readonly value: number;
|
||||
readonly isInteger: boolean;
|
||||
}
|
||||
export interface BooleanASTNode extends BaseASTNode {
|
||||
readonly type: 'boolean';
|
||||
readonly value: boolean;
|
||||
readonly source: string;
|
||||
}
|
||||
export interface NullASTNode extends BaseASTNode {
|
||||
readonly type: 'null';
|
||||
readonly value: null;
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
export {};
|
||||
//# sourceMappingURL=jsonASTTypes.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"jsonASTTypes.js","sourceRoot":"","sources":["../../../src/languageservice/jsonASTTypes.ts"],"names":[],"mappings":"AAAA;;;gGAGgG"}
|
||||
+103
@@ -0,0 +1,103 @@
|
||||
import { CompletionItemKind } from 'vscode-json-languageservice';
|
||||
import { SchemaVersions } from './yamlTypes';
|
||||
export type JSONSchemaRef = JSONSchema | boolean;
|
||||
export declare enum SchemaDialect {
|
||||
draft04 = "draft04",
|
||||
draft07 = "draft07",
|
||||
draft2019 = "draft2019-09",
|
||||
draft2020 = "draft2020-12"
|
||||
}
|
||||
export interface JSONSchema {
|
||||
_dialect?: SchemaDialect;
|
||||
_baseUrl?: string;
|
||||
_$ref?: string;
|
||||
id?: string;
|
||||
$id?: string;
|
||||
$schema?: string;
|
||||
url?: string;
|
||||
type?: string | string[];
|
||||
title?: string;
|
||||
closestTitle?: string;
|
||||
versions?: SchemaVersions;
|
||||
default?: any;
|
||||
definitions?: {
|
||||
[name: string]: JSONSchema;
|
||||
};
|
||||
description?: string;
|
||||
properties?: JSONSchemaMap;
|
||||
patternProperties?: JSONSchemaMap;
|
||||
additionalProperties?: JSONSchemaRef;
|
||||
minProperties?: number;
|
||||
maxProperties?: number;
|
||||
dependencies?: JSONSchemaMap | {
|
||||
[prop: string]: string[];
|
||||
};
|
||||
items?: JSONSchemaRef | JSONSchemaRef[];
|
||||
minItems?: number;
|
||||
maxItems?: number;
|
||||
uniqueItems?: boolean;
|
||||
additionalItems?: JSONSchemaRef;
|
||||
pattern?: string;
|
||||
minLength?: number;
|
||||
maxLength?: number;
|
||||
minimum?: number;
|
||||
maximum?: number;
|
||||
exclusiveMinimum?: boolean | number;
|
||||
exclusiveMaximum?: boolean | number;
|
||||
multipleOf?: number;
|
||||
required?: string[];
|
||||
$ref?: string;
|
||||
anyOf?: JSONSchemaRef[];
|
||||
allOf?: JSONSchemaRef[];
|
||||
oneOf?: JSONSchemaRef[];
|
||||
not?: JSONSchemaRef;
|
||||
enum?: any[];
|
||||
format?: string;
|
||||
const?: any;
|
||||
contains?: JSONSchemaRef;
|
||||
propertyNames?: JSONSchemaRef;
|
||||
examples?: any[];
|
||||
$comment?: string;
|
||||
if?: JSONSchemaRef;
|
||||
then?: JSONSchemaRef;
|
||||
else?: JSONSchemaRef;
|
||||
$anchor?: string;
|
||||
$defs?: {
|
||||
[name: string]: JSONSchema;
|
||||
};
|
||||
$recursiveAnchor?: boolean;
|
||||
$recursiveRef?: string;
|
||||
$vocabulary?: Record<string, boolean>;
|
||||
dependentSchemas?: JSONSchemaMap;
|
||||
unevaluatedItems?: JSONSchemaRef;
|
||||
unevaluatedProperties?: JSONSchemaRef;
|
||||
dependentRequired?: Record<string, string[]>;
|
||||
minContains?: number;
|
||||
maxContains?: number;
|
||||
prefixItems?: JSONSchemaRef[];
|
||||
$dynamicRef?: string;
|
||||
$dynamicAnchor?: string;
|
||||
defaultSnippets?: {
|
||||
label?: string;
|
||||
description?: string;
|
||||
markdownDescription?: string;
|
||||
type?: string;
|
||||
suggestionKind?: CompletionItemKind;
|
||||
sortText?: string;
|
||||
body?: any;
|
||||
bodyText?: string;
|
||||
}[];
|
||||
errorMessage?: string;
|
||||
patternErrorMessage?: string;
|
||||
deprecationMessage?: string;
|
||||
enumDescriptions?: string[];
|
||||
markdownEnumDescriptions?: string[];
|
||||
markdownDescription?: string;
|
||||
doNotSuggest?: boolean;
|
||||
allowComments?: boolean;
|
||||
schemaSequence?: JSONSchema[];
|
||||
filePatternAssociation?: string;
|
||||
}
|
||||
export interface JSONSchemaMap {
|
||||
[name: string]: JSONSchemaRef;
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
export var SchemaDialect;
|
||||
(function (SchemaDialect) {
|
||||
SchemaDialect["draft04"] = "draft04";
|
||||
SchemaDialect["draft07"] = "draft07";
|
||||
SchemaDialect["draft2019"] = "draft2019-09";
|
||||
SchemaDialect["draft2020"] = "draft2020-12";
|
||||
})(SchemaDialect || (SchemaDialect = {}));
|
||||
//# sourceMappingURL=jsonSchema.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"jsonSchema.js","sourceRoot":"","sources":["../../../src/languageservice/jsonSchema.ts"],"names":[],"mappings":"AAAA;;;gGAGgG;AAMhG,MAAM,CAAN,IAAY,aAKX;AALD,WAAY,aAAa;IACvB,oCAAmB,CAAA;IACnB,oCAAmB,CAAA;IACnB,2CAA0B,CAAA;IAC1B,2CAA0B,CAAA;AAC5B,CAAC,EALW,aAAa,KAAb,aAAa,QAKxB"}
|
||||
Generated
Vendored
+11
@@ -0,0 +1,11 @@
|
||||
import { Alias, Document, LineCounter } from 'yaml';
|
||||
import { ASTNode, YamlNode } from '../jsonASTTypes';
|
||||
type NodeRange = [number, number, number];
|
||||
export declare const aliasDepth: {
|
||||
maxRefCount: number;
|
||||
currentRefDepth: number;
|
||||
aliasResolutionCache: Map<Alias, ASTNode>;
|
||||
};
|
||||
export declare function convertAST(parent: ASTNode, node: YamlNode, doc: Document, lineCounter: LineCounter): ASTNode | undefined;
|
||||
export declare function toOffsetLength(range: NodeRange): [number, number];
|
||||
export {};
|
||||
Generated
Vendored
+176
@@ -0,0 +1,176 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Red Hat, Inc. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
import { isScalar, isMap, isPair, isSeq, isNode, isAlias, } from 'yaml';
|
||||
import { NullASTNodeImpl, PropertyASTNodeImpl, StringASTNodeImpl, ObjectASTNodeImpl, NumberASTNodeImpl, ArrayASTNodeImpl, BooleanASTNodeImpl, } from './jsonDocument';
|
||||
// Exported for tests
|
||||
export const aliasDepth = {
|
||||
maxRefCount: 1000,
|
||||
currentRefDepth: 0,
|
||||
aliasResolutionCache: new Map(),
|
||||
};
|
||||
export function convertAST(parent, node, doc, lineCounter) {
|
||||
if (!parent) {
|
||||
// first invocation
|
||||
aliasDepth.currentRefDepth = 0;
|
||||
aliasDepth.aliasResolutionCache = new Map();
|
||||
}
|
||||
if (!node) {
|
||||
return null;
|
||||
}
|
||||
if (isMap(node)) {
|
||||
return convertMap(node, parent, doc, lineCounter);
|
||||
}
|
||||
if (isPair(node)) {
|
||||
return convertPair(node, parent, doc, lineCounter);
|
||||
}
|
||||
if (isSeq(node)) {
|
||||
return convertSeq(node, parent, doc, lineCounter);
|
||||
}
|
||||
if (isScalar(node)) {
|
||||
return convertScalar(node, parent);
|
||||
}
|
||||
if (isAlias(node) && aliasDepth.currentRefDepth < aliasDepth.maxRefCount) {
|
||||
return convertAlias(node, parent, doc, lineCounter);
|
||||
}
|
||||
else {
|
||||
return;
|
||||
}
|
||||
}
|
||||
function convertMap(node, parent, doc, lineCounter) {
|
||||
let range;
|
||||
if (node.flow && !node.range) {
|
||||
range = collectFlowMapRange(node);
|
||||
}
|
||||
else {
|
||||
range = node.range;
|
||||
}
|
||||
const result = new ObjectASTNodeImpl(parent, node, ...toFixedOffsetLength(range, lineCounter));
|
||||
for (const it of node.items) {
|
||||
if (isPair(it)) {
|
||||
result.properties.push(convertAST(result, it, doc, lineCounter));
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
function convertPair(node, parent, doc, lineCounter) {
|
||||
const keyNode = node.key;
|
||||
const valueNode = node.value;
|
||||
const rangeStart = keyNode.range[0];
|
||||
let rangeEnd = keyNode.range[1];
|
||||
let nodeEnd = keyNode.range[2];
|
||||
if (valueNode) {
|
||||
rangeEnd = valueNode.range[1];
|
||||
nodeEnd = valueNode.range[2];
|
||||
}
|
||||
// Pair does not return a range using the key/value ranges to fake one.
|
||||
const result = new PropertyASTNodeImpl(parent, node, ...toFixedOffsetLength([rangeStart, rangeEnd, nodeEnd], lineCounter));
|
||||
if (isAlias(keyNode)) {
|
||||
const keyAlias = new StringASTNodeImpl(parent, keyNode, ...toOffsetLength(keyNode.range));
|
||||
keyAlias.value = keyNode.source;
|
||||
result.keyNode = keyAlias;
|
||||
}
|
||||
else {
|
||||
result.keyNode = convertAST(result, keyNode, doc, lineCounter);
|
||||
}
|
||||
result.valueNode = convertAST(result, valueNode, doc, lineCounter);
|
||||
return result;
|
||||
}
|
||||
function convertSeq(node, parent, doc, lineCounter) {
|
||||
const result = new ArrayASTNodeImpl(parent, node, ...toOffsetLength(node.range));
|
||||
for (const it of node.items) {
|
||||
if (isNode(it)) {
|
||||
const convertedNode = convertAST(result, it, doc, lineCounter);
|
||||
// due to recursion protection, convertAST may return undefined
|
||||
if (convertedNode) {
|
||||
result.children.push(convertedNode);
|
||||
}
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
function convertScalar(node, parent) {
|
||||
if (node.value === null) {
|
||||
return new NullASTNodeImpl(parent, node, ...toOffsetLength(node.range));
|
||||
}
|
||||
switch (typeof node.value) {
|
||||
case 'string': {
|
||||
const result = new StringASTNodeImpl(parent, node, ...toOffsetLength(node.range));
|
||||
result.value = node.value;
|
||||
return result;
|
||||
}
|
||||
case 'boolean':
|
||||
return new BooleanASTNodeImpl(parent, node, node.value, node.source, ...toOffsetLength(node.range));
|
||||
case 'number': {
|
||||
const result = new NumberASTNodeImpl(parent, node, ...toOffsetLength(node.range));
|
||||
result.value = node.value;
|
||||
result.isInteger = Number.isInteger(result.value);
|
||||
return result;
|
||||
}
|
||||
default: {
|
||||
// fail safe converting, we need to return some node anyway
|
||||
const result = new StringASTNodeImpl(parent, node, ...toOffsetLength(node.range));
|
||||
result.value = node.source;
|
||||
return result;
|
||||
}
|
||||
}
|
||||
}
|
||||
function convertAlias(node, parent, doc, lineCounter) {
|
||||
if (aliasDepth.aliasResolutionCache.has(node)) {
|
||||
return aliasDepth.aliasResolutionCache.get(node);
|
||||
}
|
||||
aliasDepth.currentRefDepth++;
|
||||
const resolvedNode = node.resolve(doc);
|
||||
let ans;
|
||||
if (resolvedNode) {
|
||||
ans = convertAST(parent, resolvedNode, doc, lineCounter);
|
||||
}
|
||||
else {
|
||||
const resultNode = new StringASTNodeImpl(parent, node, ...toOffsetLength(node.range));
|
||||
resultNode.value = node.source;
|
||||
ans = resultNode;
|
||||
}
|
||||
aliasDepth.currentRefDepth--;
|
||||
aliasDepth.aliasResolutionCache.set(node, ans);
|
||||
return ans;
|
||||
}
|
||||
export function toOffsetLength(range) {
|
||||
return [range[0], range[1] - range[0]];
|
||||
}
|
||||
/**
|
||||
* Convert offsets to offset+length with fix length to not include '\n' character in some cases
|
||||
* @param range the yaml ast range
|
||||
* @param lineCounter the line counter
|
||||
* @returns the offset and length
|
||||
*/
|
||||
function toFixedOffsetLength(range, lineCounter) {
|
||||
const start = lineCounter.linePos(range[0]);
|
||||
const end = lineCounter.linePos(range[1]);
|
||||
const result = [range[0], range[1] - range[0]];
|
||||
// -1 as range may include '\n'
|
||||
if (start.line !== end.line && (lineCounter.lineStarts.length !== end.line || end.col === 1)) {
|
||||
result[1]--;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
function collectFlowMapRange(node) {
|
||||
let start = Number.MAX_SAFE_INTEGER;
|
||||
let end = 0;
|
||||
for (const it of node.items) {
|
||||
if (isPair(it)) {
|
||||
if (isNode(it.key)) {
|
||||
if (it.key.range && it.key.range[0] <= start) {
|
||||
start = it.key.range[0];
|
||||
}
|
||||
}
|
||||
if (isNode(it.value)) {
|
||||
if (it.value.range && it.value.range[2] >= end) {
|
||||
end = it.value.range[2];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return [start, end, end];
|
||||
}
|
||||
//# sourceMappingURL=ast-converter.js.map
|
||||
Generated
Vendored
+1
File diff suppressed because one or more lines are too long
Generated
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
import type { ASTNode } from '../jsonASTTypes';
|
||||
export declare function getNodeValue(node: ASTNode): any;
|
||||
export declare function contains(node: ASTNode, offset: number, includeRightBound?: boolean): boolean;
|
||||
export declare function findNodeAtOffset(node: ASTNode, offset: number, includeRightBound: boolean): ASTNode;
|
||||
+48
@@ -0,0 +1,48 @@
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
export function getNodeValue(node) {
|
||||
switch (node.type) {
|
||||
case 'array':
|
||||
return node.children.map(getNodeValue);
|
||||
case 'object': {
|
||||
const obj = Object.create(null);
|
||||
for (let _i = 0, _a = node.children; _i < _a.length; _i++) {
|
||||
const prop = _a[_i];
|
||||
const valueNode = prop.children[1];
|
||||
if (valueNode) {
|
||||
obj[prop.children[0].value] = getNodeValue(valueNode);
|
||||
}
|
||||
}
|
||||
return obj;
|
||||
}
|
||||
case 'null':
|
||||
case 'string':
|
||||
case 'number':
|
||||
return node.value;
|
||||
case 'boolean':
|
||||
return node.source;
|
||||
default:
|
||||
return undefined;
|
||||
}
|
||||
}
|
||||
export function contains(node, offset, includeRightBound = false) {
|
||||
return ((offset >= node.offset && offset <= node.offset + node.length) || (includeRightBound && offset === node.offset + node.length));
|
||||
}
|
||||
export function findNodeAtOffset(node, offset, includeRightBound) {
|
||||
if (includeRightBound === void 0) {
|
||||
includeRightBound = false;
|
||||
}
|
||||
if (contains(node, offset, includeRightBound)) {
|
||||
const children = node.children;
|
||||
if (Array.isArray(children)) {
|
||||
for (let i = 0; i < children.length && children[i].offset <= offset; i++) {
|
||||
const item = findNodeAtOffset(children[i], offset, includeRightBound);
|
||||
if (item) {
|
||||
return item;
|
||||
}
|
||||
}
|
||||
}
|
||||
return node;
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
//# sourceMappingURL=astNodeUtils.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"astNodeUtils.js","sourceRoot":"","sources":["../../../../src/languageservice/parser/astNodeUtils.ts"],"names":[],"mappings":"AAEA,8DAA8D;AAC9D,MAAM,UAAU,YAAY,CAAC,IAAa;IACxC,QAAQ,IAAI,CAAC,IAAI,EAAE;QACjB,KAAK,OAAO;YACV,OAAO,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;QACzC,KAAK,QAAQ,CAAC,CAAC;YACb,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;YAChC,KAAK,IAAI,EAAE,GAAG,CAAC,EAAE,EAAE,GAAG,IAAI,CAAC,QAAQ,EAAE,EAAE,GAAG,EAAE,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE;gBACzD,MAAM,IAAI,GAAG,EAAE,CAAC,EAAE,CAAC,CAAC;gBACpB,MAAM,SAAS,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;gBACnC,IAAI,SAAS,EAAE;oBACb,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,KAAe,CAAC,GAAG,YAAY,CAAC,SAAS,CAAC,CAAC;iBACjE;aACF;YACD,OAAO,GAAG,CAAC;SACZ;QACD,KAAK,MAAM,CAAC;QACZ,KAAK,QAAQ,CAAC;QACd,KAAK,QAAQ;YACX,OAAO,IAAI,CAAC,KAAK,CAAC;QACpB,KAAK,SAAS;YACZ,OAAO,IAAI,CAAC,MAAM,CAAC;QACrB;YACE,OAAO,SAAS,CAAC;KACpB;AACH,CAAC;AAED,MAAM,UAAU,QAAQ,CAAC,IAAa,EAAE,MAAc,EAAE,iBAAiB,GAAG,KAAK;IAC/E,OAAO,CACL,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,IAAI,MAAM,IAAI,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,iBAAiB,IAAI,MAAM,KAAK,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC,CAC9H,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,gBAAgB,CAAC,IAAa,EAAE,MAAc,EAAE,iBAA0B;IACxF,IAAI,iBAAiB,KAAK,KAAK,CAAC,EAAE;QAChC,iBAAiB,GAAG,KAAK,CAAC;KAC3B;IACD,IAAI,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,iBAAiB,CAAC,EAAE;QAC7C,MAAM,QAAQ,GAAG,IAAI,CAAC,QAAQ,CAAC;QAC/B,IAAI,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE;YAC3B,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,MAAM,IAAI,QAAQ,CAAC,CAAC,CAAC,CAAC,MAAM,IAAI,MAAM,EAAE,CAAC,EAAE,EAAE;gBACxE,MAAM,IAAI,GAAG,gBAAgB,CAAC,QAAQ,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,iBAAiB,CAAC,CAAC;gBACtE,IAAI,IAAI,EAAE;oBACR,OAAO,IAAI,CAAC;iBACb;aACF;SACF;QACD,OAAO,IAAI,CAAC;KACb;IACD,OAAO,SAAS,CAAC;AACnB,CAAC"}
|
||||
Generated
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
import { Tags } from 'yaml';
|
||||
/**
|
||||
* Converts the tags from settings and adds known tags such as !include
|
||||
* and returns Tags that can be used by the parser.
|
||||
* @param customTags Tags for parser
|
||||
*/
|
||||
export declare function getCustomTags(customTags: string[]): Tags;
|
||||
Generated
Vendored
+58
@@ -0,0 +1,58 @@
|
||||
import { isSeq, isMap } from 'yaml';
|
||||
import { filterInvalidCustomTags } from '../utils/arrUtils';
|
||||
class CommonTagImpl {
|
||||
constructor(tag, type) {
|
||||
this.tag = tag;
|
||||
this.type = type;
|
||||
}
|
||||
get collection() {
|
||||
if (this.type === 'mapping') {
|
||||
return 'map';
|
||||
}
|
||||
if (this.type === 'sequence') {
|
||||
return 'seq';
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
resolve(value) {
|
||||
if (isMap(value) && this.type === 'mapping') {
|
||||
return value;
|
||||
}
|
||||
if (isSeq(value) && this.type === 'sequence') {
|
||||
return value;
|
||||
}
|
||||
if (typeof value === 'string' && this.type === 'scalar') {
|
||||
return value;
|
||||
}
|
||||
}
|
||||
}
|
||||
class IncludeTag {
|
||||
constructor() {
|
||||
this.tag = '!include';
|
||||
this.type = 'scalar';
|
||||
}
|
||||
resolve(value, onError) {
|
||||
if (value && value.length > 0 && value.trim()) {
|
||||
return value;
|
||||
}
|
||||
onError('!include without value');
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Converts the tags from settings and adds known tags such as !include
|
||||
* and returns Tags that can be used by the parser.
|
||||
* @param customTags Tags for parser
|
||||
*/
|
||||
export function getCustomTags(customTags) {
|
||||
const tags = [];
|
||||
const filteredTags = filterInvalidCustomTags(customTags);
|
||||
for (const tag of filteredTags) {
|
||||
const typeInfo = tag.split(' ');
|
||||
const tagName = typeInfo[0];
|
||||
const tagType = (typeInfo[1] && typeInfo[1].toLowerCase()) || 'scalar';
|
||||
tags.push(new CommonTagImpl(tagName, tagType));
|
||||
}
|
||||
tags.push(new IncludeTag());
|
||||
return tags;
|
||||
}
|
||||
//# sourceMappingURL=custom-tag-provider.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"custom-tag-provider.js","sourceRoot":"","sources":["../../../../src/languageservice/parser/custom-tag-provider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,EAAE,KAAK,EAAoB,MAAM,MAAM,CAAC;AAC5D,OAAO,EAAE,uBAAuB,EAAE,MAAM,mBAAmB,CAAC;AAE5D,MAAM,aAAa;IAIjB,YAAY,GAAW,EAAE,IAAY;QACnC,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;QACf,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;IACnB,CAAC;IACD,IAAI,UAAU;QACZ,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,EAAE;YAC3B,OAAO,KAAK,CAAC;SACd;QACD,IAAI,IAAI,CAAC,IAAI,KAAK,UAAU,EAAE;YAC5B,OAAO,KAAK,CAAC;SACd;QACD,OAAO,SAAS,CAAC;IACnB,CAAC;IAED,OAAO,CAAC,KAAiC;QACvC,IAAI,KAAK,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,EAAE;YAC3C,OAAO,KAAK,CAAC;SACd;QACD,IAAI,KAAK,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,IAAI,KAAK,UAAU,EAAE;YAC5C,OAAO,KAAK,CAAC;SACd;QACD,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,IAAI,CAAC,IAAI,KAAK,QAAQ,EAAE;YACvD,OAAO,KAAK,CAAC;SACd;IACH,CAAC;CACF;AAED,MAAM,UAAU;IAAhB;QACkB,QAAG,GAAG,UAAU,CAAC;QACjB,SAAI,GAAG,QAAQ,CAAC;IAUlC,CAAC;IANC,OAAO,CAAC,KAAa,EAAE,OAAkC;QACvD,IAAI,KAAK,IAAI,KAAK,CAAC,MAAM,GAAG,CAAC,IAAI,KAAK,CAAC,IAAI,EAAE,EAAE;YAC7C,OAAO,KAAK,CAAC;SACd;QACD,OAAO,CAAC,wBAAwB,CAAC,CAAC;IACpC,CAAC;CACF;AAED;;;;GAIG;AACH,MAAM,UAAU,aAAa,CAAC,UAAoB;IAChD,MAAM,IAAI,GAAG,EAAE,CAAC;IAChB,MAAM,YAAY,GAAG,uBAAuB,CAAC,UAAU,CAAC,CAAC;IACzD,KAAK,MAAM,GAAG,IAAI,YAAY,EAAE;QAC9B,MAAM,QAAQ,GAAG,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QAChC,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,CAAC,CAAC;QAC5B,MAAM,OAAO,GAAG,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,QAAQ,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,CAAC,IAAI,QAAQ,CAAC;QACvE,IAAI,CAAC,IAAI,CAAC,IAAI,aAAa,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC;KAChD;IACD,IAAI,CAAC,IAAI,CAAC,IAAI,UAAU,EAAE,CAAC,CAAC;IAC5B,OAAO,IAAI,CAAC;AACd,CAAC"}
|
||||
Generated
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
import { TextDocument } from 'vscode-languageserver-textdocument';
|
||||
import * as Parser from './jsonDocument';
|
||||
export declare function setKubernetesParserOption(jsonDocuments: Parser.JSONDocument[], option: boolean): void;
|
||||
export declare function isKubernetesAssociatedDocument(textDocument: TextDocument, paths: string[]): boolean;
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
import { FilePatternAssociation } from '../utils/filePatternAssociation';
|
||||
export function setKubernetesParserOption(jsonDocuments, option) {
|
||||
for (const jsonDoc of jsonDocuments) {
|
||||
jsonDoc.isKubernetes = option;
|
||||
}
|
||||
}
|
||||
export function isKubernetesAssociatedDocument(textDocument, paths) {
|
||||
for (const path in paths) {
|
||||
const globPath = paths[path];
|
||||
const fpa = new FilePatternAssociation(globPath);
|
||||
if (fpa.matchesPattern(textDocument.uri)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
//# sourceMappingURL=isKubernetes.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"isKubernetes.js","sourceRoot":"","sources":["../../../../src/languageservice/parser/isKubernetes.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,sBAAsB,EAAE,MAAM,iCAAiC,CAAC;AAGzE,MAAM,UAAU,yBAAyB,CAAC,aAAoC,EAAE,MAAe;IAC7F,KAAK,MAAM,OAAO,IAAI,aAAa,EAAE;QACnC,OAAO,CAAC,YAAY,GAAG,MAAM,CAAC;KAC/B;AACH,CAAC;AAED,MAAM,UAAU,8BAA8B,CAAC,YAA0B,EAAE,KAAe;IACxF,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE;QACxB,MAAM,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC;QAC7B,MAAM,GAAG,GAAG,IAAI,sBAAsB,CAAC,QAAQ,CAAC,CAAC;QAEjD,IAAI,GAAG,CAAC,cAAc,CAAC,YAAY,CAAC,GAAG,CAAC,EAAE;YACxC,OAAO,IAAI,CAAC;SACb;KACF;IACD,OAAO,KAAK,CAAC;AACf,CAAC"}
|
||||
Generated
Vendored
+83
@@ -0,0 +1,83 @@
|
||||
import { JSONSchema } from '../jsonSchema';
|
||||
import { ASTNode, ObjectASTNode, ArrayASTNode, BooleanASTNode, NumberASTNode, StringASTNode, NullASTNode, PropertyASTNode, YamlNode } from '../jsonASTTypes';
|
||||
import { Diagnostic, Range } from 'vscode-languageserver-types';
|
||||
import { TextDocument } from 'vscode-languageserver-textdocument';
|
||||
import { Node, Pair } from 'yaml';
|
||||
import { type IApplicableSchema } from './schemaValidation/baseValidator';
|
||||
declare abstract class ASTNodeImpl {
|
||||
abstract readonly type: 'object' | 'property' | 'array' | 'number' | 'boolean' | 'null' | 'string';
|
||||
offset: number;
|
||||
length: number;
|
||||
readonly parent: ASTNode;
|
||||
location: string;
|
||||
readonly internalNode: YamlNode;
|
||||
constructor(parent: ASTNode, internalNode: YamlNode, offset: number, length?: number);
|
||||
getNodeFromOffsetEndInclusive(offset: number): ASTNode;
|
||||
get children(): ASTNode[];
|
||||
toString(): string;
|
||||
}
|
||||
export declare class NullASTNodeImpl extends ASTNodeImpl implements NullASTNode {
|
||||
type: 'null';
|
||||
value: any;
|
||||
constructor(parent: ASTNode, internalNode: Node, offset: number, length?: number);
|
||||
}
|
||||
export declare class BooleanASTNodeImpl extends ASTNodeImpl implements BooleanASTNode {
|
||||
type: 'boolean';
|
||||
value: boolean;
|
||||
source: string;
|
||||
constructor(parent: ASTNode, internalNode: Node, boolValue: boolean, boolSource: string, offset: number, length?: number);
|
||||
}
|
||||
export declare class ArrayASTNodeImpl extends ASTNodeImpl implements ArrayASTNode {
|
||||
type: 'array';
|
||||
items: ASTNode[];
|
||||
constructor(parent: ASTNode, internalNode: Node, offset: number, length?: number);
|
||||
get children(): ASTNode[];
|
||||
}
|
||||
export declare class NumberASTNodeImpl extends ASTNodeImpl implements NumberASTNode {
|
||||
type: 'number';
|
||||
isInteger: boolean;
|
||||
value: number;
|
||||
constructor(parent: ASTNode, internalNode: Node, offset: number, length?: number);
|
||||
}
|
||||
export declare class StringASTNodeImpl extends ASTNodeImpl implements StringASTNode {
|
||||
type: 'string';
|
||||
value: string;
|
||||
constructor(parent: ASTNode, internalNode: Node, offset: number, length?: number);
|
||||
}
|
||||
export declare class PropertyASTNodeImpl extends ASTNodeImpl implements PropertyASTNode {
|
||||
type: 'property';
|
||||
keyNode: StringASTNode;
|
||||
valueNode: ASTNode;
|
||||
colonOffset: number;
|
||||
constructor(parent: ObjectASTNode, internalNode: Pair, offset: number, length?: number);
|
||||
get children(): ASTNode[];
|
||||
}
|
||||
export declare class ObjectASTNodeImpl extends ASTNodeImpl implements ObjectASTNode {
|
||||
type: 'object';
|
||||
properties: PropertyASTNode[];
|
||||
constructor(parent: ASTNode, internalNode: Node, offset: number, length?: number);
|
||||
get children(): ASTNode[];
|
||||
}
|
||||
export interface JSONDocumentConfig {
|
||||
collectComments?: boolean;
|
||||
}
|
||||
export declare enum EnumMatch {
|
||||
Key = 0,
|
||||
Enum = 1
|
||||
}
|
||||
export declare function newJSONDocument(root: ASTNode, diagnostics?: Diagnostic[]): JSONDocument;
|
||||
export declare class JSONDocument {
|
||||
readonly root: ASTNode;
|
||||
readonly syntaxErrors: Diagnostic[];
|
||||
readonly comments: Range[];
|
||||
isKubernetes: boolean;
|
||||
disableAdditionalProperties: boolean;
|
||||
uri: string;
|
||||
constructor(root: ASTNode, syntaxErrors?: Diagnostic[], comments?: Range[]);
|
||||
getNodeFromOffset(offset: number, includeRightBound?: boolean): ASTNode | undefined;
|
||||
getNodeFromOffsetEndInclusive(offset: number): ASTNode;
|
||||
visit(visitor: (node: ASTNode) => boolean): void;
|
||||
validate(textDocument: TextDocument, schema: JSONSchema): Diagnostic[];
|
||||
getMatchingSchemas(schema: JSONSchema, focusOffset?: number, exclude?: ASTNode, didCallFromAutoComplete?: boolean): IApplicableSchema[];
|
||||
}
|
||||
export {};
|
||||
+171
@@ -0,0 +1,171 @@
|
||||
import { findNodeAtOffset } from './astNodeUtils';
|
||||
import { getValidator } from './schemaValidation/validatorFactory';
|
||||
class ASTNodeImpl {
|
||||
constructor(parent, internalNode, offset, length) {
|
||||
this.offset = offset;
|
||||
this.length = length;
|
||||
this.parent = parent;
|
||||
this.internalNode = internalNode;
|
||||
}
|
||||
getNodeFromOffsetEndInclusive(offset) {
|
||||
const collector = [];
|
||||
const findNode = (node) => {
|
||||
if (offset >= node.offset && offset <= node.offset + node.length) {
|
||||
const children = node.children;
|
||||
for (let i = 0; i < children.length && children[i].offset <= offset; i++) {
|
||||
const item = findNode(children[i]);
|
||||
if (item) {
|
||||
collector.push(item);
|
||||
}
|
||||
}
|
||||
return node;
|
||||
}
|
||||
return null;
|
||||
};
|
||||
const foundNode = findNode(this);
|
||||
let currMinDist = Number.MAX_VALUE;
|
||||
let currMinNode = null;
|
||||
for (const currNode of collector) {
|
||||
const minDist = currNode.length + currNode.offset - offset + (offset - currNode.offset);
|
||||
if (minDist < currMinDist) {
|
||||
currMinNode = currNode;
|
||||
currMinDist = minDist;
|
||||
}
|
||||
}
|
||||
return currMinNode || foundNode;
|
||||
}
|
||||
get children() {
|
||||
return [];
|
||||
}
|
||||
toString() {
|
||||
return ('type: ' +
|
||||
this.type +
|
||||
' (' +
|
||||
this.offset +
|
||||
'/' +
|
||||
this.length +
|
||||
')' +
|
||||
(this.parent ? ' parent: {' + this.parent.toString() + '}' : ''));
|
||||
}
|
||||
}
|
||||
export class NullASTNodeImpl extends ASTNodeImpl {
|
||||
constructor(parent, internalNode, offset, length) {
|
||||
super(parent, internalNode, offset, length);
|
||||
this.type = 'null';
|
||||
this.value = null;
|
||||
}
|
||||
}
|
||||
export class BooleanASTNodeImpl extends ASTNodeImpl {
|
||||
constructor(parent, internalNode, boolValue, boolSource, offset, length) {
|
||||
super(parent, internalNode, offset, length);
|
||||
this.type = 'boolean';
|
||||
this.value = boolValue;
|
||||
this.source = boolSource;
|
||||
}
|
||||
}
|
||||
export class ArrayASTNodeImpl extends ASTNodeImpl {
|
||||
constructor(parent, internalNode, offset, length) {
|
||||
super(parent, internalNode, offset, length);
|
||||
this.type = 'array';
|
||||
this.items = [];
|
||||
}
|
||||
get children() {
|
||||
return this.items;
|
||||
}
|
||||
}
|
||||
export class NumberASTNodeImpl extends ASTNodeImpl {
|
||||
constructor(parent, internalNode, offset, length) {
|
||||
super(parent, internalNode, offset, length);
|
||||
this.type = 'number';
|
||||
this.isInteger = true;
|
||||
this.value = Number.NaN;
|
||||
}
|
||||
}
|
||||
export class StringASTNodeImpl extends ASTNodeImpl {
|
||||
constructor(parent, internalNode, offset, length) {
|
||||
super(parent, internalNode, offset, length);
|
||||
this.type = 'string';
|
||||
this.value = '';
|
||||
}
|
||||
}
|
||||
export class PropertyASTNodeImpl extends ASTNodeImpl {
|
||||
constructor(parent, internalNode, offset, length) {
|
||||
super(parent, internalNode, offset, length);
|
||||
this.type = 'property';
|
||||
this.colonOffset = -1;
|
||||
}
|
||||
get children() {
|
||||
return this.valueNode ? [this.keyNode, this.valueNode] : [this.keyNode];
|
||||
}
|
||||
}
|
||||
export class ObjectASTNodeImpl extends ASTNodeImpl {
|
||||
constructor(parent, internalNode, offset, length) {
|
||||
super(parent, internalNode, offset, length);
|
||||
this.type = 'object';
|
||||
this.properties = [];
|
||||
}
|
||||
get children() {
|
||||
return this.properties;
|
||||
}
|
||||
}
|
||||
export var EnumMatch;
|
||||
(function (EnumMatch) {
|
||||
EnumMatch[EnumMatch["Key"] = 0] = "Key";
|
||||
EnumMatch[EnumMatch["Enum"] = 1] = "Enum";
|
||||
})(EnumMatch || (EnumMatch = {}));
|
||||
export function newJSONDocument(root, diagnostics = []) {
|
||||
return new JSONDocument(root, diagnostics, []);
|
||||
}
|
||||
export class JSONDocument {
|
||||
constructor(root, syntaxErrors = [], comments = []) {
|
||||
this.root = root;
|
||||
this.syntaxErrors = syntaxErrors;
|
||||
this.comments = comments;
|
||||
}
|
||||
getNodeFromOffset(offset, includeRightBound = false) {
|
||||
if (this.root) {
|
||||
return findNodeAtOffset(this.root, offset, includeRightBound);
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
getNodeFromOffsetEndInclusive(offset) {
|
||||
return this.root && this.root.getNodeFromOffsetEndInclusive(offset);
|
||||
}
|
||||
visit(visitor) {
|
||||
if (this.root) {
|
||||
const doVisit = (node) => {
|
||||
let ctn = visitor(node);
|
||||
const children = node.children;
|
||||
if (Array.isArray(children)) {
|
||||
for (let i = 0; i < children.length && ctn; i++) {
|
||||
ctn = doVisit(children[i]);
|
||||
}
|
||||
}
|
||||
return ctn;
|
||||
};
|
||||
doVisit(this.root);
|
||||
}
|
||||
}
|
||||
validate(textDocument, schema) {
|
||||
if (!this.root || !schema)
|
||||
return null;
|
||||
const validator = getValidator(schema._dialect);
|
||||
return validator.validateDocument(this.root, textDocument, schema, {
|
||||
isKubernetes: this.isKubernetes,
|
||||
disableAdditionalProperties: this.disableAdditionalProperties,
|
||||
uri: this.uri,
|
||||
});
|
||||
}
|
||||
getMatchingSchemas(schema, focusOffset = -1, exclude = null, didCallFromAutoComplete) {
|
||||
if (!this.root || !schema)
|
||||
return [];
|
||||
const validator = getValidator(schema._dialect);
|
||||
return validator.getMatchingSchemas(this.root, schema, {
|
||||
isKubernetes: this.isKubernetes,
|
||||
disableAdditionalProperties: this.disableAdditionalProperties,
|
||||
uri: this.uri,
|
||||
callFromAutoComplete: didCallFromAutoComplete,
|
||||
}, focusOffset, exclude);
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=jsonDocument.js.map
|
||||
Generated
Vendored
+1
File diff suppressed because one or more lines are too long
Generated
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
/**
|
||||
* Parse a boolean according to the specification
|
||||
*
|
||||
* Return:
|
||||
* true if its a true value
|
||||
* false if its a false value
|
||||
*/
|
||||
export declare function parseYamlBoolean(input: string): boolean;
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* Parse a boolean according to the specification
|
||||
*
|
||||
* Return:
|
||||
* true if its a true value
|
||||
* false if its a false value
|
||||
*/
|
||||
export function parseYamlBoolean(input) {
|
||||
if (['true', 'True', 'TRUE', 'y', 'Y', 'yes', 'Yes', 'YES', 'on', 'On', 'ON'].lastIndexOf(input) >= 0) {
|
||||
return true;
|
||||
}
|
||||
else if (['false', 'False', 'FALSE', 'n', 'N', 'no', 'No', 'NO', 'off', 'Off', 'OFF'].lastIndexOf(input) >= 0) {
|
||||
return false;
|
||||
}
|
||||
throw `Invalid boolean "${input}"`;
|
||||
}
|
||||
//# sourceMappingURL=scalar-type.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"scalar-type.js","sourceRoot":"","sources":["../../../../src/languageservice/parser/scalar-type.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,MAAM,UAAU,gBAAgB,CAAC,KAAa;IAC5C,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE;QACrG,OAAO,IAAI,CAAC;KACb;SAAM,IAAI,CAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE;QAC/G,OAAO,KAAK,CAAC;KACd;IACD,MAAM,oBAAoB,KAAK,GAAG,CAAC;AACrC,CAAC"}
|
||||
node_modules/yaml-language-server/lib/esm/languageservice/parser/schemaValidation/baseValidator.d.ts
Generated
Vendored
+124
@@ -0,0 +1,124 @@
|
||||
import type { JSONSchema, JSONSchemaRef, SchemaDialect } from '../../jsonSchema';
|
||||
import type { ASTNode, ArrayASTNode, NumberASTNode, ObjectASTNode, StringASTNode } from '../../jsonASTTypes';
|
||||
import { ErrorCode } from 'vscode-json-languageservice';
|
||||
import { Diagnostic, DiagnosticSeverity } from 'vscode-languageserver-types';
|
||||
import type { TextDocument } from 'vscode-languageserver-textdocument';
|
||||
export declare const YAML_SOURCE = "YAML";
|
||||
export interface IRange {
|
||||
offset: number;
|
||||
length: number;
|
||||
}
|
||||
export declare enum ProblemType {
|
||||
missingRequiredPropWarning = "missingRequiredPropWarning",
|
||||
typeMismatchWarning = "typeMismatchWarning",
|
||||
constWarning = "constWarning"
|
||||
}
|
||||
export declare const ProblemTypeMessages: Record<ProblemType, string>;
|
||||
export interface IProblem {
|
||||
location: IRange;
|
||||
severity: DiagnosticSeverity;
|
||||
code?: ErrorCode;
|
||||
message: string;
|
||||
source?: string;
|
||||
problemType?: ProblemType;
|
||||
problemArgs?: string[];
|
||||
schemaUri?: string[];
|
||||
data?: Record<string, unknown>;
|
||||
}
|
||||
export interface IApplicableSchema {
|
||||
node: ASTNode;
|
||||
inverted?: boolean;
|
||||
schema: JSONSchema;
|
||||
}
|
||||
export interface ISchemaCollector {
|
||||
schemas: IApplicableSchema[];
|
||||
add(schema: IApplicableSchema): void;
|
||||
merge(other: ISchemaCollector): void;
|
||||
include(node: ASTNode): boolean;
|
||||
newSub(): ISchemaCollector;
|
||||
}
|
||||
export declare const formats: Record<string, {
|
||||
errorMessage: string;
|
||||
pattern: RegExp;
|
||||
}>;
|
||||
export declare class ValidationResult {
|
||||
problems: IProblem[];
|
||||
propertiesMatches: number;
|
||||
propertiesValueMatches: number;
|
||||
primaryValueMatches: number;
|
||||
enumValueMatch: boolean;
|
||||
enumValues: any[];
|
||||
/**
|
||||
* Optional bookkeeping for newer drafts (2019/2020).
|
||||
* BaseValidator only populates evaluatedProperties conservatively for object keywords it processes directly.
|
||||
*/
|
||||
evaluatedProperties?: Set<string>;
|
||||
evaluatedItemsByNode?: Map<ASTNode, Set<number>>;
|
||||
constructor(isKubernetes: boolean);
|
||||
getEvaluatedItems(node: ASTNode): Set<number>;
|
||||
hasProblems(): boolean;
|
||||
merge(other: ValidationResult): void;
|
||||
mergeEnumValues(other: ValidationResult): void;
|
||||
mergeWarningGeneric(sub: ValidationResult, problemTypesToMerge: ProblemType[]): void;
|
||||
mergePropertyMatch(propertyValidationResult: ValidationResult, mergeEvaluated?: boolean): void;
|
||||
private mergeSources;
|
||||
compareGeneric(other: ValidationResult): number;
|
||||
compareKubernetes(other: ValidationResult): number;
|
||||
}
|
||||
export interface Options {
|
||||
isKubernetes: boolean;
|
||||
disableAdditionalProperties: boolean;
|
||||
uri: string;
|
||||
callFromAutoComplete?: boolean;
|
||||
}
|
||||
interface IValidationMatch {
|
||||
schema: JSONSchema;
|
||||
validationResult: ValidationResult;
|
||||
matchingSchemas: ISchemaCollector;
|
||||
}
|
||||
export declare abstract class BaseValidator {
|
||||
protected collectSeenKeys(node: ObjectASTNode): Record<string, ASTNode>;
|
||||
validateDocument(root: ASTNode, textDocument: TextDocument, schema: JSONSchema, options: Options): Diagnostic[];
|
||||
getMatchingSchemas(root: ASTNode, schema: JSONSchema, options: Options, focusOffset: number, exclude: ASTNode | null): IApplicableSchema[];
|
||||
protected getNoOpCollector(): ISchemaCollector;
|
||||
protected getSchemaSource(schema: JSONSchema, originalSchema: JSONSchema): string;
|
||||
protected getSchemaUri(schema: JSONSchema, originalSchema: JSONSchema): string[];
|
||||
/**
|
||||
* Draft-specific hook: interpret numeric bounds in the draft’s way.
|
||||
* - Draft07+: numeric exclusiveMinimum/exclusiveMaximum
|
||||
* - Draft04: boolean exclusiveMinimum/exclusiveMaximum that modify minimum/maximum
|
||||
*/
|
||||
protected abstract getNumberLimits(schema: JSONSchema): {
|
||||
minimum?: number;
|
||||
maximum?: number;
|
||||
exclusiveMinimum?: number;
|
||||
exclusiveMaximum?: number;
|
||||
};
|
||||
/**
|
||||
* Get the current validator's dialect.
|
||||
*/
|
||||
protected abstract getCurrentDialect(): SchemaDialect;
|
||||
protected validateNode(node: ASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, matchingSchemas: ISchemaCollector, options: Options): void;
|
||||
protected validateGenericNode(node: ASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, matchingSchemas: ISchemaCollector, options: Options): void;
|
||||
protected validateStringNode(node: StringASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult): void;
|
||||
protected validateNumberNode(node: NumberASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult): void;
|
||||
protected validateArrayNode(node: ArrayASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, matchingSchemas: ISchemaCollector, options: Options): void;
|
||||
protected applyContains(node: ArrayASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, _matchingSchemas: ISchemaCollector, options: Options): void;
|
||||
protected applyArrayLength(node: ArrayASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, _options: Options): void;
|
||||
protected applyUniqueItems(node: ArrayASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult): void;
|
||||
protected validateObjectNode(node: ObjectASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, matchingSchemas: ISchemaCollector, options: Options): void;
|
||||
protected applyRequired(node: ObjectASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, _options: Options, seenKeys: Record<string, ASTNode>): void;
|
||||
protected applyProperties(_node: ObjectASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, matchingSchemas: ISchemaCollector, options: Options, seenKeys: Record<string, ASTNode>, _unprocessedProperties: string[], propertyProcessed: (prop: string) => void): void;
|
||||
protected applyPatternProperties(_node: ObjectASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, matchingSchemas: ISchemaCollector, options: Options, seenKeys: Record<string, ASTNode>, unprocessedProperties: string[], propertyProcessed: (prop: string) => void): void;
|
||||
protected applyAdditionalProperties(_node: ObjectASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, matchingSchemas: ISchemaCollector, options: Options, seenKeys: Record<string, ASTNode>, unprocessedProperties: string[]): void;
|
||||
protected applyPropertyCount(node: ObjectASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult): void;
|
||||
protected applyDependencies(node: ObjectASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, matchingSchemas: ISchemaCollector, options: Options, seenKeys: Record<string, ASTNode>): void;
|
||||
protected applyPropertyNames(node: ObjectASTNode, schema: JSONSchema, validationResult: ValidationResult, options: Options): void;
|
||||
protected applyUnevaluatedProperties(_node: ObjectASTNode, _schema: JSONSchema, _originalSchema: JSONSchema, _validationResult: ValidationResult, _matchingSchemas: ISchemaCollector, _options: Options, _seenKeys?: Record<string, ASTNode>, _unprocessedProperties?: string[]): void;
|
||||
protected applyUnevaluatedItems(_node: ArrayASTNode | ASTNode, _schema: JSONSchema, _originalSchema: JSONSchema, _validationResult: ValidationResult, _matchingSchemas: ISchemaCollector, _options: Options): void;
|
||||
protected alternativeComparison(subValidationResult: ValidationResult, bestMatch: IValidationMatch, subSchema: JSONSchema, subMatchingSchemas: ISchemaCollector): IValidationMatch;
|
||||
protected genericComparison(node: ASTNode, maxOneMatch: boolean, subValidationResult: ValidationResult, bestMatch: IValidationMatch, subSchema: JSONSchema, subMatchingSchemas: ISchemaCollector): IValidationMatch;
|
||||
protected mergeValidationMatches(bestMatch: IValidationMatch, subMatchingSchemas: ISchemaCollector, subValidationResult: ValidationResult): void;
|
||||
}
|
||||
export declare function asSchema(schema: JSONSchemaRef): JSONSchema | undefined;
|
||||
export {};
|
||||
Generated
Vendored
+1254
File diff suppressed because it is too large
Load Diff
Generated
Vendored
+1
File diff suppressed because one or more lines are too long
Generated
Vendored
+17
@@ -0,0 +1,17 @@
|
||||
import type { JSONSchema } from '../../jsonSchema';
|
||||
import { SchemaDialect } from '../../jsonSchema';
|
||||
import { BaseValidator } from './baseValidator';
|
||||
export declare class Draft04Validator extends BaseValidator {
|
||||
protected getCurrentDialect(): SchemaDialect;
|
||||
/**
|
||||
* Keyword: exclusiveMinimum/exclusiveMaximum
|
||||
*
|
||||
* Booleans that make minimum/maximum exclusive.
|
||||
*/
|
||||
protected getNumberLimits(schema: JSONSchema): {
|
||||
minimum?: number;
|
||||
maximum?: number;
|
||||
exclusiveMinimum?: number;
|
||||
exclusiveMaximum?: number;
|
||||
};
|
||||
}
|
||||
Generated
Vendored
+30
@@ -0,0 +1,30 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) IBM Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
import { SchemaDialect } from '../../jsonSchema';
|
||||
import { isBoolean, isNumber } from '../../utils/objects';
|
||||
import { BaseValidator } from './baseValidator';
|
||||
export class Draft04Validator extends BaseValidator {
|
||||
getCurrentDialect() {
|
||||
return SchemaDialect.draft04;
|
||||
}
|
||||
/**
|
||||
* Keyword: exclusiveMinimum/exclusiveMaximum
|
||||
*
|
||||
* Booleans that make minimum/maximum exclusive.
|
||||
*/
|
||||
getNumberLimits(schema) {
|
||||
const minimum = isNumber(schema.minimum) ? schema.minimum : undefined;
|
||||
const maximum = isNumber(schema.maximum) ? schema.maximum : undefined;
|
||||
const exclusiveMinimum = isBoolean(schema.exclusiveMinimum) && schema.exclusiveMinimum ? minimum : undefined;
|
||||
const exclusiveMaximum = isBoolean(schema.exclusiveMaximum) && schema.exclusiveMaximum ? maximum : undefined;
|
||||
return {
|
||||
minimum: exclusiveMinimum === undefined ? minimum : undefined,
|
||||
maximum: exclusiveMaximum === undefined ? maximum : undefined,
|
||||
exclusiveMinimum,
|
||||
exclusiveMaximum,
|
||||
};
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=draft04Validator.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"draft04Validator.js","sourceRoot":"","sources":["../../../../../src/languageservice/parser/schemaValidation/draft04Validator.ts"],"names":[],"mappings":"AAAA;;;gGAGgG;AAGhG,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAC1D,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,MAAM,OAAO,gBAAiB,SAAQ,aAAa;IAC9B,iBAAiB;QAClC,OAAO,aAAa,CAAC,OAAO,CAAC;IAC/B,CAAC;IAED;;;;OAIG;IACgB,eAAe,CAAC,MAAkB;QAMnD,MAAM,OAAO,GAAG,QAAQ,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;QACtE,MAAM,OAAO,GAAG,QAAQ,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;QAEtE,MAAM,gBAAgB,GAAG,SAAS,CAAC,MAAM,CAAC,gBAAgB,CAAC,IAAI,MAAM,CAAC,gBAAgB,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;QAC7G,MAAM,gBAAgB,GAAG,SAAS,CAAC,MAAM,CAAC,gBAAgB,CAAC,IAAI,MAAM,CAAC,gBAAgB,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;QAE7G,OAAO;YACL,OAAO,EAAE,gBAAgB,KAAK,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS;YAC7D,OAAO,EAAE,gBAAgB,KAAK,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS;YAC7D,gBAAgB;YAChB,gBAAgB;SACjB,CAAC;IACJ,CAAC;CACF"}
|
||||
Generated
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
import type { JSONSchema } from '../../jsonSchema';
|
||||
import { SchemaDialect } from '../../jsonSchema';
|
||||
import { BaseValidator } from './baseValidator';
|
||||
export declare class Draft07Validator extends BaseValidator {
|
||||
protected getCurrentDialect(): SchemaDialect;
|
||||
/**
|
||||
* Keyword: exclusiveMinimum/exclusiveMaximum are treated as numeric bounds
|
||||
*/
|
||||
protected getNumberLimits(schema: JSONSchema): {
|
||||
minimum?: number;
|
||||
maximum?: number;
|
||||
exclusiveMinimum?: number;
|
||||
exclusiveMaximum?: number;
|
||||
};
|
||||
}
|
||||
Generated
Vendored
+28
@@ -0,0 +1,28 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) IBM Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
import { SchemaDialect } from '../../jsonSchema';
|
||||
import { isNumber } from '../../utils/objects';
|
||||
import { BaseValidator } from './baseValidator';
|
||||
export class Draft07Validator extends BaseValidator {
|
||||
getCurrentDialect() {
|
||||
return SchemaDialect.draft07;
|
||||
}
|
||||
/**
|
||||
* Keyword: exclusiveMinimum/exclusiveMaximum are treated as numeric bounds
|
||||
*/
|
||||
getNumberLimits(schema) {
|
||||
const minimum = isNumber(schema.minimum) ? schema.minimum : undefined;
|
||||
const maximum = isNumber(schema.maximum) ? schema.maximum : undefined;
|
||||
const exclusiveMinimum = isNumber(schema.exclusiveMinimum) ? schema.exclusiveMinimum : undefined;
|
||||
const exclusiveMaximum = isNumber(schema.exclusiveMaximum) ? schema.exclusiveMaximum : undefined;
|
||||
return {
|
||||
minimum: exclusiveMinimum === undefined ? minimum : undefined,
|
||||
maximum: exclusiveMaximum === undefined ? maximum : undefined,
|
||||
exclusiveMinimum,
|
||||
exclusiveMaximum,
|
||||
};
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=draft07Validator.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"draft07Validator.js","sourceRoot":"","sources":["../../../../../src/languageservice/parser/schemaValidation/draft07Validator.ts"],"names":[],"mappings":"AAAA;;;gGAGgG;AAGhG,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAC/C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,MAAM,OAAO,gBAAiB,SAAQ,aAAa;IAC9B,iBAAiB;QAClC,OAAO,aAAa,CAAC,OAAO,CAAC;IAC/B,CAAC;IAED;;OAEG;IACO,eAAe,CAAC,MAAkB;QAM1C,MAAM,OAAO,GAAG,QAAQ,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;QACtE,MAAM,OAAO,GAAG,QAAQ,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;QAEtE,MAAM,gBAAgB,GAAG,QAAQ,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;QACjG,MAAM,gBAAgB,GAAG,QAAQ,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;QAEjG,OAAO;YACL,OAAO,EAAE,gBAAgB,KAAK,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS;YAC7D,OAAO,EAAE,gBAAgB,KAAK,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS;YAC7D,gBAAgB;YAChB,gBAAgB;SACjB,CAAC;IACJ,CAAC;CACF"}
|
||||
Generated
Vendored
+28
@@ -0,0 +1,28 @@
|
||||
import type { JSONSchema } from '../../jsonSchema';
|
||||
import { SchemaDialect } from '../../jsonSchema';
|
||||
import type { ASTNode, ArrayASTNode, ObjectASTNode } from '../../jsonASTTypes';
|
||||
import { Draft07Validator } from './draft07Validator';
|
||||
import { ValidationResult } from './baseValidator';
|
||||
import type { ISchemaCollector, Options } from './baseValidator';
|
||||
export declare class Draft2019Validator extends Draft07Validator {
|
||||
protected getCurrentDialect(): SchemaDialect;
|
||||
/**
|
||||
* Keyword: contains + minContains/maxContains
|
||||
*
|
||||
* Draft-07 behavior: contains must match at least 1 item.
|
||||
* Draft-2019-09 behavior: minContains/maxContains constrain how many matches are required/allowed.
|
||||
*/
|
||||
protected applyContains(node: ArrayASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, _matchingSchemas: ISchemaCollector, options: Options): void;
|
||||
/**
|
||||
* Keyword: dependentRequired + dependentSchemas.
|
||||
*/
|
||||
protected applyDependencies(node: ObjectASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, matchingSchemas: ISchemaCollector, options: Options, seenKeys: Record<string, ASTNode>): void;
|
||||
/**
|
||||
* Keyword: unevaluatedProperties
|
||||
*/
|
||||
protected applyUnevaluatedProperties(node: ObjectASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, matchingSchemas: ISchemaCollector, options: Options, seenKeys?: Record<string, ASTNode>): void;
|
||||
/**
|
||||
* Keyword: unevaluatedItems
|
||||
*/
|
||||
protected applyUnevaluatedItems(node: ArrayASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, matchingSchemas: ISchemaCollector, options: Options): void;
|
||||
}
|
||||
Generated
Vendored
+224
@@ -0,0 +1,224 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) IBM Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
import { SchemaDialect } from '../../jsonSchema';
|
||||
import { isNumber } from '../../utils/objects';
|
||||
import * as l10n from '@vscode/l10n';
|
||||
import { DiagnosticSeverity } from 'vscode-languageserver-types';
|
||||
import { ErrorCode } from 'vscode-json-languageservice';
|
||||
import { Draft07Validator } from './draft07Validator';
|
||||
import { ValidationResult, asSchema } from './baseValidator';
|
||||
export class Draft2019Validator extends Draft07Validator {
|
||||
getCurrentDialect() {
|
||||
return SchemaDialect.draft2019;
|
||||
}
|
||||
/**
|
||||
* Keyword: contains + minContains/maxContains
|
||||
*
|
||||
* Draft-07 behavior: contains must match at least 1 item.
|
||||
* Draft-2019-09 behavior: minContains/maxContains constrain how many matches are required/allowed.
|
||||
*/
|
||||
applyContains(node, schema, originalSchema, validationResult, _matchingSchemas, options) {
|
||||
const containsSchema = asSchema(schema.contains);
|
||||
if (!containsSchema)
|
||||
return;
|
||||
const minContainsRaw = schema.minContains;
|
||||
const maxContainsRaw = schema.maxContains;
|
||||
const minContains = isNumber(minContainsRaw) ? minContainsRaw : 1;
|
||||
const maxContains = isNumber(maxContainsRaw) ? maxContainsRaw : undefined;
|
||||
let matchCount = 0;
|
||||
const items = (node.items ?? []);
|
||||
for (const item of items) {
|
||||
const itemValidationResult = new ValidationResult(options.isKubernetes);
|
||||
this.validateNode(item, containsSchema, schema, itemValidationResult, this.getNoOpCollector(), options);
|
||||
if (!itemValidationResult.hasProblems()) {
|
||||
matchCount++;
|
||||
if (maxContains !== undefined && matchCount > maxContains) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (matchCount < minContains) {
|
||||
validationResult.problems.push({
|
||||
location: { offset: node.offset, length: node.length },
|
||||
severity: DiagnosticSeverity.Warning,
|
||||
message: schema.errorMessage || l10n.t('Array has too few items matching "contains". Expected {0} or more.', minContains),
|
||||
source: this.getSchemaSource(schema, originalSchema),
|
||||
schemaUri: this.getSchemaUri(schema, originalSchema),
|
||||
});
|
||||
}
|
||||
if (maxContains !== undefined && matchCount > maxContains) {
|
||||
validationResult.problems.push({
|
||||
location: { offset: node.offset, length: node.length },
|
||||
severity: DiagnosticSeverity.Warning,
|
||||
message: schema.errorMessage || l10n.t('Array has too many items matching "contains". Expected {0} or fewer.', maxContains),
|
||||
source: this.getSchemaSource(schema, originalSchema),
|
||||
schemaUri: this.getSchemaUri(schema, originalSchema),
|
||||
});
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Keyword: dependentRequired + dependentSchemas.
|
||||
*/
|
||||
applyDependencies(node, schema, originalSchema, validationResult, matchingSchemas, options, seenKeys) {
|
||||
// keep draft-07 dependencies support
|
||||
super.applyDependencies(node, schema, originalSchema, validationResult, matchingSchemas, options, seenKeys);
|
||||
const dependentRequired = schema.dependentRequired;
|
||||
if (dependentRequired && typeof dependentRequired === 'object') {
|
||||
for (const prop of Object.keys(dependentRequired)) {
|
||||
if (!seenKeys[prop])
|
||||
continue;
|
||||
const requiredProps = dependentRequired[prop];
|
||||
if (!Array.isArray(requiredProps))
|
||||
continue;
|
||||
for (const requiredProp of requiredProps) {
|
||||
if (!seenKeys[requiredProp]) {
|
||||
validationResult.problems.push({
|
||||
location: { offset: node.offset, length: node.length },
|
||||
severity: DiagnosticSeverity.Warning,
|
||||
message: l10n.t('Object is missing property {0} required by property {1}.', requiredProp, prop),
|
||||
source: this.getSchemaSource(schema, originalSchema),
|
||||
schemaUri: this.getSchemaUri(schema, originalSchema),
|
||||
});
|
||||
}
|
||||
else {
|
||||
validationResult.propertiesValueMatches++;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
const dependentSchemas = schema.dependentSchemas;
|
||||
if (dependentSchemas && typeof dependentSchemas === 'object') {
|
||||
for (const prop of Object.keys(dependentSchemas)) {
|
||||
if (!seenKeys[prop])
|
||||
continue;
|
||||
const depSchema = asSchema(dependentSchemas[prop]);
|
||||
if (!depSchema)
|
||||
continue;
|
||||
const depValidationResult = new ValidationResult(options.isKubernetes);
|
||||
this.validateNode(node, depSchema, schema, depValidationResult, matchingSchemas, options);
|
||||
validationResult.mergePropertyMatch(depValidationResult);
|
||||
validationResult.mergeEnumValues(depValidationResult);
|
||||
}
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Keyword: unevaluatedProperties
|
||||
*/
|
||||
applyUnevaluatedProperties(node, schema, originalSchema, validationResult, matchingSchemas, options, seenKeys) {
|
||||
const unevaluated = schema.unevaluatedProperties;
|
||||
if (unevaluated === undefined)
|
||||
return;
|
||||
if (!seenKeys)
|
||||
return;
|
||||
// ensure evaluatedProperties exists
|
||||
validationResult.evaluatedProperties ?? (validationResult.evaluatedProperties = new Set());
|
||||
// remaining = properties not evaluated by properties/patternProperties/additionalProperties
|
||||
const remaining = Object.keys(seenKeys).filter((name) => !validationResult.evaluatedProperties?.has(name));
|
||||
if (remaining.length === 0)
|
||||
return;
|
||||
// unevaluatedProperties: false => forbid remaining properties
|
||||
if (unevaluated === false) {
|
||||
for (const propName of remaining) {
|
||||
const child = seenKeys[propName];
|
||||
if (!child)
|
||||
continue;
|
||||
const propertyNode = child.type === 'property' ? child : child.parent;
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
const keyNode = propertyNode.keyNode;
|
||||
if (!keyNode)
|
||||
continue;
|
||||
validationResult.problems.push({
|
||||
location: { offset: keyNode.offset, length: keyNode.length },
|
||||
severity: DiagnosticSeverity.Warning,
|
||||
code: ErrorCode.PropertyExpected,
|
||||
message: schema.errorMessage || l10n.t('Property {0} is not allowed.', propName),
|
||||
source: this.getSchemaSource(schema, originalSchema),
|
||||
schemaUri: this.getSchemaUri(schema, originalSchema),
|
||||
});
|
||||
validationResult.evaluatedProperties?.add(propName);
|
||||
}
|
||||
return;
|
||||
}
|
||||
// unevaluatedProperties: true => allow anything remaining, but mark evaluated
|
||||
if (unevaluated === true) {
|
||||
for (const propName of remaining) {
|
||||
validationResult.evaluatedProperties?.add(propName);
|
||||
}
|
||||
return;
|
||||
}
|
||||
// unevaluatedProperties: <schema> => validate value of each remaining property
|
||||
const unevaluatedSchema = asSchema(unevaluated);
|
||||
if (!unevaluatedSchema)
|
||||
return;
|
||||
for (const propName of remaining) {
|
||||
const child = seenKeys[propName];
|
||||
if (!child)
|
||||
continue;
|
||||
const valueNode = child.type === 'property' ? child.valueNode : child;
|
||||
if (!valueNode)
|
||||
continue;
|
||||
const subResult = new ValidationResult(options.isKubernetes);
|
||||
this.validateNode(valueNode, unevaluatedSchema, schema, subResult, matchingSchemas, options);
|
||||
validationResult.mergePropertyMatch(subResult);
|
||||
validationResult.mergeEnumValues(subResult);
|
||||
validationResult.evaluatedProperties?.add(propName);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Keyword: unevaluatedItems
|
||||
*/
|
||||
applyUnevaluatedItems(node, schema, originalSchema, validationResult, matchingSchemas, options) {
|
||||
const unevaluated = schema.unevaluatedItems;
|
||||
if (unevaluated === undefined)
|
||||
return;
|
||||
const items = (node.items ?? []);
|
||||
if (items.length === 0)
|
||||
return;
|
||||
const evaluated = validationResult.getEvaluatedItems(node);
|
||||
const remaining = [];
|
||||
for (let i = 0; i < items.length; i++) {
|
||||
if (!evaluated.has(i))
|
||||
remaining.push(i);
|
||||
}
|
||||
if (remaining.length === 0)
|
||||
return;
|
||||
// unevaluatedItems: false => forbid remaining indices
|
||||
if (unevaluated === false) {
|
||||
for (const idx of remaining) {
|
||||
const item = items[idx];
|
||||
validationResult.problems.push({
|
||||
location: { offset: item.offset, length: item.length || 1 },
|
||||
severity: DiagnosticSeverity.Warning,
|
||||
code: ErrorCode.PropertyExpected,
|
||||
message: schema.errorMessage || l10n.t('Array has too many items according to schema. Expected {0} or fewer.', idx),
|
||||
source: this.getSchemaSource(schema, originalSchema),
|
||||
schemaUri: this.getSchemaUri(schema, originalSchema),
|
||||
});
|
||||
evaluated.add(idx);
|
||||
}
|
||||
return;
|
||||
}
|
||||
// unevaluatedItems: true => allow everything remaining, but mark evaluated
|
||||
if (unevaluated === true) {
|
||||
for (const idx of remaining)
|
||||
evaluated.add(idx);
|
||||
return;
|
||||
}
|
||||
// unevaluatedItems: <schema> => validate remaining items against that schema
|
||||
const unevaluatedSchema = asSchema(unevaluated);
|
||||
if (!unevaluatedSchema)
|
||||
return;
|
||||
for (const idx of remaining) {
|
||||
const item = items[idx];
|
||||
const subResult = new ValidationResult(options.isKubernetes);
|
||||
// validate the item node with the unevaluatedItems subschema
|
||||
this.validateNode(item, unevaluatedSchema, schema, subResult, matchingSchemas, options);
|
||||
validationResult.merge(subResult);
|
||||
validationResult.mergeEnumValues(subResult);
|
||||
evaluated.add(idx);
|
||||
}
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=draft2019Validator.js.map
|
||||
Generated
Vendored
+1
File diff suppressed because one or more lines are too long
Generated
Vendored
+17
@@ -0,0 +1,17 @@
|
||||
import type { JSONSchema } from '../../jsonSchema';
|
||||
import { SchemaDialect } from '../../jsonSchema';
|
||||
import type { ArrayASTNode } from '../../jsonASTTypes';
|
||||
import { Draft2019Validator } from './draft2019Validator';
|
||||
import type { ISchemaCollector, Options } from './baseValidator';
|
||||
import { ValidationResult } from './baseValidator';
|
||||
export declare class Draft2020Validator extends Draft2019Validator {
|
||||
protected getCurrentDialect(): SchemaDialect;
|
||||
/**
|
||||
* Keyword: prefixItems + items
|
||||
*/
|
||||
protected validateArrayNode(node: ArrayASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, matchingSchemas: ISchemaCollector, options: Options): void;
|
||||
/**
|
||||
* Draft 2020-12: contains keyword affects the unevaluatedItems keyword
|
||||
*/
|
||||
protected applyContains(node: ArrayASTNode, schema: JSONSchema, originalSchema: JSONSchema, validationResult: ValidationResult, _matchingSchemas: ISchemaCollector, options: Options): void;
|
||||
}
|
||||
Generated
Vendored
+126
@@ -0,0 +1,126 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) IBM Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
import { SchemaDialect } from '../../jsonSchema';
|
||||
import { isNumber } from '../../utils/objects';
|
||||
import * as l10n from '@vscode/l10n';
|
||||
import { DiagnosticSeverity } from 'vscode-languageserver-types';
|
||||
import { Draft2019Validator } from './draft2019Validator';
|
||||
import { ValidationResult, asSchema } from './baseValidator';
|
||||
export class Draft2020Validator extends Draft2019Validator {
|
||||
getCurrentDialect() {
|
||||
return SchemaDialect.draft2020;
|
||||
}
|
||||
/**
|
||||
* Keyword: prefixItems + items
|
||||
*/
|
||||
validateArrayNode(node, schema, originalSchema, validationResult, matchingSchemas, options) {
|
||||
const items = (node.items ?? []);
|
||||
// prefixItems/items/contains contribute to evaluatedItems
|
||||
const evaluatedItems = validationResult.getEvaluatedItems(node);
|
||||
const prefixItems = schema.prefixItems;
|
||||
// validate prefixItems
|
||||
if (Array.isArray(prefixItems)) {
|
||||
const limit = Math.min(prefixItems.length, items.length);
|
||||
for (let i = 0; i < limit; i++) {
|
||||
const subSchema = asSchema(prefixItems[i]);
|
||||
if (!subSchema) {
|
||||
evaluatedItems.add(i);
|
||||
continue;
|
||||
}
|
||||
const itemValidationResult = new ValidationResult(options.isKubernetes);
|
||||
this.validateNode(items[i], subSchema, schema, itemValidationResult, matchingSchemas, options);
|
||||
validationResult.mergePropertyMatch(itemValidationResult, false);
|
||||
validationResult.mergeEnumValues(itemValidationResult);
|
||||
// mark as evaluated even if invalid (avoids duplicate unevaluatedItems noise)
|
||||
evaluatedItems.add(i);
|
||||
}
|
||||
}
|
||||
// validate remaining items against items
|
||||
const itemsKeyword = schema.items;
|
||||
const prefixLen = Array.isArray(prefixItems) ? prefixItems.length : 0;
|
||||
if (items.length > prefixLen) {
|
||||
if (itemsKeyword === false) {
|
||||
// "items": false => no items allowed beyond prefixItems
|
||||
validationResult.problems.push({
|
||||
location: { offset: node.offset, length: node.length },
|
||||
severity: DiagnosticSeverity.Warning,
|
||||
message: l10n.t('Array has too many items according to schema. Expected {0} or fewer.', prefixLen),
|
||||
source: this.getSchemaSource(schema, originalSchema),
|
||||
schemaUri: this.getSchemaUri(schema, originalSchema),
|
||||
});
|
||||
// mark these as evaluated by "items": false (so unevaluatedItems doesn't also complain)
|
||||
for (let i = prefixLen; i < items.length; i++) {
|
||||
evaluatedItems.add(i);
|
||||
}
|
||||
}
|
||||
else {
|
||||
const tailSchema = asSchema(itemsKeyword);
|
||||
// if items is undefined, there's no constraint for remaining items and they remain unevaluated
|
||||
if (tailSchema) {
|
||||
for (let i = prefixLen; i < items.length; i++) {
|
||||
const itemValidationResult = new ValidationResult(options.isKubernetes);
|
||||
this.validateNode(items[i], tailSchema, schema, itemValidationResult, matchingSchemas, options);
|
||||
validationResult.mergePropertyMatch(itemValidationResult, false);
|
||||
validationResult.mergeEnumValues(itemValidationResult);
|
||||
// mark as evaluated even if invalid (avoids duplicate unevaluatedItems noise)
|
||||
evaluatedItems.add(i);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// contains enforces min/max and marks matching indices as evaluated
|
||||
this.applyContains(node, schema, originalSchema, validationResult, matchingSchemas, options);
|
||||
// generic array keywords
|
||||
this.applyArrayLength(node, schema, originalSchema, validationResult, options);
|
||||
this.applyUniqueItems(node, schema, originalSchema, validationResult);
|
||||
}
|
||||
/**
|
||||
* Draft 2020-12: contains keyword affects the unevaluatedItems keyword
|
||||
*/
|
||||
applyContains(node, schema, originalSchema, validationResult, _matchingSchemas, options) {
|
||||
const containsSchema = asSchema(schema.contains);
|
||||
if (!containsSchema)
|
||||
return;
|
||||
const items = (node.items ?? []);
|
||||
const minContainsRaw = schema.minContains;
|
||||
const maxContainsRaw = schema.maxContains;
|
||||
const minContains = isNumber(minContainsRaw) ? minContainsRaw : 1;
|
||||
const maxContains = isNumber(maxContainsRaw) ? maxContainsRaw : undefined;
|
||||
let matchCount = 0;
|
||||
// ensure evaluatedItems exists
|
||||
const evaluatedItems = validationResult.getEvaluatedItems(node);
|
||||
for (let i = 0; i < items.length; i++) {
|
||||
const itemValidationResult = new ValidationResult(options.isKubernetes);
|
||||
this.validateNode(items[i], containsSchema, schema, itemValidationResult, this.getNoOpCollector(), options);
|
||||
if (!itemValidationResult.hasProblems()) {
|
||||
// items that match contains are considered evaluated
|
||||
evaluatedItems.add(i);
|
||||
matchCount++;
|
||||
if (maxContains !== undefined && matchCount > maxContains) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (matchCount < minContains) {
|
||||
validationResult.problems.push({
|
||||
location: { offset: node.offset, length: node.length },
|
||||
severity: DiagnosticSeverity.Warning,
|
||||
message: schema.errorMessage || l10n.t('Array has too few items matching "contains". Expected {0} or more.', minContains),
|
||||
source: this.getSchemaSource(schema, originalSchema),
|
||||
schemaUri: this.getSchemaUri(schema, originalSchema),
|
||||
});
|
||||
}
|
||||
if (maxContains !== undefined && matchCount > maxContains) {
|
||||
validationResult.problems.push({
|
||||
location: { offset: node.offset, length: node.length },
|
||||
severity: DiagnosticSeverity.Warning,
|
||||
message: schema.errorMessage || l10n.t('Array has too many items matching "contains". Expected {0} or fewer.', maxContains),
|
||||
source: this.getSchemaSource(schema, originalSchema),
|
||||
schemaUri: this.getSchemaUri(schema, originalSchema),
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=draft2020Validator.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"draft2020Validator.js","sourceRoot":"","sources":["../../../../../src/languageservice/parser/schemaValidation/draft2020Validator.ts"],"names":[],"mappings":"AAAA;;;gGAGgG;AAGhG,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,OAAO,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAC/C,OAAO,KAAK,IAAI,MAAM,cAAc,CAAC;AACrC,OAAO,EAAE,kBAAkB,EAAE,MAAM,6BAA6B,CAAC;AACjE,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,OAAO,EAAE,gBAAgB,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAE7D,MAAM,OAAO,kBAAmB,SAAQ,kBAAkB;IACrC,iBAAiB;QAClC,OAAO,aAAa,CAAC,SAAS,CAAC;IACjC,CAAC;IAED;;OAEG;IACgB,iBAAiB,CAClC,IAAkB,EAClB,MAAkB,EAClB,cAA0B,EAC1B,gBAAkC,EAClC,eAAiC,EACjC,OAAgB;QAEhB,MAAM,KAAK,GAAG,CAAC,IAAI,CAAC,KAAK,IAAI,EAAE,CAAc,CAAC;QAC9C,0DAA0D;QAC1D,MAAM,cAAc,GAAG,gBAAgB,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC;QAEhE,MAAM,WAAW,GAAG,MAAM,CAAC,WAAW,CAAC;QACvC,uBAAuB;QACvB,IAAI,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC,EAAE;YAC9B,MAAM,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;YACzD,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,EAAE,CAAC,EAAE,EAAE;gBAC9B,MAAM,SAAS,GAAG,QAAQ,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC3C,IAAI,CAAC,SAAS,EAAE;oBACd,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;oBACtB,SAAS;iBACV;gBACD,MAAM,oBAAoB,GAAG,IAAI,gBAAgB,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;gBACxE,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,SAAS,EAAE,MAAM,EAAE,oBAAoB,EAAE,eAAe,EAAE,OAAO,CAAC,CAAC;gBAE/F,gBAAgB,CAAC,kBAAkB,CAAC,oBAAoB,EAAE,KAAK,CAAC,CAAC;gBACjE,gBAAgB,CAAC,eAAe,CAAC,oBAAoB,CAAC,CAAC;gBAEvD,8EAA8E;gBAC9E,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;aACvB;SACF;QAED,yCAAyC;QACzC,MAAM,YAAY,GAAG,MAAM,CAAC,KAAK,CAAC;QAClC,MAAM,SAAS,GAAG,KAAK,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;QACtE,IAAI,KAAK,CAAC,MAAM,GAAG,SAAS,EAAE;YAC5B,IAAI,YAAY,KAAK,KAAK,EAAE;gBAC1B,wDAAwD;gBACxD,gBAAgB,CAAC,QAAQ,CAAC,IAAI,CAAC;oBAC7B,QAAQ,EAAE,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;oBACtD,QAAQ,EAAE,kBAAkB,CAAC,OAAO;oBACpC,OAAO,EAAE,IAAI,CAAC,CAAC,CAAC,sEAAsE,EAAE,SAAS,CAAC;oBAClG,MAAM,EAAE,IAAI,CAAC,eAAe,CAAC,MAAM,EAAE,cAAc,CAAC;oBACpD,SAAS,EAAE,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,cAAc,CAAC;iBACrD,CAAC,CAAC;gBAEH,wFAAwF;gBACxF,KAAK,IAAI,CAAC,GAAG,SAAS,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;oBAC7C,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;iBACvB;aACF;iBAAM;gBACL,MAAM,UAAU,GAAG,QAAQ,CAAC,YAA6B,CAAC,CAAC;gBAC3D,+FAA+F;gBAC/F,IAAI,UAAU,EAAE;oBACd,KAAK,IAAI,CAAC,GAAG,SAAS,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;wBAC7C,MAAM,oBAAoB,GAAG,IAAI,gBAAgB,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;wBACxE,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,EAAE,oBAAoB,EAAE,eAAe,EAAE,OAAO,CAAC,CAAC;wBAEhG,gBAAgB,CAAC,kBAAkB,CAAC,oBAAoB,EAAE,KAAK,CAAC,CAAC;wBACjE,gBAAgB,CAAC,eAAe,CAAC,oBAAoB,CAAC,CAAC;wBAEvD,8EAA8E;wBAC9E,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;qBACvB;iBACF;aACF;SACF;QAED,oEAAoE;QACpE,IAAI,CAAC,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,cAAc,EAAE,gBAAgB,EAAE,eAAe,EAAE,OAAO,CAAC,CAAC;QAE7F,yBAAyB;QACzB,IAAI,CAAC,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,cAAc,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAC;QAC/E,IAAI,CAAC,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,cAAc,EAAE,gBAAgB,CAAC,CAAC;IACxE,CAAC;IAED;;OAEG;IACgB,aAAa,CAC9B,IAAkB,EAClB,MAAkB,EAClB,cAA0B,EAC1B,gBAAkC,EAClC,gBAAkC,EAClC,OAAgB;QAEhB,MAAM,cAAc,GAAG,QAAQ,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;QACjD,IAAI,CAAC,cAAc;YAAE,OAAO;QAE5B,MAAM,KAAK,GAAG,CAAC,IAAI,CAAC,KAAK,IAAI,EAAE,CAAc,CAAC;QAE9C,MAAM,cAAc,GAAG,MAAM,CAAC,WAAW,CAAC;QAC1C,MAAM,cAAc,GAAG,MAAM,CAAC,WAAW,CAAC;QAE1C,MAAM,WAAW,GAAG,QAAQ,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC;QAClE,MAAM,WAAW,GAAG,QAAQ,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;QAE1E,IAAI,UAAU,GAAG,CAAC,CAAC;QAEnB,+BAA+B;QAC/B,MAAM,cAAc,GAAG,gBAAgB,CAAC,iBAAiB,CAAC,IAAI,CAAC,CAAC;QAEhE,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;YACrC,MAAM,oBAAoB,GAAG,IAAI,gBAAgB,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;YACxE,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,cAAc,EAAE,MAAM,EAAE,oBAAoB,EAAE,IAAI,CAAC,gBAAgB,EAAE,EAAE,OAAO,CAAC,CAAC;YAC5G,IAAI,CAAC,oBAAoB,CAAC,WAAW,EAAE,EAAE;gBACvC,qDAAqD;gBACrD,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;gBAEtB,UAAU,EAAE,CAAC;gBACb,IAAI,WAAW,KAAK,SAAS,IAAI,UAAU,GAAG,WAAW,EAAE;oBACzD,MAAM;iBACP;aACF;SACF;QAED,IAAI,UAAU,GAAG,WAAW,EAAE;YAC5B,gBAAgB,CAAC,QAAQ,CAAC,IAAI,CAAC;gBAC7B,QAAQ,EAAE,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;gBACtD,QAAQ,EAAE,kBAAkB,CAAC,OAAO;gBACpC,OAAO,EAAE,MAAM,CAAC,YAAY,IAAI,IAAI,CAAC,CAAC,CAAC,oEAAoE,EAAE,WAAW,CAAC;gBACzH,MAAM,EAAE,IAAI,CAAC,eAAe,CAAC,MAAM,EAAE,cAAc,CAAC;gBACpD,SAAS,EAAE,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,cAAc,CAAC;aACrD,CAAC,CAAC;SACJ;QAED,IAAI,WAAW,KAAK,SAAS,IAAI,UAAU,GAAG,WAAW,EAAE;YACzD,gBAAgB,CAAC,QAAQ,CAAC,IAAI,CAAC;gBAC7B,QAAQ,EAAE,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE;gBACtD,QAAQ,EAAE,kBAAkB,CAAC,OAAO;gBACpC,OAAO,EACL,MAAM,CAAC,YAAY,IAAI,IAAI,CAAC,CAAC,CAAC,sEAAsE,EAAE,WAAW,CAAC;gBACpH,MAAM,EAAE,IAAI,CAAC,eAAe,CAAC,MAAM,EAAE,cAAc,CAAC;gBACpD,SAAS,EAAE,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,cAAc,CAAC;aACrD,CAAC,CAAC;SACJ;IACH,CAAC;CACF"}
|
||||
Generated
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
import { SchemaDialect } from '../../jsonSchema';
|
||||
import { BaseValidator } from './baseValidator';
|
||||
export declare function getValidator(dialect: SchemaDialect): BaseValidator;
|
||||
Generated
Vendored
+24
@@ -0,0 +1,24 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) IBM Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
import { SchemaDialect } from '../../jsonSchema';
|
||||
import { Draft04Validator } from './draft04Validator';
|
||||
import { Draft07Validator } from './draft07Validator';
|
||||
import { Draft2019Validator } from './draft2019Validator';
|
||||
import { Draft2020Validator } from './draft2020Validator';
|
||||
export function getValidator(dialect) {
|
||||
switch (dialect) {
|
||||
case SchemaDialect.draft04:
|
||||
return new Draft04Validator();
|
||||
case SchemaDialect.draft07:
|
||||
return new Draft07Validator();
|
||||
case SchemaDialect.draft2019:
|
||||
return new Draft2019Validator();
|
||||
case SchemaDialect.draft2020:
|
||||
return new Draft2020Validator();
|
||||
default:
|
||||
return new Draft07Validator(); // fallback
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=validatorFactory.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"validatorFactory.js","sourceRoot":"","sources":["../../../../../src/languageservice/parser/schemaValidation/validatorFactory.ts"],"names":[],"mappings":"AAAA;;;gGAGgG;AAEhG,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,MAAM,UAAU,YAAY,CAAC,OAAsB;IACjD,QAAQ,OAAO,EAAE;QACf,KAAK,aAAa,CAAC,OAAO;YACxB,OAAO,IAAI,gBAAgB,EAAE,CAAC;QAChC,KAAK,aAAa,CAAC,OAAO;YACxB,OAAO,IAAI,gBAAgB,EAAE,CAAC;QAChC,KAAK,aAAa,CAAC,SAAS;YAC1B,OAAO,IAAI,kBAAkB,EAAE,CAAC;QAClC,KAAK,aAAa,CAAC,SAAS;YAC1B,OAAO,IAAI,kBAAkB,EAAE,CAAC;QAClC;YACE,OAAO,IAAI,gBAAgB,EAAE,CAAC,CAAC,WAAW;KAC7C;AACH,CAAC"}
|
||||
Generated
Vendored
+71
@@ -0,0 +1,71 @@
|
||||
import { TextDocument } from 'vscode-languageserver-textdocument';
|
||||
import { JSONDocument } from './jsonDocument';
|
||||
import { Document, LineCounter } from 'yaml';
|
||||
import { ASTNode, YamlNode } from '../jsonASTTypes';
|
||||
import { ParserOptions } from './yamlParser07';
|
||||
import { YAMLDocDiagnostic } from '../utils/parseUtils';
|
||||
import { TextBuffer } from '../utils/textBuffer';
|
||||
import { Token } from 'yaml/dist/parse/cst';
|
||||
/**
|
||||
* These documents are collected into a final YAMLDocument
|
||||
* and passed to the `parseYAML` caller.
|
||||
*/
|
||||
export declare class SingleYAMLDocument extends JSONDocument {
|
||||
private lineCounter;
|
||||
private _internalDocument;
|
||||
root: ASTNode;
|
||||
currentDocIndex: number;
|
||||
private _lineComments;
|
||||
constructor(lineCounter?: LineCounter);
|
||||
/**
|
||||
* Create a deep copy of this document
|
||||
*/
|
||||
clone(): SingleYAMLDocument;
|
||||
private collectLineComments;
|
||||
/**
|
||||
* Updates the internal AST tree of the object
|
||||
* from the internal node. This is call whenever the
|
||||
* internalDocument is set but also can be called to
|
||||
* reflect any changes on the underlying document
|
||||
* without setting the internalDocument explicitly.
|
||||
*/
|
||||
updateFromInternalDocument(): void;
|
||||
set internalDocument(document: Document);
|
||||
get internalDocument(): Document;
|
||||
get lineComments(): string[];
|
||||
set lineComments(val: string[]);
|
||||
get errors(): YAMLDocDiagnostic[];
|
||||
get warnings(): YAMLDocDiagnostic[];
|
||||
getNodeFromPosition(positionOffset: number, textBuffer: TextBuffer, configuredIndentation?: number): [YamlNode | undefined, boolean];
|
||||
findClosestNode(offset: number, textBuffer: TextBuffer, configuredIndentation?: number): YamlNode;
|
||||
private getProperParentByIndentation;
|
||||
getParent(node: YamlNode): YamlNode | undefined;
|
||||
}
|
||||
/**
|
||||
* Contains the SingleYAMLDocuments, to be passed
|
||||
* to the `parseYAML` caller.
|
||||
*/
|
||||
export declare class YAMLDocument {
|
||||
documents: SingleYAMLDocument[];
|
||||
tokens: Token[];
|
||||
private errors;
|
||||
private warnings;
|
||||
constructor(documents: SingleYAMLDocument[], tokens: Token[]);
|
||||
}
|
||||
export declare class YamlDocuments {
|
||||
private cache;
|
||||
/**
|
||||
* Get cached YAMLDocument
|
||||
* @param document TextDocument to parse
|
||||
* @param parserOptions YAML parserOptions
|
||||
* @param addRootObject if true and document is empty add empty object {} to force schema usage
|
||||
* @returns the YAMLDocument
|
||||
*/
|
||||
getYamlDocument(document: TextDocument, parserOptions?: ParserOptions, addRootObject?: boolean): YAMLDocument;
|
||||
/**
|
||||
* For test purpose only!
|
||||
*/
|
||||
clear(): void;
|
||||
private ensureCache;
|
||||
}
|
||||
export declare const yamlDocumentsCache: YamlDocuments;
|
||||
Generated
Vendored
+258
@@ -0,0 +1,258 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Red Hat, Inc. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
import { JSONDocument } from './jsonDocument';
|
||||
import { isNode, isPair, isScalar, visit } from 'yaml';
|
||||
import { defaultOptions, parse as parseYAML } from './yamlParser07';
|
||||
import { ErrorCode } from 'vscode-json-languageservice';
|
||||
import { convertAST } from './ast-converter';
|
||||
import { isArrayEqual } from '../utils/arrUtils';
|
||||
import { getParent } from '../utils/yamlAstUtils';
|
||||
import { getIndentation } from '../utils/strings';
|
||||
/**
|
||||
* These documents are collected into a final YAMLDocument
|
||||
* and passed to the `parseYAML` caller.
|
||||
*/
|
||||
export class SingleYAMLDocument extends JSONDocument {
|
||||
constructor(lineCounter) {
|
||||
super(null, []);
|
||||
this.lineCounter = lineCounter;
|
||||
}
|
||||
/**
|
||||
* Create a deep copy of this document
|
||||
*/
|
||||
clone() {
|
||||
const copy = new SingleYAMLDocument(this.lineCounter);
|
||||
copy.isKubernetes = this.isKubernetes;
|
||||
copy.disableAdditionalProperties = this.disableAdditionalProperties;
|
||||
copy.uri = this.uri;
|
||||
copy.currentDocIndex = this.currentDocIndex;
|
||||
copy._lineComments = this.lineComments.slice();
|
||||
// this will re-create root node
|
||||
copy.internalDocument = this._internalDocument.clone();
|
||||
return copy;
|
||||
}
|
||||
collectLineComments() {
|
||||
this._lineComments = [];
|
||||
if (this._internalDocument.commentBefore) {
|
||||
const comments = this._internalDocument.commentBefore.split('\n');
|
||||
comments.forEach((comment) => this._lineComments.push(`#${comment}`));
|
||||
}
|
||||
visit(this.internalDocument, (_key, node) => {
|
||||
if (node?.commentBefore) {
|
||||
const comments = node?.commentBefore.split('\n');
|
||||
comments.forEach((comment) => this._lineComments.push(`#${comment}`));
|
||||
}
|
||||
if (node?.comment) {
|
||||
this._lineComments.push(`#${node.comment}`);
|
||||
}
|
||||
});
|
||||
if (this._internalDocument.comment) {
|
||||
this._lineComments.push(`#${this._internalDocument.comment}`);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Updates the internal AST tree of the object
|
||||
* from the internal node. This is call whenever the
|
||||
* internalDocument is set but also can be called to
|
||||
* reflect any changes on the underlying document
|
||||
* without setting the internalDocument explicitly.
|
||||
*/
|
||||
updateFromInternalDocument() {
|
||||
this.root = convertAST(null, this._internalDocument.contents, this._internalDocument, this.lineCounter);
|
||||
}
|
||||
set internalDocument(document) {
|
||||
this._internalDocument = document;
|
||||
this.updateFromInternalDocument();
|
||||
}
|
||||
get internalDocument() {
|
||||
return this._internalDocument;
|
||||
}
|
||||
get lineComments() {
|
||||
if (!this._lineComments) {
|
||||
this.collectLineComments();
|
||||
}
|
||||
return this._lineComments;
|
||||
}
|
||||
set lineComments(val) {
|
||||
this._lineComments = val;
|
||||
}
|
||||
get errors() {
|
||||
return this.internalDocument.errors.map(YAMLErrorToYamlDocDiagnostics);
|
||||
}
|
||||
get warnings() {
|
||||
return this.internalDocument.warnings.map(YAMLErrorToYamlDocDiagnostics);
|
||||
}
|
||||
getNodeFromPosition(positionOffset, textBuffer, configuredIndentation) {
|
||||
const position = textBuffer.getPosition(positionOffset);
|
||||
const lineContent = textBuffer.getLineContent(position.line);
|
||||
if (lineContent.trim().length === 0) {
|
||||
return [this.findClosestNode(positionOffset, textBuffer, configuredIndentation), true];
|
||||
}
|
||||
const textAfterPosition = lineContent.substring(position.character);
|
||||
const spacesAfterPositionMatch = textAfterPosition.match(/^([ ]+)\n?$/);
|
||||
const areOnlySpacesAfterPosition = !!spacesAfterPositionMatch;
|
||||
const countOfSpacesAfterPosition = spacesAfterPositionMatch?.[1].length;
|
||||
let closestNode;
|
||||
visit(this.internalDocument, (key, node) => {
|
||||
if (!node) {
|
||||
return;
|
||||
}
|
||||
const range = node.range;
|
||||
if (!range) {
|
||||
return;
|
||||
}
|
||||
const isNullNodeOnTheLine = () => areOnlySpacesAfterPosition &&
|
||||
positionOffset + countOfSpacesAfterPosition === range[2] &&
|
||||
isScalar(node) &&
|
||||
node.value === null;
|
||||
if ((range[0] <= positionOffset && range[1] >= positionOffset) || isNullNodeOnTheLine()) {
|
||||
closestNode = node;
|
||||
}
|
||||
else {
|
||||
return visit.SKIP;
|
||||
}
|
||||
});
|
||||
return [closestNode, false];
|
||||
}
|
||||
findClosestNode(offset, textBuffer, configuredIndentation) {
|
||||
let offsetDiff = this.internalDocument.range[2];
|
||||
let maxOffset = this.internalDocument.range[0];
|
||||
let closestNode;
|
||||
visit(this.internalDocument, (key, node) => {
|
||||
if (!node) {
|
||||
return;
|
||||
}
|
||||
const range = node.range;
|
||||
if (!range) {
|
||||
return;
|
||||
}
|
||||
const diff = range[1] - offset;
|
||||
if (maxOffset <= range[0] && diff <= 0 && Math.abs(diff) <= offsetDiff) {
|
||||
offsetDiff = Math.abs(diff);
|
||||
maxOffset = range[0];
|
||||
closestNode = node;
|
||||
}
|
||||
});
|
||||
const position = textBuffer.getPosition(offset);
|
||||
const lineContent = textBuffer.getLineContent(position.line);
|
||||
const indentation = getIndentation(lineContent, position.character);
|
||||
if (isScalar(closestNode) && closestNode.value === null) {
|
||||
return closestNode;
|
||||
}
|
||||
if (indentation === position.character) {
|
||||
closestNode = this.getProperParentByIndentation(indentation, closestNode, textBuffer, '', configuredIndentation);
|
||||
}
|
||||
return closestNode;
|
||||
}
|
||||
getProperParentByIndentation(indentation, node, textBuffer, currentLine, configuredIndentation, rootParent) {
|
||||
if (!node) {
|
||||
return this.internalDocument.contents;
|
||||
}
|
||||
configuredIndentation = !configuredIndentation ? 2 : configuredIndentation;
|
||||
if (isNode(node) && node.range) {
|
||||
const position = textBuffer.getPosition(node.range[0]);
|
||||
const lineContent = textBuffer.getLineContent(position.line);
|
||||
currentLine = currentLine === '' ? lineContent.trim() : currentLine;
|
||||
if (currentLine.startsWith('-') && indentation === configuredIndentation && currentLine === lineContent.trim()) {
|
||||
position.character += indentation;
|
||||
}
|
||||
if (position.character > indentation && position.character > 0) {
|
||||
const parent = this.getParent(node);
|
||||
if (parent) {
|
||||
return this.getProperParentByIndentation(indentation, parent, textBuffer, currentLine, configuredIndentation, rootParent);
|
||||
}
|
||||
}
|
||||
else if (position.character < indentation) {
|
||||
const parent = this.getParent(node);
|
||||
if (isPair(parent) && isNode(parent.value)) {
|
||||
return parent.value;
|
||||
}
|
||||
else if (isPair(rootParent) && isNode(rootParent.value)) {
|
||||
return rootParent.value;
|
||||
}
|
||||
}
|
||||
else {
|
||||
return node;
|
||||
}
|
||||
}
|
||||
else if (isPair(node)) {
|
||||
rootParent = node;
|
||||
const parent = this.getParent(node);
|
||||
return this.getProperParentByIndentation(indentation, parent, textBuffer, currentLine, configuredIndentation, rootParent);
|
||||
}
|
||||
return node;
|
||||
}
|
||||
getParent(node) {
|
||||
return getParent(this.internalDocument, node);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Contains the SingleYAMLDocuments, to be passed
|
||||
* to the `parseYAML` caller.
|
||||
*/
|
||||
export class YAMLDocument {
|
||||
constructor(documents, tokens) {
|
||||
this.documents = documents;
|
||||
this.tokens = tokens;
|
||||
this.errors = [];
|
||||
this.warnings = [];
|
||||
}
|
||||
}
|
||||
export class YamlDocuments {
|
||||
constructor() {
|
||||
// a mapping of URIs to cached documents
|
||||
this.cache = new Map();
|
||||
}
|
||||
/**
|
||||
* Get cached YAMLDocument
|
||||
* @param document TextDocument to parse
|
||||
* @param parserOptions YAML parserOptions
|
||||
* @param addRootObject if true and document is empty add empty object {} to force schema usage
|
||||
* @returns the YAMLDocument
|
||||
*/
|
||||
getYamlDocument(document, parserOptions, addRootObject = false) {
|
||||
this.ensureCache(document, parserOptions ?? defaultOptions, addRootObject);
|
||||
return this.cache.get(document.uri).document;
|
||||
}
|
||||
/**
|
||||
* For test purpose only!
|
||||
*/
|
||||
clear() {
|
||||
this.cache.clear();
|
||||
}
|
||||
ensureCache(document, parserOptions, addRootObject) {
|
||||
const key = document.uri;
|
||||
if (!this.cache.has(key)) {
|
||||
this.cache.set(key, { version: -1, document: new YAMLDocument([], []), parserOptions: defaultOptions });
|
||||
}
|
||||
const cacheEntry = this.cache.get(key);
|
||||
if (cacheEntry.version !== document.version ||
|
||||
(parserOptions.customTags && !isArrayEqual(cacheEntry.parserOptions.customTags, parserOptions.customTags))) {
|
||||
let text = document.getText();
|
||||
// if text is contains only whitespace wrap all text in object to force schema selection
|
||||
if (addRootObject && !/\S/.test(text)) {
|
||||
text = `{${text}}`;
|
||||
}
|
||||
const doc = parseYAML(text, parserOptions, document);
|
||||
cacheEntry.document = doc;
|
||||
cacheEntry.version = document.version;
|
||||
cacheEntry.parserOptions = parserOptions;
|
||||
}
|
||||
}
|
||||
}
|
||||
export const yamlDocumentsCache = new YamlDocuments();
|
||||
function YAMLErrorToYamlDocDiagnostics(error) {
|
||||
return {
|
||||
message: error.message,
|
||||
location: {
|
||||
start: error.pos[0],
|
||||
end: error.pos[1],
|
||||
toLineEnd: true,
|
||||
},
|
||||
severity: 1,
|
||||
code: ErrorCode.Undefined,
|
||||
};
|
||||
}
|
||||
//# sourceMappingURL=yaml-documents.js.map
|
||||
Generated
Vendored
+1
File diff suppressed because one or more lines are too long
Generated
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
import { YAMLDocument, SingleYAMLDocument } from './yaml-documents';
|
||||
import { TextDocument } from 'vscode-languageserver-textdocument';
|
||||
export { YAMLDocument, SingleYAMLDocument };
|
||||
export type YamlVersion = '1.1' | '1.2';
|
||||
export interface ParserOptions {
|
||||
customTags: string[];
|
||||
yamlVersion: YamlVersion;
|
||||
}
|
||||
export declare const defaultOptions: ParserOptions;
|
||||
/**
|
||||
* `yaml-ast-parser-custom-tags` parses the AST and
|
||||
* returns YAML AST nodes, which are then formatted
|
||||
* for consumption via the language server.
|
||||
*/
|
||||
export declare function parse(text: string, parserOptions?: ParserOptions, document?: TextDocument): YAMLDocument;
|
||||
+50
@@ -0,0 +1,50 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Red Hat, Inc. All rights reserved.
|
||||
* Copyright (c) Adam Voss. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
import { Parser, Composer, LineCounter } from 'yaml';
|
||||
import { YAMLDocument, SingleYAMLDocument } from './yaml-documents';
|
||||
import { getCustomTags } from './custom-tag-provider';
|
||||
import { TextBuffer } from '../utils/textBuffer';
|
||||
export { YAMLDocument, SingleYAMLDocument };
|
||||
export const defaultOptions = {
|
||||
customTags: [],
|
||||
yamlVersion: '1.2',
|
||||
};
|
||||
/**
|
||||
* `yaml-ast-parser-custom-tags` parses the AST and
|
||||
* returns YAML AST nodes, which are then formatted
|
||||
* for consumption via the language server.
|
||||
*/
|
||||
export function parse(text, parserOptions = defaultOptions, document) {
|
||||
const options = {
|
||||
strict: false,
|
||||
customTags: getCustomTags(parserOptions.customTags),
|
||||
version: parserOptions.yamlVersion ?? defaultOptions.yamlVersion,
|
||||
keepSourceTokens: true,
|
||||
};
|
||||
const composer = new Composer(options);
|
||||
const lineCounter = new LineCounter();
|
||||
let isLastLineEmpty = false;
|
||||
if (document) {
|
||||
const textBuffer = new TextBuffer(document);
|
||||
const position = textBuffer.getPosition(text.length);
|
||||
const lineContent = textBuffer.getLineContent(position.line);
|
||||
isLastLineEmpty = lineContent.trim().length === 0;
|
||||
}
|
||||
const parser = isLastLineEmpty ? new Parser() : new Parser(lineCounter.addNewLine);
|
||||
const tokens = parser.parse(text);
|
||||
const tokensArr = Array.from(tokens);
|
||||
const docs = composer.compose(tokensArr, true, text.length);
|
||||
// Generate the SingleYAMLDocs from the AST nodes
|
||||
const yamlDocs = Array.from(docs, (doc) => parsedDocToSingleYAMLDocument(doc, lineCounter));
|
||||
// Consolidate the SingleYAMLDocs
|
||||
return new YAMLDocument(yamlDocs, tokensArr);
|
||||
}
|
||||
function parsedDocToSingleYAMLDocument(parsedDoc, lineCounter) {
|
||||
const syd = new SingleYAMLDocument(lineCounter);
|
||||
syd.internalDocument = parsedDoc;
|
||||
return syd;
|
||||
}
|
||||
//# sourceMappingURL=yamlParser07.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"yamlParser07.js","sourceRoot":"","sources":["../../../../src/languageservice/parser/yamlParser07.ts"],"names":[],"mappings":"AAAA;;;;gGAIgG;AAEhG,OAAO,EAAE,MAAM,EAAE,QAAQ,EAAY,WAAW,EAAgD,MAAM,MAAM,CAAC;AAC7G,OAAO,EAAE,YAAY,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AACpE,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAEtD,OAAO,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAEjD,OAAO,EAAE,YAAY,EAAE,kBAAkB,EAAE,CAAC;AAO5C,MAAM,CAAC,MAAM,cAAc,GAAkB;IAC3C,UAAU,EAAE,EAAE;IACd,WAAW,EAAE,KAAK;CACnB,CAAC;AACF;;;;GAIG;AACH,MAAM,UAAU,KAAK,CAAC,IAAY,EAAE,gBAA+B,cAAc,EAAE,QAAuB;IACxG,MAAM,OAAO,GAAmD;QAC9D,MAAM,EAAE,KAAK;QACb,UAAU,EAAE,aAAa,CAAC,aAAa,CAAC,UAAU,CAAC;QACnD,OAAO,EAAE,aAAa,CAAC,WAAW,IAAI,cAAc,CAAC,WAAW;QAChE,gBAAgB,EAAE,IAAI;KACvB,CAAC;IACF,MAAM,QAAQ,GAAG,IAAI,QAAQ,CAAC,OAAO,CAAC,CAAC;IACvC,MAAM,WAAW,GAAG,IAAI,WAAW,EAAE,CAAC;IACtC,IAAI,eAAe,GAAG,KAAK,CAAC;IAC5B,IAAI,QAAQ,EAAE;QACZ,MAAM,UAAU,GAAG,IAAI,UAAU,CAAC,QAAQ,CAAC,CAAC;QAC5C,MAAM,QAAQ,GAAG,UAAU,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QACrD,MAAM,WAAW,GAAG,UAAU,CAAC,cAAc,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;QAC7D,eAAe,GAAG,WAAW,CAAC,IAAI,EAAE,CAAC,MAAM,KAAK,CAAC,CAAC;KACnD;IACD,MAAM,MAAM,GAAG,eAAe,CAAC,CAAC,CAAC,IAAI,MAAM,EAAE,CAAC,CAAC,CAAC,IAAI,MAAM,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IACnF,MAAM,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IAClC,MAAM,SAAS,GAAG,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IACrC,MAAM,IAAI,GAAG,QAAQ,CAAC,OAAO,CAAC,SAAS,EAAE,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,CAAC;IAC5D,iDAAiD;IACjD,MAAM,QAAQ,GAAyB,KAAK,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,6BAA6B,CAAC,GAAG,EAAE,WAAW,CAAC,CAAC,CAAC;IAElH,iCAAiC;IACjC,OAAO,IAAI,YAAY,CAAC,QAAQ,EAAE,SAAS,CAAC,CAAC;AAC/C,CAAC;AAED,SAAS,6BAA6B,CAAC,SAAmB,EAAE,WAAwB;IAClF,MAAM,GAAG,GAAG,IAAI,kBAAkB,CAAC,WAAW,CAAC,CAAC;IAChD,GAAG,CAAC,gBAAgB,GAAG,SAAS,CAAC;IACjC,OAAO,GAAG,CAAC;AACb,CAAC"}
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
import { SingleYAMLDocument } from '../parser/yamlParser07';
|
||||
import { JSONDocument } from '../parser/jsonDocument';
|
||||
import { ResolvedSchema } from 'vscode-json-languageservice/lib/umd/services/jsonSchemaService';
|
||||
/**
|
||||
* Retrieve schema by auto-detecting the Kubernetes GroupVersionKind (GVK) from the document.
|
||||
* If there is no definition for the GVK in the main kubernetes schema,
|
||||
* the schema is then retrieved from the CRD catalog.
|
||||
* Public for testing purpose, not part of the API.
|
||||
* @param doc
|
||||
* @param crdCatalogURI The URL of the CRD catalog to retrieve the schema from
|
||||
* @param kubernetesSchema The main kubernetes schema, if it includes a definition for the GVK it will be used
|
||||
*/
|
||||
export declare function autoDetectKubernetesSchemaFromDocument(doc: SingleYAMLDocument | JSONDocument, crdCatalogURI: string, kubernetesSchema: ResolvedSchema): string | undefined;
|
||||
/**
|
||||
* Retrieve the group, version and kind from the document.
|
||||
* Public for testing purpose, not part of the API.
|
||||
* @param doc
|
||||
*/
|
||||
export declare function getGroupVersionKindFromDocument(doc: SingleYAMLDocument | JSONDocument): {
|
||||
group: string;
|
||||
version: string;
|
||||
kind: string;
|
||||
} | undefined;
|
||||
+74
@@ -0,0 +1,74 @@
|
||||
import { SingleYAMLDocument } from '../parser/yamlParser07';
|
||||
/**
|
||||
* Retrieve schema by auto-detecting the Kubernetes GroupVersionKind (GVK) from the document.
|
||||
* If there is no definition for the GVK in the main kubernetes schema,
|
||||
* the schema is then retrieved from the CRD catalog.
|
||||
* Public for testing purpose, not part of the API.
|
||||
* @param doc
|
||||
* @param crdCatalogURI The URL of the CRD catalog to retrieve the schema from
|
||||
* @param kubernetesSchema The main kubernetes schema, if it includes a definition for the GVK it will be used
|
||||
*/
|
||||
export function autoDetectKubernetesSchemaFromDocument(doc, crdCatalogURI, kubernetesSchema) {
|
||||
const res = getGroupVersionKindFromDocument(doc);
|
||||
if (!res) {
|
||||
return undefined;
|
||||
}
|
||||
const { group, version, kind } = res;
|
||||
if (!group || !version || !kind) {
|
||||
return undefined;
|
||||
}
|
||||
const k8sSchema = kubernetesSchema.schema;
|
||||
const kubernetesBuildIns = (k8sSchema.oneOf || [])
|
||||
.map((s) => {
|
||||
if (typeof s === 'boolean') {
|
||||
return undefined;
|
||||
}
|
||||
return s._$ref || s.$ref;
|
||||
})
|
||||
.filter((ref) => ref)
|
||||
.map((ref) => ref.replace('_definitions.json#/definitions/', '').toLowerCase());
|
||||
const groupWithoutK8sIO = group.replace('.k8s.io', '');
|
||||
const k8sTypeName = `io.k8s.api.${groupWithoutK8sIO.toLowerCase()}.${version.toLowerCase()}.${kind.toLowerCase()}`;
|
||||
if (kubernetesBuildIns.includes(k8sTypeName)) {
|
||||
return undefined;
|
||||
}
|
||||
if (k8sTypeName.includes('openshift.io')) {
|
||||
return `${crdCatalogURI}/openshift/v4.15-strict/${kind.toLowerCase()}_${group.toLowerCase()}_${version.toLowerCase()}.json`;
|
||||
}
|
||||
const schemaURL = `${crdCatalogURI}/${group.toLowerCase()}/${kind.toLowerCase()}_${version.toLowerCase()}.json`;
|
||||
return schemaURL;
|
||||
}
|
||||
/**
|
||||
* Retrieve the group, version and kind from the document.
|
||||
* Public for testing purpose, not part of the API.
|
||||
* @param doc
|
||||
*/
|
||||
export function getGroupVersionKindFromDocument(doc) {
|
||||
if (doc instanceof SingleYAMLDocument) {
|
||||
try {
|
||||
const rootJSON = doc.root.internalNode.toJSON();
|
||||
if (!rootJSON) {
|
||||
return undefined;
|
||||
}
|
||||
const groupVersion = rootJSON['apiVersion'];
|
||||
if (!groupVersion) {
|
||||
return undefined;
|
||||
}
|
||||
const [group, version] = groupVersion.split('/');
|
||||
if (!group || !version) {
|
||||
return undefined;
|
||||
}
|
||||
const kind = rootJSON['kind'];
|
||||
if (!kind) {
|
||||
return undefined;
|
||||
}
|
||||
return { group, version, kind };
|
||||
}
|
||||
catch (error) {
|
||||
console.error('Error parsing YAML document:', error);
|
||||
return undefined;
|
||||
}
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
//# sourceMappingURL=crdUtil.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"crdUtil.js","sourceRoot":"","sources":["../../../../src/languageservice/services/crdUtil.ts"],"names":[],"mappings":"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"}
|
||||
Generated
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
import { SymbolInformation, DocumentSymbol } from 'vscode-languageserver-types';
|
||||
import { YAMLSchemaService } from './yamlSchemaService';
|
||||
import { DocumentSymbolsContext } from 'vscode-json-languageservice/lib/umd/jsonLanguageTypes';
|
||||
import { TextDocument } from 'vscode-languageserver-textdocument';
|
||||
import { Telemetry } from '../telemetry';
|
||||
export declare class YAMLDocumentSymbols {
|
||||
private readonly telemetry?;
|
||||
private jsonDocumentSymbols;
|
||||
constructor(schemaService: YAMLSchemaService, telemetry?: Telemetry);
|
||||
findDocumentSymbols(document: TextDocument, context?: DocumentSymbolsContext): SymbolInformation[];
|
||||
findHierarchicalDocumentSymbols(document: TextDocument, context?: DocumentSymbolsContext): DocumentSymbol[];
|
||||
}
|
||||
Generated
Vendored
+67
@@ -0,0 +1,67 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Red Hat, Inc. All rights reserved.
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
import { JSONDocumentSymbols } from 'vscode-json-languageservice/lib/umd/services/jsonDocumentSymbols';
|
||||
import { yamlDocumentsCache } from '../parser/yaml-documents';
|
||||
import { isMap, isSeq } from 'yaml';
|
||||
export class YAMLDocumentSymbols {
|
||||
constructor(schemaService, telemetry) {
|
||||
this.telemetry = telemetry;
|
||||
this.jsonDocumentSymbols = new JSONDocumentSymbols(schemaService);
|
||||
// override 'getKeyLabel' to handle complex mapping
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
this.jsonDocumentSymbols.getKeyLabel = (property) => {
|
||||
const keyNode = property.keyNode.internalNode;
|
||||
let name = '';
|
||||
if (isMap(keyNode)) {
|
||||
name = '{}';
|
||||
}
|
||||
else if (isSeq(keyNode)) {
|
||||
name = '[]';
|
||||
}
|
||||
else {
|
||||
name = keyNode.source;
|
||||
}
|
||||
return name;
|
||||
};
|
||||
}
|
||||
findDocumentSymbols(document, context = { resultLimit: Number.MAX_VALUE }) {
|
||||
let results = [];
|
||||
try {
|
||||
const doc = yamlDocumentsCache.getYamlDocument(document);
|
||||
if (!doc || doc['documents'].length === 0) {
|
||||
return null;
|
||||
}
|
||||
for (const yamlDoc of doc['documents']) {
|
||||
if (yamlDoc.root) {
|
||||
results = results.concat(this.jsonDocumentSymbols.findDocumentSymbols(document, yamlDoc, context));
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (err) {
|
||||
this.telemetry?.sendError('yaml.documentSymbols.error', err);
|
||||
}
|
||||
return results;
|
||||
}
|
||||
findHierarchicalDocumentSymbols(document, context = { resultLimit: Number.MAX_VALUE }) {
|
||||
let results = [];
|
||||
try {
|
||||
const doc = yamlDocumentsCache.getYamlDocument(document);
|
||||
if (!doc || doc['documents'].length === 0) {
|
||||
return null;
|
||||
}
|
||||
for (const yamlDoc of doc['documents']) {
|
||||
if (yamlDoc.root) {
|
||||
results = results.concat(this.jsonDocumentSymbols.findDocumentSymbols2(document, yamlDoc, context));
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (err) {
|
||||
this.telemetry?.sendError('yaml.hierarchicalDocumentSymbols.error', err);
|
||||
}
|
||||
return results;
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=documentSymbols.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"documentSymbols.js","sourceRoot":"","sources":["../../../../src/languageservice/services/documentSymbols.ts"],"names":[],"mappings":"AAAA;;;;gGAIgG;AAIhG,OAAO,EAAE,mBAAmB,EAAE,MAAM,kEAAkE,CAAC;AAGvG,OAAO,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAE9D,OAAO,EAAE,KAAK,EAAE,KAAK,EAAQ,MAAM,MAAM,CAAC;AAE1C,MAAM,OAAO,mBAAmB;IAG9B,YACE,aAAgC,EACf,SAAqB;QAArB,cAAS,GAAT,SAAS,CAAY;QAEtC,IAAI,CAAC,mBAAmB,GAAG,IAAI,mBAAmB,CAAC,aAAa,CAAC,CAAC;QAElE,mDAAmD;QACnD,8DAA8D;QAC9D,IAAI,CAAC,mBAAmB,CAAC,WAAW,GAAG,CAAC,QAAa,EAAE,EAAE;YACvD,MAAM,OAAO,GAAS,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC;YACpD,IAAI,IAAI,GAAG,EAAE,CAAC;YACd,IAAI,KAAK,CAAC,OAAO,CAAC,EAAE;gBAClB,IAAI,GAAG,IAAI,CAAC;aACb;iBAAM,IAAI,KAAK,CAAC,OAAO,CAAC,EAAE;gBACzB,IAAI,GAAG,IAAI,CAAC;aACb;iBAAM;gBACL,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC;aACvB;YACD,OAAO,IAAI,CAAC;QACd,CAAC,CAAC;IACJ,CAAC;IAEM,mBAAmB,CACxB,QAAsB,EACtB,UAAkC,EAAE,WAAW,EAAE,MAAM,CAAC,SAAS,EAAE;QAEnE,IAAI,OAAO,GAAG,EAAE,CAAC;QACjB,IAAI;YACF,MAAM,GAAG,GAAG,kBAAkB,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC;YACzD,IAAI,CAAC,GAAG,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,MAAM,KAAK,CAAC,EAAE;gBACzC,OAAO,IAAI,CAAC;aACb;YAED,KAAK,MAAM,OAAO,IAAI,GAAG,CAAC,WAAW,CAAC,EAAE;gBACtC,IAAI,OAAO,CAAC,IAAI,EAAE;oBAChB,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,mBAAmB,CAAC,mBAAmB,CAAC,QAAQ,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC;iBACpG;aACF;SACF;QAAC,OAAO,GAAG,EAAE;YACZ,IAAI,CAAC,SAAS,EAAE,SAAS,CAAC,4BAA4B,EAAE,GAAG,CAAC,CAAC;SAC9D;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IAEM,+BAA+B,CACpC,QAAsB,EACtB,UAAkC,EAAE,WAAW,EAAE,MAAM,CAAC,SAAS,EAAE;QAEnE,IAAI,OAAO,GAAG,EAAE,CAAC;QACjB,IAAI;YACF,MAAM,GAAG,GAAG,kBAAkB,CAAC,eAAe,CAAC,QAAQ,CAAC,CAAC;YACzD,IAAI,CAAC,GAAG,IAAI,GAAG,CAAC,WAAW,CAAC,CAAC,MAAM,KAAK,CAAC,EAAE;gBACzC,OAAO,IAAI,CAAC;aACb;YAED,KAAK,MAAM,OAAO,IAAI,GAAG,CAAC,WAAW,CAAC,EAAE;gBACtC,IAAI,OAAO,CAAC,IAAI,EAAE;oBAChB,OAAO,GAAG,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,mBAAmB,CAAC,oBAAoB,CAAC,QAAQ,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC;iBACrG;aACF;SACF;QAAC,OAAO,GAAG,EAAE;YACZ,IAAI,CAAC,SAAS,EAAE,SAAS,CAAC,wCAAwC,EAAE,GAAG,CAAC,CAAC;SAC1E;QAED,OAAO,OAAO,CAAC;IACjB,CAAC;CACF"}
|
||||
Generated
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
import { SingleYAMLDocument } from '../parser/yamlParser07';
|
||||
import { JSONDocument } from '../parser/jsonDocument';
|
||||
/**
|
||||
* Retrieve schema if declared as modeline.
|
||||
* Public for testing purpose, not part of the API.
|
||||
* @param doc
|
||||
*/
|
||||
export declare function getSchemaFromModeline(doc: SingleYAMLDocument | JSONDocument): string;
|
||||
export declare function isModeline(lineText: string): boolean;
|
||||
Generated
Vendored
+32
@@ -0,0 +1,32 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Red Hat, Inc. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
import { SingleYAMLDocument } from '../parser/yamlParser07';
|
||||
/**
|
||||
* Retrieve schema if declared as modeline.
|
||||
* Public for testing purpose, not part of the API.
|
||||
* @param doc
|
||||
*/
|
||||
export function getSchemaFromModeline(doc) {
|
||||
if (doc instanceof SingleYAMLDocument) {
|
||||
const yamlLanguageServerModeline = doc.lineComments.find((lineComment) => {
|
||||
return isModeline(lineComment);
|
||||
});
|
||||
if (yamlLanguageServerModeline != undefined) {
|
||||
const schemaMatchs = yamlLanguageServerModeline.match(/\$schema=\S+/g);
|
||||
if (schemaMatchs !== null && schemaMatchs.length >= 1) {
|
||||
if (schemaMatchs.length >= 2) {
|
||||
console.log('Several $schema attributes have been found on the yaml-language-server modeline. The first one will be picked.');
|
||||
}
|
||||
return schemaMatchs[0].substring('$schema='.length);
|
||||
}
|
||||
}
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
export function isModeline(lineText) {
|
||||
const matchModeline = lineText.match(/^#\s+yaml-language-server\s*:/g);
|
||||
return matchModeline !== null && matchModeline.length === 1;
|
||||
}
|
||||
//# sourceMappingURL=modelineUtil.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"modelineUtil.js","sourceRoot":"","sources":["../../../../src/languageservice/services/modelineUtil.ts"],"names":[],"mappings":"AAAA;;;gGAGgG;AAEhG,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAG5D;;;;GAIG;AACH,MAAM,UAAU,qBAAqB,CAAC,GAAsC;IAC1E,IAAI,GAAG,YAAY,kBAAkB,EAAE;QACrC,MAAM,0BAA0B,GAAG,GAAG,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC,WAAW,EAAE,EAAE;YACvE,OAAO,UAAU,CAAC,WAAW,CAAC,CAAC;QACjC,CAAC,CAAC,CAAC;QACH,IAAI,0BAA0B,IAAI,SAAS,EAAE;YAC3C,MAAM,YAAY,GAAG,0BAA0B,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC;YACvE,IAAI,YAAY,KAAK,IAAI,IAAI,YAAY,CAAC,MAAM,IAAI,CAAC,EAAE;gBACrD,IAAI,YAAY,CAAC,MAAM,IAAI,CAAC,EAAE;oBAC5B,OAAO,CAAC,GAAG,CACT,gHAAgH,CACjH,CAAC;iBACH;gBACD,OAAO,YAAY,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;aACrD;SACF;KACF;IACD,OAAO,SAAS,CAAC;AACnB,CAAC;AAED,MAAM,UAAU,UAAU,CAAC,QAAgB;IACzC,MAAM,aAAa,GAAG,QAAQ,CAAC,KAAK,CAAC,gCAAgC,CAAC,CAAC;IACvE,OAAO,aAAa,KAAK,IAAI,IAAI,aAAa,CAAC,MAAM,KAAK,CAAC,CAAC;AAC9D,CAAC"}
|
||||
Generated
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
import { Connection, WorkspaceFolder } from 'vscode-languageserver';
|
||||
import { URI } from 'vscode-uri';
|
||||
import { WorkspaceContextService } from '../yamlLanguageService';
|
||||
export interface FileSystem {
|
||||
readFile(fsPath: string, encoding?: string): Promise<string>;
|
||||
}
|
||||
/**
|
||||
* Handles schema content requests given the schema URI
|
||||
* @param uri can be a local file, vscode request, http(s) request or a custom request
|
||||
*/
|
||||
export declare const schemaRequestHandler: (connection: Connection, uri: string, workspaceFolders: WorkspaceFolder[], workspaceRoot: URI, useVSCodeContentRequest: boolean, fs: FileSystem, isWeb: boolean) => Promise<string>;
|
||||
export declare const workspaceContext: WorkspaceContextService;
|
||||
Generated
Vendored
+84
@@ -0,0 +1,84 @@
|
||||
import { join } from 'path';
|
||||
import { getErrorStatusDescription, xhr } from 'request-light';
|
||||
import * as URL from 'url';
|
||||
import { RequestType } from 'vscode-languageserver';
|
||||
import { URI } from 'vscode-uri';
|
||||
import { CustomSchemaContentRequest, VSCodeContentRequest } from '../../requestTypes';
|
||||
import { isRelativePath, relativeToAbsolutePath } from '../utils/paths';
|
||||
// eslint-disable-next-line @typescript-eslint/no-namespace
|
||||
var FSReadUri;
|
||||
(function (FSReadUri) {
|
||||
FSReadUri.type = new RequestType('fs/readUri');
|
||||
})(FSReadUri || (FSReadUri = {}));
|
||||
/**
|
||||
* Handles schema content requests given the schema URI
|
||||
* @param uri can be a local file, vscode request, http(s) request or a custom request
|
||||
*/
|
||||
export const schemaRequestHandler = async (connection, uri, workspaceFolders, workspaceRoot, useVSCodeContentRequest, fs, isWeb) => {
|
||||
if (!uri) {
|
||||
return Promise.reject('No schema specified');
|
||||
}
|
||||
// If the requested schema URI is a relative file path
|
||||
// Convert it into a proper absolute path URI
|
||||
if (isRelativePath(uri)) {
|
||||
// HACK: the fs/readUri extension is only available with vscode-yaml,
|
||||
// and this fix is specific to vscode-yaml on web, so don't use it in other cases
|
||||
if (workspaceFolders.length === 1 && isWeb) {
|
||||
const wsUri = URI.parse(workspaceFolders[0].uri);
|
||||
const wsDirname = wsUri.path;
|
||||
const modifiedUri = wsUri.with({ path: join(wsDirname, uri) });
|
||||
try {
|
||||
return connection.sendRequest(FSReadUri.type, modifiedUri.toString());
|
||||
}
|
||||
catch (e) {
|
||||
connection.window.showErrorMessage(`failed to get content of '${modifiedUri}': ${e}`);
|
||||
}
|
||||
}
|
||||
else {
|
||||
uri = relativeToAbsolutePath(workspaceFolders, workspaceRoot, uri);
|
||||
}
|
||||
}
|
||||
let scheme = URI.parse(uri).scheme.toLowerCase();
|
||||
// test if uri is windows path, ie starts with 'c:\'
|
||||
if (/^[a-z]:[\\/]/i.test(uri)) {
|
||||
const winUri = URI.file(uri);
|
||||
scheme = winUri.scheme.toLowerCase();
|
||||
uri = winUri.toString();
|
||||
}
|
||||
// If the requested schema is a local file, read and return the file contents
|
||||
if (scheme === 'file') {
|
||||
const fsPath = URI.parse(uri).fsPath;
|
||||
return fs.readFile(fsPath, 'UTF-8').catch(() => {
|
||||
// If there was an error reading the file, return empty error message
|
||||
// Otherwise return the file contents as a string
|
||||
return '';
|
||||
});
|
||||
}
|
||||
// HTTP(S) requests are sent and the response result is either the schema content or an error
|
||||
if (scheme === 'http' || scheme === 'https') {
|
||||
// If we are running inside of VSCode we need to make a content request. This content request
|
||||
// will make it so that schemas behind VPN's will resolve correctly
|
||||
if (useVSCodeContentRequest) {
|
||||
return connection.sendRequest(VSCodeContentRequest.type, uri).then((responseText) => {
|
||||
return responseText;
|
||||
}, (error) => {
|
||||
return Promise.reject(error.message);
|
||||
});
|
||||
}
|
||||
// Send the HTTP(S) schema content request and return the result
|
||||
const headers = { 'Accept-Encoding': 'gzip, deflate' };
|
||||
return xhr({ url: uri, followRedirects: 5, headers }).then((response) => {
|
||||
return response.responseText;
|
||||
}, (error) => {
|
||||
return Promise.reject(error.responseText || getErrorStatusDescription(error.status) || error.toString());
|
||||
});
|
||||
}
|
||||
// Neither local file nor vscode, nor HTTP(S) schema request, so send it off as a custom request
|
||||
return connection.sendRequest(CustomSchemaContentRequest.type, uri);
|
||||
};
|
||||
export const workspaceContext = {
|
||||
resolveRelativePath: (relativePath, resource) => {
|
||||
return URL.resolve(resource, relativePath);
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=schemaRequestHandler.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"schemaRequestHandler.js","sourceRoot":"","sources":["../../../../src/languageservice/services/schemaRequestHandler.ts"],"names":[],"mappings":"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"}
|
||||
Generated
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
import { TextDocument } from 'vscode-languageserver-textdocument';
|
||||
import { Diagnostic } from 'vscode-languageserver-types';
|
||||
import { SingleYAMLDocument } from '../../parser/yaml-documents';
|
||||
import { AdditionalValidator } from './types';
|
||||
export declare class MapKeyOrderValidator implements AdditionalValidator {
|
||||
validate(document: TextDocument, yamlDoc: SingleYAMLDocument): Diagnostic[];
|
||||
}
|
||||
Generated
Vendored
+35
@@ -0,0 +1,35 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Red Hat. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
import { Diagnostic, DiagnosticSeverity, Range } from 'vscode-languageserver-types';
|
||||
import { isMap, visit } from 'yaml';
|
||||
export class MapKeyOrderValidator {
|
||||
validate(document, yamlDoc) {
|
||||
const result = [];
|
||||
visit(yamlDoc.internalDocument, (key, node) => {
|
||||
if (isMap(node)) {
|
||||
for (let i = 1; i < node.items.length; i++) {
|
||||
if (compare(node.items[i - 1], node.items[i]) > 0) {
|
||||
const range = createRange(document, node.items[i - 1]);
|
||||
result.push(Diagnostic.create(range, `Wrong ordering of key "${node.items[i - 1].key}" in mapping`, DiagnosticSeverity.Error, 'mapKeyOrder'));
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
return result;
|
||||
}
|
||||
}
|
||||
function createRange(document, node) {
|
||||
const keySourceToken = node.key.srcToken;
|
||||
const start = keySourceToken.offset;
|
||||
const end = start + keySourceToken.source.length;
|
||||
return Range.create(document.positionAt(start), document.positionAt(end));
|
||||
}
|
||||
function compare(thiz, that) {
|
||||
const thatKey = String(that.key);
|
||||
const thisKey = String(thiz.key);
|
||||
return thisKey.localeCompare(thatKey);
|
||||
}
|
||||
//# sourceMappingURL=map-key-order.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"map-key-order.js","sourceRoot":"","sources":["../../../../../src/languageservice/services/validation/map-key-order.ts"],"names":[],"mappings":"AAAA;;;gGAGgG;AAGhG,OAAO,EAAE,UAAU,EAAE,kBAAkB,EAAE,KAAK,EAAE,MAAM,6BAA6B,CAAC;AACpF,OAAO,EAAE,KAAK,EAAc,KAAK,EAAE,MAAM,MAAM,CAAC;AAKhD,MAAM,OAAO,oBAAoB;IAC/B,QAAQ,CAAC,QAAsB,EAAE,OAA2B;QAC1D,MAAM,MAAM,GAAG,EAAE,CAAC;QAElB,KAAK,CAAC,OAAO,CAAC,gBAAgB,EAAE,CAAC,GAAG,EAAE,IAAI,EAAE,EAAE;YAC5C,IAAI,KAAK,CAAC,IAAI,CAAC,EAAE;gBACf,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;oBAC1C,IAAI,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE;wBACjD,MAAM,KAAK,GAAG,WAAW,CAAC,QAAQ,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;wBACvD,MAAM,CAAC,IAAI,CACT,UAAU,CAAC,MAAM,CACf,KAAK,EACL,0BAA0B,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,cAAc,EAC7D,kBAAkB,CAAC,KAAK,EACxB,aAAa,CACd,CACF,CAAC;wBACF,MAAM;qBACP;iBACF;aACF;QACH,CAAC,CAAC,CAAC;QAEH,OAAO,MAAM,CAAC;IAChB,CAAC;CACF;AAED,SAAS,WAAW,CAAC,QAAsB,EAAE,IAAU;IACrD,MAAM,cAAc,GAAI,IAAI,CAAC,GAAY,CAAC,QAAuB,CAAC;IAClE,MAAM,KAAK,GAAG,cAAc,CAAC,MAAM,CAAC;IACpC,MAAM,GAAG,GAAG,KAAK,GAAG,cAAc,CAAC,MAAM,CAAC,MAAM,CAAC;IACjD,OAAO,KAAK,CAAC,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC,KAAK,CAAC,EAAE,QAAQ,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC;AAC5E,CAAC;AAED,SAAS,OAAO,CAAC,IAAU,EAAE,IAAU;IACrC,MAAM,OAAO,GAAG,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;IACjC,MAAM,OAAO,GAAG,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;IACjC,OAAO,OAAO,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;AACxC,CAAC"}
|
||||
Generated
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
import { TextDocument } from 'vscode-languageserver-textdocument';
|
||||
import { Diagnostic } from 'vscode-languageserver-types';
|
||||
import { SingleYAMLDocument } from '../../parser/yaml-documents';
|
||||
export interface AdditionalValidator {
|
||||
validate(document: TextDocument, yamlDoc: SingleYAMLDocument): Diagnostic[];
|
||||
}
|
||||
Generated
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Red Hat. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
export {};
|
||||
//# sourceMappingURL=types.js.map
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../../src/languageservice/services/validation/types.ts"],"names":[],"mappings":"AAAA;;;gGAGgG"}
|
||||
Generated
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
import { TextDocument } from 'vscode-languageserver-textdocument';
|
||||
import { Diagnostic } from 'vscode-languageserver-types';
|
||||
import { SingleYAMLDocument } from '../../parser/yaml-documents';
|
||||
import { AdditionalValidator } from './types';
|
||||
export declare class UnusedAnchorsValidator implements AdditionalValidator {
|
||||
validate(document: TextDocument, yamlDoc: SingleYAMLDocument): Diagnostic[];
|
||||
private getAnchorNode;
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user