org.jgroups.tests.MakeUnique Maven / Gradle / Ivy
Go to download
This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including
all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and
JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up
with different versions on classes on the class path).
package org.jgroups.tests;
import org.jgroups.util.Util;
import java.io.*;
import java.util.*;
/**
* Replaces words that start with args passed to the program with A, B, C and so on. Useful to convert a view of
* long names into shorter ones, e.g. for parsing logs
* @author Bela Ban
* @since 3.0
*/
public class MakeUnique {
int current_char='A';
int count=0;
void start(String inputfile, String outputfile, String delimiters, Collection keywords, boolean dump) throws IOException {
String input=inputfile != null? Util.readFile(inputfile) : Util.readContents(System.in);
String delims=",\n\r \t[]|:;";
if(delimiters != null)
delims=delims + delimiters;
StringTokenizer tok=new StringTokenizer(input, delims, true);
FileOutputStream output=new FileOutputStream(outputfile);
Map map=new HashMap<>();
while(tok.hasMoreTokens()) {
String token=tok.nextToken();
if(token == null)
continue;
// check if token is already in the map
if(map.containsKey(token)) {
String val=map.get(token);
output.write(val.getBytes());
System.out.print(val);
continue;
}
if(keywords != null && isKeyword(keywords, token)) {
map.put(token, get());
String val=map.get(token);
output.write(val.getBytes());
System.out.print(val);
increment();
}
else {
output.write(token.getBytes());
System.out.print(new String(token.getBytes()));
}
}
output.close();
System.out.println("\noutput written to " + outputfile);
if(dump) {
System.out.println("map:");
// new map, sorted by *value*
Map tmp=new TreeMap<>();
for(Map.Entry entry: map.entrySet())
tmp.put(entry.getValue(), entry.getKey());
for(Map.Entry entry: tmp.entrySet())
System.out.println(entry.getKey() + ": \t" + entry.getValue());
}
}
private String get() {
if(current_char <= 'Z' && count == 0)
return String.valueOf((char)current_char);
else
return (char)current_char + String.valueOf(count);
}
private void increment() {
if(++current_char > 'Z') {
count++;
current_char='A';
}
}
static boolean isKeyword(Collection keywords, String token) {
// full match
for(String keyword: keywords) {
if(token.equals(keyword))
return true;
}
// partial
for(String keyword: keywords) {
if(token.startsWith(keyword))
return true;
}
return false;
}
public static void main(String[] args) throws IOException {
String input=null;
String output="output.txt";
String delims=null;
Set keywords=new HashSet<>();
boolean dump=false;
for(int i=0; i < args.length; i++) {
if(args[i].equals("-in")) {
input=args[++i];
continue;
}
if(args[i].equals("-out")) {
output=args[++i];
continue;
}
if(args[i].equals("-delims")) {
delims=args[++i];
continue;
}
if(args[i].equals("-dump")) {
dump=true;
continue;
}
if(args[i].equals("-h")) {
System.out.println("MakeUnique -in inputfile [-out outputfile] [-delims delimiters] [keyword]*");
return;
}
keywords.add(args[i]);
}
new MakeUnique().start(input, output, delims, keywords, dump);
}
}