summaryrefslogtreecommitdiffstats
path: root/libhomescreen.pc.in
blob: 809abbdafb34d5b7da5203329a418b272b0788e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
includedir=@PROJECT_INCLUDEDIR@
libdir=@PROJECT_LIBDIR@
binding_install_dir=@binding_install_dir@

Name: @PROJECT_PRETTY_NAME@
Description: @PROJECT_DESCRIPTION@
Version: @PROJECT_VERSION@
URL: @PROJECT_URL@

Requires: json-c afb-daemon
Cflags: -I${includedir}
Libs: -L${libdir} -lhomescreen
g { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
/*
 * Copyright (C) 2018 Konsulko Group
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "message.h"
#include "messageengine.h"
#include "signalcomposer.h"
#include "signalcomposermessage.h"

SignalComposer::SignalComposer (QUrl &url, QObject * parent) :
    QObject(parent),
    m_mloop(nullptr)
{
    m_mloop = new MessageEngine(url);
    QObject::connect(m_mloop, &MessageEngine::connected, this, &SignalComposer::onConnected);
    QObject::connect(m_mloop, &MessageEngine::disconnected, this, &SignalComposer::onDisconnected);
    QObject::connect(m_mloop, &MessageEngine::messageReceived, this, &SignalComposer::onMessageReceived);
}

SignalComposer::~SignalComposer()
{
    delete m_mloop;
}

void SignalComposer::onConnected()
{
    QStringListIterator eventIterator(events);
    SignalComposerMessage *tmsg;

    while (eventIterator.hasNext()) {
        tmsg = new SignalComposerMessage();
        QJsonObject parameter;
        parameter.insert("signal", eventIterator.next());
        tmsg->createRequest("subscribe", parameter);
        m_mloop->sendMessage(tmsg);
        delete tmsg;
    }
}

void SignalComposer::onDisconnected()
{
    QStringListIterator eventIterator(events);
    SignalComposerMessage *tmsg;

    while (eventIterator.hasNext()) {
        tmsg = new SignalComposerMessage();
        QJsonObject parameter;
        parameter.insert("signal", eventIterator.next());
        tmsg->createRequest("unsubscribe", parameter);
        m_mloop->sendMessage(tmsg);
        delete tmsg;
    }
}

void SignalComposer::onMessageReceived(MessageType type, Message *message)
{
    if (type == SignalComposerEventMessage) {
        SignalComposerMessage *tmsg = qobject_cast<SignalComposerMessage*>(message);

        if (tmsg->isEvent()) {
            QString uid = tmsg->eventData().value("uid").toString();
            QVariant v = tmsg->eventData().value("value").toVariant();
            QString value;
            if(v.canConvert(QMetaType::QString))
                value = v.toString();
            else
                qWarning() << "Unconvertible type for uid " << uid;

            emit signalEvent(uid, value);
        }
    }
    message->deleteLater();
}