2009-11-27 16:40:07 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2011-01-11 16:28:15 +01:00
|
|
|
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2009-11-27 16:40:07 +01:00
|
|
|
** All rights reserved.
|
|
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
** This file is part of the Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
|
|
|
** No Commercial Usage
|
|
|
|
|
** This file contains pre-release code and may not be distributed.
|
|
|
|
|
** You may use this file in accordance with the terms and conditions
|
|
|
|
|
** contained in the Technology Preview License Agreement accompanying
|
|
|
|
|
** this package.
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please contact
|
|
|
|
|
** Nokia at qt-info@nokia.com.
|
|
|
|
|
**
|
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef MAEMODEVICECONFIGURATIONS_H
|
|
|
|
|
#define MAEMODEVICECONFIGURATIONS_H
|
|
|
|
|
|
2010-04-26 11:43:25 +02:00
|
|
|
#include <coreplugin/ssh/sshconnection.h>
|
|
|
|
|
|
2011-01-13 13:49:23 +01:00
|
|
|
#include <QtCore/QAbstractListModel>
|
2009-11-27 16:40:07 +01:00
|
|
|
#include <QtCore/QList>
|
2010-08-12 19:12:12 +02:00
|
|
|
#include <QtCore/QPair>
|
2011-01-13 13:49:23 +01:00
|
|
|
#include <QtCore/QSharedPointer>
|
2009-11-27 16:40:07 +01:00
|
|
|
#include <QtCore/QString>
|
|
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QSettings;
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
namespace Qt4ProjectManager {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2010-08-12 19:12:12 +02:00
|
|
|
class MaemoPortList
|
|
|
|
|
{
|
|
|
|
|
typedef QPair<int, int> Range;
|
2010-08-12 19:46:58 +02:00
|
|
|
public:
|
|
|
|
|
void addPort(int port) { addRange(port, port); }
|
|
|
|
|
void addRange(int startPort, int endPort) {
|
|
|
|
|
m_ranges << Range(startPort, endPort);
|
|
|
|
|
}
|
2010-08-12 19:12:12 +02:00
|
|
|
bool hasMore() const { return !m_ranges.isEmpty(); }
|
|
|
|
|
int count() const {
|
|
|
|
|
int n = 0;
|
|
|
|
|
foreach (const Range &r, m_ranges)
|
|
|
|
|
n += r.second - r.first + 1;
|
|
|
|
|
return n;
|
|
|
|
|
}
|
|
|
|
|
int getNext() {
|
|
|
|
|
Q_ASSERT(!m_ranges.isEmpty());
|
|
|
|
|
Range &firstRange = m_ranges.first();
|
|
|
|
|
const int next = firstRange.first++;
|
|
|
|
|
if (firstRange.first > firstRange.second)
|
|
|
|
|
m_ranges.removeFirst();
|
|
|
|
|
return next;
|
|
|
|
|
}
|
2010-10-15 15:06:50 +02:00
|
|
|
QString toString() const
|
|
|
|
|
{
|
|
|
|
|
QString stringRep;
|
|
|
|
|
foreach (const Range &range, m_ranges) {
|
|
|
|
|
stringRep += QString::number(range.first);
|
|
|
|
|
if (range.second != range.first)
|
|
|
|
|
stringRep += QLatin1Char('-') + QString::number(range.second);
|
|
|
|
|
stringRep += QLatin1Char(',');
|
|
|
|
|
}
|
|
|
|
|
if (!stringRep.isEmpty())
|
|
|
|
|
stringRep.remove(stringRep.length() - 1, 1); // Trailing comma.
|
|
|
|
|
return stringRep;
|
|
|
|
|
}
|
2010-08-12 19:12:12 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QList<Range> m_ranges;
|
|
|
|
|
};
|
|
|
|
|
|
2009-12-23 10:53:57 +01:00
|
|
|
class MaemoDeviceConfig
|
2009-11-27 16:40:07 +01:00
|
|
|
{
|
2011-01-13 13:49:23 +01:00
|
|
|
friend class MaemoDeviceConfigurations;
|
2009-11-27 16:40:07 +01:00
|
|
|
public:
|
2011-01-13 13:49:23 +01:00
|
|
|
typedef QSharedPointer<const MaemoDeviceConfig> ConstPtr;
|
|
|
|
|
typedef quint64 Id;
|
2009-12-23 10:53:57 +01:00
|
|
|
enum DeviceType { Physical, Simulator };
|
2011-01-13 13:49:23 +01:00
|
|
|
|
2010-08-12 19:12:12 +02:00
|
|
|
MaemoPortList freePorts() const;
|
2011-01-13 13:49:23 +01:00
|
|
|
Core::SshConnectionParameters sshParameters() const { return m_sshParameters; }
|
|
|
|
|
QString name() const { return m_name; }
|
|
|
|
|
DeviceType type() const { return m_type; }
|
|
|
|
|
QString portsSpec() const { return m_portsSpec; }
|
|
|
|
|
Id internalId() const { return m_internalId; }
|
2010-08-12 17:10:39 +02:00
|
|
|
static QString portsRegExpr();
|
2010-04-26 11:43:25 +02:00
|
|
|
|
2011-01-13 13:49:23 +01:00
|
|
|
static const Id InvalidId = 0;
|
2009-12-01 14:04:25 +01:00
|
|
|
|
2009-12-23 10:53:57 +01:00
|
|
|
private:
|
2011-01-13 13:49:23 +01:00
|
|
|
typedef QSharedPointer<MaemoDeviceConfig> Ptr;
|
|
|
|
|
|
|
|
|
|
MaemoDeviceConfig(const QString &name, DeviceType type, Id &nextId);
|
|
|
|
|
MaemoDeviceConfig(const QSettings &settings, Id &nextId);
|
2011-01-13 14:32:15 +01:00
|
|
|
MaemoDeviceConfig(const ConstPtr &other);
|
2011-01-13 13:49:23 +01:00
|
|
|
|
|
|
|
|
MaemoDeviceConfig(const MaemoDeviceConfig &);
|
|
|
|
|
MaemoDeviceConfig &operator=(const MaemoDeviceConfig &);
|
|
|
|
|
|
|
|
|
|
static Ptr create(const QString &name, DeviceType type, Id &nextId);
|
|
|
|
|
static Ptr create(const QSettings &settings, Id &nextId);
|
2011-01-13 14:32:15 +01:00
|
|
|
static Ptr create(const ConstPtr &other);
|
2011-01-13 13:49:23 +01:00
|
|
|
|
|
|
|
|
void save(QSettings &settings) const;
|
2010-04-08 17:31:55 +02:00
|
|
|
int defaultSshPort(DeviceType type) const;
|
2010-08-12 19:12:12 +02:00
|
|
|
QString defaultPortsSpec(DeviceType type) const;
|
2010-04-08 17:31:55 +02:00
|
|
|
QString defaultHost(DeviceType type) const;
|
|
|
|
|
|
2011-01-13 13:49:23 +01:00
|
|
|
Core::SshConnectionParameters m_sshParameters;
|
|
|
|
|
QString m_name;
|
|
|
|
|
DeviceType m_type;
|
|
|
|
|
QString m_portsSpec;
|
|
|
|
|
bool m_isDefault;
|
2011-01-13 14:32:15 +01:00
|
|
|
Id m_internalId;
|
2009-12-23 10:53:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2011-01-13 13:49:23 +01:00
|
|
|
class MaemoDeviceConfigurations : public QAbstractListModel
|
2009-12-23 10:53:57 +01:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
Q_DISABLE_COPY(MaemoDeviceConfigurations)
|
|
|
|
|
public:
|
2011-01-13 13:49:23 +01:00
|
|
|
static MaemoDeviceConfigurations *instance(QObject *parent = 0);
|
2009-11-30 14:09:08 +01:00
|
|
|
|
2011-01-13 13:49:23 +01:00
|
|
|
static void replaceInstance(const MaemoDeviceConfigurations *other);
|
|
|
|
|
static MaemoDeviceConfigurations *cloneInstance();
|
2010-12-06 15:28:16 +01:00
|
|
|
|
2011-01-13 13:49:23 +01:00
|
|
|
MaemoDeviceConfig::ConstPtr deviceAt(int i) const;
|
|
|
|
|
MaemoDeviceConfig::ConstPtr find(MaemoDeviceConfig::Id id) const;
|
2011-01-13 14:32:15 +01:00
|
|
|
MaemoDeviceConfig::ConstPtr defaultDeviceConfig() const;
|
2011-01-13 13:49:23 +01:00
|
|
|
bool hasConfig(const QString &name) const;
|
|
|
|
|
int indexForInternalId(MaemoDeviceConfig::Id internalId) const;
|
|
|
|
|
MaemoDeviceConfig::Id internalId(MaemoDeviceConfig::ConstPtr devConf) const;
|
2009-12-01 14:04:25 +01:00
|
|
|
|
2010-12-06 15:28:16 +01:00
|
|
|
void setDefaultSshKeyFilePath(const QString &path) { m_defaultSshKeyFilePath = path; }
|
|
|
|
|
QString defaultSshKeyFilePath() const { return m_defaultSshKeyFilePath; }
|
|
|
|
|
|
2011-01-13 13:49:23 +01:00
|
|
|
void addConfiguration(const QString &name,
|
|
|
|
|
MaemoDeviceConfig::DeviceType type);
|
|
|
|
|
void removeConfiguration(int i);
|
|
|
|
|
void setConfigurationName(int i, const QString &name);
|
|
|
|
|
void setDeviceType(int i, const MaemoDeviceConfig::DeviceType type);
|
|
|
|
|
void setSshParameters(int i, const Core::SshConnectionParameters ¶ms);
|
|
|
|
|
void setPortsSpec(int i, const QString &portsSpec);
|
|
|
|
|
|
|
|
|
|
virtual int rowCount(const QModelIndex &parent = QModelIndex()) const;
|
|
|
|
|
virtual QVariant data(const QModelIndex &index,
|
|
|
|
|
int role = Qt::DisplayRole) const;
|
|
|
|
|
|
2009-12-01 14:04:25 +01:00
|
|
|
signals:
|
|
|
|
|
void updated();
|
2009-11-27 16:40:07 +01:00
|
|
|
|
|
|
|
|
private:
|
2009-12-01 14:04:25 +01:00
|
|
|
MaemoDeviceConfigurations(QObject *parent);
|
2009-11-27 16:40:07 +01:00
|
|
|
void load();
|
|
|
|
|
void save();
|
2011-01-13 13:49:23 +01:00
|
|
|
void initShadowDevConfs();
|
|
|
|
|
static void copy(const MaemoDeviceConfigurations *source,
|
2011-01-13 14:32:15 +01:00
|
|
|
MaemoDeviceConfigurations *target, bool deep);
|
2011-01-13 13:49:23 +01:00
|
|
|
void setupShadowDevConf(int i);
|
2009-11-27 16:40:07 +01:00
|
|
|
|
2009-12-01 14:04:25 +01:00
|
|
|
static MaemoDeviceConfigurations *m_instance;
|
2011-01-13 13:49:23 +01:00
|
|
|
MaemoDeviceConfig::Id m_nextId;
|
|
|
|
|
QList<MaemoDeviceConfig::Ptr> m_devConfigs;
|
|
|
|
|
QList<MaemoDeviceConfig::Ptr> m_shadowDevConfigs;
|
2010-12-06 15:28:16 +01:00
|
|
|
QString m_defaultSshKeyFilePath;
|
2009-11-27 16:40:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Qt4ProjectManager
|
|
|
|
|
|
|
|
|
|
#endif // MAEMODEVICECONFIGURATIONS_H
|