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
|
/*
* Author: Andrei Vasiliu <andrei.vasiliu@intel.com>
* Copyright (c) 2016 Intel Corporation.
*
* 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 <jni.h>
#include <memory>
#include <stdexcept>
#include <vector>
#include "helper_base.hpp"
#define JAVA_MAIN_PACKAGE "org/tinyb"
jobject get_bluetooth_type(JNIEnv *env, const char *field_name)
{
jclass b_type_enum = jau::search_class(env, JAVA_MAIN_PACKAGE "/BluetoothType");
jfieldID b_type_field = jau::search_field(env, b_type_enum, field_name, "L" JAVA_MAIN_PACKAGE "/BluetoothType;", true);
jobject result = env->GetStaticObjectField(b_type_enum, b_type_field);
env->DeleteLocalRef(b_type_enum);
return result;
}
void raise_java_exception(JNIEnv *env, const direct_bt::BluetoothException &e, const char* file, int line) {
jau::print_native_caught_exception_fwd2java(e, file, line);
env->ThrowNew(env->FindClass("org/tinyb/BluetoothException"), e.what());
}
void raise_java_exception(JNIEnv *env, const tinyb::BluetoothException &e, const char* file, int line) {
jau::print_native_caught_exception_fwd2java(e, file, line);
env->ThrowNew(env->FindClass("org/tinyb/BluetoothException"), e.what());
}
static std::string _unknown_exception_type_msg("Unknown exception type");
void rethrow_and_raise_java_exception_impl(JNIEnv *env, const char* file, int line) {
// std::exception_ptr e = std::current_exception();
try {
// std::rethrow_exception(e);
throw; // re-throw current exception
} catch (const std::bad_alloc &e) {
jau::raise_java_exception(env, e, file, line);
} catch (const jau::OutOfMemoryError &e) {
jau::raise_java_exception(env, e, file, line);
} catch (const jau::InternalError &e) {
jau::raise_java_exception(env, e, file, line);
} catch (const jau::NullPointerException &e) {
jau::raise_java_exception(env, e, file, line);
} catch (const jau::IllegalArgumentException &e) {
jau::raise_java_exception(env, e, file, line);
} catch (const jau::IllegalStateException &e) {
jau::raise_java_exception(env, e, file, line);
} catch (const jau::UnsupportedOperationException &e) {
jau::raise_java_exception(env, e, file, line);
} catch (const jau::IndexOutOfBoundsException &e) {
jau::raise_java_exception(env, e, file, line);
} catch (const direct_bt::BluetoothException &e) {
raise_java_exception(env, e, file, line);
} catch (const tinyb::BluetoothException &e) {
raise_java_exception(env, e, file, line);
} catch (const jau::RuntimeException &e) {
jau::raise_java_exception(env, e, file, line);
} catch (const std::runtime_error &e) {
jau::raise_java_exception(env, e, file, line);
} catch (const std::invalid_argument &e) {
jau::raise_java_exception(env, e, file, line);
} catch (const std::exception &e) {
jau::raise_java_exception(env, e, file, line);
} catch (const std::string &msg) {
jau::print_native_caught_exception_fwd2java(msg, file, line);
env->ThrowNew(env->FindClass("java/lang/Error"), msg.c_str());
} catch (const char *msg) {
jau::print_native_caught_exception_fwd2java(msg, file, line);
env->ThrowNew(env->FindClass("java/lang/Error"), msg);
} catch (...) {
jau::print_native_caught_exception_fwd2java(_unknown_exception_type_msg, file, line);
env->ThrowNew(env->FindClass("java/lang/Error"), _unknown_exception_type_msg.c_str());
}
}
|