Created
February 17, 2018 16:44
-
-
Save swankjesse/7952d0c54efc2701fe6fc0bc184549cc to your computer and use it in GitHub Desktop.
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
package com.squareup.refmt | |
import okio.Okio | |
import java.io.File | |
fun main(args: Array<String>) { | |
val directory = File(args[0]) | |
Reformatter().reformatDirectory(directory) | |
} | |
class Reformatter { | |
fun reformatDirectory(directory: File, indent: String = "") { | |
if (directory.name.startsWith(".")) return // .git, .gradle, .idea | |
println("${indent}reformatting ${directory.name}/") | |
for (child in directory.listFiles()) { | |
if (child.isDirectory) { | |
reformatDirectory(child, indent + " ") | |
} else if (child.name.endsWith(".kt")) { | |
reformatKotlin(child, indent + " ") | |
} | |
} | |
} | |
private fun reformatKotlin(file: File, indent: String) { | |
println("${indent}reformatting ${file.name}") | |
val reformatted = File("${file}_reformatted") | |
Okio.buffer(Okio.sink(reformatted)).use { sink -> | |
Okio.buffer(Okio.source(file)).use { source -> | |
while (true) { | |
val line = source.readUtf8Line() ?: break | |
sink.writeUtf8(reformatLine(line)) | |
sink.writeUtf8("\n") | |
} | |
} | |
} | |
reformatted.renameTo(file) | |
} | |
private fun reformatLine(line: String): String { | |
var spaceCount = 0 | |
for (c in 0 until line.length) { | |
if (line[c] == ' ') { | |
spaceCount++ | |
} else { | |
break | |
} | |
} | |
return line.substring(spaceCount / 2) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cool!