/usr/include/KF5/BluezQt/bluezqt/profile.h is in libkf5bluezqt-dev 5.28.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 | /*
* BluezQt - Asynchronous BlueZ wrapper library
*
* Copyright (C) 2014-2015 David Rosca <nowrep@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) version 3, or any
* later version accepted by the membership of KDE e.V. (or its
* successor approved by the membership of KDE e.V.), which shall
* act as a proxy defined in Section 6 of version 3 of the license.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef BLUEZQT_PROFILE_H
#define BLUEZQT_PROFILE_H
#include <QObject>
#include "request.h"
#include "types.h"
#include "bluezqt_export.h"
class QLocalSocket;
class QDBusObjectPath;
class QDBusUnixFileDescriptor;
namespace BluezQt
{
class Device;
/**
* Bluetooth profile.
*
* This class represents a Bluetooth profile.
*
* It is only needed to reimplement pure virtual functions.
* You don't need to set any additional properties.
*
* But you may need to specify at least channel number or PSM in case it couldn't be
* determined from UUID. It is also a good idea to provide name for the profile.
*
* Setting the channel number with setChannel() will make the profile use RFCOMM, while
* setting the PSM with setPsm() will make the profile use L2CAP.
*
* @note The return value of requests will be sent asynchronously with Request class.
* It is also possible to cancel/reject all requests.
*
*/
class BLUEZQT_EXPORT Profile : public QObject
{
Q_OBJECT
Q_PROPERTY(QString uuid READ uuid)
public:
/** Local role to identify sides in asymmetric profiles. */
enum LocalRole {
/** Indicates that this is a client. */
ClientRole,
/** Indicates that this is a server. */
ServerRole
};
/**
* Creates a new Profile object.
*
* @param parent
*/
explicit Profile(QObject *parent = Q_NULLPTR);
/**
* Destroys a Profile object.
*/
~Profile();
/**
* D-Bus object path of the profile.
*
* The path where the profile will be registered.
*
* @note You must provide valid object path!
*
* @return object path of agent
*/
virtual QDBusObjectPath objectPath() const = 0;
/**
* UUID of the profile.
*
* @return UUID of the profile
*/
virtual QString uuid() const = 0;
/**
* Sets the human readable name of the profile.
*
* @param name name of the profile
*/
void setName(const QString &name);
/**
* Sets the primary service class UUID (if different from profile UUID).
*
* @param service service UUID
*/
void setService(const QString &service);
/**
* Sets the local role to identify side.
*
* For asymmetric profiles that do not have UUIDs available
* to uniquely identify each side this parameter allows
* specifying the precise local role.
*
* @param role local role
*/
void setLocalRole(LocalRole role);
/**
* Sets the RFCOMM channel number.
*
* Available channel number range is 0-31.
* Setting channel number to 0 will automatically choose
* correct channel number for profile UUID.
*
* @param channel channel number
*/
void setChannel(quint16 channel);
/**
* Sets the L2CAP port number.
*
* PSM (Protocol Service Multiplexer) is a port number
* in L2CAP.
*
* Setting PSM to 0 will automatically choose correct
* PSM for profile UUID.
*
* @param psm PSM
*/
void setPsm(quint16 psm);
/**
* Sets whether the pairing is required to connect.
*
* @param require require to pair
*/
void setRequireAuthentication(bool require);
/**
* Sets whether the authorization is required to connect.
*
* @param require require to authorize
*/
void setRequireAuthorization(bool require);
/**
* Sets whether the profile is automatically connected.
*
* In case of a client UUID this will force connection
* of the RFCOMM or L2CAP channels when a remote device
* is connected.
*
* @param autoConnect autoconnect the profile
*/
void setAutoConnect(bool autoConnect);
/**
* Sets a SDP record.
*
* This allows to provide a manual SDP record, otherwise it will
* be generated automatically.
*
* @param serviceRecord SDP record
*/
void setServiceRecord(const QString &serviceRecord);
/**
* Sets the profile version.
*
* @param version version of the profile
*/
void setVersion(quint16 version);
/**
* Sets the profile features.
*
* @param features features of the profile
*/
void setFeatures(quint16 features);
/**
* Creates a socket from file descriptor.
*
* @param fd socket file descriptor
* @return socket
*
* @see newConnection()
*/
QSharedPointer<QLocalSocket> createSocket(const QDBusUnixFileDescriptor &fd);
/**
* Requests the new connection.
*
* Common properties:
* <ul>
* <li>quint16 Version - Profile version</li>
* <li>quint16 Features - Profile features</li>
* </ul>
*
* To create socket from fd, you can use:
* @code
* QSharedPointer<QLocalSocket> socket = createSocket(fd);
* if (!socket->isValid()) {
* delete socket;
* request.cancel();
* return;
* }
* @endcode
*
* @param device device that requested connection
* @param fd socket file descriptor
* @param properties additional properties
* @param request request to be used for sending reply
*/
virtual void newConnection(DevicePtr device, const QDBusUnixFileDescriptor &fd, const QVariantMap &properties, const Request<> &request);
/**
* Requests the disconnection of the profile.
*
* This method gets called when a profile gets disconnected.
*
* @param device device to be disconnected
* @param request request to be used for sending reply
*/
virtual void requestDisconnection(DevicePtr device, const Request<> &request);
/**
* Indicates that the profile was unregistered.
*
* This method gets called when the Bluetooth daemon
* unregisters the profile.
*
* A profile can use it to do cleanup tasks. There is no need
* to unregister the profile, because when this method gets called
* it has already been unregistered.
*
*/
virtual void release();
private:
class ProfilePrivate *const d;
friend class Manager;
};
} // namespace BluezQt
#endif // BLUEZQT_PROFILE_H
|