MtpServer.java revision f26a586c86b097f975e26fe526ead564ad011bd0
1/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.mtp;
18
19import android.util.Log;
20
21/**
22 * Java wrapper for MTP/PTP support as USB responder.
23 * {@hide}
24 */
25public class MtpServer {
26
27    private static final String TAG = "MtpServer";
28
29    static {
30        System.loadLibrary("media_jni");
31    }
32
33    public MtpServer(MtpDatabase database, String storagePath, long reserveSpace) {
34        native_setup(database, storagePath, reserveSpace);
35    }
36
37    public void start() {
38        native_start();
39    }
40
41    public void stop() {
42        native_stop();
43    }
44
45    public void sendObjectAdded(int handle) {
46        native_send_object_added(handle);
47    }
48
49    public void sendObjectRemoved(int handle) {
50        native_send_object_removed(handle);
51    }
52
53    public void setPtpMode(boolean usePtp) {
54        native_set_ptp_mode(usePtp);
55    }
56
57    // used by the JNI code
58    private int mNativeContext;
59
60    private native final void native_setup(MtpDatabase database, String storagePath,
61            long reserveSpace);
62    private native final void native_finalize();
63    private native final void native_start();
64    private native final void native_stop();
65    private native final void native_send_object_added(int handle);
66    private native final void native_send_object_removed(int handle);
67    private native final void native_set_ptp_mode(boolean usePtp);
68}
69