/* * This file is part of the OpenSCADA project * Copyright (C) 2006-2011 TH4 SYSTEMS GmbH (http://th4-systems.com) * * OpenSCADA is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenSCADA 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 version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenSCADA. If not, see * <http://opensource.org/licenses/lgpl-3.0.html> for a copy of the LGPLv3 License. */ package org.openscada.hd.ui.views; import org.eclipse.jface.viewers.ISelection; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.ui.ISelectionListener; import org.eclipse.ui.IWorkbenchPart; import org.eclipse.ui.part.ViewPart; import org.openscada.hd.QueryListener; import org.openscada.hd.ui.data.AbstractQueryBuffer; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public abstract class QueryViewPart extends ViewPart implements QueryListener { private final static Logger logger = LoggerFactory.getLogger ( QueryViewPart.class ); protected volatile AbstractQueryBuffer query; private ISelectionListener selectionListener; @Override public void dispose () { removeListener (); clear (); super.dispose (); } /** * Add a listener to the global selection service and set the currently selected query */ protected void addListener () { if ( this.selectionListener == null ) { getViewSite ().getWorkbenchWindow ().getSelectionService ().addSelectionListener ( this.selectionListener = new ISelectionListener () { @Override public void selectionChanged ( final IWorkbenchPart part, final ISelection selection ) { QueryViewPart.this.setSelection ( selection ); } } ); } } protected void removeListener () { if ( this.selectionListener != null ) { getViewSite ().getWorkbenchWindow ().getSelectionService ().removeSelectionListener ( this.selectionListener ); this.selectionListener = null; } } protected AbstractQueryBuffer getQueryFromSelection ( final ISelection selection ) { if ( selection.isEmpty () ) { return null; } if ( ! ( selection instanceof IStructuredSelection ) ) { return null; } final Object o = ( (IStructuredSelection)selection ).getFirstElement (); if ( o instanceof AbstractQueryBuffer ) { return (AbstractQueryBuffer)o; } return null; } protected void setSelection ( final ISelection selection ) { final AbstractQueryBuffer query = getQueryFromSelection ( selection ); if ( query != this.query ) { clear (); if ( query != null ) { setQuery ( query ); } } } protected void setQuery ( final AbstractQueryBuffer query ) { logger.info ( "Setting query: {}", query ); //$NON-NLS-1$ this.query = query; this.query.addQueryListener ( this ); } protected void clear () { logger.info ( "Clearing query" ); if ( this.query != null ) { this.query.removeQueryListener ( this ); this.query = null; } } }