summaryrefslogtreecommitdiff
path: root/src/plugins/cvs/cvsplugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/cvs/cvsplugin.cpp')
-rw-r--r--src/plugins/cvs/cvsplugin.cpp1228
1 files changed, 1228 insertions, 0 deletions
diff --git a/src/plugins/cvs/cvsplugin.cpp b/src/plugins/cvs/cvsplugin.cpp
new file mode 100644
index 0000000000..c64d32b9aa
--- /dev/null
+++ b/src/plugins/cvs/cvsplugin.cpp
@@ -0,0 +1,1228 @@
+/**************************************************************************
+**
+** This file is part of Qt Creator
+**
+** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+**
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** Commercial Usage
+**
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Nokia.
+**
+** GNU Lesser General Public License Usage
+**
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** If you are unsure which license is appropriate for your use, please
+** contact the sales department at http://www.qtsoftware.com/contact.
+**
+**************************************************************************/
+
+#include "cvsplugin.h"
+#include "settingspage.h"
+#include "cvseditor.h"
+#include "cvsoutputwindow.h"
+#include "cvssubmiteditor.h"
+#include "cvsconstants.h"
+#include "cvscontrol.h"
+
+#include <vcsbase/basevcseditorfactory.h>
+#include <vcsbase/vcsbaseeditor.h>
+#include <vcsbase/basevcssubmiteditorfactory.h>
+#include <utils/synchronousprocess.h>
+#include <utils/parameteraction.h>
+
+#include <coreplugin/icore.h>
+#include <coreplugin/coreconstants.h>
+#include <coreplugin/filemanager.h>
+#include <coreplugin/messagemanager.h>
+#include <coreplugin/mimedatabase.h>
+#include <coreplugin/uniqueidmanager.h>
+#include <coreplugin/actionmanager/actionmanager.h>
+#include <coreplugin/editormanager/editormanager.h>
+#include <coreplugin/vcsmanager.h>
+#include <projectexplorer/projectexplorer.h>
+#include <utils/qtcassert.h>
+
+#include <QtCore/QDebug>
+#include <QtCore/QDate>
+#include <QtCore/QDir>
+#include <QtCore/QFileInfo>
+#include <QtCore/QTemporaryFile>
+#include <QtCore/QTextCodec>
+#include <QtCore/QtPlugin>
+#include <QtGui/QAction>
+#include <QtGui/QMainWindow>
+#include <QtGui/QMenu>
+#include <QtGui/QMessageBox>
+
+#include <limits.h>
+
+namespace CVS {
+ namespace Internal {
+
+static inline QString msgCannotFindTopLevel(const QString &f)
+{
+ return CVSPlugin::tr("Cannot find repository for '%1'").arg(f);
+}
+
+static inline QString msgLogParsingFailed()
+{
+ return CVSPlugin::tr("Parsing of the log output failed");
+}
+
+// Timeout for normal output commands
+enum { cvsShortTimeOut = 10000 };
+// Timeout for submit, update
+enum { cvsLongTimeOut = 120000 };
+
+static const char * const CMD_ID_CVS_MENU = "CVS.Menu";
+static const char * const CMD_ID_ADD = "CVS.Add";
+static const char * const CMD_ID_DELETE_FILE = "CVS.Delete";
+static const char * const CMD_ID_REVERT = "CVS.Revert";
+static const char * const CMD_ID_SEPARATOR0 = "CVS.Separator0";
+static const char * const CMD_ID_DIFF_PROJECT = "CVS.DiffAll";
+static const char * const CMD_ID_DIFF_CURRENT = "CVS.DiffCurrent";
+static const char * const CMD_ID_SEPARATOR1 = "CVS.Separator1";
+static const char * const CMD_ID_COMMIT_ALL = "CVS.CommitAll";
+static const char * const CMD_ID_COMMIT_CURRENT = "CVS.CommitCurrent";
+static const char * const CMD_ID_SEPARATOR2 = "CVS.Separator2";
+static const char * const CMD_ID_FILELOG_CURRENT = "CVS.FilelogCurrent";
+static const char * const CMD_ID_ANNOTATE_CURRENT = "CVS.AnnotateCurrent";
+static const char * const CMD_ID_SEPARATOR3 = "CVS.Separator3";
+static const char * const CMD_ID_STATUS = "CVS.Status";
+static const char * const CMD_ID_UPDATE = "CVS.Update";
+
+static const VCSBase::VCSBaseEditorParameters editorParameters[] = {
+{
+ VCSBase::RegularCommandOutput,
+ "CVS Command Log Editor", // kind
+ "CVS Command Log Editor", // context
+ "application/vnd.nokia.text.scs_cvs_commandlog",
+ "scslog"},
+{ VCSBase::LogOutput,
+ "CVS File Log Editor", // kind
+ "CVS File Log Editor", // context
+ "application/vnd.nokia.text.scs_cvs_filelog",
+ "scsfilelog"},
+{ VCSBase::AnnotateOutput,
+ "CVS Annotation Editor", // kind
+ "CVS Annotation Editor", // context
+ "application/vnd.nokia.text.scs_cvs_annotation",
+ "scsannotate"},
+{ VCSBase::DiffOutput,
+ "CVS Diff Editor", // kind
+ "CVS Diff Editor", // context
+ "text/x-patch","diff"}
+};
+
+// Utility to find a parameter set by type
+static inline const VCSBase::VCSBaseEditorParameters *findType(int ie)
+{
+ const VCSBase::EditorContentType et = static_cast<VCSBase::EditorContentType>(ie);
+ return VCSBase::VCSBaseEditor::findType(editorParameters, sizeof(editorParameters)/sizeof(VCSBase::VCSBaseEditorParameters), et);
+}
+
+static inline QString debugCodec(const QTextCodec *c)
+{
+ return c ? QString::fromAscii(c->name()) : QString::fromAscii("Null codec");
+}
+
+Core::IEditor* locateEditor(const char *property, const QString &entry)
+{
+ foreach (Core::IEditor *ed, Core::EditorManager::instance()->openedEditors())
+ if (ed->property(property).toString() == entry)
+ return ed;
+ return 0;
+}
+
+// ------------- CVSPlugin
+CVSPlugin *CVSPlugin::m_cvsPluginInstance = 0;
+
+CVSPlugin::CVSPlugin() :
+ m_versionControl(0),
+ m_changeTmpFile(0),
+ m_cvsOutputWindow(0),
+ m_projectExplorer(0),
+ m_addAction(0),
+ m_deleteAction(0),
+ m_revertAction(0),
+ m_diffProjectAction(0),
+ m_diffCurrentAction(0),
+ m_commitAllAction(0),
+ m_commitCurrentAction(0),
+ m_filelogCurrentAction(0),
+ m_annotateCurrentAction(0),
+ m_statusAction(0),
+ m_updateProjectAction(0),
+ m_submitCurrentLogAction(0),
+ m_submitDiffAction(0),
+ m_submitUndoAction(0),
+ m_submitRedoAction(0),
+ m_submitActionTriggered(false)
+{
+}
+
+CVSPlugin::~CVSPlugin()
+{
+ cleanChangeTmpFile();
+}
+
+void CVSPlugin::cleanChangeTmpFile()
+{
+ if (m_changeTmpFile) {
+ if (m_changeTmpFile->isOpen())
+ m_changeTmpFile->close();
+ delete m_changeTmpFile;
+ m_changeTmpFile = 0;
+ }
+}
+
+static const VCSBase::VCSBaseSubmitEditorParameters submitParameters = {
+ CVS::Constants::CVS_SUBMIT_MIMETYPE,
+ CVS::Constants::CVSCOMMITEDITOR_KIND,
+ CVS::Constants::CVSCOMMITEDITOR
+};
+
+static inline Core::Command *createSeparator(QObject *parent,
+ Core::ActionManager *ami,
+ const char*id,
+ const QList<int> &globalcontext)
+{
+ QAction *tmpaction = new QAction(parent);
+ tmpaction->setSeparator(true);
+ return ami->registerAction(tmpaction, id, globalcontext);
+}
+
+bool CVSPlugin::initialize(const QStringList &arguments, QString *errorMessage)
+{
+ Q_UNUSED(arguments);
+
+ typedef VCSBase::VCSSubmitEditorFactory<CVSSubmitEditor> CVSSubmitEditorFactory;
+ typedef VCSBase::VCSEditorFactory<CVSEditor> CVSEditorFactory;
+ using namespace Constants;
+
+ using namespace Core::Constants;
+ using namespace ExtensionSystem;
+
+ m_cvsPluginInstance = this;
+ Core::ICore *core = Core::ICore::instance();
+
+ if (!core->mimeDatabase()->addMimeTypes(QLatin1String(":/trolltech.cvs/CVS.mimetypes.xml"), errorMessage))
+ return false;
+
+
+ m_versionControl = new CVSControl(this);
+ addAutoReleasedObject(m_versionControl);
+
+ if (QSettings *settings = core->settings())
+ m_settings.fromSettings(settings);
+
+ addAutoReleasedObject(new CoreListener(this));
+
+ addAutoReleasedObject(new SettingsPage);
+
+ addAutoReleasedObject(new CVSSubmitEditorFactory(&submitParameters));
+
+ static const char *describeSlotC = SLOT(slotDescribe(QString,QString));
+ const int editorCount = sizeof(editorParameters)/sizeof(VCSBase::VCSBaseEditorParameters);
+ for (int i = 0; i < editorCount; i++)
+ addAutoReleasedObject(new CVSEditorFactory(editorParameters + i, this, describeSlotC));
+
+ m_cvsOutputWindow = new CVSOutputWindow(this);
+ addAutoReleasedObject(m_cvsOutputWindow);
+
+ //register actions
+ Core::ActionManager *ami = core->actionManager();
+ Core::ActionContainer *toolsContainer = ami->actionContainer(M_TOOLS);
+
+ Core::ActionContainer *cvsMenu =
+ ami->createMenu(QLatin1String(CMD_ID_CVS_MENU));
+ cvsMenu->menu()->setTitle(tr("&CVS"));
+ toolsContainer->addMenu(cvsMenu);
+ if (QAction *ma = cvsMenu->menu()->menuAction()) {
+ ma->setEnabled(m_versionControl->isEnabled());
+ connect(m_versionControl, SIGNAL(enabledChanged(bool)), ma, SLOT(setVisible(bool)));
+ }
+
+ QList<int> globalcontext;
+ globalcontext << core->uniqueIDManager()->uniqueIdentifier(C_GLOBAL);
+
+ Core::Command *command;
+ m_addAction = new Core::Utils::ParameterAction(tr("Add"), tr("Add \"%1\""), Core::Utils::ParameterAction::EnabledWithParameter, this);
+ command = ami->registerAction(m_addAction, CMD_ID_ADD,
+ globalcontext);
+ command->setAttribute(Core::Command::CA_UpdateText);
+#ifndef Q_WS_MAC
+ command->setDefaultKeySequence(QKeySequence(tr("Alt+C,Alt+A")));
+#endif
+ connect(m_addAction, SIGNAL(triggered()), this, SLOT(addCurrentFile()));
+ cvsMenu->addAction(command);
+
+ m_deleteAction = new Core::Utils::ParameterAction(tr("Delete"), tr("Delete \"%1\""), Core::Utils::ParameterAction::EnabledWithParameter, this);
+ command = ami->registerAction(m_deleteAction, CMD_ID_DELETE_FILE,
+ globalcontext);
+ command->setAttribute(Core::Command::CA_UpdateText);
+ connect(m_deleteAction, SIGNAL(triggered()), this, SLOT(deleteCurrentFile()));
+ cvsMenu->addAction(command);
+
+ m_revertAction = new Core::Utils::ParameterAction(tr("Revert"), tr("Revert \"%1\""), Core::Utils::ParameterAction::EnabledWithParameter, this);
+ command = ami->registerAction(m_revertAction, CMD_ID_REVERT,
+ globalcontext);
+ command->setAttribute(Core::Command::CA_UpdateText);
+ connect(m_revertAction, SIGNAL(triggered()), this, SLOT(revertCurrentFile()));
+ cvsMenu->addAction(command);
+
+ cvsMenu->addAction(createSeparator(this, ami, CMD_ID_SEPARATOR0, globalcontext));
+
+ m_diffProjectAction = new QAction(tr("Diff Project"), this);
+ command = ami->registerAction(m_diffProjectAction, CMD_ID_DIFF_PROJECT,
+ globalcontext);
+ connect(m_diffProjectAction, SIGNAL(triggered()), this, SLOT(diffProject()));
+ cvsMenu->addAction(command);
+
+ m_diffCurrentAction = new Core::Utils::ParameterAction(tr("Diff Current File"), tr("Diff \"%1\""), Core::Utils::ParameterAction::EnabledWithParameter, this);
+ command = ami->registerAction(m_diffCurrentAction,
+ CMD_ID_DIFF_CURRENT, globalcontext);
+ command->setAttribute(Core::Command::CA_UpdateText);
+#ifndef Q_WS_MAC
+ command->setDefaultKeySequence(QKeySequence(tr("Alt+C,Alt+D")));
+#endif
+ connect(m_diffCurrentAction, SIGNAL(triggered()), this, SLOT(diffCurrentFile()));
+ cvsMenu->addAction(command);
+
+ cvsMenu->addAction(createSeparator(this, ami, CMD_ID_SEPARATOR1, globalcontext));
+
+ m_commitAllAction = new QAction(tr("Commit All Files"), this);
+ command = ami->registerAction(m_commitAllAction, CMD_ID_COMMIT_ALL,
+ globalcontext);
+ connect(m_commitAllAction, SIGNAL(triggered()), this, SLOT(startCommitAll()));
+ cvsMenu->addAction(command);
+
+ m_commitCurrentAction = new Core::Utils::ParameterAction(tr("Commit Current File"), tr("Commit \"%1\""), Core::Utils::ParameterAction::EnabledWithParameter, this);
+ command = ami->registerAction(m_commitCurrentAction,
+ CMD_ID_COMMIT_CURRENT, globalcontext);
+ command->setAttribute(Core::Command::CA_UpdateText);
+#ifndef Q_WS_MAC
+ command->setDefaultKeySequence(QKeySequence(tr("Alt+C,Alt+C")));
+#endif
+ connect(m_commitCurrentAction, SIGNAL(triggered()), this, SLOT(startCommitCurrentFile()));
+ cvsMenu->addAction(command);
+
+ cvsMenu->addAction(createSeparator(this, ami, CMD_ID_SEPARATOR2, globalcontext));
+
+ m_filelogCurrentAction = new Core::Utils::ParameterAction(tr("Filelog Current File"), tr("Filelog \"%1\""), Core::Utils::ParameterAction::EnabledWithParameter, this);
+ command = ami->registerAction(m_filelogCurrentAction,
+ CMD_ID_FILELOG_CURRENT, globalcontext);
+ command->setAttribute(Core::Command::CA_UpdateText);
+ connect(m_filelogCurrentAction, SIGNAL(triggered()), this,
+ SLOT(filelogCurrentFile()));
+ cvsMenu->addAction(command);
+
+ m_annotateCurrentAction = new Core::Utils::ParameterAction(tr("Annotate Current File"), tr("Annotate \"%1\""), Core::Utils::ParameterAction::EnabledWithParameter, this);
+ command = ami->registerAction(m_annotateCurrentAction,
+ CMD_ID_ANNOTATE_CURRENT, globalcontext);
+ command->setAttribute(Core::Command::CA_UpdateText);
+ connect(m_annotateCurrentAction, SIGNAL(triggered()), this,
+ SLOT(annotateCurrentFile()));
+ cvsMenu->addAction(command);
+
+ cvsMenu->addAction(createSeparator(this, ami, CMD_ID_SEPARATOR3, globalcontext));
+
+ m_statusAction = new QAction(tr("Project Status"), this);
+ command = ami->registerAction(m_statusAction, CMD_ID_STATUS,
+ globalcontext);
+ connect(m_statusAction, SIGNAL(triggered()), this, SLOT(projectStatus()));
+ cvsMenu->addAction(command);
+
+ m_updateProjectAction = new QAction(tr("Update Project"), this);
+ command = ami->registerAction(m_updateProjectAction, CMD_ID_UPDATE, globalcontext);
+ connect(m_updateProjectAction, SIGNAL(triggered()), this, SLOT(updateProject()));
+ cvsMenu->addAction(command);
+
+ // Actions of the submit editor
+ QList<int> cvscommitcontext;
+ cvscommitcontext << Core::UniqueIDManager::instance()->uniqueIdentifier(Constants::CVSCOMMITEDITOR);
+
+ m_submitCurrentLogAction = new QAction(VCSBase::VCSBaseSubmitEditor::submitIcon(), tr("Commit"), this);
+ command = ami->registerAction(m_submitCurrentLogAction, Constants::SUBMIT_CURRENT, cvscommitcontext);
+ connect(m_submitCurrentLogAction, SIGNAL(triggered()), this, SLOT(submitCurrentLog()));
+
+ m_submitDiffAction = new QAction(VCSBase::VCSBaseSubmitEditor::diffIcon(), tr("Diff Selected Files"), this);
+ command = ami->registerAction(m_submitDiffAction , Constants::DIFF_SELECTED, cvscommitcontext);
+
+ m_submitUndoAction = new QAction(tr("&Undo"), this);
+ command = ami->registerAction(m_submitUndoAction, Core::Constants::UNDO, cvscommitcontext);
+
+ m_submitRedoAction = new QAction(tr("&Redo"), this);
+ command = ami->registerAction(m_submitRedoAction, Core::Constants::REDO, cvscommitcontext);
+
+ connect(Core::ICore::instance(), SIGNAL(contextChanged(Core::IContext *)), this, SLOT(updateActions()));
+
+ return true;
+}
+
+void CVSPlugin::extensionsInitialized()
+{
+ m_projectExplorer = ProjectExplorer::ProjectExplorerPlugin::instance();
+ if (m_projectExplorer) {
+ connect(m_projectExplorer,
+ SIGNAL(currentProjectChanged(ProjectExplorer::Project*)),
+ m_cvsPluginInstance, SLOT(updateActions()));
+ }
+ updateActions();
+}
+
+bool CVSPlugin::editorAboutToClose(Core::IEditor *iEditor)
+{
+ if (!m_changeTmpFile || !iEditor || qstrcmp(Constants::CVSCOMMITEDITOR, iEditor->kind()))
+ return true;
+
+ Core::IFile *fileIFace = iEditor->file();
+ const CVSSubmitEditor *editor = qobject_cast<CVSSubmitEditor *>(iEditor);
+ if (!fileIFace || !editor)
+ return true;
+
+ // Submit editor closing. Make it write out the commit message
+ // and retrieve files
+ const QFileInfo editorFile(fileIFace->fileName());
+ const QFileInfo changeFile(m_changeTmpFile->fileName());
+ if (editorFile.absoluteFilePath() != changeFile.absoluteFilePath())
+ return true; // Oops?!
+
+ // Prompt user. Force a prompt unless submit was actually invoked (that
+ // is, the editor was closed or shutdown).
+ CVSSettings newSettings = m_settings;
+ const VCSBase::VCSBaseSubmitEditor::PromptSubmitResult answer =
+ editor->promptSubmit(tr("Closing CVS Editor"),
+ tr("Do you want to commit the change?"),
+ tr("The commit message check failed. Do you want to commit the change?"),
+ &newSettings.promptToSubmit, !m_submitActionTriggered);
+ m_submitActionTriggered = false;
+ switch (answer) {
+ case VCSBase::VCSBaseSubmitEditor::SubmitCanceled:
+ return false; // Keep editing and change file
+ case VCSBase::VCSBaseSubmitEditor::SubmitDiscarded:
+ cleanChangeTmpFile();
+ return true; // Cancel all
+ default:
+ break;
+ }
+ setSettings(newSettings); // in case someone turned prompting off
+ const QStringList fileList = editor->checkedFiles();
+ bool closeEditor = true;
+ if (!fileList.empty()) {
+ // get message & commit
+ Core::ICore::instance()->fileManager()->blockFileChange(fileIFace);
+ fileIFace->save();
+ Core::ICore::instance()->fileManager()->unblockFileChange(fileIFace);
+ closeEditor= commit(m_changeTmpFile->fileName(), fileList);
+ }
+ if (closeEditor)
+ cleanChangeTmpFile();
+ return closeEditor;
+}
+
+void CVSPlugin::diffFiles(const QStringList &files)
+{
+ cvsDiff(files);
+}
+
+void CVSPlugin::cvsDiff(const QStringList &files, QString diffname)
+{
+ if (CVS::Constants::debug)
+ qDebug() << Q_FUNC_INFO << files << diffname;
+ const QString source = files.empty() ? QString() : files.front();
+ QTextCodec *codec = source.isEmpty() ? static_cast<QTextCodec *>(0) : VCSBase::VCSBaseEditor::getCodec(source);
+
+ if (files.count() == 1 && diffname.isEmpty())
+ diffname = QFileInfo(files.front()).fileName();
+
+ QStringList args(QLatin1String("diff"));
+ args << m_settings.cvsDiffOptions;
+
+ // CVS returns the diff exit code (1 if files differ), which is
+ // undistinguishable from a "file not found" error, unfortunately.
+ const CVSResponse response = runCVS(args, files, cvsShortTimeOut, false, codec);
+ switch (response.result) {
+ case CVSResponse::NonNullExitCode:
+ case CVSResponse::Ok:
+ break;
+ case CVSResponse::OtherError:
+ return;
+ }
+
+ QString output = fixDiffOutput(response.stdOut);
+ if (output.isEmpty())
+ output = tr("The files do not differ.");
+ // diff of a single file? re-use an existing view if possible to support
+ // the common usage pattern of continuously changing and diffing a file
+ if (files.count() == 1) {
+ // Show in the same editor if diff has been executed before
+ if (Core::IEditor *editor = locateEditor("originalFileName", files.front())) {
+ editor->createNew(output);
+ Core::EditorManager::instance()->activateEditor(editor);
+ CVSEditor::setDiffBaseDir(editor, response.workingDirectory);
+ return;
+ }
+ }
+ const QString title = QString::fromLatin1("cvs diff %1").arg(diffname);
+ Core::IEditor *editor = showOutputInEditor(title, output, VCSBase::DiffOutput, source, codec);
+ if (files.count() == 1)
+ editor->setProperty("originalFileName", files.front());
+ CVSEditor::setDiffBaseDir(editor, response.workingDirectory);
+}
+
+CVSSubmitEditor *CVSPlugin::openCVSSubmitEditor(const QString &fileName)
+{
+ Core::IEditor *editor = Core::EditorManager::instance()->openEditor(fileName, QLatin1String(Constants::CVSCOMMITEDITOR_KIND));
+ CVSSubmitEditor *submitEditor = qobject_cast<CVSSubmitEditor*>(editor);
+ QTC_ASSERT(submitEditor, /**/);
+ submitEditor->registerActions(m_submitUndoAction, m_submitRedoAction, m_submitCurrentLogAction, m_submitDiffAction);
+ connect(submitEditor, SIGNAL(diffSelectedFiles(QStringList)), this, SLOT(diffFiles(QStringList)));
+
+ return submitEditor;
+}
+
+void CVSPlugin::updateActions()
+{
+ m_diffProjectAction->setEnabled(true);
+ m_commitAllAction->setEnabled(true);
+ m_statusAction->setEnabled(true);
+
+ const QString fileName = currentFileName();
+ const QString baseName = fileName.isEmpty() ? fileName : QFileInfo(fileName).fileName();
+
+ m_addAction->setParameter(baseName);
+ m_deleteAction->setParameter(baseName);
+ m_revertAction->setParameter(baseName);
+ m_diffCurrentAction->setParameter(baseName);
+ m_commitCurrentAction->setParameter(baseName);
+ m_filelogCurrentAction->setParameter(baseName);
+ m_annotateCurrentAction->setParameter(baseName);
+}
+
+void CVSPlugin::addCurrentFile()
+{
+ const QString file = currentFileName();
+ if (!file.isEmpty())
+ vcsAdd(file);
+}
+
+void CVSPlugin::deleteCurrentFile()
+{
+ const QString file = currentFileName();
+ if (file.isEmpty())
+ return;
+ if (!Core::ICore::instance()->vcsManager()->showDeleteDialog(file))
+ QMessageBox::warning(0, QLatin1String("CVS remove"), tr("The file '%1' could not be deleted.").arg(file), QMessageBox::Ok);
+}
+
+void CVSPlugin::revertCurrentFile()
+{
+ const QString file = currentFileName();
+ if (file.isEmpty())
+ return;
+
+ const CVSResponse diffResponse = runCVS(QStringList(QLatin1String("diff")), QStringList(file), cvsShortTimeOut, false);
+ switch (diffResponse.result) {
+ case CVSResponse::Ok:
+ return; // Not modified, diff exit code 0
+ case CVSResponse::NonNullExitCode: // Diff exit code != 0
+ if (diffResponse.stdOut.isEmpty()) // Paranoia: Something else failed?
+ return;
+ break;
+ case CVSResponse::OtherError:
+ return;
+ }
+
+ if (QMessageBox::warning(0, QLatin1String("CVS revert"), tr("The file has been changed. Do you want to revert it?"),
+ QMessageBox::Yes, QMessageBox::No) == QMessageBox::No)
+ return;
+
+ Core::FileChangeBlocker fcb(file);
+
+ // revert
+ QStringList args(QLatin1String("update"));
+ args.push_back(QLatin1String("-C"));
+
+ const CVSResponse revertResponse = runCVS(args, QStringList(file), cvsShortTimeOut, true);
+ if (revertResponse.result == CVSResponse::Ok) {
+ fcb.setModifiedReload(true);
+ }
+}
+
+// Get a unique set of toplevel directories for the current projects.
+// To be used for "diff all" or "commit all".
+QStringList CVSPlugin::currentProjectsTopLevels(QString *name) const
+{
+ typedef QList<ProjectExplorer::Project *> ProjectList;
+ ProjectList projects;
+ // Compile list of projects
+ if (ProjectExplorer::Project *currentProject = m_projectExplorer->currentProject()) {
+ projects.push_back(currentProject);
+ } else {
+ if (const ProjectExplorer::SessionManager *session = m_projectExplorer->session())
+ projects.append(session->projects());
+ }
+ // Get unique set of toplevels and concat project names
+ QStringList toplevels;
+ const QChar blank(QLatin1Char(' '));
+ foreach (const ProjectExplorer::Project *p, projects) {
+ if (name) {
+ if (!name->isEmpty())
+ name->append(blank);
+ name->append(p->name());
+ }
+
+ const QString projectPath = QFileInfo(p->file()->fileName()).absolutePath();
+ const QString topLevel = findTopLevelForDirectory(projectPath);
+ if (!topLevel.isEmpty() && !toplevels.contains(topLevel))
+ toplevels.push_back(topLevel);
+ }
+ return toplevels;
+}
+
+void CVSPlugin::diffProject()
+{
+ QString diffName;
+ const QStringList topLevels = currentProjectsTopLevels(&diffName);
+ if (!topLevels.isEmpty())
+ cvsDiff(topLevels, diffName);
+}
+
+void CVSPlugin::diffCurrentFile()
+{
+ cvsDiff(QStringList(currentFileName()));
+}
+
+void CVSPlugin::startCommitCurrentFile()
+{
+ const QString file = currentFileName();
+ if (!file.isEmpty())
+ startCommit(file);
+}
+
+void CVSPlugin::startCommitAll()
+{
+ // Make sure we have only repository for commit
+ const QStringList files = currentProjectsTopLevels();
+ switch (files.size()) {
+ case 0:
+ break;
+ case 1:
+ startCommit(files.front());
+ break;
+ default: {
+ const QString msg = tr("The commit list spans several repositories (%1). Please commit them one by one.").
+ arg(files.join(QString(QLatin1Char(' '))));
+ QMessageBox::warning(0, QLatin1String("cvs commit"), msg, QMessageBox::Ok);
+ }
+ break;
+ }
+}
+
+/* Start commit of files of a single repository by displaying
+ * template and files in a submit editor. On closing, the real
+ * commit will start. */
+void CVSPlugin::startCommit(const QString &source)
+{
+ if (source.isEmpty())
+ return;
+ if (VCSBase::VCSBaseSubmitEditor::raiseSubmitEditor())
+ return;
+ if (m_changeTmpFile) {
+ showOutput(tr("Another commit is currently being executed."));
+ return;
+ }
+ const QFileInfo sourceFi(source);
+ const QString sourceDir = sourceFi.isDir() ? source : sourceFi.absolutePath();
+ const QString topLevel = findTopLevelForDirectory(sourceDir);
+ if (topLevel.isEmpty()) {
+ showOutput(msgCannotFindTopLevel(source), true);
+ return;
+ }
+ // We need the "Examining <subdir>" stderr output to tell
+ // where we are, so, have stdout/stderr channels merged.
+ QStringList args(QStringList(QLatin1String("status")));
+ if (sourceDir == topLevel) {
+ args.push_back(QString(QLatin1Char('.')));
+ } else {
+ args.push_back(QDir(topLevel).relativeFilePath(source));
+ }
+ const CVSResponse response = runCVS(topLevel, args, cvsShortTimeOut, false, 0, true);
+ if (response.result != CVSResponse::Ok)
+ return;
+ // Get list of added/modified/deleted files
+ // As we run cvs in the repository directory, we need complete
+ // the file names by the respective directory.
+ const StateList statusOutput = parseStatusOutput(topLevel, response.stdOut);
+ if (CVS::Constants::debug)
+ qDebug() << Q_FUNC_INFO << '\n' << source << "top" << topLevel;
+
+ if (statusOutput.empty()) {
+ showOutput(tr("There are no modified files."), true);
+ return;
+ }
+
+ // Create a new submit change file containing the submit template
+ QTemporaryFile *changeTmpFile = new QTemporaryFile(this);
+ changeTmpFile->setAutoRemove(true);
+ if (!changeTmpFile->open()) {
+ showOutput(tr("Cannot create temporary file: %1").arg(changeTmpFile->errorString()));
+ delete changeTmpFile;
+ return;
+ }
+ m_changeTmpFile = changeTmpFile;
+ // TODO: Retrieve submit template from
+ const QString submitTemplate;
+ // Create a submit
+ m_changeTmpFile->write(submitTemplate.toUtf8());
+ m_changeTmpFile->flush();
+ m_changeTmpFile->seek(0);
+ // Create a submit editor and set file list
+ CVSSubmitEditor *editor = openCVSSubmitEditor(m_changeTmpFile->fileName());
+ editor->setStateList(statusOutput);
+}
+
+bool CVSPlugin::commit(const QString &messageFile,
+ const QStringList &fileList)
+{
+ if (CVS::Constants::debug)
+ qDebug() << Q_FUNC_INFO << messageFile << fileList;
+ QStringList args = QStringList(QLatin1String("commit"));
+ args << QLatin1String("-F") << messageFile;
+ const CVSResponse response = runCVS(args, fileList, cvsLongTimeOut, true);
+ return response.result == CVSResponse::Ok ;
+}
+
+void CVSPlugin::filelogCurrentFile()
+{
+ const QString file = currentFileName();
+ if (!file.isEmpty())
+ filelog(file);
+}
+
+void CVSPlugin::filelog(const QString &file)
+{
+ QTextCodec *codec = VCSBase::VCSBaseEditor::getCodec(file);
+ // no need for temp file
+ const CVSResponse response = runCVS(QStringList(QLatin1String("log")), QStringList(file), cvsShortTimeOut, false, codec);
+ if (response.result != CVSResponse::Ok)
+ return;
+
+ // Re-use an existing view if possible to support
+ // the common usage pattern of continuously changing and diffing a file
+
+ if (Core::IEditor *editor = locateEditor("logFileName", file)) {
+ editor->createNew(response.stdOut);
+ Core::EditorManager::instance()->activateEditor(editor);
+ } else {
+ const QString title = QString::fromLatin1("cvs log %1").arg(QFileInfo(file).fileName());
+ Core::IEditor *newEditor = showOutputInEditor(title, response.stdOut, VCSBase::LogOutput, file, codec);
+ newEditor->setProperty("logFileName", file);
+ }
+}
+
+void CVSPlugin::updateProject()
+{
+ const QStringList topLevels = currentProjectsTopLevels();
+ if (!topLevels.empty()) {
+ QStringList args(QLatin1String("update"));
+ args.push_back(QLatin1String("-dR"));
+ runCVS(args, topLevels, cvsLongTimeOut, true);
+ }
+}
+
+void CVSPlugin::annotateCurrentFile()
+{
+ const QString file = currentFileName();
+ if (!file.isEmpty())
+ annotate(file);
+}
+
+void CVSPlugin::annotate(const QString &file)
+{
+ QTextCodec *codec = VCSBase::VCSBaseEditor::getCodec(file);
+ const CVSResponse response = runCVS(QStringList(QLatin1String("annotate")), QStringList(file), cvsShortTimeOut, false, codec);
+ if (response.result != CVSResponse::Ok)
+ return;
+
+ // Re-use an existing view if possible to support
+ // the common usage pattern of continuously changing and diffing a file
+
+ if (Core::IEditor *editor = locateEditor("annotateFileName", file)) {
+ editor->createNew(response.stdOut);
+ Core::EditorManager::instance()->activateEditor(editor);
+ } else {
+ const QString title = QString::fromLatin1("cvs annotate %1").arg(QFileInfo(file).fileName());
+ Core::IEditor *newEditor = showOutputInEditor(title, response.stdOut, VCSBase::AnnotateOutput, file, codec);
+ newEditor->setProperty("annotateFileName", file);
+ }
+}
+
+void CVSPlugin::projectStatus()
+{
+ if (!m_projectExplorer)
+ return;
+
+ const QStringList topLevels = currentProjectsTopLevels();
+ if (topLevels.empty())
+ return;
+
+ const CVSResponse response = runCVS(QStringList(QLatin1String("status")), topLevels, cvsShortTimeOut, false);
+ if (response.result == CVSResponse::Ok)
+ showOutputInEditor(tr("Project status"), response.stdOut, VCSBase::RegularCommandOutput, topLevels.front(), 0);
+}
+
+// Decrement version number "1.2" -> "1.1"
+static QString previousRevision(const QString &rev)
+{
+ const int dotPos = rev.lastIndexOf(QLatin1Char('.'));
+ if (dotPos == -1)
+ return rev;
+ const int minor = rev.mid(dotPos + 1).toInt();
+ return rev.left(dotPos + 1) + QString::number(minor - 1);
+}
+
+void CVSPlugin::slotDescribe(const QString &source, const QString &changeNr)
+{
+ QString errorMessage;
+ if (!describe(source, changeNr, &errorMessage))
+ showOutput(errorMessage, true);
+}
+
+bool CVSPlugin::describe(const QString &file, const QString &changeNr, QString *errorMessage)
+{
+ // In CVS, revisions of files are normally unrelated, there is
+ // no global revision/change number. The only thing that groups
+ // a commit is the "commit-id" (as shown in the log).
+ // This function makes use of it to find all files related to
+ // a commit in order to emulate a "describe global change" functionality
+ // if desired.
+ if (CVS::Constants::debug)
+ qDebug() << Q_FUNC_INFO << file << changeNr;
+ const QString toplevel = findTopLevelForDirectory(QFileInfo(file).absolutePath());
+ if (toplevel.isEmpty()) {
+ *errorMessage = msgCannotFindTopLevel(file);
+ return false;
+ }
+ // Number must be > 1
+ if (changeNr.endsWith(QLatin1Char('1'))) {
+ *errorMessage = tr("The initial revision %1 cannot be described.").arg(changeNr);
+ return false;
+ }
+ // Run log to obtain commit id and details
+ QStringList args(QLatin1String("log"));
+ args.push_back(QLatin1String("-r") + changeNr);
+ const CVSResponse logResponse = runCVS(args, QStringList(file), cvsShortTimeOut, false);
+ if (logResponse.result != CVSResponse::Ok) {
+ *errorMessage = logResponse.message;
+ return false;
+ }
+ const QList<CVS_LogEntry> fileLog = parseLogEntries(logResponse.stdOut, logResponse.workingDirectory);
+ if (fileLog.empty() || fileLog.front().revisions.empty()) {
+ *errorMessage = msgLogParsingFailed();
+ return false;
+ }
+ if (m_settings.describeByCommitId) {
+ // Run a log command over the repo, filtering by the commit date
+ // and commit id, collecting all files touched by the commit.
+ const QString commitId = fileLog.front().revisions.front().commitId;
+ // Date range "D1<D2" in ISO format "YYYY-MM-DD"
+ const QString dateS = fileLog.front().revisions.front().date;
+ const QDate date = QDate::fromString(dateS, Qt::ISODate);
+ const QString nextDayS = date.addDays(1).toString(Qt::ISODate);
+ args.clear();
+ args << QLatin1String("log") << QLatin1String("-d") << (dateS + QLatin1Char('<') + nextDayS);
+ const CVSResponse repoLogResponse = runCVS(args, QStringList(toplevel), cvsLongTimeOut, false);
+ if (repoLogResponse.result != CVSResponse::Ok) {
+ *errorMessage = repoLogResponse.message;
+ return false;
+ }
+ // Describe all files found, pass on dir to obtain correct absolute paths.
+ const QList<CVS_LogEntry> repoEntries = parseLogEntries(repoLogResponse.stdOut, QFileInfo(toplevel).absolutePath(), commitId);
+ if (repoEntries.empty()) {
+ *errorMessage = tr("Could not find commits of id '%1' on %2.").arg(commitId, dateS);
+ return false;
+ }
+ return describe(toplevel, repoEntries, errorMessage);
+ } else {
+ // Just describe that single entry
+ return describe(toplevel, fileLog, errorMessage);
+ }
+ return false;
+}
+
+// Describe a set of files and revisions by
+// concatenating log and diffs to previous revisions
+bool CVSPlugin::describe(const QString &repositoryPath, QList<CVS_LogEntry> entries,
+ QString *errorMessage)
+{
+ // Collect logs
+ QString output;
+ const QDir repository(repositoryPath);
+ QTextCodec *codec = 0;
+ const QList<CVS_LogEntry>::iterator lend = entries.end();
+ for (QList<CVS_LogEntry>::iterator it = entries.begin(); it != lend; ++it) {
+ // Before fiddling file names, try to find codec
+ if (!codec)
+ codec = VCSBase::VCSBaseEditor::getCodec(it->file);
+ // Make the files relative to the repository directory.
+ it->file = repository.relativeFilePath(it->file);
+ // Run log
+ QStringList args(QLatin1String("log"));
+ args << (QLatin1String("-r") + it->revisions.front().revision) << it->file;
+ const CVSResponse logResponse = runCVS(repositoryPath, args, cvsShortTimeOut, false);
+ if (logResponse.result != CVSResponse::Ok) {
+ *errorMessage = logResponse.message;
+ return false;
+ }
+ output += logResponse.stdOut;
+ }
+ // Collect diffs relative to repository
+ for (QList<CVS_LogEntry>::iterator it = entries.begin(); it != lend; ++it) {
+ const QString previousRev = previousRevision(it->revisions.front().revision);
+ QStringList args(QLatin1String("diff"));
+ args << m_settings.cvsDiffOptions << QLatin1String("-r") << previousRev
+ << QLatin1String("-r") << it->revisions.front().revision
+ << it->file;
+ const CVSResponse diffResponse = runCVS(repositoryPath, args, cvsShortTimeOut, false, codec);
+ switch (diffResponse.result) {
+ case CVSResponse::Ok:
+ case CVSResponse::NonNullExitCode: // Diff exit code != 0
+ if (diffResponse.stdOut.isEmpty()) {
+ *errorMessage = diffResponse.message;
+ return false; // Something else failed.
+ }
+ break;
+ case CVSResponse::OtherError:
+ *errorMessage = diffResponse.message;
+ return false;
+ }
+ output += fixDiffOutput(diffResponse.stdOut);
+ }
+
+ // Re-use an existing view if possible to support
+ // the common usage pattern of continuously changing and diffing a file
+ const QString commitId = entries.front().revisions.front().commitId;
+ if (Core::IEditor *editor = locateEditor("describeChange", commitId)) {
+ editor->createNew(output);
+ Core::EditorManager::instance()->activateEditor(editor);
+ CVSEditor::setDiffBaseDir(editor, repositoryPath);
+ } else {
+ const QString title = QString::fromLatin1("cvs describe %1").arg(commitId);
+ Core::IEditor *newEditor = showOutputInEditor(title, output, VCSBase::DiffOutput, entries.front().file, codec);
+ newEditor->setProperty("describeChange", commitId);
+ CVSEditor::setDiffBaseDir(newEditor, repositoryPath);
+ }
+ return true;
+}
+
+void CVSPlugin::submitCurrentLog()
+{
+ m_submitActionTriggered = true;
+ Core::EditorManager::instance()->closeEditors(QList<Core::IEditor*>()
+ << Core::EditorManager::instance()->currentEditor());
+}
+
+QString CVSPlugin::currentFileName() const
+{
+ const QString fileName = Core::ICore::instance()->fileManager()->currentFile();
+ if (!fileName.isEmpty()) {
+ const QFileInfo fi(fileName);
+ if (fi.exists())
+ return fi.canonicalFilePath();
+ }
+ return QString();
+}
+
+static inline QString processStdErr(QProcess &proc)
+{
+ return QString::fromLocal8Bit(proc.readAllStandardError()).remove(QLatin1Char('\r'));
+}
+
+static inline QString processStdOut(QProcess &proc, QTextCodec *outputCodec = 0)
+{
+ const QByteArray stdOutData = proc.readAllStandardOutput();
+ QString stdOut = outputCodec ? outputCodec->toUnicode(stdOutData) : QString::fromLocal8Bit(stdOutData);
+ return stdOut.remove(QLatin1Char('\r'));
+}
+
+/* Tortoise CVS does not allow for absolute path names
+ * (which it claims to be CVS standard behaviour).
+ * So, try to figure out the common root of the file arguments,
+ * remove it from the files and return it as working directory for
+ * the process. Note that it is principle possible to have
+ * projects with differing repositories open in a session,
+ * so, trying to find a common repository is not an option.
+ * Usually, there is only one file argument, which is not
+ * problematic; it is just split using QFileInfo. */
+
+// Figure out length of common start of string ("C:\a", "c:\b" -> "c:\"
+static inline int commonPartSize(const QString &s1, const QString &s2)
+{
+ const int size = qMin(s1.size(), s2.size());
+ for (int i = 0; i < size; i++)
+ if (s1.at(i) != s2.at(i))
+ return i;
+ return size;
+}
+
+static inline QString fixFileArgs(QStringList *files)
+{
+ switch (files->size()) {
+ case 0:
+ return QString();
+ case 1: { // Easy, just one
+ const QFileInfo fi(files->at(0));
+ (*files)[0] = fi.fileName();
+ return fi.absolutePath();
+ }
+ default:
+ break;
+ }
+ // Figure out common string part: "C:\foo\bar1" "C:\foo\bar2" -> "C:\foo\bar"
+ int commonLength = INT_MAX;
+ const int last = files->size() - 1;
+ for (int i = 0; i < last; i++)
+ commonLength = qMin(commonLength, commonPartSize(files->at(i), files->at(i + 1)));
+ if (!commonLength)
+ return QString();
+ // Find directory part: "C:\foo\bar" -> "C:\foo"
+ QString common = files->at(0).left(commonLength);
+ int lastSlashPos = common.lastIndexOf(QLatin1Char('/'));
+ if (lastSlashPos == -1)
+ lastSlashPos = common.lastIndexOf(QLatin1Char('\\'));
+ if (lastSlashPos == -1)
+ return QString();
+#ifdef Q_OS_UNIX
+ if (lastSlashPos == 0) // leave "/a", "/b" untouched
+ return QString();
+#endif
+ common.truncate(lastSlashPos);
+ // remove up until slash from the files
+ commonLength = lastSlashPos + 1;
+ const QStringList::iterator end = files->end();
+ for (QStringList::iterator it = files->begin(); it != end; ++it) {
+ it->remove(0, commonLength);
+ }
+ return common;
+}
+
+// Format log entry for command
+static inline QString msgExecutionLogEntry(const QString &workingDir, const QString &executable, const QStringList &arguments)
+{
+ const QString timeStamp = QTime::currentTime().toString(QLatin1String("HH:mm"));
+ //: <timestamp> Executing: <executable> <arguments>
+ const QString args = arguments.join(QString(QLatin1Char(' ')));
+ if (workingDir.isEmpty())
+ return CVSPlugin::tr("%1 Executing: %2 %3\n").arg(timeStamp, executable, args);
+ return CVSPlugin::tr("%1 Executing in %2: %3 %4\n").arg(timeStamp, workingDir, executable, args);
+}
+
+// Figure out a working directory for the process,
+// fix the file arguments accordingly and run CVS.
+CVSResponse CVSPlugin::runCVS(const QStringList &arguments,
+ QStringList files,
+ int timeOut,
+ bool showStdOutInOutputWindow,
+ QTextCodec *outputCodec,
+ bool mergeStderr)
+{
+ const QString workingDirectory = fixFileArgs(&files);
+ return runCVS( workingDirectory, arguments + files, timeOut, showStdOutInOutputWindow, outputCodec, mergeStderr);
+}
+
+// Run CVS. At this point, file arguments must be relative to
+// the working directory (see above).
+CVSResponse CVSPlugin::runCVS(const QString &workingDirectory,
+ const QStringList &arguments,
+ int timeOut,
+ bool showStdOutInOutputWindow, QTextCodec *outputCodec,
+ bool mergeStderr)
+{
+ const QString executable = m_settings.cvsCommand;
+ CVSResponse response;
+ if (executable.isEmpty()) {
+ response.result = CVSResponse::OtherError;
+ response.message =tr("No cvs executable specified!");
+ return response;
+ }
+ // Fix files and compile complete arguments
+ response.workingDirectory = workingDirectory;
+ const QStringList allArgs = m_settings.addOptions(arguments);
+
+ const QString outputText = msgExecutionLogEntry(response.workingDirectory, executable, allArgs);
+ showOutput(outputText, false);
+
+ if (CVS::Constants::debug)
+ qDebug() << "runCVS" << timeOut << outputText;
+
+ // Run, connect stderr to the output window
+ Core::Utils::SynchronousProcess process;
+ if (!response.workingDirectory.isEmpty())
+ process.setWorkingDirectory(response.workingDirectory);
+
+ if (mergeStderr)
+ process.setProcessChannelMode(QProcess::MergedChannels);
+
+ process.setTimeout(timeOut);
+ process.setStdOutCodec(outputCodec);
+
+ process.setStdErrBufferedSignalsEnabled(true);
+ connect(&process, SIGNAL(stdErrBuffered(QString,bool)), m_cvsOutputWindow, SLOT(append(QString,bool)));
+
+ // connect stdout to the output window if desired
+ if (showStdOutInOutputWindow) {
+ process.setStdOutBufferedSignalsEnabled(true);
+ connect(&process, SIGNAL(stdOutBuffered(QString,bool)), m_cvsOutputWindow, SLOT(append(QString,bool)));
+ }
+
+ const Core::Utils::SynchronousProcessResponse sp_resp = process.run(executable, allArgs);
+ response.result = CVSResponse::OtherError;
+ response.stdErr = sp_resp.stdErr;
+ response.stdOut = sp_resp.stdOut;
+ switch (sp_resp.result) {
+ case Core::Utils::SynchronousProcessResponse::Finished:
+ response.result = CVSResponse::Ok;
+ break;
+ case Core::Utils::SynchronousProcessResponse::FinishedError:
+ response.result = CVSResponse::NonNullExitCode;
+ response.message = tr("The process terminated with exit code %1.").arg(sp_resp.exitCode);
+ break;
+ case Core::Utils::SynchronousProcessResponse::TerminatedAbnormally:
+ response.message = tr("The process terminated abnormally.");
+ break;
+ case Core::Utils::SynchronousProcessResponse::StartFailed:
+ response.message = tr("Could not start cvs '%1'. Please check your settings in the preferences.").arg(executable);
+ break;
+ case Core::Utils::SynchronousProcessResponse::Hang:
+ response.message = tr("CVS did not respond within timeout limit (%1 ms).").arg(timeOut);
+ break;
+ }
+ if (response.result != CVSResponse::Ok)
+ m_cvsOutputWindow->append(response.message, true);
+
+ return response;
+}
+
+void CVSPlugin::showOutput(const QString &output, bool bringToForeground)
+{
+ m_cvsOutputWindow->append(output);
+ if (bringToForeground)
+ m_cvsOutputWindow->popup();
+}
+
+Core::IEditor * CVSPlugin::showOutputInEditor(const QString& title, const QString &output,
+ int editorType, const QString &source,
+ QTextCodec *codec)
+{
+ const VCSBase::VCSBaseEditorParameters *params = findType(editorType);
+ QTC_ASSERT(params, return 0);
+ const QString kind = QLatin1String(params->kind);
+ if (CVS::Constants::debug)
+ qDebug() << "CVSPlugin::showOutputInEditor" << title << kind << "source=" << source << "Size= " << output.size() << " Type=" << editorType << debugCodec(codec);
+ QString s = title;
+ Core::IEditor *editor = Core::EditorManager::instance()->newFile(kind, &s, output.toLocal8Bit());
+ CVSEditor *e = qobject_cast<CVSEditor*>(editor->widget());
+ if (!e)
+ return 0;
+ s.replace(QLatin1Char(' '), QLatin1Char('_'));
+ e->setSuggestedFileName(s);
+ if (!source.isEmpty())
+ e->setSource(source);
+ if (codec)
+ e->setCodec(codec);
+ Core::IEditor *ie = e->editableInterface();
+ Core::EditorManager::instance()->activateEditor(ie);
+ return ie;
+}
+
+CVSSettings CVSPlugin::settings() const
+{
+ return m_settings;
+}
+
+void CVSPlugin::setSettings(const CVSSettings &s)
+{
+ if (s != m_settings) {
+ m_settings = s;
+ if (QSettings *settings = Core::ICore::instance()->settings())
+ m_settings.toSettings(settings);
+ }
+}
+
+CVSPlugin *CVSPlugin::cvsPluginInstance()
+{
+ QTC_ASSERT(m_cvsPluginInstance, return m_cvsPluginInstance);
+ return m_cvsPluginInstance;
+}
+
+bool CVSPlugin::vcsAdd(const QString &rawFileName)
+{
+ const CVSResponse response = runCVS(QStringList(QLatin1String("add")), QStringList(rawFileName), cvsShortTimeOut, true);
+ return response.result == CVSResponse::Ok;
+}
+
+bool CVSPlugin::vcsDelete(const QString &rawFileName)
+{
+ QStringList args(QLatin1String("remove"));
+ args << QLatin1String("-f");
+ const CVSResponse response = runCVS(args, QStringList(rawFileName), cvsShortTimeOut, true);
+ return response.result == CVSResponse::Ok;
+}
+
+/* CVS has a "CVS" directory in each directory it manages. The top level
+ * is the first directory under the directory that does not have it. */
+bool CVSPlugin::managesDirectory(const QString &directory) const
+{
+ const QDir dir(directory);
+ const bool rc = dir.exists() && managesDirectory(dir);
+ if (CVS::Constants::debug)
+ qDebug() << "CVSPlugin::managesDirectory" << directory << rc;
+ return rc;
+}
+
+bool CVSPlugin::managesDirectory(const QDir &directory) const
+{
+ const QString cvsDir = directory.absoluteFilePath(QLatin1String("CVS"));
+ return QFileInfo(cvsDir).isDir();
+}
+
+QString CVSPlugin::findTopLevelForDirectory(const QString &directory) const
+{
+ // Debug wrapper
+ const QString rc = findTopLevelForDirectoryI(directory);
+ if (CVS::Constants::debug)
+ qDebug() << "CVSPlugin::findTopLevelForDirectory" << directory << rc;
+ return rc;
+}
+
+QString CVSPlugin::findTopLevelForDirectoryI(const QString &directory) const
+{
+ /* Recursing up, the top level is a child of the first directory that does
+ * not have a "CVS" directory. The starting directory must be a managed
+ * one. Go up and try to find the first unmanaged parent dir. */
+ QDir lastDirectory = QDir(directory);
+ if (!lastDirectory.exists() || !managesDirectory(lastDirectory))
+ return QString();
+ for (QDir parentDir = lastDirectory; parentDir.cdUp() ; lastDirectory = parentDir) {
+ if (!managesDirectory(parentDir))
+ return lastDirectory.absolutePath();
+ }
+ return QString();
+}
+
+}
+}
+Q_EXPORT_PLUGIN(CVS::Internal::CVSPlugin)