summaryrefslogtreecommitdiffstats
path: root/templates/feature/agl-rvgpu/50_local.conf.inc
blob: 46351825dade8740c121aae0e2266eb57a90a5d1 (plain)
1
2
#see meta-rvgpu/conf/include/agl-rvgpu.inc
require conf/include/agl-rvgpu.inc
d-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { 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) 2019, 2020 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 <QDebug>

#include "message.h"
#include "mapmessage.h"
#include "responsemessage.h"
#include "messageengine.h"
#include "map.h"

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

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

void Map::compose(QString recipient, QString message)
{
    MapMessage *tmsg = new MapMessage();
    QJsonObject parameter;
    parameter.insert("recipient", recipient);
    parameter.insert("message", message);
    tmsg->createRequest("compose", parameter);
    m_mloop->sendMessage(tmsg);
    delete tmsg;
}

void Map::message(QString handle)
{
    MapMessage *tmsg = new MapMessage();
    QJsonObject parameter;
    parameter.insert("handle", handle);
    tmsg->createRequest("message", parameter);
    m_mloop->sendMessage(tmsg);
    delete tmsg;
}

void Map::listMessages(QString folder)
{
    MapMessage *tmsg = new MapMessage();
    QJsonObject parameter;
    parameter.insert("folder", folder);
    tmsg->createRequest("list_messages", parameter);
    m_mloop->sendMessage(tmsg);
    delete tmsg;
}

void Map::onConnected()
{
    MapMessage *tmsg = new MapMessage();
    QJsonObject parameter;
    parameter.insert("value", "notification");
    tmsg->createRequest("subscribe", parameter);
    m_mloop->sendMessage(tmsg);
    delete tmsg;

    listMessages();
}

void Map::onDisconnected()
{
    MapMessage *tmsg = new MapMessage();
    QJsonObject parameter;
    parameter.insert("value", "notification");
    tmsg->createRequest("unsubscribe", parameter);
    m_mloop->sendMessage(tmsg);
    delete tmsg;
}

void Map::onMessageReceived(MessageType type, Message *msg)
{
    if (type == MessageType::MapEventMessage) {
        MapMessage *tmsg = qobject_cast<MapMessage*>(msg);

        if (tmsg->isNotificationEvent()) {
            emit notificationEvent(tmsg->eventData().toVariantMap());
        }
    } else if (msg->isReply() && type == MessageType::ResponseRequestMessage) {
        ResponseMessage *tmsg = qobject_cast<ResponseMessage*>(msg);

        if (tmsg->requestVerb() == "list_messages") {
            QString folder = tmsg->requestParameters().value("folder").toString();
            QVariantMap listing = tmsg->replyData().value("messages").toObject().toVariantMap();
            emit listMessagesResult(folder, listing);
        } else if (tmsg->requestVerb() == "message") {
            QString handle = tmsg->requestParameters().value("handle").toString();
            emit messageResult(handle, tmsg->replyData().toVariantMap());
        }
    }

    msg->deleteLater();
}