forked from diffplug/spotless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEndWithNewlineStep.java
61 lines (55 loc) · 1.88 KB
/
EndWithNewlineStep.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
* Copyright 2016 DiffPlug
*
* 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
*
* http://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 com.diffplug.spotless.generic;
import com.diffplug.spotless.FormatterStep;
public final class EndWithNewlineStep {
// prevent direct instantiation
private EndWithNewlineStep() {}
/** Creates a FormatterStep which forces lines to end with a newline. */
public static FormatterStep create() {
return FormatterStep.create("endWithNewline",
EndWithNewlineStep.class,
unused -> EndWithNewlineStep::format);
}
private static String format(String rawUnix) {
// simplifies the logic below if we can assume length > 0
if (rawUnix.isEmpty()) {
return "\n";
}
// find the last character which has real content
int lastContentCharacter = rawUnix.length() - 1;
char c;
while (lastContentCharacter >= 0) {
c = rawUnix.charAt(lastContentCharacter);
if (c == '\n' || c == '\t' || c == ' ') {
--lastContentCharacter;
} else {
break;
}
}
// if it's already clean, no need to create another string
if (lastContentCharacter == -1) {
return "\n";
} else if (lastContentCharacter == rawUnix.length() - 2 && rawUnix.charAt(rawUnix.length() - 1) == '\n') {
return rawUnix;
} else {
StringBuilder builder = new StringBuilder(lastContentCharacter + 2);
builder.append(rawUnix, 0, lastContentCharacter + 1);
builder.append('\n');
return builder.toString();
}
}
}