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>
|
|
|
|
|
|
2009-11-27 16:40:07 +01:00
|
|
|
#include <QtCore/QList>
|
2009-12-01 14:04:25 +01:00
|
|
|
#include <QtCore/QObject>
|
2010-08-12 19:12:12 +02:00
|
|
|
#include <QtCore/QPair>
|
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
|
|
|
{
|
|
|
|
|
public:
|
2009-12-23 10:53:57 +01:00
|
|
|
enum DeviceType { Physical, Simulator };
|
|
|
|
|
MaemoDeviceConfig();
|
2010-04-08 17:31:55 +02:00
|
|
|
MaemoDeviceConfig(const QString &name, DeviceType type);
|
2009-12-23 10:53:57 +01:00
|
|
|
MaemoDeviceConfig(const QSettings &settings, quint64 &nextId);
|
|
|
|
|
void save(QSettings &settings) const;
|
|
|
|
|
bool isValid() const;
|
2010-08-12 19:12:12 +02:00
|
|
|
MaemoPortList freePorts() const;
|
2010-08-12 17:10:39 +02:00
|
|
|
static QString portsRegExpr();
|
2010-04-26 11:43:25 +02:00
|
|
|
|
2010-07-16 17:09:05 +02:00
|
|
|
static const quint64 InvalidId = 0;
|
|
|
|
|
|
2010-07-12 09:33:22 +02:00
|
|
|
Core::SshConnectionParameters server;
|
2009-12-23 10:53:57 +01:00
|
|
|
QString name;
|
|
|
|
|
DeviceType type;
|
2010-08-12 17:10:39 +02:00
|
|
|
QString portsSpec;
|
2009-12-23 10:53:57 +01:00
|
|
|
quint64 internalId;
|
2009-12-01 14:04:25 +01:00
|
|
|
|
2009-12-23 10:53:57 +01:00
|
|
|
private:
|
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;
|
|
|
|
|
|
2009-12-23 10:53:57 +01:00
|
|
|
};
|
2009-11-27 16:40:07 +01:00
|
|
|
|
2009-12-23 10:53:57 +01:00
|
|
|
class DevConfNameMatcher
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
DevConfNameMatcher(const QString &name) : m_name(name) {}
|
|
|
|
|
bool operator()(const MaemoDeviceConfig &devConfig)
|
2009-11-30 14:09:08 +01:00
|
|
|
{
|
2009-12-23 10:53:57 +01:00
|
|
|
return devConfig.name == m_name;
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
const QString m_name;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MaemoDeviceConfigurations : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
Q_DISABLE_COPY(MaemoDeviceConfigurations)
|
|
|
|
|
public:
|
2009-11-30 14:09:08 +01:00
|
|
|
|
2009-12-01 14:04:25 +01:00
|
|
|
static MaemoDeviceConfigurations &instance(QObject *parent = 0);
|
2010-12-06 15:28:16 +01:00
|
|
|
|
2009-12-23 10:53:57 +01:00
|
|
|
QList<MaemoDeviceConfig> devConfigs() const { return m_devConfigs; }
|
|
|
|
|
void setDevConfigs(const QList<MaemoDeviceConfig> &devConfigs);
|
2010-12-06 15:28:16 +01:00
|
|
|
|
2009-12-23 10:53:57 +01:00
|
|
|
MaemoDeviceConfig find(const QString &name) const;
|
2010-07-22 11:09:34 +02:00
|
|
|
MaemoDeviceConfig find(quint64 id) 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; }
|
|
|
|
|
|
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();
|
|
|
|
|
|
2009-12-01 14:04:25 +01:00
|
|
|
static MaemoDeviceConfigurations *m_instance;
|
2009-12-23 10:53:57 +01:00
|
|
|
QList<MaemoDeviceConfig> m_devConfigs;
|
2009-12-01 14:04:25 +01:00
|
|
|
quint64 m_nextId;
|
2010-12-06 15:28:16 +01:00
|
|
|
QString m_defaultSshKeyFilePath;
|
2009-12-23 10:53:57 +01:00
|
|
|
friend class MaemoDeviceConfig;
|
2009-11-27 16:40:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Qt4ProjectManager
|
|
|
|
|
|
|
|
|
|
#endif // MAEMODEVICECONFIGURATIONS_H
|