From 5004fdd4a0646767f8baa8c49d8da50843eac1ed Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Sat, 9 Apr 2016 18:00:05 +0200 Subject: sinksh show command --- sinksh/syntax_modules/sink_show.cpp | 115 ++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 sinksh/syntax_modules/sink_show.cpp (limited to 'sinksh/syntax_modules') diff --git a/sinksh/syntax_modules/sink_show.cpp b/sinksh/syntax_modules/sink_show.cpp new file mode 100644 index 0000000..100b921 --- /dev/null +++ b/sinksh/syntax_modules/sink_show.cpp @@ -0,0 +1,115 @@ +/* + * Copyright (C) 2014 Aaron Seigo + * Copyright (C) 2016 Christian Mollekopf + * + * 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 +#include +#include // tr() +#include +#include + +#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 "sinksh_utils.h" +#include "state.h" +#include "syntaxtree.h" + +namespace SinkShow +{ + +bool show(const QStringList &args, State &state) +{ + if (args.isEmpty()) { + state.printError(QObject::tr("Please provide at least one type to show (e.g. resource, ..")); + return false; + } + + auto argList = args; + if (argList.size() < 2 || !SinkshUtils::isValidStoreType(argList.at(0))) { + state.printError(QObject::tr("Invalid command syntax. Supply type and resource at least.")); + return false; + } + auto type = argList.takeFirst(); + auto resource = argList.takeFirst(); + bool queryForResourceOrAgent = argList.isEmpty(); + + Sink::Query query; + if (queryForResourceOrAgent) { + query.ids << resource.toLatin1(); + } else { + query.resources << resource.toLatin1(); + } + query.liveQuery = false; + + QTime time; + time.start(); + auto model = SinkshUtils::loadModel(type, query); + if (state.debugLevel() > 0) { + state.printLine(QObject::tr("Folder type %1").arg(type)); + state.printLine(QObject::tr("Loaded model in %1 ms").arg(time.elapsed())); + } + + QObject::connect(model.data(), &QAbstractItemModel::rowsInserted, [model, state](const QModelIndex &index, int start, int end) { + for (int i = start; i <= end; i++) { + auto object = model->data(model->index(i, 0, index), Sink::Store::DomainObjectBaseRole).value(); + state.printLine("Resource: " + object->resourceInstanceIdentifier(), 1); + state.printLine("Identifier: " + object->identifier(), 1); + state.stageTableLine(QStringList() + << QObject::tr("Property:") + << QObject::tr("Value:")); + + for (const auto &property : object->availableProperties()) { + state.stageTableLine(QStringList() + << property + << object->getProperty(property).toString()); + } + state.flushTable(); + } + }); + + QObject::connect(model.data(), &QAbstractItemModel::dataChanged, [model, state](const QModelIndex &, const QModelIndex &, const QVector &roles) { + if (roles.contains(Sink::Store::ChildrenFetchedRole)) { + state.commandFinished(); + } + }); + + if (!model->data(QModelIndex(), Sink::Store::ChildrenFetchedRole).toBool()) { + return true; + } + + return false; +} + +Syntax::List syntax() +{ + Syntax show("show", QObject::tr("Show all properties of an entity."), &SinkShow::show, Syntax::EventDriven); + show.completer = &SinkshUtils::resourceOrTypeCompleter; + return Syntax::List() << show; +} + +REGISTER_SYNTAX(SinkShow) + +} -- cgit v1.2.3