-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Better indentation when adding GCP libraries to pom.xml #3511
Open
lak-proddev
wants to merge
6
commits into
GoogleCloudPlatform:master
Choose a base branch
from
lak-proddev:#3381
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
5d028af
Better indentation when adding GCP libraries to pom.xml #3381
lak-proddev 5f56823
#3381 - test case added
lak-proddev 8194366
#3381 - test case updated
lak-proddev 45c771d
#3381 - test case updated
lak-proddev 38d59ea
#3381 - test case updated
lak-proddev 741ded9
Typo
lak-proddev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -234,7 +234,7 @@ void updateDependencies(Collection<Library> selectedLibraries, | |
dependency.appendChild(artifactIdElement); | ||
|
||
if (testComment == null) { | ||
dependencies.appendChild(dependency); | ||
addChild(dependencies, dependency); | ||
} else { | ||
dependencies.insertBefore(dependency, testComment); | ||
} | ||
|
@@ -279,7 +279,7 @@ private void handleDependencyManaged(LibraryFile artifact, Element dependency) { | |
} | ||
} else { | ||
if (versionNode != null) { | ||
dependency.removeChild(versionNode); | ||
removeChild(dependency, versionNode); | ||
} | ||
} | ||
} | ||
|
@@ -305,8 +305,8 @@ private void createBOMIfNeeded(XPath xpath) throws CoreException { | |
dependencyManagement = document.createElementNS("http://maven.apache.org/POM/4.0.0", | ||
"dependencyManagement"); | ||
} | ||
dependencyManagement.appendChild(dependencies); | ||
document.getDocumentElement().appendChild(dependencyManagement); | ||
addChild(dependencyManagement, dependencies); | ||
addChild(document.getDocumentElement(), dependencyManagement); | ||
} | ||
|
||
Element dependency = | ||
|
@@ -321,7 +321,7 @@ private void createBOMIfNeeded(XPath xpath) throws CoreException { | |
if (bom != null) { | ||
boms.add(bom); | ||
} | ||
dependencies.appendChild(dependency); | ||
addChild(dependencies, dependency); | ||
} | ||
} catch (XPathExpressionException ex) { | ||
IStatus status = StatusUtil.error(Pom.class, ex.getMessage(), ex); | ||
|
@@ -444,7 +444,7 @@ static void removeUnusedDependencies(Element dependencies, | |
} | ||
|
||
for (Node node : nodesToRemove) { | ||
dependencies.removeChild(node); | ||
removeChild(dependencies, node); | ||
} | ||
} | ||
|
||
|
@@ -482,10 +482,29 @@ private static String getValue(Element dependency, String childName) { | |
private void writeDocument() throws CoreException, TransformerException { | ||
Transformer transformer = transformerFactory.newTransformer(); | ||
transformer.setOutputProperty(OutputKeys.INDENT, "yes"); | ||
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount","2"); //$NON-NLS-1$ //$NON-NLS-2$ | ||
ByteArrayOutputStream out = new ByteArrayOutputStream(); | ||
transformer.transform(new DOMSource(document), new StreamResult(out)); | ||
InputStream in = new ByteArrayInputStream(out.toByteArray()); | ||
|
||
pomFile.setContents(in, true, true, null); | ||
} | ||
|
||
private void addChild(Node parent, Node newChild) { | ||
parent.appendChild(newChild); | ||
removeWhiteSpaceBefore(newChild);// for child indentation | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: space before // |
||
} | ||
|
||
private static void removeChild(Node parent, Node oldChild) { | ||
removeWhiteSpaceBefore(oldChild); | ||
parent.removeChild(oldChild); | ||
} | ||
|
||
private static void removeWhiteSpaceBefore(Node node) { | ||
Node prevElement = node.getPreviousSibling(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. previousElement |
||
if (prevElement != null && prevElement.getNodeType() == Node.TEXT_NODE | ||
&& prevElement.getNodeValue().trim().length() == 0) { | ||
node.getParentNode().removeChild(prevElement); | ||
} | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the core fix. Other changes are for removing extra spaces and blank line when add or removing libaries.