Cleanup of cleanup

This commit is contained in:
Anuken 2020-05-02 00:52:12 -04:00
parent b9d16d9fd9
commit 5f27261cb1
2 changed files with 0 additions and 67 deletions

View File

@ -87,14 +87,6 @@ public class Annotations{
//endregion
//region misc. utility
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.SOURCE)
public @interface Multiline {
boolean trim() default true;
boolean merge() default false;
char mergeChar() default ' ';
}
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.SOURCE)
public @interface StyleDefaults{

View File

@ -1,59 +0,0 @@
package mindustry.annotations.mutate;
import com.sun.tools.javac.tree.JCTree.*;
import mindustry.annotations.Annotations.*;
import mindustry.annotations.*;
import javax.annotation.processing.*;
import javax.lang.model.element.*;
import java.io.*;
import java.util.*;
//currently unused
@SupportedAnnotationTypes({"mindustry.annotations.Annotations.Multiline"})
public final class MultilineProcessor extends BaseProcessor{
@Override
public void process(RoundEnvironment env){
Set<? extends Element> fields = env.getElementsAnnotatedWith(Multiline.class);
for(Element field : fields){
String docComment = elementUtils.getDocComment(field);
if(null != docComment){
JCVariableDecl fieldNode = (JCVariableDecl)elementUtils.getTree(field);
fieldNode.init = maker.Literal(toString(docComment, field.getAnnotation(Multiline.class)));
}
}
}
static String toString(String value, Multiline annotation){
if(!annotation.merge() && !annotation.trim()){
return value;
}
String crnl = System.getProperty("line.separator");
try{
BufferedReader reader = new BufferedReader(new StringReader(value));
StringBuilder buf = new StringBuilder();
String line = reader.readLine();
while(line != null){
if(annotation.trim()){
line = line.trim();
}
if(annotation.merge() && buf.length() > 0){
if(annotation.mergeChar() != '\0'){
buf.append(annotation.mergeChar());
}
}
buf.append(line);
if(!annotation.merge()){
buf.append(crnl);
}
line = reader.readLine();
}
return buf.toString();
}catch(IOException ex){
throw new RuntimeException("checked exceptions are disgusting", ex);
}
}
}