Package com.scaleunlimited.helpful.operations

Source Code of com.scaleunlimited.helpful.operations.ParseModMboxPageFunction

/*
* Copyright 2009-2013 Scale Unlimited
*
* 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 com.scaleunlimited.helpful.operations;

import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;

import org.apache.tika.metadata.Metadata;
import org.apache.tika.parser.ParseContext;
import org.apache.tika.parser.html.HtmlParser;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.xml.sax.Attributes;
import org.xml.sax.ContentHandler;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

import com.scaleunlimited.cascading.NullContext;

import bixo.datum.FetchedDatum;
import bixo.datum.UrlDatum;
import cascading.flow.FlowProcess;
import cascading.operation.BaseOperation;
import cascading.operation.Function;
import cascading.operation.FunctionCall;
import cascading.tuple.TupleEntry;


@SuppressWarnings({"serial", "rawtypes"})
public class ParseModMboxPageFunction extends BaseOperation<NullContext> implements Function<NullContext> {
  private static final Logger LOGGER = LoggerFactory.getLogger(ParseModMboxPageFunction.class);
 
  private List<String> _ids = new ArrayList<String>();
 
  // These aren't easily serializable, so make them transient and do lazy
  // creation from the operate() call.
  private transient HtmlParser _parser;
  private transient ContentHandler _handler;
 
  public ParseModMboxPageFunction() {
    super(UrlDatum.FIELDS);
  }

  private synchronized void init() {
    if (_parser == null) {
      _parser = new HtmlParser();
    }
   
    if (_handler == null) {
      _handler = new DefaultHandler() {

        @Override
        public void startDocument() throws SAXException {
          super.startDocument();
          _ids.clear();
        }

        @Override
        public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
          // We're looking for something like
          // <a href="200606.mbox/thread">
          if (qName.equalsIgnoreCase("a") && (attributes.getValue("href").endsWith("/thread"))) {
            _ids.add(attributes.getValue("href").substring(0, 6));
          }
        }
      };
    }
  }
 
  @Override
  public void operate(FlowProcess process, FunctionCall<NullContext> functionCall) {
        TupleEntry arguments = functionCall.getArguments();
        FetchedDatum fetchedDatum = new FetchedDatum(arguments.getTuple());

        if (fetchedDatum.getContentType().startsWith("text/html")) {
          init();

          Metadata metadata = new Metadata();
          InputStream is = new ByteArrayInputStream(fetchedDatum.getContentBytes());
         
          try {
            _parser.parse(is, _handler, metadata, new ParseContext());

            // _ids now has a list of the mailbox IDs that we use to create URLs.
            for (String id : _ids) {
              String url = String.format("%s/%s.mbox", fetchedDatum.getUrl(), id);
              UrlDatum datum = new UrlDatum(url);
              functionCall.getOutputCollector().add(datum.getTuple());
            }
          } catch (Exception e) {
        LOGGER.error("Exception parsing mod_mbox page", e);
      }
        }
  }
}
TOP

Related Classes of com.scaleunlimited.helpful.operations.ParseModMboxPageFunction

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.