net.revelc.code.impsort.LineEnding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of impsort-maven-plugin Show documentation
Show all versions of impsort-maven-plugin Show documentation
Sort your imps! A Maven plugin to sort the import statements in your Java source files.
The newest version!
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.revelc.code.impsort;
/**
* This file is taken from formatter-maven-plugin.
*/
public enum LineEnding {
AUTO(System.lineSeparator()), KEEP(null), LF("\n"), CRLF("\r\n"), CR("\r"), UNKNOWN(null);
private final String chars;
LineEnding(String value) {
this.chars = value;
}
public String getChars() {
return this.chars;
}
/**
* Returns the most occurring line-ending characters in the file text or null if no line-ending
* occurs the most.
*
* @param fileDataString the raw file contents as a string
* @return the determined line-ending
*/
public static LineEnding determineLineEnding(String fileDataString) {
int lfCount = 0;
int crCount = 0;
int crlfCount = 0;
for (int i = 0; i < fileDataString.length(); i++) {
char c = fileDataString.charAt(i);
if (c == '\r') {
if ((i + 1) < fileDataString.length() && fileDataString.charAt(i + 1) == '\n') {
crlfCount++;
i++;
} else {
crCount++;
}
} else if (c == '\n') {
lfCount++;
}
}
if (lfCount > crCount && lfCount > crlfCount) {
return LF;
} else if (crlfCount > lfCount && crlfCount > crCount) {
return CRLF;
} else if (crCount > lfCount && crCount > crlfCount) {
return CR;
}
return UNKNOWN;
}
}