/******************************************************************************* * Copyright (c) 2012, 2014 Wind River Systems, Inc. and others. 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: * Wind River Systems - initial API and implementation *******************************************************************************/ package org.eclipse.tcf.te.tcf.ui.filter; import java.util.concurrent.atomic.AtomicReference; import org.eclipse.core.runtime.Assert; import org.eclipse.jface.viewers.Viewer; import org.eclipse.jface.viewers.ViewerFilter; import org.eclipse.tcf.protocol.IPeer; import org.eclipse.tcf.protocol.Protocol; import org.eclipse.tcf.te.tcf.locator.interfaces.nodes.ILocatorNode; /** * Filter implementation filtering peers not started by the current user. */ public class PeersByCurrentUserFilter extends ViewerFilter { /* default */ static final String USERNAME = System.getProperty("user.name"); //$NON-NLS-1$ /* (non-Javadoc) * @see org.eclipse.jface.viewers.ViewerFilter#select(org.eclipse.jface.viewers.Viewer, java.lang.Object, java.lang.Object) */ @Override public boolean select(final Viewer viewer, final Object parentElement, final Object element) { if (element instanceof IPeer || element instanceof ILocatorNode) { final IPeer peer = element instanceof IPeer ? (IPeer)element : ((ILocatorNode)element).getPeer(); final AtomicReference<String> user = new AtomicReference<String>(); Runnable runnable = new Runnable() { @Override public void run() { user.set(peer.getUserName()); } }; Assert.isTrue(!Protocol.isDispatchThread()); Protocol.invokeAndWait(runnable); return USERNAME.equals(user.get()); } return true; } }