Package com.baulsupp.kolja.log.viewer.importing

Source Code of com.baulsupp.kolja.log.viewer.importing.DefaultLineIndexFactory

/**
* Copyright (c) 2002-2007 Yuri Schimke. All Rights Reserved.
*
*  This library is free software; you can redistribute it and/or
*  modify it under the terms of the GNU Lesser General Public
*  License as published by the Free Software Foundation; either
*  version 2.1 of the License, or (at your option) any later version.
*
*  This library 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
*  Lesser General Public License for more details.
*
*  You should have received a copy of the GNU Lesser General Public
*  License along with this library; if not, write to the Free Software
*  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/
package com.baulsupp.kolja.log.viewer.importing;

import java.io.File;
import java.io.IOException;
import java.nio.charset.Charset;

import com.baulsupp.kolja.log.line.LineIndex;
import com.baulsupp.kolja.log.line.LineIterator;
import com.baulsupp.kolja.log.util.LongRange;
import com.baulsupp.kolja.log.util.WrappedCharBuffer;
import com.baulsupp.kolja.log.viewer.io.fast.ChunkedFileSequence;
import com.baulsupp.kolja.log.viewer.io.fast.FastLineIterator;
import com.baulsupp.kolja.log.viewer.io.fast.GzipFileSequence;

/**
* @author Yuri Schimke
*
*/
public class DefaultLineIndexFactory implements LineIndexFactory {

  public LineIndex buildLineIndex(File file, LogFormat format) throws IOException {
    WrappedCharBuffer buffer = WrappedCharBuffer.fromFile(file);

    LineIndex li = format.getLineIndex(buffer);
    return li;
  }

  public LineIterator buildForwardsLineIterator(File file, LogFormat format, LongRange intRange) throws Exception {
    long from = 0;
    int to = Integer.MAX_VALUE;

    if (intRange != null) {
      from = intRange.getFrom();
      to = (int) (intRange.getTo() - from);
    }

    CharSequence content;

    if (isGzip(file)) {
      content = GzipFileSequence.create(file, Charset.forName("US-ASCII"));
    } else {
      content = ChunkedFileSequence.create(file, Charset.forName("US-ASCII"), from);
    }

    return new FastLineIterator(format.getEntryPattern(), content, format.getLineParser(), from, to);
  }

  private boolean isGzip(File file) {
    return file.getName().endsWith(".gz");
  }
}
TOP

Related Classes of com.baulsupp.kolja.log.viewer.importing.DefaultLineIndexFactory

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.