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

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

Git commit 02ebb2bd3c9a5d4fe224c239b2ea10e7db12ebc6 by Aaron Seigo.
Committed on 25/12/2015 at 17:27.
Pushed by aseigo into branch 'feature/new_cli'.

create resource

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

http://commits.kde.org/akonadi-next/02ebb2bd3c9a5d4fe224c239b2ea10e7db12ebc6

diff --git a/akonadish/CMakeLists.txt b/akonadish/CMakeLists.txt
index e00d25a..03a8898 100644
--- a/akonadish/CMakeLists.txt
+++ b/akonadish/CMakeLists.txt
@@ -10,6 +10,7 @@ set(akonadi2_cli_SRCS
     syntax_modules/akonadi_list.cpp
     syntax_modules/akonadi_clear.cpp
     syntax_modules/akonadi_count.cpp
+    syntax_modules/akonadi_create.cpp
     syntax_modules/akonadi_sync.cpp
     akonadish_utils.cpp
     repl/repl.cpp
diff --git a/akonadish/syntax_modules/akonadi_create.cpp \
b/akonadish/syntax_modules/akonadi_create.cpp new file mode 100644
index 0000000..025cd58
--- /dev/null
+++ b/akonadish/syntax_modules/akonadi_create.cpp
@@ -0,0 +1,107 @@
+/*
+ * 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 <QCoreApplication>
+#include <QDebug>
+#include <QObject> // tr()
+#include <QModelIndex>
+#include <QTime>
+
+#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 AkonadiCreate
+{
+
+    /*
+{
+    auto type = !args.isEmpty() ? args.takeFirst().toLatin1() : QByteArray();
+    auto &store = getStore(type);
+    Akonadi2::ApplicationDomain::ApplicationDomainType::Ptr object;
+    if (type == "resource") {
+        auto resourceType = !args.isEmpty() ? args.takeFirst().toLatin1() : \
QByteArray(); +        object = store.getObject("");
+        object->setProperty("type", resourceType);
+    } else {
+        auto resource = !args.isEmpty() ? args.takeFirst().toLatin1() : \
QByteArray(); +        object = store.getObject(resource);
+    }
+    auto map = consumeMap(args);
+    for (auto i = map.begin(); i != map.end(); ++i) {
+        object->setProperty(i.key().toLatin1(), i.value());
+    }
+    auto result = store.create(*object).exec();
+    result.waitForFinished();
+    if (result.errorCode()) {
+        std::cout << "An error occurred while creating the entity: " << \
result.errorMessage().toStdString(); +    }
+}
+*/
+bool resource(const QStringList &args, State &state)
+{
+    if (args.isEmpty()) {
+        state.printError(QObject::tr("A resource can not be created without a \
type"), "akonadicreate/01"); +    }
+
+    auto &store = AkonadishUtils::getStore("resource");
+
+    auto resourceType = args.at(0);
+    Akonadi2::ApplicationDomain::ApplicationDomainType::Ptr object = \
store.getObject(""); +    object->setProperty("type", resourceType);
+
+    auto map = AkonadishUtils::keyValueMapFromArgs(args);
+    for (auto i = map.begin(); i != map.end(); ++i) {
+        object->setProperty(i.key().toLatin1(), i.value());
+    }
+
+    auto result = store.create(*object).exec();
+    result.waitForFinished();
+    if (result.errorCode()) {
+        state.printError(QObject::tr("An error occurred while creating the entity: \
%1").arg(result.errorMessage()), +                         "akonaid_create_" + \
QString::number(result.errorCode())); +    }
+
+    return true;
+}
+
+
+Syntax::List syntax()
+{
+    Syntax::List syntax;
+
+    Syntax create("create");//, QString(), &AkonadiCreate::resource, \
Syntax::EventDriven); +    create.children << Syntax("resource", QObject::tr("Creates \
a new resource"), &AkonadiCreate::resource);//, Syntax::EventDriven); +
+    syntax << create;
+    return syntax;
+}
+
+REGISTER_SYNTAX(AkonadiCreate)
+
+}


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

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