Package org.jboss.cache.search

Source Code of org.jboss.cache.search.SearchableCoreListener

/*
* JBoss, Home of Professional Open Source
* Copyright ${year}, Red Hat Middleware LLC, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This 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 software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package org.jboss.cache.search;

import org.hibernate.search.backend.TransactionContext;
import org.hibernate.search.backend.Work;
import org.hibernate.search.backend.WorkType;
import org.hibernate.search.engine.SearchFactoryImplementor;
import org.jboss.cache.notifications.annotation.CacheListener;
import org.jboss.cache.notifications.annotation.NodeModified;
import org.jboss.cache.notifications.event.NodeModifiedEvent;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

import java.util.Map;

/**
* @author Navin Surtani (<a href="mailto:nsurtani@redhat.com">nsurtani@redhat.com</a>)
*
* Listener class for changes made to the cache. This listener makes changes if it is a {@link org.jboss.cache.Cache} being used.
*/
@CacheListener
public class SearchableCoreListener
{
   private SearchFactoryImplementor searchFactory;
   private static final Log log = LogFactory.getLog(SearchableCoreListener.class);

   public SearchableCoreListener(SearchFactoryImplementor searchFactory)
   {
     
      this.searchFactory = searchFactory;
   }

   /**
    * Takes in a NodeModifiedEvent and updates the Lucene indexes using methods on the NodeModifiedEvent class.
    *
    * @param event that has occured - or a node that has been changed. {@link org.jboss.cache.notifications.event.NodeModifiedEvent}
    * @throws InvalidKeyException if an invalid key is passed in.
    */
  
   @NodeModified
   public void updateLuceneIndexes(NodeModifiedEvent event) throws InvalidKeyException
   {

      if (log.isTraceEnabled()) log.trace("You have entered the SearchableListener");
      if (!event.isPre())
      {
         if (log.isTraceEnabled()) log.trace("event.isPre is false. Going to start updating indexes");
         switch (event.getModificationType())
         {
            case PUT_MAP:
            case PUT_DATA:
               if (log.isTraceEnabled()) log.trace("put() has been called on cache. Going to handle the data.");
               handlePutData(event, searchFactory);
               break;
            case REMOVE_DATA:
               handleDeleteData(event, searchFactory);
               break;
         }
      }
   }

      /**
    * If the modification type is PUT_MAP or PUT_DATA then this method will be called.
    * Takes in the event as a parameter
    *
    * @param event that has occured - or a node that has been changed. {@link org.jboss.cache.notifications.event.NodeModifiedEvent}
    * @param searchFactory - a SearchFactoryImpl instance.
    * @throws InvalidKeyException
    */


   protected void handlePutData(NodeModifiedEvent event, SearchFactoryImplementor searchFactory) throws InvalidKeyException
   {
      Map dataMap = event.getData();
      if (log.isTraceEnabled()) log.trace("Called event.getData() and saved to a Map");


      TransactionContext ctx = new NodeModifiedTransactionContext(event);

      for (Object key : dataMap.keySet())
      {
         CacheEntityId cacheEntityId = new CacheEntityId(event.getFqn(), (String) key);
         if (log.isTraceEnabled()) log.trace("Created new CacheEntityId");

         String fqnString = cacheEntityId.getFqn().toString()// Vars for logging
         String keyString = (String) key;


         searchFactory.getWorker().performWork(new Work(dataMap.get(key), cacheEntityId.getDocumentId(), WorkType.DELETE), ctx);
         searchFactory.getWorker().performWork(new Work(dataMap.get(key), cacheEntityId.getDocumentId(), WorkType.ADD), ctx);


         if (log.isTraceEnabled())
         {
            log.debug("Added your object into Lucene with Fqn " + fqnString + " and key " + keyString);
         }


      }

   }



   /**
    * If the modification type is DELETE_DATA then this method will be called.
    * Takes in the event as a parameter
    *
    * @param event that has occured - or a node that has been changed. {@link org.jboss.cache.notifications.event.NodeModifiedEvent}
    * @param searchFactory - a SearchFactoryImpl instance.
    * @throws InvalidKeyException
    */
   protected void handleDeleteData(NodeModifiedEvent event, SearchFactoryImplementor searchFactory) throws InvalidKeyException
   {
      Map dataMap = event.getData();

      TransactionContext ctx = new NodeModifiedTransactionContext(event);

      for (Object key : dataMap.keySet())
      {
         CacheEntityId cacheEntityId = new CacheEntityId(event.getFqn(), (String) key);

         String fqnString = cacheEntityId.getFqn().toString();
         String keyString = (String) key;


         searchFactory.getWorker().performWork(new Work(dataMap.get(key), cacheEntityId.getDocumentId(), WorkType.DELETE), ctx);
         if (log.isTraceEnabled()) log.trace("Deleted your object from Lucene with Fqn " + fqnString + " and key " + keyString);


      }

   }

}
TOP

Related Classes of org.jboss.cache.search.SearchableCoreListener

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.