Search in sources :

Example 1 with TagNode

use of org.htmlparser.nodes.TagNode in project dhis2-core by dhis2.

the class GridUtils method getColumnCount.

/**
     * Returns the number of columns/cells in the given row, including cell spacing.
     */
private static int getColumnCount(TableRow row) {
    Node[] cells = row.getChildren().extractAllNodesThatMatch(HTML_ROW_FILTER).toNodeArray();
    int cols = 0;
    for (Node cell : cells) {
        Integer colSpan = MathUtils.parseInt(((TagNode) cell).getAttribute("colspan"));
        cols += colSpan != null ? colSpan : 1;
    }
    return cols;
}
Also used : TagNode(org.htmlparser.nodes.TagNode) Node(org.htmlparser.Node) JasperPrint(net.sf.jasperreports.engine.JasperPrint)

Example 2 with TagNode

use of org.htmlparser.nodes.TagNode in project dhis2-core by dhis2.

the class GridUtils method fromHtml.

/**
     * Creates a list of Grids based on the given HTML string. This works only
     * for table-based HTML documents.
     *
     * @param html the HTML string.
     * @param title the title to use for the grids.
     * @return a list of Grids.
     */
public static List<Grid> fromHtml(String html, String title) throws Exception {
    if (html == null || html.trim().isEmpty()) {
        return null;
    }
    List<Grid> grids = new ArrayList<>();
    Parser parser = Parser.createParser(html, "UTF-8");
    Node[] tables = parser.extractAllNodesThatMatch(new TagNameFilter("table")).toNodeArray();
    for (Node t : tables) {
        Grid grid = new ListGrid();
        grid.setTitle(title);
        TableTag table = (TableTag) t;
        TableRow[] rows = table.getRows();
        Integer firstColumnCount = null;
        for (TableRow row : rows) {
            if (// Ignore if no cells
            getColumnCount(row) == 0) {
                log.warn("Ignoring row with no columns");
                continue;
            }
            Node[] cells = row.getChildren().extractAllNodesThatMatch(HTML_ROW_FILTER).toNodeArray();
            if (// First row becomes header
            firstColumnCount == null) {
                firstColumnCount = getColumnCount(row);
                for (Node c : cells) {
                    TagNode cell = (TagNode) c;
                    grid.addHeader(new GridHeader(getValue(cell), false, false));
                    Integer colSpan = MathUtils.parseInt(cell.getAttribute("colspan"));
                    if (colSpan != null && colSpan > 1) {
                        grid.addEmptyHeaders((colSpan - 1));
                    }
                }
            } else // Rest becomes rows
            {
                if (// Ignore
                firstColumnCount != getColumnCount(row)) {
                    log.warn("Ignoring row which has " + row.getColumnCount() + " columns since table has " + firstColumnCount + " columns");
                    continue;
                }
                grid.addRow();
                for (Node c : cells) {
                    // TODO row span
                    TagNode cell = (TagNode) c;
                    grid.addValue(getValue(cell));
                    Integer colSpan = MathUtils.parseInt(cell.getAttribute("colspan"));
                    if (colSpan != null && colSpan > 1) {
                        grid.addEmptyValues((colSpan - 1));
                    }
                }
            }
        }
        grids.add(grid);
    }
    return grids;
}
Also used : Grid(org.hisp.dhis.common.Grid) TagNode(org.htmlparser.nodes.TagNode) Node(org.htmlparser.Node) ArrayList(java.util.ArrayList) Parser(org.htmlparser.Parser) GridHeader(org.hisp.dhis.common.GridHeader) TableTag(org.htmlparser.tags.TableTag) TableRow(org.htmlparser.tags.TableRow) TagNameFilter(org.htmlparser.filters.TagNameFilter) TagNode(org.htmlparser.nodes.TagNode)

Aggregations

Node (org.htmlparser.Node)2 TagNode (org.htmlparser.nodes.TagNode)2 ArrayList (java.util.ArrayList)1 JasperPrint (net.sf.jasperreports.engine.JasperPrint)1 Grid (org.hisp.dhis.common.Grid)1 GridHeader (org.hisp.dhis.common.GridHeader)1 Parser (org.htmlparser.Parser)1 TagNameFilter (org.htmlparser.filters.TagNameFilter)1 TableRow (org.htmlparser.tags.TableRow)1 TableTag (org.htmlparser.tags.TableTag)1