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
|
/*
* Author: Sven Gothel <sgothel@jausoft.com>
* Copyright (c) 2020 Gothel Software e.K.
* Copyright (c) 2020 ZAFENA AB
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "direct_bt_tinyb_DBTGattService.h"
// #define VERBOSE_ON 1
#include <dbt_debug.hpp>
#include "JNIMem.hpp"
#include "helper_base.hpp"
#include "helper_dbt.hpp"
#include "direct_bt/DBTDevice.hpp"
#include "direct_bt/DBTAdapter.hpp"
using namespace direct_bt;
jstring Java_direct_1bt_tinyb_DBTGattService_toStringImpl(JNIEnv *env, jobject obj) {
try {
GATTService *nativePtr = getInstance<GATTService>(env, obj);
JavaGlobalObj::check(nativePtr->getJavaObject(), E_FILE_LINE);
return from_string_to_jstring(env, nativePtr->toString());
} catch(...) {
rethrow_and_raise_java_exception(env);
}
return nullptr;
}
void Java_direct_1bt_tinyb_DBTGattService_deleteImpl(JNIEnv *env, jobject obj) {
try {
GATTService *service = getInstance<GATTService>(env, obj);
(void)service;
// No delete: Service instance owned by DBTDevice
} catch(...) {
rethrow_and_raise_java_exception(env);
}
}
static const std::string _characteristicClazzCtorArgs("(JLdirect_bt/tinyb/DBTGattService;S[Ljava/lang/String;Ljava/lang/String;SI)V");
jobject Java_direct_1bt_tinyb_DBTGattService_getCharacteristicsImpl(JNIEnv *env, jobject obj) {
try {
GATTService *service = getInstance<GATTService>(env, obj);
JavaGlobalObj::check(service->getJavaObject(), E_FILE_LINE);
std::vector<std::shared_ptr<GATTCharacteristic>> & characteristics = service->characteristicList;
// DBTGattCharacteristic(final long nativeInstance, final DBTGattService service,
// final short handle, final String[] properties,
// final String value_type_uuid, final short value_handle,
// final int clientCharacteristicsConfigIndex)
std::function<jobject(JNIEnv*, jclass, jmethodID, GATTCharacteristic *)> ctor_char =
[](JNIEnv *env, jclass clazz, jmethodID clazz_ctor, GATTCharacteristic *characteristic)->jobject {
// prepare adapter ctor
JavaGlobalObj::check(characteristic->service->getJavaObject(), E_FILE_LINE);
jobject jservice = JavaGlobalObj::GetObject(characteristic->service->getJavaObject());
std::vector<std::unique_ptr<std::string>> props = GATTCharacteristic::getPropertiesStringList(characteristic->properties);
unsigned int props_size = props.size();
jclass string_class = search_class(env, "Ljava/lang/String;");
jobjectArray jproperties = env->NewObjectArray(props_size, string_class, 0);
java_exception_check_and_throw(env, E_FILE_LINE);
for (unsigned int i = 0; i < props_size; ++i) {
jobject elem = from_string_to_jstring(env, *props[i].get());
env->SetObjectArrayElement(jproperties, i, elem);
}
java_exception_check_and_throw(env, E_FILE_LINE);
const jstring uuid = from_string_to_jstring(env,
directBTJNISettings.getUnifyUUID128Bit() ? characteristic->value_type->toUUID128String() :
characteristic->value_type->toString());
java_exception_check_and_throw(env, E_FILE_LINE);
jobject jchar = env->NewObject(clazz, clazz_ctor, (jlong)characteristic, jservice,
characteristic->handle, jproperties,
uuid, characteristic->value_handle, characteristic->clientCharacteristicsConfigIndex);
java_exception_check_and_throw(env, E_FILE_LINE);
JNIGlobalRef::check(jchar, E_FILE_LINE);
std::shared_ptr<JavaAnonObj> jCharRef = characteristic->getJavaObject();
JavaGlobalObj::check(jCharRef, E_FILE_LINE);
return JavaGlobalObj::GetObject(jCharRef);
};
return convert_vector_sharedptr_to_jarraylist<GATTCharacteristic>(env, characteristics, _characteristicClazzCtorArgs.c_str(), ctor_char);
} catch(...) {
rethrow_and_raise_java_exception(env);
}
return nullptr;
}
|