/******************************************************************************* * Copyright (c) 2000-present Liferay, Inc. 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. * *******************************************************************************/ package com.liferay.ide.hook.core.model.internal; import com.liferay.ide.core.ILiferayPortal; import com.liferay.ide.core.ILiferayProject; import com.liferay.ide.core.LiferayCore; import com.liferay.ide.core.util.CoreUtil; import java.io.File; import java.io.FileFilter; import java.util.LinkedList; import java.util.List; import java.util.Set; import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IProject; import org.eclipse.sapphire.Element; import org.eclipse.sapphire.PossibleValuesService; import org.eclipse.sapphire.Value; import org.eclipse.sapphire.modeling.Path; import org.eclipse.sapphire.modeling.Status; /** * @author Gregory Amerson * @author Simon Jiang */ public class CustomJspPossibleValuesService extends PossibleValuesService { final FileFilter jspfilter = new FileFilter() { public boolean accept( File pathname ) { return pathname.isDirectory() || pathname.getName().endsWith( ".jsp" ) || //$NON-NLS-1$ pathname.getName().endsWith( ".jspf" ); //$NON-NLS-1$ } }; private Path portalDir; private File[] possibleValues; @Override protected void compute( final Set<String> values ) { if( possibleValues == null ) { final IProject project = project(); final ILiferayProject liferayProject = LiferayCore.create( project ); if( liferayProject != null ) { final ILiferayPortal portal = liferayProject.adapt( ILiferayPortal.class ); if( portal != null ) { this.portalDir = new Path( portal.getAppServerPortalDir().toPortableString() ); if( this.portalDir != null ) { final File portalDirFile = portalDir.toFile(); final File htmlDirFile = new File( portalDirFile, "html" ); //$NON-NLS-1$ final List<File> fileValues = new LinkedList<File>(); if( htmlDirFile.exists() ) { findJSPFiles( new File[] { htmlDirFile }, fileValues ); } else { final File[] files = portalDirFile.listFiles( jspfilter ); findJSPFiles( files, fileValues ); } this.possibleValues = fileValues.toArray( new File[0] ); } } } } if( possibleValues != null ) { for( final File file : possibleValues ) { values.add( new Path( file.getAbsolutePath() ).makeRelativeTo( portalDir ).toPortableString() ); } } } private void findJSPFiles( final File[] files, final List<File> fileValues ) { if( ! CoreUtil.isNullOrEmpty( files ) ) { for( File file : files ) { if( file.isDirectory() ) { findJSPFiles( file.listFiles( jspfilter ), fileValues ); } else { fileValues.add( file ); } } } } @Override public Status problem( Value<?> value ) { return Status.createOkStatus(); } protected IProject project() { return context( Element.class ).root().adapt( IFile.class ).getProject(); } }