Package net.sf.regain.search.sharedlib.hit

Source Code of net.sf.regain.search.sharedlib.hit.FieldTag

/*
* regain - A file search engine providing plenty of formats
* Copyright (C) 2004  Til Schneider
*
* 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
*
* Contact: Til Schneider, info@murfman.de
*
* CVS information:
*  $RCSfile$
*   $Source$
*     $Date: 2009-11-26 18:14:25 +0100 (Do, 26 Nov 2009) $
*   $Author: thtesche $
* $Revision: 430 $
*/
package net.sf.regain.search.sharedlib.hit;

import java.util.zip.DataFormatException;
import net.sf.regain.RegainException;
import net.sf.regain.RegainToolkit;
import net.sf.regain.search.SearchToolkit;
import net.sf.regain.search.results.SearchResults;
import net.sf.regain.util.sharedtag.PageRequest;
import net.sf.regain.util.sharedtag.PageResponse;

import org.apache.lucene.document.CompressionTools;
import org.apache.lucene.document.Document;

/**
* Generates the value of an index field of the current hit's document.
* <p>
* Tag Parameters:
* <ul>
* <li><code>field</code>: The name of the index field to write the value of.</li>
* </ul>
*
* @author Til Schneider, www.murfman.de
*/
public class FieldTag extends AbstractHitTag {

  /**
   * Generates the tag.
   *
   * @param request The page request.
   * @param response The page response.
   * @param hit The current search hit.
   * @param hitIndex The index of the hit.
   * @throws RegainException If there was an exception.
   */
  protected void printEndTag(PageRequest request, PageResponse response,
          Document hit, int hitIndex)
          throws RegainException {
    SearchResults results = SearchToolkit.getSearchResults(request);
    boolean shouldHighlight = results.getShouldHighlight(hitIndex);

    String field = getParameter("field", true);
    String value = null;
    if (shouldHighlight) {
      value = hit.get(RegainToolkit.createHighlightedFieldIdent(field));
    }

    if (value == null || value.length() == 0) {
      value = hit.get(field);
    }

    // Maybe this is a compressed field
    if (value == null) {
      byte[] compressedFieldValue = hit.getBinaryValue(field);
      if (compressedFieldValue != null) {
        try {
          value = CompressionTools.decompressString(compressedFieldValue);
        } catch (DataFormatException dataFormatException) {
          throw new RegainException("Couldn't uncompress field value." + dataFormatException);
        }
      }
    }

    if (value != null) {
      if (shouldHighlight) {
        response.print(value);
      } else {
        response.printNoHtml(value);
      }
    }
  }
}
TOP

Related Classes of net.sf.regain.search.sharedlib.hit.FieldTag

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.