summaryrefslogtreecommitdiffstats
path: root/src/ui/systeminfostorageui.cpp
blob: e0f796192a9e668c7cf617d22258753a32a5c653 (plain)
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
/**************************************************************************
**
** This file is part of Qt Simulator
**
** Copyright (c) 2010 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://qt.nokia.com/contact.
**
**************************************************************************/

#include "systeminfostorageui.h"

#include <QtCore/QMetaEnum>
#include <QtGui/QPushButton>
#include <QtGui/QBoxLayout>
#include <QtGui/QLineEdit>
#include <QtGui/QComboBox>
#include <QtGui/QCheckBox>
#include <QtGui/QLabel>
#include <QtGui/QSpinBox>
#include <QtGui/QFormLayout>
#include <QtGui/QGroupBox>
#include <QtGui/QInputDialog>

void StorageSystemInfoUi::initializeStorage()
{
    QStringList tags;
    QList<OptionsItem *> optionsList;
    tags << tr("drives") << tr("memory") << tr("storage");

    systemInfoDrives = new QComboBox();
    systemInfoChangeDriveName = new QPushButton(tr("Change Name"));
    systemInfoRemoveDrive = new QPushButton(tr("Remove"));
    QPushButton *systemInfoAddDrive = new QPushButton(tr("Add"));
    QHBoxLayout *hLayout = new QHBoxLayout();
    hLayout->addWidget(systemInfoChangeDriveName);
    hLayout->addWidget(systemInfoRemoveDrive);
    hLayout->addWidget(systemInfoAddDrive);
    QVBoxLayout *vLayout = new QVBoxLayout();
    vLayout->addWidget(systemInfoDrives);
    vLayout->addLayout(hLayout);
    systemInfoDriveType = new QComboBox();
    systemInfoDriveTotalSpace = new QLineEdit();
    QRegExp rx("\\d*");
    systemInfoDriveTotalSpace->setValidator(new QRegExpValidator(rx, this));
    systemInfoDriveAvailableSpace = new QLineEdit();
    systemInfoDriveAvailableSpace->setValidator(new QRegExpValidator(rx, this));
    QFormLayout *driveLayout = new QFormLayout();
    driveLayout->addRow(tr("Type"), systemInfoDriveType);
    driveLayout->addRow(tr("Total space"), systemInfoDriveTotalSpace);
    driveLayout->addRow(tr("Available space"), systemInfoDriveAvailableSpace);
    QGroupBox *drivePropertyGroupBox = new QGroupBox(tr("Storage Properties"));
    drivePropertyGroupBox->setLayout(driveLayout);
    vLayout->addWidget(drivePropertyGroupBox);
    QWidget *drives = new QWidget();
    drives->setLayout(vLayout);
    connect(systemInfoDrives, SIGNAL(activated(int)), SLOT(showDriveInfo()));
    connect(systemInfoAddDrive, SIGNAL(clicked()), SLOT(addDriveClicked()));
    connect(systemInfoRemoveDrive, SIGNAL(clicked()), SLOT(removeDriveClicked()));
    connect(systemInfoChangeDriveName, SIGNAL(clicked()), SLOT(renameDriveClicked()));
    connect(systemInfoDriveType, SIGNAL(activated(int)), SLOT(editDriveInfo()));
    connect(systemInfoDriveTotalSpace, SIGNAL(editingFinished()), SLOT(editDriveInfo()));
    connect(systemInfoDriveAvailableSpace, SIGNAL(editingFinished()), SLOT(editDriveInfo()));
    OptionsItem *item = new OptionsItem("", drives, true);
    QStringList drivesTags = tags;
    drivesTags << tr("total") << tr("available") << tr("space");
    item->setTags(drivesTags);
    optionsList << item;

    initializeStorageOptions();

    setTitle(tr("Storage"));
    setOptions(optionsList);
}

void StorageSystemInfoUi::initializeStorageOptions()
{
    systemInfoDriveType->clear();
    QStringList driveTypes;
    // depends on order of items
    driveTypes.append(tr("No Drive"));
    driveTypes.append(tr("Internal Drive"));
    driveTypes.append(tr("Removable Drive"));
    driveTypes.append(tr("Remote Drive"));
    driveTypes.append(tr("CD-ROM Drive"));
    systemInfoDriveType->addItems(driveTypes);
}

StorageSystemInfoUi::StorageSystemInfoUi(QWidget *parent)
    : ToolBoxPage(parent)
{
    qRegisterMetaType<StorageSystemInfoUi::StorageData>("StorageSystemInfoUi::StorageData");

    mScriptInterface = new StorageSystemInfoScriptInterface(this);

    initializeStorage();

    // when the data changes, update the display
    connect(this, SIGNAL(storageDataChanged(StorageSystemInfoUi::StorageData)),
            SLOT(showDriveInfo()));
}

StorageSystemInfoScriptInterface *StorageSystemInfoUi::scriptInterface()
{
    return mScriptInterface;
}

StorageSystemInfoUi::StorageData StorageSystemInfoUi::storageData() const
{
    return mData;
}

void StorageSystemInfoUi::setStorageData(const StorageSystemInfoUi::StorageData &data)
{
    setDisplayedStorageData(data);
    emit storageDataChanged(data);
}

void StorageSystemInfoUi::setDisplayedStorageData(const StorageSystemInfoUi::StorageData &data)
{
    mData = data;
    updateDrivesList();
}

void StorageSystemInfoUi::emitStorageDataChange()
{
    emit storageDataChanged(storageData());
}

void StorageSystemInfoUi::showDriveInfo()
{
    bool editingEnabled = systemInfoDrives->count() != 0;

    // workaround for calling this from another thread (scripts):
    // always perform the setEnabled calls in the gui thread -
    // setEnabled calls sendEvent!
    QMetaObject::invokeMethod(this, "enableDriveControls", Qt::QueuedConnection,
                              Q_ARG(bool, editingEnabled));

    if (!editingEnabled)
        return;

    const QString curDrive = systemInfoDrives->currentText();
    systemInfoDriveType->setCurrentIndex(static_cast<int>(mScriptInterface->typeForDrive(curDrive)));
    QLocale locale;
    systemInfoDriveAvailableSpace->setText(locale.toString(mScriptInterface->availableDiskSpace(curDrive)));
    systemInfoDriveTotalSpace->setText(locale.toString(mScriptInterface->totalDiskSpace(curDrive)));
}

void StorageSystemInfoUi::editDriveInfo()
{
    if (systemInfoDrives->count() == 0)
        return;

    QLocale locale;
    const QString curDrive = systemInfoDrives->currentText();
    StorageData::DriveInfo &driveInfo = mData.drives[curDrive];
    driveInfo.type = static_cast<StorageSystemInfoScriptInterface::DriveType>(systemInfoDriveType->currentIndex());
    driveInfo.totalSpace = locale.toLongLong(systemInfoDriveTotalSpace->text());
    driveInfo.availableSpace = locale.toLongLong(systemInfoDriveAvailableSpace->text());

    emitStorageDataChange();
}

void StorageSystemInfoUi::updateDrivesList(const QString &driveToShow)
{
    QString showDrive = driveToShow;
    if (showDrive.isNull())
        showDrive = systemInfoDrives->currentText();

    systemInfoDrives->clear();
    systemInfoDrives->addItems(mData.drives.keys());

    if (mData.drives.contains(showDrive))
        systemInfoDrives->setCurrentIndex(mData.drives.keys().indexOf(showDrive));

    showDriveInfo();
}

void StorageSystemInfoUi::renameDisplayedDrive(const QString &from, const QString &to)
{
    StorageData::DriveInfo prevDriveInfo = mData.drives.value(from);
    mData.drives.remove(from);
    mData.drives.insert(to, prevDriveInfo);
    updateDrivesList(to);
}

void StorageSystemInfoUi::renameDriveClicked()
{
    if (systemInfoDrives->count() == 0)
        return;

    const QString oldName = systemInfoDrives->currentText();
    const QString newName = QInputDialog::getText(0,
            "Change Drive Name", "Enter the new drive name:",
            QLineEdit::Normal, oldName);

    if (newName.isEmpty())
        return;

    renameDisplayedDrive(oldName, newName);
    emitStorageDataChange();
}

void StorageSystemInfoUi::addDisplayedDrive(const QString &name)
{
    StorageData::DriveInfo driveInfo;
    mData.drives.insert(name, driveInfo);
    updateDrivesList(name);
}

void StorageSystemInfoUi::addDriveClicked()
{
    const QString newName = QInputDialog::getText(0,
            "Add New Drive", "Enter the new drive name:");
    if (newName.isEmpty())
        return;

    addDisplayedDrive(newName);
    emitStorageDataChange();
}

void StorageSystemInfoUi::removeDisplayedDrive(const QString &name)
{
    mData.drives.remove(name);
    updateDrivesList();
}

void StorageSystemInfoUi::removeDriveClicked()
{
    if (systemInfoDrives->count() == 0)
        return;

    removeDisplayedDrive(systemInfoDrives->currentText());
    emitStorageDataChange();
}


StorageSystemInfoUi::StorageData::DriveInfo::DriveInfo()
    : type(StorageSystemInfoScriptInterface::NoDrive)
    , totalSpace(-1)
    , availableSpace(-1)
{
}


/*!
    \class StorageSystemInfoScriptInterface
    \brief Exposed as sysinfo.storage.
*/

StorageSystemInfoScriptInterface::StorageSystemInfoScriptInterface(StorageSystemInfoUi *ui)
    : QObject(ui)
    , ui(ui)
{
    int enumIndex = metaObject()->indexOfEnumerator("DriveType");
    QMetaEnum metaEnum = metaObject()->enumerator(enumIndex);
    for (int i = 0; i < metaEnum.keyCount(); ++i)
        setProperty(metaEnum.key(i), metaEnum.value(i));
}

StorageSystemInfoScriptInterface::~StorageSystemInfoScriptInterface()
{
}

QStringList StorageSystemInfoScriptInterface::logicalDrives() const
{
    return ui->mData.drives.keys();
}

StorageSystemInfoScriptInterface::DriveType StorageSystemInfoScriptInterface::typeForDrive(const QString &name) const
{
    if (!ui->mData.drives.contains(name))
        return NoDrive;
    return ui->mData.drives.value(name).type;
}

qint64 StorageSystemInfoScriptInterface::totalDiskSpace(const QString &name) const
{
    if (!ui->mData.drives.contains(name))
        return -1;
    return ui->mData.drives.value(name).totalSpace;
}

qint64 StorageSystemInfoScriptInterface::availableDiskSpace(const QString &name) const
{
    if (!ui->mData.drives.contains(name))
        return -1;
    return ui->mData.drives.value(name).availableSpace;
}

bool StorageSystemInfoScriptInterface::addDrive(const QString &name)
{
    if (ui->mData.drives.contains(name))
        return false;

    ui->addDisplayedDrive(name);
    ui->emitStorageDataChange();
    return true;
}

bool StorageSystemInfoScriptInterface::addDrive(const QString &name,
                                                StorageSystemInfoScriptInterface::DriveType type,
                                                qint64 totalSpace, qint64 availableSpace)
{
    if (ui->mData.drives.contains(name))
        return false;

    ui->addDisplayedDrive(name);
    StorageSystemInfoUi::StorageData::DriveInfo &di = ui->mData.drives[name];
    di.type = type;
    di.availableSpace = availableSpace;
    di.totalSpace = totalSpace;
    ui->emitStorageDataChange();
    return true;
}

bool StorageSystemInfoScriptInterface::removeDrive(const QString &name)
{
    if (!ui->mData.drives.contains(name))
        return false;

    ui->removeDisplayedDrive(name);
    ui->emitStorageDataChange();
    return true;
}

bool StorageSystemInfoScriptInterface::setName(const QString &oldname, const QString &newname)
{
    if (!ui->mData.drives.contains(oldname))
        return false;

    ui->renameDisplayedDrive(oldname, newname);
    ui->emitStorageDataChange();
    return true;
}

bool StorageSystemInfoScriptInterface::setType(const QString &name, StorageSystemInfoScriptInterface::DriveType type)
{
    if (!ui->mData.drives.contains(name))
        return false;

    if (ui->mData.drives[name].type != type)
    {
        ui->mData.drives[name].type = type;
        ui->emitStorageDataChange();
    }
    return true;
}

bool StorageSystemInfoScriptInterface::setTotalSpace(const QString &name, qint64 space)
{
    if (!ui->mData.drives.contains(name))
        return false;

    if (ui->mData.drives[name].totalSpace != space)
    {
        ui->mData.drives[name].totalSpace = space;
        ui->emitStorageDataChange();
    }
    return true;
}

bool StorageSystemInfoScriptInterface::setAvailableSpace(const QString &name, qint64 space)
{
    if (!ui->mData.drives.contains(name))
        return false;

    if (ui->mData.drives[name].availableSpace != space)
    {
        ui->mData.drives[name].availableSpace = space;
        ui->emitStorageDataChange();
    }
    return true;
}

void StorageSystemInfoUi::enableDriveControls(bool enabled)
{
    systemInfoDriveType->setEnabled(enabled);
    systemInfoDriveAvailableSpace->setEnabled(enabled);
    systemInfoDriveTotalSpace->setEnabled(enabled);
    systemInfoRemoveDrive->setEnabled(enabled);
    systemInfoChangeDriveName->setEnabled(enabled);
}