forked from qt-creator/qt-creator
Added a gitorious clone wizard.
... based on the git clone wizard. Provide a wizard for browsing gitorious hosts. Task-number: 44831
This commit is contained in:
177
src/plugins/git/gitorious/gitorious.h
Normal file
177
src/plugins/git/gitorious/gitorious.h
Normal file
@@ -0,0 +1,177 @@
|
||||
/**************************************************************************
|
||||
**
|
||||
** 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.
|
||||
**
|
||||
**************************************************************************/
|
||||
|
||||
#ifndef GITORIOUS_H
|
||||
#define GITORIOUS_H
|
||||
|
||||
#include <QtCore/QStringList>
|
||||
#include <QtCore/QSharedPointer>
|
||||
#include <QtCore/QUrl>
|
||||
#include <QtCore/QObject>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QNetworkAccessManager;
|
||||
class QNetworkReply;
|
||||
class QDebug;
|
||||
class QUrl;
|
||||
class QSettings;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
namespace Gitorious {
|
||||
namespace Internal {
|
||||
|
||||
struct GitoriousRepository
|
||||
{
|
||||
enum Type {
|
||||
MainLineRepository,
|
||||
CloneRepository,
|
||||
BaselineRepository, // Nokia extension
|
||||
SharedRepository, // Nokia extension
|
||||
PersonalRepository, // Nokia extension
|
||||
};
|
||||
|
||||
GitoriousRepository();
|
||||
|
||||
QString name;
|
||||
QString owner;
|
||||
QUrl pushUrl;
|
||||
QUrl cloneUrl;
|
||||
QString description;
|
||||
Type type;
|
||||
int id;
|
||||
};
|
||||
|
||||
struct GitoriousProject
|
||||
{
|
||||
QString name;
|
||||
QString description;
|
||||
QList<GitoriousRepository> repositories;
|
||||
};
|
||||
|
||||
struct GitoriousCategory
|
||||
{
|
||||
typedef QList<QSharedPointer<GitoriousProject > > ProjectList;
|
||||
|
||||
GitoriousCategory(const QString &name = QString());
|
||||
|
||||
QString name;
|
||||
};
|
||||
|
||||
struct GitoriousHost
|
||||
{
|
||||
enum State { ProjectsQueryRunning, ProjectsComplete, Error };
|
||||
typedef QList<QSharedPointer<GitoriousCategory> > CategoryList;
|
||||
typedef QList<QSharedPointer<GitoriousProject > > ProjectList;
|
||||
|
||||
GitoriousHost(const QString &hostName = QString(), const QString &description = QString());
|
||||
int findCategory(const QString &) const;
|
||||
|
||||
QString hostName;
|
||||
QString description;
|
||||
CategoryList categories;
|
||||
ProjectList projects;
|
||||
State state;
|
||||
};
|
||||
|
||||
QDebug operator<<(QDebug d, const GitoriousRepository &r);
|
||||
QDebug operator<<(QDebug d, const GitoriousProject &p);
|
||||
QDebug operator<<(QDebug d, const GitoriousCategory &p);
|
||||
QDebug operator<<(QDebug d, const GitoriousHost &p);
|
||||
|
||||
/* Singleton that manages a list of gitorious hosts, running network queries
|
||||
* in the background. It models hosts with a flat list of projects (Gitorious
|
||||
* has a concept of categories, but this is not enforced, and there is no
|
||||
* way to query them).
|
||||
* As 24.07.2009, the only supported XML request of the host is a paginated
|
||||
* "list-all-projects". */
|
||||
|
||||
class Gitorious : public QObject
|
||||
{
|
||||
Q_DISABLE_COPY(Gitorious)
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
static Gitorious &instance();
|
||||
|
||||
const QList<GitoriousHost> &hosts() const { return m_hosts; }
|
||||
int hostCount() const { return m_hosts.size(); }
|
||||
int categoryCount(int hostIndex) const { return m_hosts.at(hostIndex).categories.size(); }
|
||||
int projectCount(int hostIndex) const { return m_hosts.at(hostIndex).projects.size(); }
|
||||
GitoriousHost::State hostState(int hostIndex) const { return m_hosts.at(hostIndex).state; }
|
||||
|
||||
// If no projects are set, start an asynchronous request querying
|
||||
// the projects/categories of the host.
|
||||
void addHost(const QString &addr, const QString &description = QString());
|
||||
void addHost(const GitoriousHost &host);
|
||||
void removeAt(int index);
|
||||
|
||||
int findByHostName(const QString &hostName) const;
|
||||
QString hostName(int i) const { return m_hosts.at(i).hostName; }
|
||||
QString categoryName(int hostIndex, int categoryIndex) const { return m_hosts.at(hostIndex).categories.at(categoryIndex)->name; }
|
||||
|
||||
QString hostDescription(int index) const;
|
||||
void setHostDescription(int index, const QString &s);
|
||||
|
||||
void saveSettings(const QString &group, QSettings *s);
|
||||
void restoreSettings(const QString &group, const QSettings *s);
|
||||
|
||||
// Return predefined entry for "gitorious.org".
|
||||
static GitoriousHost gitoriousOrg();
|
||||
|
||||
signals:
|
||||
void error(const QString &);
|
||||
void projectListReceived(int hostIndex);
|
||||
void projectListPageReceived(int hostIndex, int page);
|
||||
void categoryListReceived(int index);
|
||||
void hostAdded(int index);
|
||||
void hostRemoved(int index);
|
||||
|
||||
public slots:
|
||||
void updateProjectList(int hostIndex);
|
||||
void updateCategories(int index);
|
||||
|
||||
private slots:
|
||||
void slotReplyFinished();
|
||||
|
||||
private:
|
||||
Gitorious();
|
||||
void listProjectsReply(int hostIndex, int page, const QByteArray &data);
|
||||
void listCategoriesReply(int index, QByteArray data);
|
||||
void emitError(const QString &e);
|
||||
QNetworkReply *createRequest(const QUrl &url, int protocol, int hostIndex, int page = -1);
|
||||
void startProjectsRequest(int index, int page = 1);
|
||||
|
||||
QList<GitoriousHost> m_hosts;
|
||||
QNetworkAccessManager *m_networkManager;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace Gitorious
|
||||
|
||||
#endif // GITORIOUS_H
|
||||
Reference in New Issue
Block a user