parquet.tools.read.SimpleRecord Maven / Gradle / Ivy
/**
* Copyright 2013 ARRIS, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package parquet.tools.read;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import com.google.common.base.Strings;
public class SimpleRecord {
public static final int TAB_SIZE = 2;
private final List values;
public SimpleRecord() {
this.values = new ArrayList();
}
public void add(String name, Object value) {
values.add(new NameValue(name,value));
}
public List getValues() {
return Collections.unmodifiableList(values);
}
public String toString() {
return values.toString();
}
public void prettyPrint() {
prettyPrint(new PrintWriter(System.out,true));
}
public void prettyPrint(PrintWriter out) {
prettyPrint(out, 0);
}
public void prettyPrint(PrintWriter out, int depth) {
for (NameValue value : values) {
out.print(Strings.repeat(".", depth));
out.print(value.getName());
Object val = value.getValue();
if (val == null) {
out.print(" = ");
out.print("");
} else if (byte[].class == val.getClass()) {
out.print(" = ");
out.print(Arrays.toString((byte[])val));
} else if (short[].class == val.getClass()) {
out.print(" = ");
out.print(Arrays.toString((short[])val));
} else if (int[].class == val.getClass()) {
out.print(" = ");
out.print(Arrays.toString((int[])val));
} else if (long[].class == val.getClass()) {
out.print(" = ");
out.print(Arrays.toString((long[])val));
} else if (float[].class == val.getClass()) {
out.print(" = ");
out.print(Arrays.toString((float[])val));
} else if (double[].class == val.getClass()) {
out.print(" = ");
out.print(Arrays.toString((double[])val));
} else if (boolean[].class == val.getClass()) {
out.print(" = ");
out.print(Arrays.toString((boolean[])val));
} else if (val.getClass().isArray()) {
out.print(" = ");
out.print(Arrays.deepToString((Object[])val));
} else if (SimpleRecord.class.isAssignableFrom(val.getClass())) {
out.println(":");
((SimpleRecord)val).prettyPrint(out, depth+1);
continue;
} else {
out.print(" = ");
out.print(String.valueOf(val));
}
out.println();
}
}
public static final class NameValue {
private final String name;
private final Object value;
public NameValue(String name, Object value) {
this.name = name;
this.value = value;
}
public String toString() {
return name + ": " + value;
}
public String getName() {
return name;
}
public Object getValue() {
return value;
}
}
}