summaryrefslogtreecommitdiffstats
path: root/java/direct_bt/tinyb/DBTNativeDownlink.java
blob: b0b8705772314f0b61008a77b7c108fb6aa89612 (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
/**
 * 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.
 */

package direct_bt.tinyb;

import org.tinyb.BluetoothFactory;

public abstract class DBTNativeDownlink
{
    protected long nativeInstance;
    private boolean isValid;

    static {
        BluetoothFactory.checkInitialized();
    }

    protected DBTNativeDownlink(final long nativeInstance)
    {
        this.nativeInstance = nativeInstance;
        isValid = true;
        initNativeJavaObject(nativeInstance);
    }

    protected final boolean isValid() { return isValid; }

    @Override
    protected void finalize()
    {
        delete();
    }

    /**
     * Deletes the native instance in the following order
     * <ol>
     *   <li>Removes this java reference from the native instance</li>
     *   <li>Deletes the native instance via {@link #deleteImpl()}</li>
     *   <li>Sets the nativeInstance := 0</li>
     * </ol>
     */
    public synchronized void delete() {
        if (!isValid) {
            return;
        }
        isValid = false;
        deleteNativeJavaObject(nativeInstance);
        deleteImpl();
        nativeInstance = 0;
    }

    /**
     * Called from native JavaUplink dtor -> JavaGlobalObj dtor,
     * i.e. native instance destructed in native land.
     */
    private synchronized void notifyDeleted() {
        // System.err.println("***** notifyDeleted: "+getClass().getSimpleName()+": valid "+isValid+" -> false, handle 0x"+Long.toHexString(nativeInstance)+" -> null");
        isValid = false;
        nativeInstance = 0;
    }

    /**
     * Deletes the native instance.
     * <p>
     * Called via {@link #delete()} and at this point this java reference
     * has been removed from the native instance.
     * </p>
     */
    protected abstract void deleteImpl();

    private native void initNativeJavaObject(final long nativeInstance);
    private native void deleteNativeJavaObject(final long nativeInstance);
}