/*========================================================================= Program: ParaView Module: pqOutputPort.cxx Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc. All rights reserved. ParaView is a free software; you can redistribute it and/or modify it under the terms of the ParaView license version 1.2. See License_v1.2.txt for the full ParaView license. A copy of this license can be obtained by contacting Kitware Inc. 28 Corporate Drive Clifton Park, NY 12065 USA THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ========================================================================*/ #include "pqOutputPort.h" // Server Manager Includes. #include "vtkPVClassNameInformation.h" #include "vtkPVDataInformation.h" #include "vtkSMOutputPort.h" #include "vtkSMSourceProxy.h" // Qt Includes. #include #include // ParaView Includes. #include "pqDataRepresentation.h" #include "pqPipelineSource.h" #include "pqServer.h" #include "pqTimeKeeper.h" #include "pqView.h" class pqOutputPort::pqInternal { public: QList Consumers; QList Representations; }; //----------------------------------------------------------------------------- pqOutputPort::pqOutputPort(pqPipelineSource* source, int portno): Superclass(source), Source(source), PortNumber(portno) { this->Internal = new pqInternal(); /// Fire visibility changed signals when representations are added/removed. QObject::connect(this, SIGNAL(representationAdded(pqOutputPort*, pqDataRepresentation*)), this, SIGNAL(visibilityChanged(pqOutputPort*, pqDataRepresentation*))); QObject::connect(this, SIGNAL(representationRemoved(pqOutputPort*, pqDataRepresentation*)), this, SIGNAL(visibilityChanged(pqOutputPort*, pqDataRepresentation*))); } //----------------------------------------------------------------------------- pqOutputPort::~pqOutputPort() { delete this->Internal; } //----------------------------------------------------------------------------- pqServer* pqOutputPort::getServer() const { return this->Source? this->Source->getServer():0; } //----------------------------------------------------------------------------- vtkSMOutputPort* pqOutputPort::getOutputPortProxy() const { vtkSMSourceProxy* source = vtkSMSourceProxy::SafeDownCast( this->getSource()->getProxy()); if (!source || !source->GetOutputPortsCreated()) { return NULL; } return source->GetOutputPort(this->PortNumber); } //----------------------------------------------------------------------------- vtkPVDataInformation* pqOutputPort::getDataInformation() const { vtkSMSourceProxy* source = vtkSMSourceProxy::SafeDownCast( this->getSource()->getProxy()); if (!source) { return 0; } return source->GetDataInformation(this->PortNumber); } //----------------------------------------------------------------------------- vtkPVTemporalDataInformation* pqOutputPort::getTemporalDataInformation() { return this->getOutputPortProxy()->GetTemporalDataInformation(); } //----------------------------------------------------------------------------- const char* pqOutputPort::getDataClassName() const { vtkSMSourceProxy* source = vtkSMSourceProxy::SafeDownCast( this->getSource()->getProxy()); if (!source) { return 0; } vtkPVClassNameInformation* ciInfo = source->GetOutputPort(this->PortNumber)->GetClassNameInformation(); return ciInfo? ciInfo->GetVTKClassName(): 0; } //----------------------------------------------------------------------------- QString pqOutputPort::getPortName() const { vtkSMSourceProxy* source = vtkSMSourceProxy::SafeDownCast(this->getSource()->getProxy()); return QString(source->GetOutputPortName( static_cast(this->PortNumber))); } //----------------------------------------------------------------------------- /// Called to set the selection input. void pqOutputPort::setSelectionInput(vtkSMSourceProxy* selSrc, int port) { vtkSMSourceProxy* src = vtkSMSourceProxy::SafeDownCast( this->getSource()->getProxy()); src->SetSelectionInput(this->getPortNumber(), selSrc, port); } //----------------------------------------------------------------------------- /// Calls vtkSMSourceProxy::GetSelectionInput() on the underlying source /// proxy. vtkSMSourceProxy* pqOutputPort::getSelectionInput() { vtkSMSourceProxy* src = vtkSMSourceProxy::SafeDownCast( this->getSource()->getProxy()); return src->GetSelectionInput(this->getPortNumber()); } //----------------------------------------------------------------------------- /// Calls vtkSMSourceProxy::GetSelectionInputPort() on the underlying source /// proxy. unsigned int pqOutputPort::getSelectionInputPort() { vtkSMSourceProxy* src = vtkSMSourceProxy::SafeDownCast( this->getSource()->getProxy()); return src->GetSelectionInputPort(this->getPortNumber()); } //----------------------------------------------------------------------------- int pqOutputPort::getNumberOfConsumers() const { return this->Internal->Consumers.size(); } //----------------------------------------------------------------------------- pqPipelineSource* pqOutputPort::getConsumer(int index) const { if (index < 0 || index >= this->Internal->Consumers.size()) { qCritical() << "Invalid index: " << index ; return 0; } return this->Internal->Consumers[index]; } //----------------------------------------------------------------------------- QList pqOutputPort::getConsumers() const { return this->Internal->Consumers; } //----------------------------------------------------------------------------- void pqOutputPort::addConsumer(pqPipelineSource* cons) { if (!this->Internal->Consumers.contains(cons)) { emit this->preConnectionAdded(this, cons); this->Internal->Consumers.push_back(cons); emit this->connectionAdded(this, cons); } } //----------------------------------------------------------------------------- void pqOutputPort::removeConsumer(pqPipelineSource* cons) { if (this->Internal->Consumers.contains(cons)) { emit this->preConnectionRemoved(this, cons); this->Internal->Consumers.removeAll(cons); emit this->connectionRemoved(this, cons); } } //----------------------------------------------------------------------------- void pqOutputPort::addRepresentation(pqDataRepresentation* repr) { if (!this->Internal->Representations.contains(repr)) { QObject::connect(repr, SIGNAL(visibilityChanged(bool)), this, SLOT(onRepresentationVisibilityChanged())); this->Internal->Representations.push_back(repr); emit this->representationAdded(this, repr); } } //----------------------------------------------------------------------------- void pqOutputPort::removeRepresentation(pqDataRepresentation* repr) { this->Internal->Representations.removeAll(repr); QObject::disconnect(repr, 0, this, 0); emit this->representationRemoved(this, repr); } //----------------------------------------------------------------------------- void pqOutputPort::onRepresentationVisibilityChanged() { emit this->visibilityChanged(this, qobject_cast(this->sender())); } //----------------------------------------------------------------------------- pqDataRepresentation* pqOutputPort::getRepresentation(pqView* view) const { if (view) { foreach (pqDataRepresentation* repr, this->Internal->Representations) { if (repr && (!view || repr->getView() == view)) { return repr; } } } return 0; } //----------------------------------------------------------------------------- QList pqOutputPort::getRepresentations(pqView* view) const { QList list; foreach (pqDataRepresentation* repr, this->Internal->Representations) { if (repr && (!view || repr->getView() == view)) { list.push_back(repr); } } return list; } //----------------------------------------------------------------------------- QList pqOutputPort::getViews() const { QList views; foreach(pqDataRepresentation* repr, this->Internal->Representations) { if (repr) { pqView* view= repr->getView(); if (view && !views.contains(view)) { views.push_back(view); } } } return views; } //----------------------------------------------------------------------------- void pqOutputPort::renderAllViews(bool force /*=false*/) { QList views = this->getViews(); foreach(pqView* view, views) { if (force) { view->forceRender(); } else { view->render(); } } } //----------------------------------------------------------------------------- vtkSMSourceProxy* pqOutputPort::getSourceProxy() const { return this->getSource()? vtkSMSourceProxy::SafeDownCast(this->getSource()->getProxy()) : NULL; }