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
|
/*
* Copyright (C) 2014 Aaron Seigo <aseigo@kde.org>
*
* 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 <QApplication>
#include <QCommandLineParser>
#include <QCommandLineOption>
#include "common/clientapi.h"
#include "common/resource.h"
#include "common/storage.h"
#include "common/domain/event.h"
#include "common/domain/folder.h"
#include "common/resourceconfig.h"
#include "console.h"
#include <QWidget>
#include <QTreeView>
#include <QVBoxLayout>
#include <QLabel>
#include <QPushButton>
#include <QItemSelectionModel>
template <typename T>
class View : public QWidget
{
public:
View(QAbstractItemModel *model)
: QWidget()
{
auto modelView = new QTreeView(this);
modelView->setModel(model);
resize(1000, 1500);
auto topLayout = new QVBoxLayout(this);
auto titleLabel = new QLabel(this);
titleLabel->setText("Demo");
auto font = titleLabel->font();
font.setWeight(QFont::Bold);
titleLabel->setFont(font);
titleLabel->setAlignment(Qt::AlignCenter);
auto syncButton = new QPushButton(this);
syncButton->setText("Synchronize!");
QObject::connect(syncButton, &QPushButton::pressed, []() {
Akonadi2::Query query;
query.resources << "org.kde.dummy.instance1";
query.syncOnDemand = true;
Akonadi2::Store::synchronize(query).exec();
});
auto removeButton = new QPushButton(this);
removeButton->setText("Remove");
QObject::connect(removeButton, &QPushButton::pressed, [modelView]() {
for (auto index :modelView->selectionModel()->selectedIndexes()) {
auto object = index.data(Akonadi2::Store::DomainObjectRole).value<typename T::Ptr>();
Akonadi2::Store::remove(*object).exec();
}
});
topLayout->addWidget(titleLabel);
topLayout->addWidget(syncButton);
topLayout->addWidget(modelView, 10);
model->fetchMore(QModelIndex());
show();
}
};
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QCommandLineParser cliOptions;
cliOptions.addPositionalArgument(QObject::tr("[resource]"),
QObject::tr("A resource to connect to"));
cliOptions.addOption(QCommandLineOption("clear"));
cliOptions.addOption(QCommandLineOption("debuglevel"));
cliOptions.addHelpOption();
cliOptions.process(app);
QStringList resources = cliOptions.positionalArguments();
if (resources.isEmpty()) {
resources << "org.kde.dummy.instance1";
}
if (cliOptions.isSet("clear")) {
qDebug() << "Clearing";
for (const auto &resource : resources) {
Akonadi2::Storage store(Akonadi2::Store::storageLocation(), resource, Akonadi2::Storage::ReadWrite);
store.removeFromDisk();
}
return 0;
}
if (cliOptions.isSet("debuglevel")) {
Akonadi2::Log::setDebugOutputLevel(static_cast<Akonadi2::Log::DebugLevel>(cliOptions.value("debuglevel").toInt()));
}
//Ensure resource is ready
for (const auto &resource : resources) {
Akonadi2::ResourceFactory::load(Akonadi2::Store::resourceName(resource.toLatin1()));
ResourceConfig::addResource(resource.toLatin1(), Akonadi2::Store::resourceName(resource.toLatin1()));
}
Akonadi2::Query query;
for (const auto &res : resources) {
query.resources << res.toLatin1();
}
query.syncOnDemand = false;
query.processAll = false;
query.liveQuery = true;
query.requestedProperties << "name";
auto model = Akonadi2::Store::loadModel<Akonadi2::ApplicationDomain::Folder>(query);
auto view = QSharedPointer<View<Akonadi2::ApplicationDomain::Folder> >::create(model.data());
return app.exec();
}
|