summaryrefslogtreecommitdiff
path: root/tests/079-phantom/src/Main.java
blob: 9c459c9d9cd2f2eea013a2b2ae5c63075b7fd7a1 (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
/*
 * Copyright (C) 2009 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    Bitmap mBitmap1, mBitmap2, mBitmap3, mBitmap4;

    public static void sleep(int ms) {
        try {
            Thread.sleep(ms);
        } catch (InterruptedException ie) {
            System.err.println("sleep interrupted");
        }
    }

    public static void main(String args[]) {
        System.out.println("start");

        Main main = new Main();
        main.run();

        sleep(1000);
        System.out.println("done");
    }

    public void run() {
        createBitmaps();

        System.gc();
        sleep(250);

        mBitmap2.drawAt(0, 0);

        System.out.println("nulling 1");
        mBitmap1 = null;
        System.gc();
        sleep(500);

        System.out.println("nulling 2");
        mBitmap2 = null;
        System.gc();
        sleep(500);

        System.out.println("nulling 3");
        mBitmap3 = null;
        System.gc();
        sleep(500);

        System.out.println("nulling 4");
        mBitmap4 = null;
        System.gc();
        sleep(500);

        Bitmap.shutDown();
    }

    /*
     * Create bitmaps.
     *
     * bitmap1 is 10x10 and unique
     * bitmap2 and bitmap3 are 20x20 and share the same storage.
     * bitmap4 is just another reference to bitmap3
     *
     * When we return there should be no local refs lurking on the stack.
     */
    public void createBitmaps() {
        Bitmap.NativeWrapper dataA = Bitmap.allocNativeStorage(10, 10);
        Bitmap.NativeWrapper dataB = Bitmap.allocNativeStorage(20, 20);
        mBitmap1 = new Bitmap("one", 10, 10, dataA);
        mBitmap2 = new Bitmap("two", 20, 20, dataB);
        mBitmap3 = mBitmap4 = new Bitmap("three/four", 20, 20, dataB);
    }
}