mirror of
				https://github.com/Alfresco/alfresco-community-repo.git
				synced 2025-10-29 15:21:53 +00:00 
			
		
		
		
	125788 rmunteanu: Merged 5.1.N (5.1.2) to 5.2.N (5.2.1)
      125606 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2)
         125515 slanglois: MNT-16155 Update source headers - add new Copyrights for Java and JSP source files + automatic check in the build
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@127810 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
		
	
		
			
				
	
	
		
			154 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			154 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| /*
 | |
|  * #%L
 | |
|  * Alfresco Repository
 | |
|  * %%
 | |
|  * Copyright (C) 2005 - 2016 Alfresco Software Limited
 | |
|  * %%
 | |
|  * This file is part of the Alfresco software. 
 | |
|  * If the software was purchased under a paid Alfresco license, the terms of 
 | |
|  * the paid license agreement will prevail.  Otherwise, the software is 
 | |
|  * provided under the following open source license terms:
 | |
|  * 
 | |
|  * Alfresco 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 3 of the License, or
 | |
|  * (at your option) any later version.
 | |
|  * 
 | |
|  * Alfresco 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 Alfresco. If not, see <http://www.gnu.org/licenses/>.
 | |
|  * #L%
 | |
|  */
 | |
| package org.alfresco.repo.admin;
 | |
| 
 | |
| import java.io.File;
 | |
| import java.util.List;
 | |
| 
 | |
| import org.alfresco.error.AlfrescoRuntimeException;
 | |
| import org.alfresco.model.ContentModel;
 | |
| import org.alfresco.repo.transaction.RetryingTransactionHelper.RetryingTransactionCallback;
 | |
| import org.alfresco.service.cmr.repository.ContentReader;
 | |
| import org.alfresco.service.cmr.repository.NodeRef;
 | |
| import org.alfresco.service.cmr.repository.StoreRef;
 | |
| import org.alfresco.service.transaction.TransactionService;
 | |
| import org.apache.commons.logging.Log;
 | |
| import org.apache.commons.logging.LogFactory;
 | |
| import org.springframework.context.ApplicationEvent;
 | |
| import org.springframework.extensions.surf.util.AbstractLifecycleBean;
 | |
| import org.springframework.extensions.surf.util.I18NUtil;
 | |
| 
 | |
| public class IndexConfigurationCheckerBootstrapBean extends AbstractLifecycleBean
 | |
| {
 | |
|     private static Log logger = LogFactory.getLog(IndexConfigurationCheckerBootstrapBean.class);
 | |
|     
 | |
|     private IndexConfigurationChecker indexConfigurationChecker;
 | |
|     
 | |
|     private TransactionService transactionService;
 | |
| 
 | |
|     private boolean strict;
 | |
| 
 | |
|     private String dirRoot;
 | |
| 
 | |
|     @Override
 | |
|     protected void onBootstrap(ApplicationEvent event)
 | |
|     {
 | |
|         RetryingTransactionCallback<Object> checkWork = new RetryingTransactionCallback<Object>()
 | |
|         {
 | |
|             public Object execute() throws Exception
 | |
|             {
 | |
|                 // reindex
 | |
| 
 | |
|                 log.info("Checking/Recovering indexes ...");
 | |
|                 check();
 | |
| 
 | |
|                 return null;
 | |
|             }
 | |
|         };
 | |
|         transactionService.getRetryingTransactionHelper().doInTransaction(checkWork, true);
 | |
|         
 | |
|         
 | |
|         
 | |
|     }
 | |
| 
 | |
|     private void check()
 | |
|     {
 | |
|         if (logger.isDebugEnabled())
 | |
|         {
 | |
|             logger.debug("Starting index configuration check: " + this);
 | |
|         }
 | |
|         
 | |
|       
 | |
|         File dirRootFile = new File(dirRoot);
 | |
| 
 | |
|         
 | |
|         List<StoreRef> missingIndexStoreRefs = indexConfigurationChecker.checkIndexConfiguration();
 | |
|             
 | |
|         // check for missing indexes
 | |
|         int missingStoreIndexes = missingIndexStoreRefs.size();
 | |
|         if (missingStoreIndexes > 0)
 | |
|         {
 | |
|             String msg = I18NUtil.getMessage(ConfigurationChecker.ERR_MISSING_INDEXES, missingStoreIndexes);
 | |
|             logger.error(msg);
 | |
|             String msgRecover = I18NUtil.getMessage(ConfigurationChecker.MSG_HOWTO_INDEX_RECOVER);
 | |
|             logger.info(msgRecover);
 | |
|         }
 | |
|         
 | |
|         // handle either content or indexes missing
 | |
|         if (missingStoreIndexes > 0)
 | |
|         {
 | |
|             String msg = I18NUtil.getMessage(ConfigurationChecker.ERR_FIX_DIR_ROOT, dirRootFile);
 | |
|             logger.error(msg);
 | |
|             
 | |
|             // Now determine the failure behaviour
 | |
|             if (strict)
 | |
|             {
 | |
|                 throw new AlfrescoRuntimeException(msg);
 | |
|             }
 | |
|             else
 | |
|             {
 | |
|                 String warn = I18NUtil.getMessage(ConfigurationChecker.WARN_STARTING_WITH_ERRORS);
 | |
|                 logger.warn(warn);
 | |
|             }
 | |
|         }
 | |
|     }
 | |
|     
 | |
|     @Override
 | |
|     protected void onShutdown(ApplicationEvent event)
 | |
|     {
 | |
|         // Nothing to do
 | |
|     }
 | |
| 
 | |
|    
 | |
| 
 | |
|     public IndexConfigurationChecker getIndexConfigurationChecker()
 | |
|     {
 | |
|         return indexConfigurationChecker;
 | |
|     }
 | |
| 
 | |
|     public void setIndexConfigurationChecker(IndexConfigurationChecker indexConfigurationChecker)
 | |
|     {
 | |
|         this.indexConfigurationChecker = indexConfigurationChecker;
 | |
|     }
 | |
| 
 | |
|     public void setStrict(boolean strict)
 | |
|     {
 | |
|         this.strict = strict;
 | |
|     }
 | |
|     
 | |
|     public void setDirRoot(String dirRoot)
 | |
|     {
 | |
|         this.dirRoot = dirRoot;
 | |
|     }
 | |
| 
 | |
|     public void setTransactionService(TransactionService transactionService)
 | |
|     {
 | |
|         this.transactionService = transactionService;
 | |
|     }
 | |
|     
 | |
|     
 | |
| }
 |