-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutoIndent.java
More file actions
77 lines (57 loc) · 1.51 KB
/
AutoIndent.java
File metadata and controls
77 lines (57 loc) · 1.51 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/* TODO: I/F idea
./AutoIndent -f {file_name}
--indent-chars='[{'
--dedent-chars=']}'
--entry-separator-chars=','
--indentation=" "
--string=" "
_OR_
--file=/path/to/file
*/
class AutoIndent {
private static int indent;
public static void main(String[] args) {
String target;
// TODO: Read from file
// target = ""
displayFormattedCode(target);
// System.out.println("------------");
// displayFormattedCode(target);
}
static void displayFormattedCode(String target) {
indent = 0;
for (int i = 0; i < target.length(); i++) {
char c = target.charAt(i);
if (c == '[' || c == '{') {
emit(c);
indent += 2;
emitLnAndSpaces(indent);
} else if (c == ']' || c == '}') {
indent -= 2;
emitLnAndSpaces(indent);
emit(c);
} else if (c == ',') {
emit(c);
emitLnAndSpaces(indent);
} else {
emit(c);
}
}
emitLn();
}
private static void emit(char c) {
System.out.print(c);
}
private static void emitLn() {
System.out.println();
}
private static void emitSpaces(int numSpaces) {
for (int i = 0; i < numSpaces; i++) {
System.out.print(' ');
}
}
private static void emitLnAndSpaces(int numSpaces) {
emitLn();
emitSpaces(numSpaces);
}
}