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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
|
/*
* Copyright (C) 1999-2002 Bernd Gehrmann
* bernd@mail.berlios.de
* Copyright (c) 2003-2008 Christian Loose <christian.loose@kdemail.net>
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <iostream>
#include <QFileInfo>
#include <KLocalizedString>
#include <QApplication>
#include <QCommandLineParser>
#include <kaboutdata.h>
#include <kconfig.h>
#include <ktoolinvocation.h>
#include "annotatecontroller.h"
#include "annotatedialog.h"
#include "cervisia_version.h"
#include "cervisiashell.h"
#include "cvsserviceinterface.h"
#include "logdialog.h"
#include "misc.h"
#include "repositoryinterface.h"
#include "resolvedialog.h"
static OrgKdeCervisia5CvsserviceCvsserviceInterface *StartDBusService(const QString &directory)
{
// start the cvs D-Bus service
QString error;
QString appId;
if (KToolInvocation::startServiceByDesktopName("org.kde.cvsservice5", QStringList(), &error, &appId)) {
std::cerr << "Starting cvsservice failed with message: " << error.toLocal8Bit().constData() << std::endl;
exit(1);
}
OrgKdeCervisia5RepositoryInterface repository(appId, "/CvsRepository", QDBusConnection::sessionBus());
repository.setWorkingCopy(directory);
// create a reference to the service
return new OrgKdeCervisia5CvsserviceCvsserviceInterface(appId, "/CvsService", QDBusConnection::sessionBus());
}
static int ShowResolveDialog(const QString &fileName)
{
auto config = new KConfig("cervisiapartrc");
auto dlg = new ResolveDialog(*config);
if (dlg->parseFile(fileName))
dlg->show();
else
delete dlg;
int result = qApp->exec();
delete config;
return result;
}
static int ShowLogDialog(const QString &fileName)
{
auto config = new KConfig("cervisiapartrc");
auto dlg = new LogDialog(*config);
// get directory for file
const QFileInfo fi(fileName);
QString directory = fi.absolutePath();
// start the cvs DCOP service
OrgKdeCervisia5CvsserviceCvsserviceInterface *cvsService = StartDBusService(directory);
if (dlg->parseCvsLog(cvsService, fi.fileName()))
dlg->show();
else
delete dlg;
int result = qApp->exec();
// stop the cvs D-Bus service
cvsService->quit();
delete cvsService;
delete config;
return result;
}
static int ShowAnnotateDialog(const QString &fileName)
{
auto config = new KConfig("cervisiapartrc");
auto dlg = new AnnotateDialog(*config);
// get directory for file
const QFileInfo fi(fileName);
QString directory = fi.absolutePath();
// start the cvs D-Bus service
OrgKdeCervisia5CvsserviceCvsserviceInterface *cvsService = StartDBusService(directory);
AnnotateController ctl(dlg, cvsService);
ctl.showDialog(fi.fileName());
int result = qApp->exec();
// stop the cvs D-Bus service
cvsService->quit();
delete cvsService;
delete config;
return result;
}
int main(int argc, char **argv)
{
KLocalizedString::setApplicationDomain("cervisia");
QApplication app(argc, argv);
KAboutData about("cervisia",
i18n("Cervisia"),
CERVISIA_VERSION_STRING,
i18n("A CVS frontend"),
KAboutLicense::GPL,
i18n("Copyright (c) 1999-2002 Bernd Gehrmann\n"
"Copyright (c) 2002-2008 the Cervisia authors"),
QString(),
QLatin1String("http://cervisia.kde.org"));
about.addAuthor(i18n("Bernd Gehrmann"),
i18n("Original author and former "
"maintainer"),
"bernd@mail.berlios.de");
about.addAuthor(i18n("Christian Loose"), i18n("Maintainer"), "christian.loose@kdemail.net");
about.addAuthor(i18n("Andr\303\251 W\303\266bbeking"), i18n("Developer"), "woebbeking@kde.org");
about.addAuthor(i18n("Carlos Woelz"), i18n("Documentation"), "carloswoelz@imap-mail.com");
about.addCredit(i18n("Richard Moore"), i18n("Conversion to KPart"), "rich@kde.org");
about.addCredit(i18n("Laurent Montel"), i18n("Conversion to D-Bus"), "montel@kde.org");
about.addCredit(i18n("Martin Koller"), i18n("Port to KDE Frameworks 5"), "kollix@aon.at");
about.setOrganizationDomain(QByteArray("kde.org"));
KAboutData::setApplicationData(about);
QCommandLineParser parser;
about.setupCommandLine(&parser);
parser.addPositionalArgument(QLatin1String("directory"), i18n("The sandbox to be loaded"), QLatin1String("[directory]"));
parser.addOption(QCommandLineOption(QLatin1String("resolve"), i18n("Show resolve dialog for the given file."), QLatin1String("file")));
parser.addOption(QCommandLineOption(QLatin1String("log"), i18n("Show log dialog for the given file."), QLatin1String("file")));
parser.addOption(QCommandLineOption(QLatin1String("annotate"), i18n("Show annotation dialog for the given file."), QLatin1String("file")));
parser.process(app);
about.processCommandLine(&parser);
QString resolvefile = parser.value(QLatin1String("resolve"));
if (!resolvefile.isEmpty())
return ShowResolveDialog(resolvefile);
// is command line option 'show log dialog' specified?
QString logFile = parser.value(QLatin1String("log"));
if (!logFile.isEmpty())
return ShowLogDialog(logFile);
// is command line option 'show annotation dialog' specified?
QString annotateFile = parser.value(QLatin1String("annotate"));
if (!annotateFile.isEmpty())
return ShowAnnotateDialog(annotateFile);
if (app.isSessionRestored()) {
kRestoreMainWindows<CervisiaShell>();
} else {
auto shell = new CervisiaShell();
if (parser.positionalArguments().count()) {
QDir dir(parser.positionalArguments()[0]);
QUrl directory = QUrl::fromLocalFile(dir.absolutePath());
shell->openURL(directory);
} else
shell->openURL();
shell->setWindowIcon(qApp->windowIcon());
shell->show();
}
int res = app.exec();
cleanupTempFiles();
return res;
}
// Local Variables:
// c-basic-offset: 4
// End:
|