aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/src/homescreenvoice.h
blob: 011280cda6729fd01c365d44ad7ced43ac1ec292 (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
/*
 * Copyright (c) 2017 TOYOTA MOTOR CORPORATION
 *
 * 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 HOMESCREENVOICE_H
#define HOMESCREENVOICE_H

#include <QObject>
#include <qlibwindowmanager.h>
#include <string>
#include <functional>
#include <json-c/json.h>
#include <systemd/sd-event.h>
extern "C"
{
#include <afb/afb-wsj1.h>
#include <afb/afb-ws-client.h>
}

using namespace std;

class HomescreenVoice : public QObject
{
    Q_OBJECT
public:
    explicit HomescreenVoice(QObject *parent = 0);
    ~HomescreenVoice();
    static const std::vector<std::string> state_lists;

    int init(int port, const string& token);
    void on_hangup(void *closure, struct afb_wsj1 *wsj);
    void on_call(void *closure, const char *api, const char *verb, struct afb_wsj1_msg *msg);
    void on_event(void *closure, const char *event, struct afb_wsj1_msg *msg);
    void on_reply(void *closure, struct afb_wsj1_msg *msg);
    Q_INVOKABLE int startListening(void);
signals:
    void statusChanged(bool status);
    void showInformation(QString info);

private:
    int initialize_websocket(void);
    int subscribe(const string event_name);

    struct afb_wsj1* sp_websock;
    struct afb_wsj1_itf minterface;
    sd_event* mploop;
    std::string muri;
    int mport = 2000;
    std::string mtoken = "hs";

};

#endif // HOMESCREENVOICE_H