Package org.jboss.deployers.vfs.spi.structure.modified

Source Code of org.jboss.deployers.vfs.spi.structure.modified.MetaDataStructureModificationChecker

/*
* JBoss, Home of Professional Open Source.
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file 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.deployers.vfs.spi.structure.modified;

import java.io.IOException;
import java.util.Collections;
import java.util.List;
import java.util.Set;

import org.jboss.deployers.spi.structure.ContextInfo;
import org.jboss.deployers.spi.structure.MetaDataEntry;
import org.jboss.deployers.spi.structure.MetaDataType;
import org.jboss.deployers.spi.structure.StructureMetaData;
import org.jboss.deployers.structure.spi.main.MainDeployerInternals;
import org.jboss.deployers.vfs.spi.structure.VFSDeploymentContext;
import org.jboss.vfs.VirtualFile;
import org.jboss.vfs.VirtualFileFilter;

/**
* MetaDataStructureModificationChecker.
*
* @author <a href="mailto:ales.justin@jboss.org">Ales Justin</a>
*/
public class MetaDataStructureModificationChecker extends AbstractStructureModificationChecker<Long>
{
   /** The current context path const */
   private static final Set<String> CURRENT_PATH = Collections.singleton("");

   /** The metadata filter */
   private VirtualFileFilter filter;

   public MetaDataStructureModificationChecker(MainDeployerInternals mainDeployer)
   {
      super(mainDeployer);
   }

   /**
    * Set the metadata filter.
    *
    * @param filter the metadata filter
    */
   public void setFilter(VirtualFileFilter filter)
   {
      this.filter = filter;
   }

   @Override
   protected boolean hasRootBeenModified(VirtualFile root) throws IOException
   {
      Long cachedValue = getCache().getCacheValue(root);
      long lastModified = root.getLastModified();
      if (cachedValue != null)
      {
         return (cachedValue < lastModified);           
      }
      else
      {
         getCache().putCacheValue(root, lastModified);
         return false;
      }
   }

   protected boolean hasDeploymentContextBeenModified(VirtualFile root, VFSDeploymentContext deploymentContext) throws IOException
   {
      StructureMetaData structureMetaData = deploymentContext.getTransientManagedObjects().getAttachment(StructureMetaData.class);
      return hasStructureBeenModified(root, structureMetaData, null);
   }

   /**
    * Has structure been modified.
    *
    * @param root the root
    * @param structureMetaData the structure metadata
    * @param excludedPaths the excluded paths
    * @return true if modifed, false otherwise
    * @throws IOException for any error
    */
   protected boolean hasStructureBeenModified(VirtualFile root, StructureMetaData structureMetaData, Set<String> excludedPaths) throws IOException
   {
      if (structureMetaData == null)
         return false;

      List<ContextInfo> contexts = structureMetaData.getContexts();
      if (contexts != null && contexts.isEmpty() == false)
      {
         for (ContextInfo contextInfo : contexts)
         {
            if (excludedPaths != null)
            {
               String path = contextInfo.getPath();
               if (excludedPaths.contains(path))
               {
                  continue;
               }
            }

            if (hasStructureBeenModifed(root, contextInfo))
               return true;
         }
      }
      return false;
   }

   /**
    * Has structure been modifed.
    *
    * @param root the root
    * @param contextInfo the context info
    * @return true if modifed, false otherwise
    * @throws IOException for any error
    */
   protected boolean hasStructureBeenModifed(VirtualFile root, ContextInfo contextInfo) throws IOException
   {
      String path = contextInfo.getPath();
      VirtualFile contextRoot = root.getChild(path);
      if (contextRoot.exists())
      {
         List<MetaDataEntry> metadataPaths = contextInfo.getMetaDataPath();
         if (metadataPaths != null && metadataPaths.isEmpty() == false)
         {
            for (MetaDataEntry entry : metadataPaths)
            {
               if (entry.getType() != MetaDataType.DEFAULT)
                  continue;

               String metaDataPath = entry.getPath();
               VirtualFile mdpVF = contextRoot.getChild(metaDataPath);
               if (mdpVF.exists())
               {
                  List<VirtualFile> children = mdpVF.getChildren(filter);
                  List<VirtualFile> leaves = getCache().getLeaves(mdpVF, filter);
                  // do we have some new files or some were deleted
                  if (leaves != null && children != null && leaves.size() != children.size())
                  {
                     if (log.isTraceEnabled())
                        log.trace("Metadata files number changed, old: " + leaves + ", now: " + children);
                     return true;
                  }

                  if (children != null && children.isEmpty() == false)
                  {
                     for (VirtualFile child : children)
                     {
                        // we tried to remove non existing leaf - it's new == modified
                        if (leaves != null && leaves.remove(child) == false)
                        {
                           if (log.isTraceEnabled())
                              log.trace("Found new metadata file: " + child);
                           return true;
                        }

                        Long timestamp = getCache().getCacheValue(child);
                        long lastModified = child.getLastModified();
                        if (timestamp != null)
                        {
                           if (timestamp < lastModified)
                           {
                              if (log.isTraceEnabled())
                                 log.trace("Metadata location modified: " + child);
                              return true;
                           }
                        }
                        else
                        {
                           // only put if not modified
                           getCache().putCacheValue(child, lastModified);
                        }
                     }
                  }
                  else
                  {                    
                     // mark empty metadata path
                     getCache().putCacheValue(mdpVF, System.currentTimeMillis());
                  }
                  // not all previous leaves were removed - we're missing some == modified
                  if (leaves != null && leaves.isEmpty() == false)
                  {
                     if (log.isTraceEnabled())
                        log.trace("Missing old files: " + leaves);
                     return true;
                  }
               }
            }
         }
         if ("".equals(path) == false)
         {
            StructureMetaData structureMetaData = contextInfo.getPredeterminedManagedObjects().getAttachment(StructureMetaData.class);
            return hasStructureBeenModified(contextRoot, structureMetaData, CURRENT_PATH);
         }
      }
      return false;
   }
}
TOP

Related Classes of org.jboss.deployers.vfs.spi.structure.modified.MetaDataStructureModificationChecker

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.