summaryrefslogtreecommitdiffstats
path: root/message.h
blob: 845a3ce86ea29eed2e2c08d3e885f8a547349831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
 * Copyright (C) 2017, 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.
 */

#ifndef MESSAGE_H
#define MESSAGE_H

#include <QObject>
#include <QMap>
#include <QVariant>
#include <QJsonDocument>
#include <QJsonObject>

enum MessageId {
	Call = 2,
	RetOk = 3,
	RetErr = 4,
	Event = 5,
};

enum MessageType {
	GenericMessage,
	ResponseRequestMessage,
	TelephonyEventMessage,
	WeatherEventMessage,
	MediaplayerEventMessage,
	NetworkEventMessage,
	BluetoothEventMessage,
	PbapEventMessage,
};

class Message : public QObject
{
	Q_OBJECT
	Q_ENUM(MessageId)
	Q_ENUM(MessageType)

	public:
		Message();

		bool fromJson(QByteArray jsonData);
		bool fromJDoc(QJsonDocument jdocData);
		QByteArray toJson(QJsonDocument::JsonFormat format = QJsonDocument::Compact);
		bool createRequest(QString api, QString verb, QJsonValue parameter = "None");
		inline QString eventApi() const
		{
			return m_event_api;
		}

		inline QString eventName() const
		{
			return m_event_name;
		}

		inline QJsonObject eventData() const
		{
			return m_event_data;
		}

		inline QString replyInfo() const
		{
			return m_reply_info;
		}

		inline QJsonObject replyData() const
		{
			return m_reply_data;
		}

 		inline bool isEvent() const
		{
			return m_event;
		}

 		inline bool isReply() const
		{
			return m_reply;
		}

 		inline bool isValid() const
		{
			return m_init;
		}

		inline void setCallId(qint32 callId) {
			m_request["callid"] = callId;
		}

	protected:
		bool m_event, m_init, m_reply;
		QString m_event_api, m_event_name, m_reply_info, m_reply_status, m_reply_uuid;
		QMap<QString, QVariant> m_request;
		QJsonDocument m_jdoc;
		QJsonObject m_event_data, m_reply_data;
};

#endif // MESSAGE_H
s="o">+ "(=([^&#]*)|&|#|$)"), results = regex.exec(url); if (!results) return null; if (!results[2]) return ''; return decodeURIComponent(results[2].replace(/\+/g, " ")); } // default soundcard is "PCH" var devid=getParameterByName("devid"); if (!devid) devid="hw:1"; var haldev=getParameterByName("haldev"); if (!haldev) haldev="scarlett-usb"; var sndname=getParameterByName("sndname"); if (!sndname) sndname="PCH"; var mode=getParameterByName("mode"); if (!mode) mode="0"; function replyok(obj) { console.log("replyok:" + JSON.stringify(obj)); document.getElementById("output").innerHTML = "OK: "+ syntaxHighlight(obj); } function replyerr(obj) { console.log("replyerr:" + JSON.stringify(obj)); document.getElementById("output").innerHTML = "ERROR: "+ syntaxHighlight(obj); } function gotevent(obj) { console.log("gotevent:" + JSON.stringify(obj)); document.getElementById("outevt").innerHTML = (evtidx++) +": "+JSON.stringify(obj); } function send(message) { var api = document.getElementById("api").value; var verb = document.getElementById("verb").value; document.getElementById("question").innerHTML = "subscribe: "+api+"/"+verb + " (" + JSON.stringify(message) +")"; ws.call(api+"/"+verb, {data:message}).then(replyok, replyerr); } // On button click from HTML page function callbinder(api, verb, query) { console.log ("subscribe api="+api+" verb="+verb+" query=" +query); var question = urlws +"/" +api +"/" +verb + "?query=" + JSON.stringify(query); document.getElementById("question").innerHTML = syntaxHighlight(question); ws.call(api+"/"+verb, query).then(replyok, replyerr); } // Retreive Select value and Text from the binder // Note: selection of value/text for a given context is huggly!!! function querySelectList (elemid, api, verb, query) { console.log("querySelectList elemid=%s api=%s verb=%s query=%s", elemid, api, verb, query); var selectobj = document.getElementById(elemid); if (!selectobj) { console.log ("****** elemid=%s does not exit in HTML page ****", elemid); return; } // onlick update selected HAL api selectobj.onclick=function(){ sndcard= this.value; console.log ("Default Selection=" + sndcard); }; function gotit (result) { // display response as for normal onclick action replyok(result); var response=result.response; // fulfill select with avaliable active HAL for (idx=0; idx<response.length; idx++) { var opt = document.createElement('option'); // Alsa LowLevel selection mode if (response[idx].name) opt.text = response[idx].name; if (response[idx].devid) opt.value = response[idx].devid; // HAL selection mode if (response[idx].shortname) opt.text = response[idx].shortname; if (response[idx].api) opt.value = response[idx].api; selectobj.appendChild(opt); } sndcard= selectobj.value; } var question = urlws +"/"+api +"/" +verb + "?query=" + JSON.stringify(query); document.getElementById("question").innerHTML = syntaxHighlight(question); // request lowlevel ALSA to get API list ws.call(api+"/"+verb, query).then(gotit, replyerr); } function refresh_list (self, api, verb, query) { console.log("refresh_list id=%s api=%s verb=%s query=%s", self.id, api, verb, query); if (self.value > 0) return; // onlick update selected HAL api self.onclick=function(){ numid = parseInt(self.value); console.log ("Default numid=%d", numid); }; function gotit (result) { // display response as for normal onclick action replyok(result); var response=result.response; // fulfill select with avaliable active HAL for (idx=0; idx<response.length; idx++) { var opt = document.createElement('option'); // Alsa LowLevel selection mode opt.text = response[idx].name + ' id=' + response[idx].id; opt.value = response[idx].id; self.appendChild(opt); } self.selectedIndex=2; numid = parseInt (self.value); } var question = urlws +"/"+api +"/" +verb + "?query=" + JSON.stringify(query); document.getElementById("question").innerHTML = syntaxHighlight(question); // request lowlevel ALSA to get API list ws.call(api+"/"+verb, query).then(gotit, replyerr); } function init(elemid, api, verb, query) { function onopen() { // check for active HALs querySelectList (elemid, api, verb, query); document.getElementById("main").style.visibility = "visible"; document.getElementById("connected").innerHTML = "Binder WS Active"; document.getElementById("connected").style.background = "lightgreen"; ws.onevent("*", gotevent); } function onabort() { document.getElementById("main").style.visibility = "hidden"; document.getElementById("connected").innerHTML = "Connected Closed"; document.getElementById("connected").style.background = "red"; } ws = new afb.ws(onopen, onabort); }