Package com.itextpdf.text.html.simpleparser

Source Code of com.itextpdf.text.html.simpleparser.HTMLWorker

/*
* $Id: HTMLWorker.java 4285 2010-01-30 22:34:35Z psoares33 $
*
* This file is part of the iText project.
* Copyright (c) 1998-2009 1T3XT BVBA
* Authors: Bruno Lowagie, Paulo Soares, et al.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License version 3
* as published by the Free Software Foundation with the addition of the
* following permission added to Section 15 as permitted in Section 7(a):
* FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY 1T3XT,
* 1T3XT DISCLAIMS THE WARRANTY OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Affero General Public License for more details.
* You should have received a copy of the GNU Affero General Public License
* along with this program; if not, see http://www.gnu.org/licenses or write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA, 02110-1301 USA, or download the license from the following URL:
* http://itextpdf.com/terms-of-use/
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License.
*
* In accordance with Section 7(b) of the GNU Affero General Public License,
* you must retain the producer line in every PDF that is created or manipulated
* using iText.
*
* You can be released from the requirements of the license by purchasing
* a commercial license. Buying such a license is mandatory as soon as you
* develop commercial activities involving the iText software without
* disclosing the source code of your own applications.
* These activities include: offering paid services to customers as an ASP,
* serving PDFs on the fly in a web application, shipping iText with a closed
* source product.
*
* For more information, please contact iText Software Corp. at this
* address: sales@itextpdf.com
*/
package com.itextpdf.text.html.simpleparser;

import java.io.File;
import java.io.IOException;
import java.io.Reader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Stack;
import java.util.StringTokenizer;

import com.itextpdf.text.Chunk;
import com.itextpdf.text.DocListener;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Element;
import com.itextpdf.text.ElementTags;
import com.itextpdf.text.ExceptionConverter;
import com.itextpdf.text.FontProvider;
import com.itextpdf.text.Image;
import com.itextpdf.text.ListItem;
import com.itextpdf.text.Paragraph;
import com.itextpdf.text.Phrase;
import com.itextpdf.text.Rectangle;
import com.itextpdf.text.TextElementArray;
import com.itextpdf.text.html.HtmlTags;
import com.itextpdf.text.html.Markup;
import com.itextpdf.text.pdf.PdfPCell;
import com.itextpdf.text.pdf.PdfPTable;
import com.itextpdf.text.pdf.draw.LineSeparator;
import com.itextpdf.text.xml.simpleparser.SimpleXMLDocHandler;
import com.itextpdf.text.xml.simpleparser.SimpleXMLParser;

public class HTMLWorker implements SimpleXMLDocHandler, DocListener {

  protected ArrayList<Element> objectList;

  protected DocListener document;

  private Paragraph currentParagraph;

  private ChainedProperties cprops = new ChainedProperties();

  private Stack<Element> stack = new Stack<Element>();

  private boolean pendingTR = false;

  private boolean pendingTD = false;

  private boolean pendingLI = false;

  private StyleSheet style = new StyleSheet();

  private boolean isPRE = false;

  private Stack<boolean[]> tableState = new Stack<boolean[]>();

  private boolean skipText = false;

  private HashMap<String, Object> interfaceProps;

  private FactoryProperties factoryProperties = new FactoryProperties();

  /** Creates a new instance of HTMLWorker
   * @param document A class that implements <CODE>DocListener</CODE>
   * */
  public HTMLWorker(DocListener document) {
    this.document = document;
  }

  public void setStyleSheet(StyleSheet style) {
    this.style = style;
  }

  public StyleSheet getStyleSheet() {
    return style;
  }

  public void setInterfaceProps(HashMap<String, Object> interfaceProps) {
    this.interfaceProps = interfaceProps;
    FontProvider ff = null;
    if (interfaceProps != null)
      ff = (FontProvider) interfaceProps.get("font_factory");
    if (ff != null)
      factoryProperties.setFontImp(ff);
  }

  public HashMap<String, Object> getInterfaceProps() {
    return interfaceProps;
  }

  public void parse(Reader reader) throws IOException {
    SimpleXMLParser.parse(this, null, reader, true);
  }

  public static ArrayList<Element> parseToList(Reader reader, StyleSheet style)
      throws IOException {
    return parseToList(reader, style, null);
  }

  public static ArrayList<Element> parseToList(Reader reader, StyleSheet style,
      HashMap<String, Object> interfaceProps) throws IOException {
    HTMLWorker worker = new HTMLWorker(null);
    if (style != null)
      worker.style = style;
    worker.document = worker;
    worker.setInterfaceProps(interfaceProps);
    worker.objectList = new ArrayList<Element>();
    worker.parse(reader);
    return worker.objectList;
  }

  public void endDocument() {
    try {
      for (int k = 0; k < stack.size(); ++k)
        document.add(stack.elementAt(k));
      if (currentParagraph != null)
        document.add(currentParagraph);
      currentParagraph = null;
    } catch (Exception e) {
      throw new ExceptionConverter(e);
    }
  }

  public void startDocument() {
    HashMap<String, String> h = new HashMap<String, String>();
    style.applyStyle("body", h);
    cprops.addToChain("body", h);
  }

    @SuppressWarnings("unchecked")
    public void startElement(String tag, HashMap<String, String> h) {
    if (!tagsSupported.contains(tag))
      return;
    try {
      style.applyStyle(tag, h);
      String follow = FactoryProperties.followTags.get(tag);
      if (follow != null) {
        HashMap<String, String> prop = new HashMap<String, String>();
        prop.put(follow, null);
        cprops.addToChain(follow, prop);
        return;
      }
      FactoryProperties.insertStyle(h, cprops);
      if (tag.equals(HtmlTags.ANCHOR)) {
        cprops.addToChain(tag, h);
        if (currentParagraph == null) {
          currentParagraph = new Paragraph();
        }
        stack.push(currentParagraph);
        currentParagraph = new Paragraph();
        return;
      }
      if (tag.equals(HtmlTags.NEWLINE)) {
        if (currentParagraph == null) {
          currentParagraph = new Paragraph();
        }
        currentParagraph.add(factoryProperties
            .createChunk("\n", cprops));
        return;
      }
      if (tag.equals(HtmlTags.HORIZONTALRULE)) {
        // Attempting to duplicate the behavior seen on Firefox with
        // http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_hr_test
        // where an initial break is only inserted when the preceding element doesn't
        // end with a break, but a trailing break is always inserted.
        boolean addLeadingBreak = true;
        if (currentParagraph == null) {
          currentParagraph = new Paragraph();
          addLeadingBreak = false;
        }
        if (addLeadingBreak) { // Not a new paragraph
          int numChunks = currentParagraph.getChunks().size();
          if (numChunks == 0 ||
              currentParagraph.getChunks().get(numChunks - 1).getContent().endsWith("\n"))
            addLeadingBreak = false;
        }
        String align = h.get("align");
        int hrAlign = Element.ALIGN_CENTER;
        if (align != null) {
          if (align.equalsIgnoreCase("left"))
            hrAlign = Element.ALIGN_LEFT;
          if (align.equalsIgnoreCase("right"))
            hrAlign = Element.ALIGN_RIGHT;
        }
        String width = h.get("width");
        float hrWidth = 1;
        if (width != null) {
          float tmpWidth = Markup.parseLength(width, Markup.DEFAULT_FONT_SIZE);
          if (tmpWidth > 0) hrWidth = tmpWidth;
          if (!width.endsWith("%"))
            hrWidth = 100; // Treat a pixel width as 100% for now.
        }
        String size = h.get("size");
        float hrSize = 1;
        if (size != null) {
          float tmpSize = Markup.parseLength(size, Markup.DEFAULT_FONT_SIZE);
          if (tmpSize > 0)
            hrSize = tmpSize;
        }
        if (addLeadingBreak)
          currentParagraph.add(Chunk.NEWLINE);
        currentParagraph.add(new LineSeparator(hrSize, hrWidth, null, hrAlign, currentParagraph.getLeading()/2));
        currentParagraph.add(Chunk.NEWLINE);
        return;
      }
      if (tag.equals(HtmlTags.CHUNK) || tag.equals(HtmlTags.SPAN)) {
        cprops.addToChain(tag, h);
        return;
      }
      if (tag.equals(HtmlTags.IMAGE)) {
        String src = h.get(ElementTags.SRC);
        if (src == null)
          return;
        cprops.addToChain(tag, h);
        Image img = null;
        if (interfaceProps != null) {
          ImageProvider ip = (ImageProvider) interfaceProps
              .get("img_provider");
          if (ip != null)
            img = ip.getImage(src, h, cprops, document);
          if (img == null) {
            HashMap<String, Image> images = (HashMap<String, Image>) interfaceProps
                .get("img_static");
            if (images != null) {
              Image tim = images.get(src);
              if (tim != null)
                img = Image.getInstance(tim);
            } else {
              if (!src.startsWith("http")) { // relative src references only
                String baseurl = (String) interfaceProps
                    .get("img_baseurl");
                if (baseurl != null) {
                  src = baseurl + src;
                  img = Image.getInstance(src);
                }
              }
            }
          }
        }
        if (img == null) {
          if (!src.startsWith("http")) {
            String path = cprops.getProperty("image_path");
            if (path == null)
              path = "";
            src = new File(path, src).getPath();
          }
          img = Image.getInstance(src);
        }
        String align = h.get("align");
        String width = h.get("width");
        String height = h.get("height");
        String before = cprops.getProperty("before");
        String after = cprops.getProperty("after");
        if (before != null)
          img.setSpacingBefore(Float.parseFloat(before));
        if (after != null)
          img.setSpacingAfter(Float.parseFloat(after));
        float actualFontSize = Markup.parseLength(cprops
            .getProperty(ElementTags.SIZE),
            Markup.DEFAULT_FONT_SIZE);
        if (actualFontSize <= 0f)
          actualFontSize = Markup.DEFAULT_FONT_SIZE;
        float widthInPoints = Markup.parseLength(width, actualFontSize);
        float heightInPoints = Markup.parseLength(height,
            actualFontSize);
        if (widthInPoints > 0 && heightInPoints > 0) {
          img.scaleAbsolute(widthInPoints, heightInPoints);
        } else if (widthInPoints > 0) {
          heightInPoints = img.getHeight() * widthInPoints
              / img.getWidth();
          img.scaleAbsolute(widthInPoints, heightInPoints);
        } else if (heightInPoints > 0) {
          widthInPoints = img.getWidth() * heightInPoints
              / img.getHeight();
          img.scaleAbsolute(widthInPoints, heightInPoints);
        }
        img.setWidthPercentage(0);
        if (align != null) {
          endElement("p");
          int ralign = Image.MIDDLE;
          if (align.equalsIgnoreCase("left"))
            ralign = Image.LEFT;
          else if (align.equalsIgnoreCase("right"))
            ralign = Image.RIGHT;
          img.setAlignment(ralign);
          Img i = null;
          boolean skip = false;
          if (interfaceProps != null) {
            i = (Img) interfaceProps.get("img_interface");
            if (i != null)
              skip = i.process(img, h, cprops, document);
          }
          if (!skip)
            document.add(img);
          cprops.removeChain(tag);
        } else {
          cprops.removeChain(tag);
          if (currentParagraph == null) {
            currentParagraph = FactoryProperties
                .createParagraph(cprops);
          }
          currentParagraph.add(new Chunk(img, 0, 0));
        }
        return;
      }
      endElement("p");
      if (tag.equals("h1") || tag.equals("h2") || tag.equals("h3")
          || tag.equals("h4") || tag.equals("h5") || tag.equals("h6")) {
        if (!h.containsKey(ElementTags.SIZE)) {
          int v = 7 - Integer.parseInt(tag.substring(1));
          h.put(ElementTags.SIZE, Integer.toString(v));
        }
        cprops.addToChain(tag, h);
        return;
      }
      if (tag.equals(HtmlTags.UNORDEREDLIST)) {
        if (pendingLI)
          endElement(HtmlTags.LISTITEM);
        skipText = true;
        cprops.addToChain(tag, h);
        com.itextpdf.text.List list = new com.itextpdf.text.List(false);
        try{
          list.setIndentationLeft(new Float(cprops.getProperty("indent")).floatValue());
        }catch (Exception e) {
          list.setAutoindent(true);
        }
        list.setListSymbol("\u2022");
        stack.push(list);
        return;
      }
      if (tag.equals(HtmlTags.ORDEREDLIST)) {
        if (pendingLI)
          endElement(HtmlTags.LISTITEM);
        skipText = true;
        cprops.addToChain(tag, h);
        com.itextpdf.text.List list = new com.itextpdf.text.List(true);
        try{
          list.setIndentationLeft(new Float(cprops.getProperty("indent")).floatValue());
        }catch (Exception e) {
          list.setAutoindent(true);
        }
        stack.push(list);
        return;
      }
      if (tag.equals(HtmlTags.LISTITEM)) {
        if (pendingLI)
          endElement(HtmlTags.LISTITEM);
        skipText = false;
        pendingLI = true;
        cprops.addToChain(tag, h);
        ListItem item = FactoryProperties.createListItem(cprops);
        stack.push(item);
        return;
      }
      if (tag.equals(HtmlTags.DIV) || tag.equals(HtmlTags.BODY) || tag.equals("p")) {
        cprops.addToChain(tag, h);
        return;
      }
      if (tag.equals(HtmlTags.PRE)) {
        if (!h.containsKey(ElementTags.FACE)) {
          h.put(ElementTags.FACE, "Courier");
        }
        cprops.addToChain(tag, h);
        isPRE = true;
        return;
      }
      if (tag.equals("tr")) {
        if (pendingTR)
          endElement("tr");
        skipText = true;
        pendingTR = true;
        cprops.addToChain("tr", h);
        return;
      }
      if (tag.equals("td") || tag.equals("th")) {
        if (pendingTD)
          endElement(tag);
        skipText = false;
        pendingTD = true;
        cprops.addToChain("td", h);
        stack.push(new IncCell(tag, cprops));
        return;
      }
      if (tag.equals("table")) {
        cprops.addToChain("table", h);
        IncTable table = new IncTable(h);
        stack.push(table);
        tableState.push(new boolean[] { pendingTR, pendingTD });
        pendingTR = pendingTD = false;
        skipText = true;
        return;
      }
    } catch (Exception e) {
      throw new ExceptionConverter(e);
    }
  }

  public void endElement(String tag) {
    if (!tagsSupported.contains(tag))
      return;
    try {
      String follow = FactoryProperties.followTags.get(tag);
      if (follow != null) {
        cprops.removeChain(follow);
        return;
      }
      if (tag.equals("font") || tag.equals("span")) {
        cprops.removeChain(tag);
        return;
      }
      if (tag.equals("a")) {
        if (currentParagraph == null) {
          currentParagraph = new Paragraph();
        }
        boolean skip = false;
        if (interfaceProps != null) {
          ALink i = (ALink) interfaceProps.get("alink_interface");
          if (i != null)
            skip = i.process(currentParagraph, cprops);
        }
        if (!skip) {
          String href = cprops.getProperty("href");
          if (href != null) {
            for (Chunk ck : currentParagraph.getChunks()) {
              ck.setAnchor(href);
            }
          }
        }
        Paragraph tmp = (Paragraph) stack.pop();
        Phrase tmp2 = new Phrase();
        tmp2.add(currentParagraph);
        tmp.add(tmp2);
        currentParagraph = tmp;
        cprops.removeChain("a");
        return;
      }
      if (tag.equals("br")) {
        return;
      }
      if (currentParagraph != null) {
        if (stack.empty())
          document.add(currentParagraph);
        else {
          Element obj = stack.pop();
          if (obj instanceof TextElementArray) {
            TextElementArray current = (TextElementArray) obj;
            current.add(currentParagraph);
          }
          stack.push(obj);
        }
      }
      currentParagraph = null;
      if (tag.equals(HtmlTags.UNORDEREDLIST)
          || tag.equals(HtmlTags.ORDEREDLIST)) {
        if (pendingLI)
          endElement(HtmlTags.LISTITEM);
        skipText = false;
        cprops.removeChain(tag);
        if (stack.empty())
          return;
        Element obj = stack.pop();
        if (!(obj instanceof com.itextpdf.text.List)) {
          stack.push(obj);
          return;
        }
        if (stack.empty())
          document.add(obj);
        else
          ((TextElementArray) stack.peek()).add(obj);
        return;
      }
      if (tag.equals(HtmlTags.LISTITEM)) {
        pendingLI = false;
        skipText = true;
        cprops.removeChain(tag);
        if (stack.empty())
          return;
        Element obj = stack.pop();
        if (!(obj instanceof ListItem)) {
          stack.push(obj);
          return;
        }
        if (stack.empty()) {
          document.add(obj);
          return;
        }
        Element list = stack.pop();
        if (!(list instanceof com.itextpdf.text.List)) {
          stack.push(list);
          return;
        }
        ListItem item = (ListItem) obj;
        ((com.itextpdf.text.List) list).add(item);
        ArrayList<Chunk> cks = item.getChunks();
        if (!cks.isEmpty())
          item.getListSymbol()
              .setFont(cks.get(0).getFont());
        stack.push(list);
        return;
      }
      if (tag.equals("div") || tag.equals("body")) {
        cprops.removeChain(tag);
        return;
      }
      if (tag.equals(HtmlTags.PRE)) {
        cprops.removeChain(tag);
        isPRE = false;
        return;
      }
      if (tag.equals("p")) {
        cprops.removeChain(tag);
        return;
      }
      if (tag.equals("h1") || tag.equals("h2") || tag.equals("h3")
          || tag.equals("h4") || tag.equals("h5") || tag.equals("h6")) {
        cprops.removeChain(tag);
        return;
      }
      if (tag.equals("table")) {
        if (pendingTR)
          endElement("tr");
        cprops.removeChain("table");
        IncTable table = (IncTable) stack.pop();
        PdfPTable tb = table.buildTable();
        tb.setSplitRows(true);
        if (stack.empty())
          document.add(tb);
        else
          ((TextElementArray) stack.peek()).add(tb);
        boolean state[] = tableState.pop();
        pendingTR = state[0];
        pendingTD = state[1];
        skipText = false;
        return;
      }
      if (tag.equals("tr")) {
        if (pendingTD)
          endElement("td");
        pendingTR = false;
        cprops.removeChain("tr");
        ArrayList<PdfPCell> cells = new ArrayList<PdfPCell>();
        IncTable table = null;
        while (true) {
          Element obj = stack.pop();
          if (obj instanceof IncCell) {
            cells.add(((IncCell) obj).getCell());
          }
          if (obj instanceof IncTable) {
            table = (IncTable) obj;
            break;
          }
        }
        table.addCols(cells);
        table.endRow();
        stack.push(table);
        skipText = true;
        return;
      }
      if (tag.equals("td") || tag.equals("th")) {
        pendingTD = false;
        cprops.removeChain("td");
        skipText = true;
        return;
      }
    } catch (Exception e) {
      throw new ExceptionConverter(e);
    }
  }

  public void text(String str) {
    if (skipText)
      return;
    String content = str;
    if (isPRE) {
      if (currentParagraph == null) {
        currentParagraph = FactoryProperties.createParagraph(cprops);
      }
      Chunk chunk = factoryProperties.createChunk(content, cprops);
      currentParagraph.add(chunk);
      return;
    }
    if (content.trim().length() == 0 && content.indexOf(' ') < 0) {
      return;
    }

    StringBuffer buf = new StringBuffer();
    int len = content.length();
    char character;
    boolean newline = false;
    for (int i = 0; i < len; i++) {
      switch (character = content.charAt(i)) {
      case ' ':
        if (!newline) {
          buf.append(character);
        }
        break;
      case '\n':
        if (i > 0) {
          newline = true;
          buf.append(' ');
        }
        break;
      case '\r':
        break;
      case '\t':
        break;
      default:
        newline = false;
        buf.append(character);
      }
    }
    if (currentParagraph == null) {
      currentParagraph = FactoryProperties.createParagraph(cprops);
    }
    Chunk chunk = factoryProperties.createChunk(buf.toString(), cprops);
    currentParagraph.add(chunk);
  }

  public boolean add(Element element) throws DocumentException {
    objectList.add(element);
    return true;
  }

  public void clearTextWrap() throws DocumentException {
  }

  public void close() {
  }

  public boolean newPage() {
    return true;
  }

  public void open() {
  }

  public void resetPageCount() {
  }

  public boolean setMarginMirroring(boolean marginMirroring) {
    return false;
  }

  /**
     * @see com.itextpdf.text.DocListener#setMarginMirroring(boolean)
   * @since  2.1.6
   */
  public boolean setMarginMirroringTopBottom(boolean marginMirroring) {
    return false;
  }

  public boolean setMargins(float marginLeft, float marginRight,
      float marginTop, float marginBottom) {
    return true;
  }

  public void setPageCount(int pageN) {
  }

  public boolean setPageSize(Rectangle pageSize) {
    return true;
  }

  public static final String tagsSupportedString = "ol ul li a pre font span br p div body table td th tr i b u sub sup em strong s strike"
      + " h1 h2 h3 h4 h5 h6 img hr";

  public static final HashSet<String> tagsSupported = new HashSet<String>();

  static {
    StringTokenizer tok = new StringTokenizer(tagsSupportedString);
    while (tok.hasMoreTokens())
      tagsSupported.add(tok.nextToken());
  }

}
TOP

Related Classes of com.itextpdf.text.html.simpleparser.HTMLWorker

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.