plugins/org.symbian.tools.tmw.core/src/org/symbian/tools/tmw/core/utilities/CoreUtil.java
author Eugene Ostroukhov <eugeneo@symbian.org>
Thu, 04 Nov 2010 15:22:02 -0700
changeset 495 0008ebdc0ec0
parent 484 f5df819c1852
permissions -rw-r--r--
Launch configurations were updated

/**
 * Copyright (c) 2010 Symbian Foundation and/or its subsidiary(-ies).
 * All rights reserved.
 * This component and the accompanying materials are made available
 * under the terms of the License "Eclipse Public License v1.0"
 * which accompanies this distribution, and is available
 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
 *
 * Initial Contributors:
 * Symbian Foundation - initial contribution.
 * Contributors:
 * Description:
 * Overview:
 * Details:
 * Platforms/Drives/Compatibility:
 * Assumptions/Requirement/Pre-requisites:
 * Failures and causes:
 */
package org.symbian.tools.tmw.core.utilities;

import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.Platform;
import org.eclipse.wst.jsdt.core.IJavaScriptProject;
import org.eclipse.wst.jsdt.core.IType;
import org.eclipse.wst.jsdt.core.JavaScriptCore;
import org.eclipse.wst.jsdt.core.JavaScriptModelException;

/**
 * Utilities used all over the TMW code base. Users can rely on this methods
 * even though they are not specific to mobile development.
 *
 * @author Eugene Ostroukhov (eugeneo@symbian.org)
 */
public final class CoreUtil {

    private CoreUtil() {
        // Class with only static methods
    }

    public static boolean isMac() {
        return "macosx".equals(Platform.getOS());
    }

    public static boolean isLinux() {
        return "linux".equals(Platform.getOS());
    }

    public static String notNull(final String string) {
        if (string == null) {
            return "";
        } else {
            return string.trim();
        }
    }

    public static boolean hasTypes(IProject p, String... typeNames) throws JavaScriptModelException {
        final IJavaScriptProject project = JavaScriptCore.create(p);
        if (project != null && project.exists()) {
            for (String typeName : typeNames) {
                if (!hasType(project, typeName)) {
                    return false;
                }
            }
        }
        return true;
    }

    // See https://bugs.eclipse.org/bugs/show_bug.cgi?id=318656
    private static boolean hasType(IJavaScriptProject project, String name) throws JavaScriptModelException {
        final IType[] types = project.findTypes(name);
        if (types != null) {
            for (IType type : types) {
                if (type.getJavaScriptProject().equals(project)) {
                    return true;
                }
            }
        }
        return false;
    }
}