1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
/***************************************************************************
* Copyright 2010 Morten Danielsen Volden *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/
#ifndef KDEVPERFORCEPLUGIN_H
#define KDEVPERFORCEPLUGIN_H
#include <vcs/interfaces/icentralizedversioncontrol.h>
#include <interfaces/iplugin.h>
#include <outputview/outputjob.h>
#include <QVariantList>
#include <QString>
#include <memory>
class QFileInfo;
namespace KDevelop
{
class VcsPluginHelper;
class DVcsJob;
}
class PerforcePlugin : public KDevelop::IPlugin, public KDevelop::ICentralizedVersionControl
{
Q_OBJECT
Q_INTERFACES(KDevelop::IBasicVersionControl KDevelop::ICentralizedVersionControl)
friend class PerforcePluginTest;
public:
explicit PerforcePlugin(QObject* parent, const QVariantList & = QVariantList());
~PerforcePlugin() override;
//@{
/** Methods inherited from KDevelop::IBasicVersionControl */
QString name() const override;
KDevelop::VcsImportMetadataWidget* createImportMetadataWidget(QWidget* parent) override;
bool isValidRemoteRepositoryUrl(const QUrl& remoteLocation) override;
bool isVersionControlled(const QUrl& localLocation) override;
KDevelop::VcsJob* repositoryLocation(const QUrl& localLocation) override;
KDevelop::VcsJob* add(const QList<QUrl>& localLocations,
RecursionMode recursion = IBasicVersionControl::Recursive) override;
KDevelop::VcsJob* remove(const QList<QUrl>& localLocations) override;
KDevelop::VcsJob* copy(const QUrl& localLocationSrc,
const QUrl& localLocationDstn) override;
KDevelop::VcsJob* move(const QUrl& localLocationSrc,
const QUrl& localLocationDst) override;
KDevelop::VcsJob* status(const QList<QUrl>& localLocations,
RecursionMode recursion = IBasicVersionControl::Recursive) override;
KDevelop::VcsJob* revert(const QList<QUrl>& localLocations,
RecursionMode recursion = IBasicVersionControl::Recursive) override;
KDevelop::VcsJob* update(const QList<QUrl>& localLocations,
const KDevelop::VcsRevision& rev = KDevelop::VcsRevision::createSpecialRevision(KDevelop::VcsRevision::Head),
KDevelop::IBasicVersionControl::RecursionMode recursion = KDevelop::IBasicVersionControl::Recursive) override;
KDevelop::VcsJob* commit(const QString& message,
const QList<QUrl>& localLocations,
KDevelop::IBasicVersionControl::RecursionMode recursion = KDevelop::IBasicVersionControl::Recursive) override;
KDevelop::VcsJob* diff(const QUrl& fileOrDirectory,
const KDevelop::VcsRevision& srcRevision,
const KDevelop::VcsRevision& dstRevision,
KDevelop::IBasicVersionControl::RecursionMode recursion = KDevelop::IBasicVersionControl::Recursive) override;
KDevelop::VcsJob* log(const QUrl& localLocation,
const KDevelop::VcsRevision& rev,
unsigned long limit = 0) override;
KDevelop::VcsJob* log(const QUrl& localLocation,
const KDevelop::VcsRevision& rev = KDevelop::VcsRevision::createSpecialRevision(KDevelop::VcsRevision::Base),
const KDevelop::VcsRevision& limit = KDevelop::VcsRevision::createSpecialRevision(KDevelop::VcsRevision::Start)) override;
KDevelop::VcsJob* annotate(const QUrl& localLocation,
const KDevelop::VcsRevision& rev = KDevelop::VcsRevision::createSpecialRevision(KDevelop::VcsRevision::Head)) override;
KDevelop::VcsJob* resolve(const QList<QUrl>& localLocations,
KDevelop::IBasicVersionControl::RecursionMode recursion) override;
KDevelop::VcsJob* createWorkingCopy(const KDevelop::VcsLocation & sourceRepository,
const QUrl & destinationDirectory,
KDevelop::IBasicVersionControl::RecursionMode recursion = IBasicVersionControl::Recursive) override;
KDevelop::VcsLocationWidget* vcsLocation(QWidget* parent) const override;
//@}
//@{
/** Methods inherited from KDevelop::ICentralizedVersionControl */
KDevelop::VcsJob* edit(const QUrl& localLocation) override;
KDevelop::VcsJob* unedit(const QUrl& localLocation) override;
KDevelop::VcsJob* localRevision(const QUrl& localLocation,
KDevelop::VcsRevision::RevisionType) override;
KDevelop::VcsJob* import(const QString & commitMessage,
const QUrl & sourceDirectory,
const KDevelop::VcsLocation & destinationRepository) override;
//@}
/// This plugin implements its own edit method
KDevelop::VcsJob* edit(const QList<QUrl>& localLocations);
KDevelop::ContextMenuExtension contextMenuExtension(KDevelop::Context* context, QWidget* parent) override;
public Q_SLOTS:
/// invoked by context-menu
void ctxEdit();
// void ctxUnedit();
// void ctxLocalRevision();
// void ctxImport();
private Q_SLOTS:
void parseP4StatusOutput(KDevelop::DVcsJob* job);
void parseP4DiffOutput(KDevelop::DVcsJob* job);
void parseP4LogOutput(KDevelop::DVcsJob* job);
void parseP4AnnotateOutput(KDevelop::DVcsJob* job);
private:
bool isValidDirectory(const QUrl & dirPath);
KDevelop::DVcsJob* p4fstatJob(const QFileInfo& curFile,
KDevelop::OutputJob::OutputJobVerbosity verbosity = KDevelop::OutputJob::Verbose);
bool parseP4fstat(const QFileInfo& curFile,
KDevelop::OutputJob::OutputJobVerbosity verbosity = KDevelop::OutputJob::Verbose);
KDevelop::VcsJob* errorsFound(const QString& error,
KDevelop::OutputJob::OutputJobVerbosity verbosity = KDevelop::OutputJob::Verbose);
QString getRepositoryName(const QFileInfo& curFile);
void setEnvironmentForJob(KDevelop::DVcsJob* job, QFileInfo const& fsObject);
QList<QVariant> getQvariantFromLogOutput(QStringList const& outputLines);
std::unique_ptr<KDevelop::VcsPluginHelper> m_common;
QString m_perforceConfigName;
QString m_perforceExecutable;
QAction* m_edit_action;
};
#endif // PERFORCEPLUGIN_H
|