Commit 46a776eb authored by Alex Blasche's avatar Alex Blasche
Browse files

Setup descriptor permissions for Android peripheral


Change-Id: Id40033b0745a720466a8466ad3c82ad804cadd9c
Reviewed-by: default avatarTimur Pocheptsov <timur.pocheptsov@qt.io>
Reviewed-by: default avatarAlex Blasche <alexander.blasche@qt.io>
Showing with 85 additions and 6 deletions
...@@ -872,6 +872,58 @@ static int setupCharPermissions(const QLowEnergyCharacteristicData &charData) ...@@ -872,6 +872,58 @@ static int setupCharPermissions(const QLowEnergyCharacteristicData &charData)
return permission; return permission;
} }
/*
* Returns the Java desc permissions based on the given descriptor data.
*/
static int setupDescPermissions(const QLowEnergyDescriptorData &descData)
{
int permissions = 0;
if (descData.isReadable()) {
if (int(descData.readConstraints()) == 0 // empty is equivalent to simple read
|| (descData.readConstraints() & QBluetooth::AttAuthorizationRequired)) {
permissions |= QAndroidJniObject::getStaticField<jint>(
"android/bluetooth/BluetoothGattDescriptor",
"PERMISSION_READ");
}
if (descData.readConstraints() & QBluetooth::AttAuthenticationRequired) {
permissions |= QAndroidJniObject::getStaticField<jint>(
"android/bluetooth/BluetoothGattDescriptor",
"PERMISSION_READ_ENCRYPTED");
}
if (descData.readConstraints() & QBluetooth::AttEncryptionRequired) {
permissions |= QAndroidJniObject::getStaticField<jint>(
"android/bluetooth/BluetoothGattDescriptor",
"PERMISSION_READ_ENCRYPTED_MITM");
}
}
if (descData.isWritable()) {
if (((int)descData.readConstraints()) == 0 // empty is equivalent to simple read
|| (descData.readConstraints() & QBluetooth::AttAuthorizationRequired)) {
permissions |= QAndroidJniObject::getStaticField<jint>(
"android/bluetooth/BluetoothGattDescriptor",
"PERMISSION_WRITE");
}
if (descData.readConstraints() & QBluetooth::AttAuthenticationRequired) {
permissions |= QAndroidJniObject::getStaticField<jint>(
"android/bluetooth/BluetoothGattDescriptor",
"PERMISSION_WRITE_ENCRYPTED");
}
if (descData.readConstraints() & QBluetooth::AttEncryptionRequired) {
permissions |= QAndroidJniObject::getStaticField<jint>(
"android/bluetooth/BluetoothGattDescriptor",
"PERMISSION_WRITE_ENCRYPTED_MITM");
}
}
return permissions;
}
void QLowEnergyControllerPrivate::addToGenericAttributeList(const QLowEnergyServiceData &serviceData, void QLowEnergyControllerPrivate::addToGenericAttributeList(const QLowEnergyServiceData &serviceData,
QLowEnergyHandle startHandle) QLowEnergyHandle startHandle)
{ {
...@@ -905,7 +957,6 @@ void QLowEnergyControllerPrivate::addToGenericAttributeList(const QLowEnergyServ ...@@ -905,7 +957,6 @@ void QLowEnergyControllerPrivate::addToGenericAttributeList(const QLowEnergyServ
// add characteristics // add characteristics
const QList<QLowEnergyCharacteristicData> serviceCharsData = serviceData.characteristics(); const QList<QLowEnergyCharacteristicData> serviceCharsData = serviceData.characteristics();
for (const auto &charData: serviceCharsData) { for (const auto &charData: serviceCharsData) {
//TODO add chars and their descriptors
QAndroidJniObject javaChar = QAndroidJniObject("android/bluetooth/BluetoothGattCharacteristic", QAndroidJniObject javaChar = QAndroidJniObject("android/bluetooth/BluetoothGattCharacteristic",
"(Ljava/util/UUID;II)V", "(Ljava/util/UUID;II)V",
javaUuidfromQtUuid(charData.uuid()).object(), javaUuidfromQtUuid(charData.uuid()).object(),
...@@ -917,18 +968,46 @@ void QLowEnergyControllerPrivate::addToGenericAttributeList(const QLowEnergyServ ...@@ -917,18 +968,46 @@ void QLowEnergyControllerPrivate::addToGenericAttributeList(const QLowEnergyServ
env->SetByteArrayRegion(jb, 0, charData.value().size(), (jbyte*)charData.value().data()); env->SetByteArrayRegion(jb, 0, charData.value().size(), (jbyte*)charData.value().data());
jboolean success = javaChar.callMethod<jboolean>("setValue", "([B)Z", jb); jboolean success = javaChar.callMethod<jboolean>("setValue", "([B)Z", jb);
if (!success) if (!success)
qWarning() << "Cannot setup initial characteristic value for " << charData.uuid(); qCWarning(QT_BT_ANDROID) << "Cannot setup initial characteristic value for " << charData.uuid();
env->DeleteLocalRef(jb); env->DeleteLocalRef(jb);
// TODO set all descriptors const QList<QLowEnergyDescriptorData> descriptorList = charData.descriptors();
for (const auto &descData: descriptorList) {
QAndroidJniObject javaDesc = QAndroidJniObject("android/bluetooth/BluetoothGattDescriptor",
"(Ljava/util/UUID;I)V",
javaUuidfromQtUuid(descData.uuid()).object(),
setupDescPermissions(descData));
jb = env->NewByteArray(descData.value().size());
env->SetByteArrayRegion(jb, 0, descData.value().size(), (jbyte*)descData.value().data());
success = javaDesc.callMethod<jboolean>("setValue", "([B)Z", jb);
if (!success) {
qCWarning(QT_BT_ANDROID) << "Cannot setup initial descriptor value for "
<< descData.uuid() << "(char" << charData.uuid()
<< "on service " << service->uuid << ")";
}
env->DeleteLocalRef(jb);
success = javaChar.callMethod<jboolean>("addDescriptor",
"(Landroid/bluetooth/BluetoothGattDescriptor;)Z",
javaDesc.object());
if (!success) {
qCWarning(QT_BT_ANDROID) << "Cannot add descriptor" << descData.uuid()
<< "to service" << service->uuid << "(char:"
<< charData.uuid() << ")";
}
}
success = service->androidService.callMethod<jboolean>( success = service->androidService.callMethod<jboolean>(
"addCharacteristic", "addCharacteristic",
"(Landroid/bluetooth/BluetoothGattCharacteristic;)Z", javaChar.object()); "(Landroid/bluetooth/BluetoothGattCharacteristic;)Z", javaChar.object());
if (!success) if (!success) {
qWarning() << "Cannot add characteristic" << charData.uuid() << "to service" qCWarning(QT_BT_ANDROID) << "Cannot add characteristic" << charData.uuid()
<< service->uuid; << "to service" << service->uuid;
}
} }
hub->javaObject().callMethod<void>("addService", hub->javaObject().callMethod<void>("addService",
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment