org.eclipse.egit.ui.internal.repository.tree.PropertyTester.java Source code

Java tutorial

Introduction

Here is the source code for org.eclipse.egit.ui.internal.repository.tree.PropertyTester.java

Source

/*******************************************************************************
 * Copyright (c) 2010 SAP AG.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Mathias Kinzler (SAP AG) - initial implementation
 *******************************************************************************/
package org.eclipse.egit.ui.internal.repository.tree;

import java.io.IOException;
import java.net.URISyntaxException;

import org.eclipse.jgit.lib.Constants;
import org.eclipse.jgit.lib.Ref;
import org.eclipse.jgit.lib.Repository;
import org.eclipse.jgit.transport.RemoteConfig;

/**
 * Property Tester used for enabling/disabling of context menus in the Git
 * Repositories View.
 */
public class PropertyTester extends org.eclipse.core.expressions.PropertyTester {
    /**
     * TODO javadoc missing
     */
    public boolean test(Object receiver, String property, Object[] args, Object expectedValue) {

        if (!(receiver instanceof RepositoryTreeNode))
            return false;
        RepositoryTreeNode node = (RepositoryTreeNode) receiver;

        if (property.equals("isBare")) { //$NON-NLS-1$
            Repository rep = node.getRepository();
            return rep.getConfig().getBoolean("core", "bare", false); //$NON-NLS-1$//$NON-NLS-2$
        }
        if (property.equals("isRefCheckedOut")) { //$NON-NLS-1$
            if (!(node.getObject() instanceof Ref))
                return false;
            Ref ref = (Ref) node.getObject();
            try {
                return ref.getName().equals(node.getRepository().getFullBranch());
            } catch (IOException e) {
                return false;
            }
        }
        if (property.equals("isLocalBranch")) { //$NON-NLS-1$
            if (!(node.getObject() instanceof Ref))
                return false;
            Ref ref = (Ref) node.getObject();
            return ref.getName().startsWith(Constants.R_HEADS);
        }
        if (property.equals("fetchExists")) { //$NON-NLS-1$
            if (node instanceof RemoteNode) {
                String configName = ((RemoteNode) node).getObject();

                RemoteConfig rconfig;
                try {
                    rconfig = new RemoteConfig(node.getRepository().getConfig(), configName);
                } catch (URISyntaxException e2) {
                    // TODO Exception handling
                    rconfig = null;
                }

                boolean fetchExists = rconfig != null && !rconfig.getURIs().isEmpty();
                return fetchExists;
            }
        }
        if (property.equals("pushExists")) { //$NON-NLS-1$
            if (node instanceof RemoteNode) {
                String configName = ((RemoteNode) node).getObject();

                RemoteConfig rconfig;
                try {
                    rconfig = new RemoteConfig(node.getRepository().getConfig(), configName);
                } catch (URISyntaxException e2) {
                    // TODO Exception handling
                    rconfig = null;
                }
                boolean pushExists = rconfig != null && !rconfig.getPushURIs().isEmpty();
                return pushExists;
            }
        }
        if (property.equals("canMerge")) { //$NON-NLS-1$
            Repository rep = node.getRepository();
            try {
                return rep.getFullBranch().startsWith(Constants.R_HEADS);
            } catch (IOException e) {
                return false;
            }
        }
        return false;
    }
}