/*========================================================================= Program: ParaView Module: pqPythonMacroSupervisor.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 "pqPythonMacroSupervisor.h" #include "pqApplicationCore.h" #include "pqSettings.h" #include "pqServer.h" #include "pqPythonManager.h" #include "pqCoreUtilities.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if defined(_WIN32) && !defined(__CYGWIN__) const char ENV_PATH_SEP=';'; #else const char ENV_PATH_SEP=':'; #endif class pqPythonMacroSupervisor::pqInternal { public: // Container widget that have an RunMacro action context QList > RunWidgetContainers; // List of action linked to widget/menuItem used to start a macro QMap RunActionMap; // Container widget that have an EditMacro action context QList > EditWidgetContainers; // List of action linked to widget/menuItem used to edit a macro QMap EditActionMap; // Container widget that have an DeleteMacro action context QList > DeleteWidgetContainers; // List of action linked to widget/menuItem used to delete a macro QMap > DeleteActionMap; }; //---------------------------------------------------------------------------- pqPythonMacroSupervisor::pqPythonMacroSupervisor(QObject* p) : QObject(p) { this->Internal = new pqInternal; QObject::connect(pqApplicationCore::instance(), SIGNAL(updateMasterEnableState(bool)), this, SLOT(updateMacroList())); } //---------------------------------------------------------------------------- pqPythonMacroSupervisor::~pqPythonMacroSupervisor() { delete this->Internal; this->Internal = 0; } // Util methods //---------------------------------------------------------------------------- namespace { void addPlaceHolderIfNeeded(QWidget* widget) { QMenu* menu = qobject_cast(widget); if (menu && menu->isEmpty()) { menu->addAction("empty")->setEnabled(0); } } void removePlaceHolderIfNeeded(QWidget* widget) { QMenu* menu = qobject_cast(widget); if (menu && menu->actions().size() == 1) { QAction* act = menu->actions()[0]; // It's a placeholder if its name is 'empty' and has empty data(). if (act->text() == "empty" && act->data().toString().length() == 0) { menu->removeAction(act); delete act; } } } void addActionToWidgets(QAction* action, QList >& widgets) { foreach (QWidget* widget, widgets) { removePlaceHolderIfNeeded(widget); if (widget) { widget->addAction(action); } } } void removeActionFromWidgets(QAction* action, QList >& widgets) { foreach (QWidget* widget, widgets) { if (widget) { widget->removeAction(action); } addPlaceHolderIfNeeded(widget); } } } //---------------------------------------------------------------------------- QAction* pqPythonMacroSupervisor::getMacro(const QString& fileName) { if (this->Internal->RunActionMap.contains(fileName)) { return this->Internal->RunActionMap[fileName]; } return NULL; } //---------------------------------------------------------------------------- void pqPythonMacroSupervisor::addWidgetForRunMacros(QWidget* widget) { this->addWidgetForMacros(widget, 0); } //---------------------------------------------------------------------------- void pqPythonMacroSupervisor::addWidgetForEditMacros(QWidget* widget) { this->addWidgetForMacros(widget, 1); } //---------------------------------------------------------------------------- void pqPythonMacroSupervisor::addWidgetForDeleteMacros(QWidget* widget) { this->addWidgetForMacros(widget, 2); } //---------------------------------------------------------------------------- void pqPythonMacroSupervisor::addWidgetForMacros(QWidget* widget, int actionType) { QList > *widgetContainers = NULL; switch(actionType) { case 0: // run widgetContainers = &this->Internal->RunWidgetContainers; break; case 1: // edit widgetContainers = &this->Internal->EditWidgetContainers; break; case 2: // delete widgetContainers = &this->Internal->DeleteWidgetContainers; break; } if (widget && !widgetContainers->contains(widget)) { addPlaceHolderIfNeeded(widget); widgetContainers->append(widget); } this->resetActions(); } //---------------------------------------------------------------------------- QMap pqPythonMacroSupervisor::getStoredMacros() { // pqSettings* settings = pqApplicationCore::instance()->settings(); // QStringList fileNames = settings->value("PythonMacros/FileNames").toStringList(); // QStringList macroNames = settings->value("PythonMacros/Names").toStringList(); // if (fileNames.size() != macroNames.size()) // { // qWarning() << "Lookup of macro filenames is corrupted. Stored macros will be reset."; // settings->remove("PythonMacros"); // fileNames.clear(); // macroNames.clear(); // } QStringList fileNames = getMacrosFilePaths(); QMap macros; for (int i = 0; i < fileNames.size(); ++i) { macros.insert(fileNames[i], macroNameFromFileName(fileNames[i])); } return macros; } //---------------------------------------------------------------------------- void pqPythonMacroSupervisor::removeStoredMacro(const QString& filename) { QDir dir = QFileInfo(filename).absoluteDir(); QString baseName = "."; baseName += QFileInfo(filename).fileName().replace(".py", ""); int index = 1; QString newName = baseName; newName += ".py"; while(dir.exists(newName)) { newName = baseName; newName.append("-").append(QString::number(index)).append(".py"); index++; } QString newFilePath = dir.absolutePath() + QDir::separator() + newName; QFile::rename(filename, newFilePath); // QMap macros = pqPythonMacroSupervisor::getStoredMacros(); // macros.remove(filename); // pqSettings* settings = pqApplicationCore::instance()->settings(); // settings->setValue("PythonMacros/FileNames", QStringList(macros.keys())); // settings->setValue("PythonMacros/Names", QStringList(macros.values())); } //---------------------------------------------------------------------------- void pqPythonMacroSupervisor::updateMacroList() { this->resetActions(); } //---------------------------------------------------------------------------- void pqPythonMacroSupervisor::resetActions() { // Delete RUN foreach (QAction* action, this->Internal->RunActionMap.values()) { removeActionFromWidgets(action, this->Internal->RunWidgetContainers); delete action; } this->Internal->RunActionMap.clear(); // Delete EDIT foreach (QAction* action, this->Internal->EditActionMap.values()) { removeActionFromWidgets(action, this->Internal->EditWidgetContainers); delete action; } this->Internal->EditActionMap.clear(); // Delete DELETE foreach (QAction* action, this->Internal->DeleteActionMap.values()) { removeActionFromWidgets(action, this->Internal->DeleteWidgetContainers); delete action; } this->Internal->DeleteActionMap.clear(); // Key is filename, value is macroname QMap macros = pqPythonMacroSupervisor::getStoredMacros(); QMap::const_iterator itr; for (itr = macros.constBegin(); itr != macros.constEnd(); ++itr) { this->addMacro(itr.value(), itr.key()); } } //---------------------------------------------------------------------------- void pqPythonMacroSupervisor::addMacro(const QString& fileName) { pqPythonMacroSupervisor::addMacro(pqPythonMacroSupervisor::macroNameFromFileName(fileName), fileName); } //---------------------------------------------------------------------------- void pqPythonMacroSupervisor::addMacro(const QString& macroName, const QString& fileName) { QAction* action = this->getMacro(fileName); // If the macro already exists we just need to update it's name if (action) { action->setText(macroName); return; } // If we are master we allow macros bool enable = pqApplicationCore::instance()->getActiveServer() ? pqApplicationCore::instance()->getActiveServer()->isMaster() : true; // Run action QAction* runAction = new QAction(macroName, this); runAction->setData(fileName); runAction->setEnabled(enable); this->Internal->RunActionMap.insert(fileName, runAction); this->connect(runAction, SIGNAL(triggered()), SLOT(onMacroTriggered())); // Edit action QAction* editAction = new QAction(macroName, this); editAction->setData(fileName); editAction->setEnabled(enable); this->Internal->EditActionMap.insert(fileName, editAction); this->connect(editAction, SIGNAL(triggered()), SLOT(onEditMacroTriggered())); // Delete action QAction* deleteAction = new QAction(macroName, this); deleteAction->setData(fileName); deleteAction->setEnabled(enable); this->Internal->DeleteActionMap.insert(fileName, deleteAction); this->connect(deleteAction, SIGNAL(triggered()), SLOT(onDeleteMacroTriggered())); // Add action to widgets addActionToWidgets(runAction, this->Internal->RunWidgetContainers); addActionToWidgets(editAction, this->Internal->EditWidgetContainers); addActionToWidgets(deleteAction, this->Internal->DeleteWidgetContainers); } //---------------------------------------------------------------------------- void pqPythonMacroSupervisor::removeMacro(const QString& fileName) { QAction* action = this->getMacro(fileName); if (!action) { return; } removeActionFromWidgets(action, this->Internal->RunWidgetContainers); this->Internal->RunActionMap.remove(fileName); delete action; action = this->Internal->EditActionMap[fileName]; removeActionFromWidgets(action, this->Internal->EditWidgetContainers); this->Internal->EditActionMap.remove(fileName); delete action; action = this->Internal->DeleteActionMap[fileName]; removeActionFromWidgets(action, this->Internal->DeleteWidgetContainers); this->Internal->DeleteActionMap.remove(fileName); delete action; } //---------------------------------------------------------------------------- void pqPythonMacroSupervisor::onMacroTriggered() { QObject* action = this->sender(); QMap::const_iterator itr = this->Internal->RunActionMap.constBegin(); for ( ; itr != this->Internal->RunActionMap.constEnd(); ++itr) { if (itr.value() == action) { QString filename = itr.key(); emit this->executeScriptRequested(filename); } } } //---------------------------------------------------------------------------- void pqPythonMacroSupervisor::onDeleteMacroTriggered() { QObject* action = this->sender(); QList listOfMacroToDelete; QMap >::const_iterator itr = this->Internal->DeleteActionMap.constBegin(); for ( ; itr != this->Internal->DeleteActionMap.constEnd(); ++itr) { if (itr.value() == action) { QString filename = itr.key(); listOfMacroToDelete.append(filename); } } foreach(QString fileName, listOfMacroToDelete) { pqPythonMacroSupervisor::removeStoredMacro(fileName); pqPythonMacroSupervisor::removeMacro(fileName); } } //---------------------------------------------------------------------------- void pqPythonMacroSupervisor::onEditMacroTriggered() { QObject* action = this->sender(); QMap::const_iterator itr = this->Internal->EditActionMap.constBegin(); for ( ; itr != this->Internal->EditActionMap.constEnd(); ++itr) { if (itr.value() == action) { QString filename = itr.key(); emit onEditMacro(filename); } } } //---------------------------------------------------------------------------- QString pqPythonMacroSupervisor::macroNameFromFileName(const QString& filename) { QString name = QFileInfo(filename).fileName().replace(".py", ""); if (!name.length()) { name = "Unnamed macro"; } return name; } //---------------------------------------------------------------------------- QStringList pqPythonMacroSupervisor::getMacrosFilePaths() { QStringList macroList; QDir dir; dir.setFilter(QDir::Files); QStringList macroDirs = pqCoreUtilities::findParaviewPaths(QString("Macros"), true, true); // add user defined macro paths from environment variable PV_MACRO_PATH const char* env = vtksys::SystemTools::GetEnv("PV_MACRO_PATH"); if (env) { QStringList macroPathDirs = QString::fromLatin1(env).split(ENV_PATH_SEP); macroDirs << macroPathDirs; } foreach (QString dirPath, macroDirs) { if (QFile::exists(dirPath)) { dir.setPath(dirPath); for (int i = 0; i < dir.entryList().size(); ++i) { const QString filePath = dir.entryList().at(i); if (filePath.startsWith(".")) { continue; } macroList.push_back(dirPath + QDir::separator() + filePath); } } } return macroList; }