bc1b74024d023cad3ce1ee90d4bc850dc40560b1
[apps/mixer.git] / app / mixer.h
1 /*
2  * Copyright (C) 2016 The Qt Company Ltd.
3  * Copyright (C) 2016,2017 Konsulko Group
4  * Copyright (C) 2018 IoT.bzh
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18 #pragma once
19
20 #include <QObject>
21 #include <QString>
22 #include <QSharedPointer>
23 #include <QStringList>
24 #include <QMap>
25 #include "qafbwebsocketclient.h"
26
27 class Mixer
28         : public QObject
29 {
30         Q_OBJECT
31         Q_PROPERTY(QStringList roles READ roles NOTIFY rolesChanged)
32
33 private:
34         QUrl m_url;
35         QMap<QString, int> m_volumes;
36         QStringList m_roles;
37         QAfbWebsocketClient m_client;
38
39 public:
40         explicit Mixer(QObject* parent = nullptr);
41         Mixer(const Mixer&) = delete;
42
43         Q_INVOKABLE void open(const QUrl& url);
44         Q_INVOKABLE QStringList roles() const;
45         Q_INVOKABLE void setVolume(const QString& name, int value);
46         Q_INVOKABLE void getVolume(const QString& name);
47
48 signals:
49         void rolesChanged();
50         void volumeChanged(const QString& name, int value);
51
52 private slots:
53         void onClientConnected();
54         void onClientDisconnected();
55         void onClientError(QAbstractSocket::SocketError se);
56         void onRetryOpen();
57         void onClientEventReceived(QString eventName, const QJsonValue& data);
58 };