File: Interface.h

package info (click to toggle)
bluez-qt 5.116.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,932 kB
  • sloc: cpp: 16,676; xml: 554; ansic: 337; sh: 13; makefile: 8
file content (55 lines) | stat: -rw-r--r-- 1,143 bytes parent folder | download | duplicates (5)
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
/*
 * BluezQt - Asynchronous BlueZ wrapper library
 *
 * SPDX-FileCopyrightText: 2019 Manuel Weichselbaumer <mincequi@web.de>
 *
 * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
 */

#ifndef INTERFACE_H
#define INTERFACE_H

#include "Methods.h"
#include "Properties.h"

class Interface
{
public:
    Interface();

    bool parse(const QString &line);
    bool finalize();

    QStringList comment() const;
    QString service() const;
    QString name() const;
    QString objectPath() const;
    Methods methods() const;
    Properties properties() const;

private:
    enum class State {
        Comment,
        Service,
        Interface,
        ObjectPath,
        Methods,
        Properties,
    };

    void parseComment(const QString &line);
    void parseService(const QString &line);
    void parseInterface(const QString &line);
    void parseObjectPath(const QString &line);

    State m_state = State::Comment;

    QStringList m_comment;
    QString m_service;
    QString m_name;
    QString m_objectPath;
    Methods m_methods;
    Properties m_properties;
};

#endif // INTERFACE_H