[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    [akonadi-next/feature/new_cli] akonadish: stat
From:       Aaron Seigo <aseigo () kde ! org>
Date:       2015-12-25 18:49:48
Message-ID: E1aCXQy-0006Gu-8P () scm ! kde ! org
[Download RAW message or body]

Git commit 5333d2560ecce9795382800fb84117da1a56d8c4 by Aaron Seigo.
Committed on 25/12/2015 at 18:45.
Pushed by aseigo into branch 'feature/new_cli'.

stat

M  +1    -0    akonadish/CMakeLists.txt
A  +113  -0    akonadish/syntax_modules/akonadi_stat.cpp     [License: GPL (v2+)]

http://commits.kde.org/akonadi-next/5333d2560ecce9795382800fb84117da1a56d8c4

diff --git a/akonadish/CMakeLists.txt b/akonadish/CMakeLists.txt
index 03a8898..0aad28d 100644
--- a/akonadish/CMakeLists.txt
+++ b/akonadish/CMakeLists.txt
@@ -11,6 +11,7 @@ set(akonadi2_cli_SRCS
     syntax_modules/akonadi_clear.cpp
     syntax_modules/akonadi_count.cpp
     syntax_modules/akonadi_create.cpp
+    syntax_modules/akonadi_stat.cpp
     syntax_modules/akonadi_sync.cpp
     akonadish_utils.cpp
     repl/repl.cpp
diff --git a/akonadish/syntax_modules/akonadi_stat.cpp \
b/akonadish/syntax_modules/akonadi_stat.cpp new file mode 100644
index 0000000..149ccbd
--- /dev/null
+++ b/akonadish/syntax_modules/akonadi_stat.cpp
@@ -0,0 +1,113 @@
+/*
+ * 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 <QDebug>
+#include <QObject> // tr()
+#include <QTimer>
+
+#include "common/resource.h"
+#include "common/storage.h"
+#include "common/domain/event.h"
+#include "common/domain/folder.h"
+#include "common/resourceconfig.h"
+#include "common/log.h"
+#include "common/storage.h"
+#include "common/definitions.h"
+
+#include "akonadish_utils.h"
+#include "state.h"
+#include "syntaxtree.h"
+
+namespace AkonadiStat
+{
+
+void statResources(const QStringList &resources, const State &state)
+{
+    qint64 total = 0;
+    for (const auto &resource : resources) {
+        Akonadi2::Storage storage(Akonadi2::storageLocation(), resource, \
Akonadi2::Storage::ReadOnly); +        auto transaction = \
storage.createTransaction(Akonadi2::Storage::ReadOnly); +
+        QList<QByteArray> databases = transaction.getDatabaseNames();
+        for (const auto &databaseName : databases) {
+            state.printLine(QObject::tr("Database: %1").arg(QString(databaseName)), \
1); +            auto db = transaction.openDatabase(databaseName);
+            qint64 size = db.getSize() / 1024;
+            state.printLine(QObject::tr("Size [kb]: %1").arg(size), 1);
+            total += size;
+        }
+    }
+
+    state.printLine(QObject::tr("Total [kb]: %1").arg(total));
+}
+
+bool statAllResources(State &state)
+{
+    Akonadi2::Query query;
+    query.syncOnDemand = false;
+    query.processAll = false;
+    query.liveQuery = false;
+    auto model = AkonadishUtils::loadModel("resource", query);
+
+    //SUUUPER ugly, but can't think of a better way with 2 glasses of wine in me on \
Christmas day +    static QStringList resources;
+    resources.clear();
+
+    QObject::connect(model.data(), &QAbstractItemModel::rowsInserted, [model](const \
QModelIndex &index, int start, int end) mutable { +        for (int i = start; i <= \
end; i++) { +            auto object = model->data(model->index(i, 0, index), \
Akonadi2::Store::DomainObjectBaseRole).value<Akonadi2::ApplicationDomain::ApplicationDomainType::Ptr>();
 +            resources << object->identifier();
+        }
+    });
+
+    QObject::connect(model.data(), &QAbstractItemModel::dataChanged, [model, \
state](const QModelIndex &, const QModelIndex &, const QVector<int> &roles) { +       \
if (roles.contains(Akonadi2::Store::ChildrenFetchedRole)) { +            \
statResources(resources, state); +            state.commandFinished();
+        }
+    });
+
+    if (!model->data(QModelIndex(), Akonadi2::Store::ChildrenFetchedRole).toBool()) \
{ +        return true;
+    }
+
+    return false;
+}
+
+bool stat(const QStringList &args, State &state)
+{
+    if (args.isEmpty()) {
+        return statAllResources(state);
+    }
+
+    statResources(args, state);
+    return false;
+}
+
+Syntax::List syntax()
+{
+    Syntax::List syntax;
+    syntax << Syntax("stat", QObject::tr("Shows database usage for the resources \
requested"), &AkonadiStat::stat, Syntax::EventDriven); +
+    return syntax;
+}
+
+REGISTER_SYNTAX(AkonadiStat)
+
+}


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic