use of org.knime.core.data.property.ShapeHandler in project knime-core by knime.
the class DataTableSpecExtractor method extract.
/**
* Creates and returns a data table containing the meta information of the given spec. The meta information is
* referred to as the table data specification and contains information such as column names, types, domain values
* (list of possible values for categorical columns) and lower and upper bounds. It also contains the information
* which of the columns have a view handler associated, as well the possible values, if specified. Each column in
* the given table spec is represented as a row in the returned table.
*
* @param spec The spec to extract the meta information from.
* @return The data table containing the meta information of the given spec.
* @since 4.2
*/
public CloseableTable extract(final DataTableSpec spec) {
List<DataColumnSpec> colSpecs = new ArrayList<DataColumnSpec>();
if (m_extractColumnNameAsColumn) {
colSpecs.add(new DataColumnSpecCreator("Column Name", StringCell.TYPE).createSpec());
}
colSpecs.add(new DataColumnSpecCreator("Column Type", StringCell.TYPE).createSpec());
colSpecs.add(new DataColumnSpecCreator("Column Index", IntCell.TYPE).createSpec());
switch(m_propertyHandlerOutputFormat) {
case Hide:
break;
case Boolean:
colSpecs.add(new DataColumnSpecCreator("Color Handler", BooleanCell.TYPE).createSpec());
colSpecs.add(new DataColumnSpecCreator("Size Handler", BooleanCell.TYPE).createSpec());
colSpecs.add(new DataColumnSpecCreator("Shape Handler", BooleanCell.TYPE).createSpec());
colSpecs.add(new DataColumnSpecCreator("Filter Handler", BooleanCell.TYPE).createSpec());
break;
default:
colSpecs.add(new DataColumnSpecCreator("Color Handler", StringCell.TYPE).createSpec());
colSpecs.add(new DataColumnSpecCreator("Size Handler", StringCell.TYPE).createSpec());
colSpecs.add(new DataColumnSpecCreator("Shape Handler", StringCell.TYPE).createSpec());
colSpecs.add(new DataColumnSpecCreator("Filter Handler", StringCell.TYPE).createSpec());
}
// likely number (important for sorting)
DataType lowerBoundColType = null;
DataType upperBoundColType = null;
for (DataColumnSpec c : spec) {
DataColumnDomain domain = c.getDomain();
if (domain.hasLowerBound()) {
DataType curLowerType = domain.getLowerBound().getType();
if (lowerBoundColType == null) {
lowerBoundColType = curLowerType;
} else {
lowerBoundColType = DataType.getCommonSuperType(lowerBoundColType, curLowerType);
}
}
if (domain.hasUpperBound()) {
DataType curUpperType = domain.getUpperBound().getType();
if (upperBoundColType == null) {
upperBoundColType = curUpperType;
} else {
upperBoundColType = DataType.getCommonSuperType(upperBoundColType, curUpperType);
}
}
}
lowerBoundColType = lowerBoundColType == null ? GENERIC_DATA_TYPE : lowerBoundColType;
upperBoundColType = upperBoundColType == null ? GENERIC_DATA_TYPE : upperBoundColType;
colSpecs.add(new DataColumnSpecCreator("Lower Bound", lowerBoundColType).createSpec());
colSpecs.add(new DataColumnSpecCreator("Upper Bound", upperBoundColType).createSpec());
int maxPossValues = 0;
switch(m_possibleValueOutputFormat) {
case Hide:
break;
case Collection:
colSpecs.add(new DataColumnSpecCreator("Possible Values", SetCell.getCollectionType(GENERIC_DATA_TYPE)).createSpec());
break;
default:
for (DataColumnSpec c : spec) {
DataColumnDomain domain = c.getDomain();
if (domain.hasValues()) {
maxPossValues = Math.max(domain.getValues().size(), maxPossValues);
}
}
for (int i = 0; i < maxPossValues; i++) {
colSpecs.add(new DataColumnSpecCreator("Value " + i, GENERIC_DATA_TYPE).createSpec());
}
}
/* fill it */
DataContainer dc = new DataContainer(new DataTableSpec(colSpecs.toArray(new DataColumnSpec[colSpecs.size()])));
for (int i = 0; i < spec.getNumColumns(); i++) {
DataColumnSpec colSpec = spec.getColumnSpec(i);
List<DataCell> cells = new ArrayList<DataCell>();
if (m_extractColumnNameAsColumn) {
cells.add(new StringCell(colSpec.getName()));
}
cells.add(new StringCell(colSpec.getType().toString()));
cells.add(new IntCell(i));
ColorHandler colorHandler = colSpec.getColorHandler();
SizeHandler sizeHandler = colSpec.getSizeHandler();
ShapeHandler shapeHandler = colSpec.getShapeHandler();
Optional<FilterHandler> filterHandler = colSpec.getFilterHandler();
switch(m_propertyHandlerOutputFormat) {
case Hide:
break;
case Boolean:
cells.add(BooleanCellFactory.create(colorHandler != null));
cells.add(BooleanCellFactory.create(sizeHandler != null));
cells.add(BooleanCellFactory.create(shapeHandler != null));
cells.add(BooleanCellFactory.create(filterHandler.isPresent()));
break;
default:
cells.add(new StringCell(colorHandler == null ? "" : colorHandler.toString()));
cells.add(new StringCell(sizeHandler == null ? "" : sizeHandler.toString()));
cells.add(new StringCell(shapeHandler == null ? "" : shapeHandler.toString()));
cells.add(new StringCell(filterHandler.map(f -> f.toString()).orElse("")));
}
DataColumnDomain domain = colSpec.getDomain();
DataCell lb = domain.getLowerBound();
if (lb != null) {
cells.add(lb);
} else {
cells.add(DataType.getMissingCell());
}
DataCell ub = domain.getUpperBound();
if (ub != null) {
cells.add(ub);
} else {
cells.add(DataType.getMissingCell());
}
switch(m_possibleValueOutputFormat) {
case Hide:
break;
case Collection:
if (domain.hasValues()) {
cells.add(CollectionCellFactory.createSetCell(domain.getValues()));
} else {
cells.add(DataType.getMissingCell());
}
break;
default:
Set<DataCell> set = domain.hasValues() ? domain.getValues() : Collections.EMPTY_SET;
int nrColsToWrite = maxPossValues;
for (DataCell c : set) {
cells.add(c);
nrColsToWrite -= 1;
}
while (nrColsToWrite > 0) {
cells.add(DataType.getMissingCell());
nrColsToWrite -= 1;
}
}
dc.addRowToTable(new DefaultRow(new RowKey(colSpec.getName()), cells));
}
dc.close();
return dc.getCloseableTable();
}
Aggregations