franta-hg@16: /** franta-hg@16: * SQL-DK franta-hg@16: * Copyright © 2013 František Kučera (frantovo.cz) franta-hg@16: * franta-hg@16: * This program is free software: you can redistribute it and/or modify franta-hg@16: * it under the terms of the GNU General Public License as published by franta-hg@16: * the Free Software Foundation, either version 3 of the License, or franta-hg@16: * (at your option) any later version. franta-hg@16: * franta-hg@16: * This program is distributed in the hope that it will be useful, franta-hg@16: * but WITHOUT ANY WARRANTY; without even the implied warranty of franta-hg@16: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the franta-hg@16: * GNU General Public License for more details. franta-hg@16: * franta-hg@16: * You should have received a copy of the GNU General Public License franta-hg@16: * along with this program. If not, see . franta-hg@16: */ franta-hg@1: package info.globalcode.sql.dk; franta-hg@1: franta-hg@29: import info.globalcode.sql.dk.configuration.NameIdentified; franta-hg@220: import info.globalcode.sql.dk.configuration.PropertyDeclaration; franta-hg@220: import info.globalcode.sql.dk.configuration.PropertyDeclarations; franta-hg@220: import info.globalcode.sql.dk.formatting.Formatter; franta-hg@33: import java.io.BufferedReader; franta-hg@33: import java.io.File; franta-hg@33: import java.io.IOException; franta-hg@166: import java.io.InputStream; franta-hg@33: import java.io.InputStreamReader; franta-hg@33: import java.io.PrintWriter; franta-hg@213: import java.util.ArrayList; franta-hg@40: import java.util.Arrays; franta-hg@1: import java.util.Collection; franta-hg@125: import java.util.Collections; franta-hg@213: import java.util.List; franta-hg@1: import java.util.Map; franta-hg@218: import java.util.regex.Matcher; franta-hg@218: import java.util.regex.Pattern; franta-hg@1: franta-hg@1: /** franta-hg@1: * franta-hg@1: * @author Ing. František Kučera (frantovo.cz) franta-hg@1: */ franta-hg@1: public class Functions { franta-hg@1: franta-hg@218: private static final String NBSP = " "; franta-hg@218: private static final Pattern WHITESPACE_TO_REPLACE = Pattern.compile("\\n|\\r|\\t|" + NBSP); franta-hg@218: franta-hg@1: private Functions() { franta-hg@1: } franta-hg@1: franta-hg@1: public static boolean equalz(Object a, Object b) { franta-hg@1: return a == null ? b == null : a.equals(b); franta-hg@1: } franta-hg@1: franta-hg@1: /** franta-hg@1: * franta-hg@1: * @param text String to be examinated franta-hg@1: * @param trim whether text should be trimmed before examination franta-hg@1: * @return whether text is not empty and one or more characters long (after prospective trim) franta-hg@1: */ franta-hg@1: public static boolean isEmpty(String text, boolean trim) { franta-hg@1: if (text == null) { franta-hg@1: return true; franta-hg@1: } else { franta-hg@1: if (trim) { franta-hg@1: text = text.trim(); franta-hg@1: } franta-hg@1: return text.isEmpty(); franta-hg@1: } franta-hg@1: } franta-hg@1: franta-hg@1: /** franta-hg@1: * @see #isEmpty(java.lang.String, boolean) franta-hg@1: */ franta-hg@1: public static boolean isNotEmpty(String text, boolean trim) { franta-hg@1: return !isEmpty(text, trim); franta-hg@1: } franta-hg@1: franta-hg@1: public boolean isEmpty(Collection c) { franta-hg@1: return c == null || c.isEmpty(); franta-hg@1: } franta-hg@1: franta-hg@1: public boolean isNotEmpty(Collection c) { franta-hg@1: return !isEmpty(c); franta-hg@1: } franta-hg@1: franta-hg@1: public boolean isEmpty(Map m) { franta-hg@1: return m == null || m.isEmpty(); franta-hg@1: } franta-hg@1: franta-hg@1: public boolean isNotEmpty(Map m) { franta-hg@1: return !isEmpty(m); franta-hg@1: } franta-hg@1: franta-hg@1: /** franta-hg@1: * @return empty collection if given one is null | or the original one franta-hg@1: */ franta-hg@1: public static Collection notNull(Collection c) { franta-hg@1: if (c == null) { franta-hg@125: return Collections.emptyList(); franta-hg@1: } else { franta-hg@1: return c; franta-hg@1: } franta-hg@1: } franta-hg@29: franta-hg@29: public static T findByName(Collection collection, String name) { franta-hg@104: for (T element : notNull(collection)) { franta-hg@54: if (element != null && equalz(element.getName(), name)) { franta-hg@29: return element; franta-hg@29: } franta-hg@29: } franta-hg@29: franta-hg@29: return null; franta-hg@29: } franta-hg@33: franta-hg@33: /** franta-hg@33: * Copy file from Java resources to file system. franta-hg@33: */ franta-hg@33: public static void installResource(String resourceName, File target) throws IOException { franta-hg@33: try (BufferedReader reader = new BufferedReader(new InputStreamReader(Functions.class.getClassLoader().getResourceAsStream(resourceName)))) { franta-hg@33: try (PrintWriter writer = new PrintWriter(target)) { franta-hg@33: while (true) { franta-hg@33: String line = reader.readLine(); franta-hg@33: if (line == null) { franta-hg@33: break; franta-hg@33: } else { franta-hg@33: writer.println(line); franta-hg@33: } franta-hg@33: } franta-hg@33: } franta-hg@33: } franta-hg@33: } franta-hg@38: franta-hg@38: public static String rpad(String s, int n) { franta-hg@88: if (n > 0) { franta-hg@88: return String.format("%1$-" + n + "s", s); franta-hg@88: } else { franta-hg@88: return s; franta-hg@88: } franta-hg@38: } franta-hg@38: franta-hg@38: public static String lpad(String s, int n) { franta-hg@88: if (n > 0) { franta-hg@88: return String.format("%1$" + n + "s", s); franta-hg@88: } else { franta-hg@88: return s; franta-hg@88: } franta-hg@38: } franta-hg@40: franta-hg@40: public static String repeat(char ch, int count) { franta-hg@40: char[] array = new char[count]; franta-hg@40: Arrays.fill(array, ch); franta-hg@40: return new String(array); franta-hg@40: } franta-hg@127: private final static char[] HEX_ALPHABET = "0123456789abcdef".toCharArray(); franta-hg@127: franta-hg@127: public static String toHex(byte[] bytes) { franta-hg@127: char[] hexChars = new char[bytes.length * 2]; franta-hg@127: for (int j = 0; j < bytes.length; j++) { franta-hg@127: int v = bytes[j] & 0xFF; franta-hg@127: hexChars[j * 2] = HEX_ALPHABET[v >>> 4]; franta-hg@127: hexChars[j * 2 + 1] = HEX_ALPHABET[v & 0x0F]; franta-hg@127: } franta-hg@127: return new String(hexChars); franta-hg@127: } franta-hg@166: franta-hg@166: public static String readString(InputStream in) throws IOException { franta-hg@166: try (BufferedReader br = new BufferedReader(new InputStreamReader(in))) { franta-hg@166: StringBuilder result = new StringBuilder(); franta-hg@166: for (String line = br.readLine(); line != null; line = br.readLine()) { franta-hg@166: result.append(line); franta-hg@166: result.append('\n'); franta-hg@166: } franta-hg@166: return result.toString(); franta-hg@166: } franta-hg@166: } franta-hg@213: franta-hg@213: /** franta-hg@213: * @param

type of the last parent franta-hg@213: * @param type of the examined class franta-hg@213: * @param type examined class franta-hg@213: * @param lastParent the last parent type to stop at franta-hg@213: * @return list of types starting with type and ending with lastParent franta-hg@213: */ franta-hg@213: public static List> getClassHierarchy(Class type, Class

lastParent) { franta-hg@213: List> hierarchy = new ArrayList<>(); franta-hg@213: franta-hg@213: for (Class current = type; current != null && lastParent.isAssignableFrom(current); current = current.getSuperclass()) { franta-hg@213: hierarchy.add(current); franta-hg@213: } franta-hg@213: franta-hg@213: return hierarchy; franta-hg@213: } franta-hg@218: franta-hg@220: public static PropertyDeclaration[] getPropertyDeclarations(Class formatterClass) { franta-hg@220: PropertyDeclarations properties = formatterClass.getAnnotation(PropertyDeclarations.class); franta-hg@220: franta-hg@220: if (properties == null) { franta-hg@220: PropertyDeclaration p = formatterClass.getAnnotation(PropertyDeclaration.class); franta-hg@220: return p == null ? new PropertyDeclaration[]{} : new PropertyDeclaration[]{p}; franta-hg@220: } else { franta-hg@220: return properties.value(); franta-hg@220: } franta-hg@220: } franta-hg@220: franta-hg@218: /** franta-hg@218: * TODO: support background or styles and move to ColorfulPrintWriter franta-hg@218: * franta-hg@218: * @param out franta-hg@218: * @param valueString franta-hg@218: * @param basicColor franta-hg@218: * @param escapeColor franta-hg@218: */ franta-hg@218: public static void printValueWithWhitespaceReplaced(ColorfulPrintWriter out, String valueString, ColorfulPrintWriter.TerminalColor basicColor, ColorfulPrintWriter.TerminalColor escapeColor) { franta-hg@218: franta-hg@218: Matcher m = WHITESPACE_TO_REPLACE.matcher(valueString); franta-hg@218: franta-hg@218: int start = 0; franta-hg@218: franta-hg@218: while (m.find(start)) { franta-hg@218: franta-hg@218: printColorOrNot(out, basicColor, valueString.substring(start, m.start())); franta-hg@218: franta-hg@218: switch (m.group()) { franta-hg@218: case "\n": franta-hg@218: out.print(escapeColor, "↲"); franta-hg@218: break; franta-hg@218: case "\r": franta-hg@218: out.print(escapeColor, "⏎"); franta-hg@218: break; franta-hg@218: case "\t": franta-hg@218: out.print(escapeColor, "↹"); franta-hg@218: break; franta-hg@218: case NBSP: franta-hg@218: out.print(escapeColor, "⎵"); franta-hg@218: break; franta-hg@218: default: franta-hg@218: throw new IllegalStateException("Unexpected whitespace token: „" + m.group() + "“"); franta-hg@218: } franta-hg@218: franta-hg@218: start = m.end(); franta-hg@218: } franta-hg@218: franta-hg@218: printColorOrNot(out, basicColor, valueString.substring(start, valueString.length())); franta-hg@218: } franta-hg@218: franta-hg@218: private static void printColorOrNot(ColorfulPrintWriter out, ColorfulPrintWriter.TerminalColor color, String text) { franta-hg@218: if (color == null) { franta-hg@218: out.print(text); franta-hg@218: } else { franta-hg@218: out.print(color, text); franta-hg@218: } franta-hg@218: } franta-hg@1: }