aboutsummaryrefslogtreecommitdiff
path: root/src/GattProperty.h
blob: fb15c4955982b999569f0b2acc4f77a3e50d0de8 (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
110
// Copyright 2017 Paul Nettle. 
// 
// This file is part of Gobbledegook. 
// 
// Gobbledegook is free software: you can redistribute it and/or modify 
// it under the terms of the GNU General Public License as published by 
// the Free Software Foundation, either version 3 of the License, or 
// (at your option) any later version. 
// 
// Gobbledegook is distributed in the hope that it will be useful, 
// but WITHOUT ANY WARRANTY; without even the implied warranty of 
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
// GNU General Public License for more details. 
// 
// You should have received a copy of the GNU General Public License 
// along with Gobbledegook.  If not, see <http://www.gnu.org/licenses/>. 
 
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
// 
// >> 
// >>>  INSIDE THIS FILE 
// >> 
// 
// A GATT Property is simply a name/value pair. 
// 
// >> 
// >>>  DISCUSSION 
// >> 
// 
// See the discussion at the top of GattProperty.cpp 
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
 
#pragma once
 
#include <gio/gio.h>
#include <string>
 
namespace ggk {
 
struct DBusObjectPath;
 
// Representation of a GATT Property 
struct GattProperty
{
// Constructs a named property 
// 
// In general, properties should not be constructed directly as properties are typically instanticated by adding them to to an 
// interface using one of the the interface's `addProperty` methods. 
GattProperty(const std::string &name, GVariant *pValue, GDBusInterfaceGetPropertyFunc getter = nullptr, GDBusInterfaceSetPropertyFunc setter = nullptr);
 
// 
// Name 
// 
 
// Returns the name of the property 
const std::string &getName() const;
 
// Sets the name of the property 
// 
// In general, this method should not be called directly as properties are typically added to an interface using one of the the 
// interface's `addProperty` methods. 
GattProperty &setName(const std::string &name);
 
// 
// Value 
// 
 
// Returns the property's value 
const GVariant *getValue() const;
 
// Sets the property's value 
// 
// In general, this method should not be called directly as properties are typically added to an interface using one of the the 
// interface's `addProperty` methods. 
GattProperty &setValue(GVariant *pValue);
 
// 
// Callbacks to get/set this property 
// 
 
// Internal use method to retrieve the getter delegate method used to return custom values for a property 
GDBusInterfaceGetPropertyFunc getGetterFunc() const;
 
// Internal use method to set the getter delegate method used to return custom values for a property 
// 
// In general, this method should not be called directly as properties are typically added to an interface using one of the the 
// interface's `addProperty` methods. 
GattProperty &setGetterFunc(GDBusInterfaceGetPropertyFunc func);
 
// Internal use method to retrieve the setter delegate method used to return custom values for a property 
GDBusInterfaceSetPropertyFunc getSetterFunc() const;
 
// Internal use method to set the setter delegate method used to return custom values for a property 
// 
// In general, this method should not be called directly as properties are typically added to an interface using one of the the 
// interface's `addProperty` methods. 
GattProperty &setSetterFunc(GDBusInterfaceSetPropertyFunc func);
 
// Internal method used to generate introspection XML used to describe our services on D-Bus 
std::string generateIntrospectionXML(int depth) const;
 
private:
 
std::string name;
GVariant *pValue;
GDBusInterfaceGetPropertyFunc getterFunc;
GDBusInterfaceSetPropertyFunc setterFunc;
};
 
}// namespace ggk