This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
forked from eclipse-lemminx/lemminx
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from eclipse/master
TargetNamespace.1/2 error range
- Loading branch information
Showing
6 changed files
with
263 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 70 additions & 0 deletions
70
...lemminx/extensions/contentmodel/participants/codeactions/TargetNamespace_1CodeAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/** | ||
* Copyright (c) 2020 Red Hat Inc. and others. | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v2.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v20.html | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* Red Hat Inc. - initial API and implementation | ||
*/ | ||
package org.eclipse.lemminx.extensions.contentmodel.participants.codeactions; | ||
|
||
import java.util.List; | ||
import java.util.regex.Pattern; | ||
import java.util.regex.Matcher; | ||
|
||
import org.eclipse.lemminx.commons.CodeActionFactory; | ||
import org.eclipse.lemminx.dom.DOMDocument; | ||
import org.eclipse.lemminx.services.extensions.ICodeActionParticipant; | ||
import org.eclipse.lemminx.services.extensions.IComponentProvider; | ||
import org.eclipse.lemminx.settings.SharedSettings; | ||
import org.eclipse.lemminx.utils.StringUtils; | ||
import org.eclipse.lsp4j.CodeAction; | ||
import org.eclipse.lsp4j.Diagnostic; | ||
import org.eclipse.lsp4j.Range; | ||
|
||
/** | ||
* CodeAction to replace an incorrect namespace in an .xml document. | ||
* | ||
* Changes the value of the xmlns attribute of the root element of the .xml | ||
* document to the declared namespace of the referenced .xsd document. | ||
*/ | ||
public class TargetNamespace_1CodeAction implements ICodeActionParticipant { | ||
|
||
private static final Pattern NAMESPACE_EXTRACTOR = Pattern.compile("'([^']+)'\\."); | ||
|
||
@Override | ||
public void doCodeAction(Diagnostic diagnostic, Range range, DOMDocument document, List<CodeAction> codeActions, | ||
SharedSettings sharedSettings, IComponentProvider componentProvider) { | ||
|
||
String namespace = extractNamespace(diagnostic.getMessage()); | ||
if (StringUtils.isEmpty(namespace)) { | ||
return; | ||
} | ||
String quote = sharedSettings.getPreferences().getQuotationAsString(); | ||
// @formatter:off | ||
CodeAction replaceNamespace = CodeActionFactory.replace( | ||
"Replace with '" + namespace + "'", | ||
diagnostic.getRange(), | ||
quote + namespace + quote, | ||
document.getTextDocument(), | ||
diagnostic); | ||
// @formatter:on | ||
codeActions.add(replaceNamespace); | ||
} | ||
|
||
private static String extractNamespace(String diagnosticMessage) { | ||
// The error message has this form: | ||
// TargetNamespace.1: Expecting namespace 'NaN', but the target namespace of the | ||
// schema document is 'http://two-letter-name'. | ||
Matcher nsMatcher = NAMESPACE_EXTRACTOR.matcher(diagnosticMessage); | ||
if (nsMatcher.find()) { | ||
return nsMatcher.group(1); | ||
} | ||
return null; | ||
} | ||
|
||
} |
79 changes: 79 additions & 0 deletions
79
...lemminx/extensions/contentmodel/participants/codeactions/TargetNamespace_2CodeAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
/** | ||
* Copyright (c) 2020 Red Hat Inc. and others. | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v2.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v20.html | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* Red Hat Inc. - initial API and implementation | ||
*/ | ||
package org.eclipse.lemminx.extensions.contentmodel.participants.codeactions; | ||
|
||
import java.util.List; | ||
import java.util.regex.Matcher; | ||
import java.util.regex.Pattern; | ||
|
||
import org.eclipse.lemminx.commons.CodeActionFactory; | ||
import org.eclipse.lemminx.dom.DOMDocument; | ||
import org.eclipse.lemminx.dom.DOMNode; | ||
import org.eclipse.lemminx.services.extensions.ICodeActionParticipant; | ||
import org.eclipse.lemminx.services.extensions.IComponentProvider; | ||
import org.eclipse.lemminx.settings.SharedSettings; | ||
import org.eclipse.lemminx.utils.StringUtils; | ||
import org.eclipse.lemminx.utils.XMLPositionUtility; | ||
import org.eclipse.lsp4j.CodeAction; | ||
import org.eclipse.lsp4j.Diagnostic; | ||
import org.eclipse.lsp4j.Position; | ||
import org.eclipse.lsp4j.Range; | ||
|
||
/** | ||
* Code action to add the missing xmlns declaration to the root element in an | ||
* .xml document. | ||
* | ||
* Finds the namespace of the referenced .xsd. Adds the xmlns attribute to the | ||
* root of .xml, and sets its value to the .xsd namespace. | ||
*/ | ||
public class TargetNamespace_2CodeAction implements ICodeActionParticipant { | ||
|
||
private static final Pattern NAMESPACE_EXTRACTOR = Pattern.compile("'([^']+)'\\."); | ||
|
||
@Override | ||
public void doCodeAction(Diagnostic diagnostic, Range range, DOMDocument document, List<CodeAction> codeActions, | ||
SharedSettings sharedSettings, IComponentProvider componentProvider) { | ||
|
||
String namespace = extractNamespace(diagnostic.getMessage()); | ||
if (StringUtils.isEmpty(namespace)) { | ||
return; | ||
} | ||
DOMNode root = document.getDocumentElement(); | ||
if (root == null) { | ||
return; | ||
} | ||
Position tagEnd = XMLPositionUtility.selectStartTagName(root).getEnd(); | ||
String quote = sharedSettings.getPreferences().getQuotationAsString(); | ||
// @formatter:off | ||
CodeAction addNamespaceDecl = CodeActionFactory.insert( | ||
"Declare '" + namespace + "' as the namespace", | ||
tagEnd, | ||
" xmlns=" + quote + namespace + quote, | ||
document.getTextDocument(), | ||
diagnostic); | ||
// @formatter:on | ||
codeActions.add(addNamespaceDecl); | ||
} | ||
|
||
private static String extractNamespace(String diagnosticMessage) { | ||
// The error message has this form: | ||
// TargetNamespace.2: Expecting no namespace, but the schema document has a | ||
// target namespace of 'http://docbook.org/ns/docbook'. | ||
Matcher nsMatcher = NAMESPACE_EXTRACTOR.matcher(diagnosticMessage); | ||
if (nsMatcher.find()) { | ||
return nsMatcher.group(1); | ||
} | ||
return null; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
org.eclipse.lemminx/src/test/resources/xsd/two-letter-name.xsd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://two-letter-name"> | ||
<xs:element name="two-letter-name"> | ||
<xs:simpleType> | ||
<xs:restriction base="xs:token"> | ||
<xs:pattern value="[A-Z][a-z]"></xs:pattern> | ||
</xs:restriction> | ||
</xs:simpleType> | ||
</xs:element> | ||
</xs:schema> |