X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/util/PHPFileUtil.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/util/PHPFileUtil.java index 1f8c8fe..91e330b 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/util/PHPFileUtil.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/util/PHPFileUtil.java @@ -4,113 +4,149 @@ */ package net.sourceforge.phpdt.internal.ui.util; +import java.util.ArrayList; +import java.util.StringTokenizer; + +import net.sourceforge.phpeclipse.PHPeclipsePlugin; + import org.eclipse.core.resources.IFile; +import org.eclipse.jface.preference.IPreferenceStore; /** * @author khartlage - * + * */ public class PHPFileUtil { - public final static char[] SUFFIX_php = ".php".toCharArray(); //$NON-NLS-1$ - public final static char[] SUFFIX_PHP = ".PHP".toCharArray(); //$NON-NLS-1$ - public final static char[] SUFFIX_php3 = ".php3".toCharArray(); //$NON-NLS-1$ - public final static char[] SUFFIX_PHP3 = ".PHP3".toCharArray(); //$NON-NLS-1$ - public final static char[] SUFFIX_php4 = ".php4".toCharArray(); //$NON-NLS-1$ - public final static char[] SUFFIX_PHP4 = ".PHP4".toCharArray(); //$NON-NLS-1$ - public final static char[] SUFFIX_inc = ".inc".toCharArray(); //$NON-NLS-1$ - public final static char[] SUFFIX_INC = ".INC".toCharArray(); //$NON-NLS-1$ + private static String[] PHP_EXTENSIONS = null; - public static boolean isPHPFile(IFile file) { + // { + // "php", + // "php3", + // "php4", + // "php5", + // "phtml", + // "module", // drupal + // "inc", + // "class" + // }; + // public final static String[] HTML_EXTENSIONS = { + // "html", + // "htm", + // "xhtml" + // }; + public final static String[] SMARTY_EXTENSIONS = { "tpl" }; + + public static boolean isPHPFile(IFile file) { String extension = file.getFileExtension(); return isPHPFileName(file.getLocation().toString()); } + public final static String getFileExtension(String name) { + int index = name.lastIndexOf('.'); + if (index == -1) + return null; + if (index == (name.length() - 1)) + return null; //$NON-NLS-1$ + return name.substring(index + 1); + } + /** - * Returns true iff str.toLowerCase().endsWith(".php") - * implementation is not creating extra strings. + * Returns true iff str.toLowerCase().endsWith(".php") implementation is not creating extra strings. */ public final static boolean isPHPFileName(String name) { - return isPHP_FileName(name) || isPHP3_FileName(name) || isPHP4_FileName(name) || isINC_FileName(name); + String extension = getFileExtension(name); + if (extension == null) { + return false; + } + extension = extension.toLowerCase(); + PHP_EXTENSIONS = getExtensions(); + if (PHP_EXTENSIONS == null) { + return false; + } + for (int i = 0; i < PHP_EXTENSIONS.length; i++) { + if (extension.equals(PHP_EXTENSIONS[i])) { + return true; + } + } + return false; } - // static public boolean isPHPFile(String extension) { - // if ("php".equalsIgnoreCase(extension) - // || "php3".equalsIgnoreCase(extension) - // || "php4".equalsIgnoreCase(extension) - // || "inc".equalsIgnoreCase(extension)) { - // return true; + + /** + * Returns true iff str.toLowerCase().endsWith(".html") implementation is not creating extra strings. + */ + // public final static boolean isHTML_FileName(String name) { + // String extension = getFileExtension(name); + // if (extension==null) { + // return false; + // } + // extension = extension.toLowerCase(); + // for (int i=0;i= 1) { + list.add(token); + } + } + if (list.size() != 0) { + PHP_EXTENSIONS = new String[list.size()]; + for (int i = 0; i < list.size(); i++) { + PHP_EXTENSIONS[i] = (String) list.get(i); + } + } + } } - return true; + return PHP_EXTENSIONS; } /** - * Returns true iff str.toLowerCase().endsWith(".inc") - * implementation is not creating extra strings. + * @param php_extensions + * The PHP extensions to set. */ - private final static boolean isINC_FileName(String name) { - int nameLength = name == null ? 0 : name.length(); - int suffixLength = SUFFIX_INC.length; - if (nameLength < suffixLength) - return false; - - for (int i = 0, offset = nameLength - suffixLength; i < suffixLength; i++) { - char c = name.charAt(offset + i); - if (c != SUFFIX_inc[i] && c != SUFFIX_INC[i]) - return false; - } - return true; + public static void setExtensins(String[] php_extensions) { + PHP_EXTENSIONS = php_extensions; } -} +} \ No newline at end of file