blob: f65897ac2d2162931ef8212a1b2ff10cf00a6aae [file] [log] [blame]
package freemarker.core;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.Map;
/**
* Utilities that didn't fit elsewhere.
*/
class MiscUtil {
// Can't be instatiated
private MiscUtil() { }
static final String C_FALSE = "false";
static final String C_TRUE = "true";
/**
* Returns the map entries in source code order of the Expression values.
*/
static List/*Map.Entry*/ sortMapOfExpressions(Map/*<?, Expression>*/ map) {
ArrayList res = new ArrayList(map.entrySet());
Collections.sort(res,
new Comparator() { // for sorting to source code order
public int compare(Object o1, Object o2) {
Map.Entry ent1 = (Map.Entry) o1;
Expression exp1 = (Expression) ent1.getValue();
Map.Entry ent2 = (Map.Entry) o2;
Expression exp2 = (Expression) ent2.getValue();
int res = exp1.beginLine - exp2.beginLine;
if (res != 0) return res;
res = exp1.beginColumn - exp2.beginColumn;
if (res != 0) return res;
if (ent1 == ent2) return 0;
// Should never reach this
return ((String) ent1.getKey()).compareTo((String) ent1.getKey());
}
});
return res;
}
}