blob: 0133cf601463b5bec6cdea73c7ac9e8e972ab2bb [file] [log] [blame]
Mike Lockwood98ef64e2010-06-29 16:42:13 -04001/*
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
Mike Lockwood0cd01362010-12-30 11:54:33 -050017package android.mtp;
Mike Lockwood98ef64e2010-06-29 16:42:13 -040018
19import android.util.Log;
20
21/**
22 * Java wrapper for MTP/PTP support as USB responder.
23 * {@hide}
24 */
25public class MtpServer {
26
Mike Lockwooda3f85142011-03-17 09:43:50 -040027 private final Object mLock = new Object();
28 private boolean mStarted;
29
Mike Lockwood98ef64e2010-06-29 16:42:13 -040030 private static final String TAG = "MtpServer";
31
32 static {
33 System.loadLibrary("media_jni");
34 }
35
Mike Lockwood7d40d422011-06-21 08:27:06 -040036 public MtpServer(MtpDatabase database, boolean usePtp) {
37 native_setup(database, usePtp);
Mike Lockwood98ef64e2010-06-29 16:42:13 -040038 }
39
Mike Lockwood98ef64e2010-06-29 16:42:13 -040040 public void start() {
Mike Lockwooda3f85142011-03-17 09:43:50 -040041 synchronized (mLock) {
42 native_start();
43 mStarted = true;
44 }
Mike Lockwood98ef64e2010-06-29 16:42:13 -040045 }
46
47 public void stop() {
Mike Lockwooda3f85142011-03-17 09:43:50 -040048 synchronized (mLock) {
49 if (mStarted) {
50 native_stop();
51 mStarted = false;
52 }
53 }
Mike Lockwood98ef64e2010-06-29 16:42:13 -040054 }
55
Mike Lockwoodbe125a52010-07-12 18:54:16 -040056 public void sendObjectAdded(int handle) {
57 native_send_object_added(handle);
58 }
59
60 public void sendObjectRemoved(int handle) {
61 native_send_object_removed(handle);
62 }
63
Mike Lockwoodb239b6832011-04-05 10:21:27 -040064 public void addStorage(MtpStorage storage) {
65 native_add_storage(storage);
Mike Lockwood66e57f62011-02-18 13:24:01 -050066 }
67
Mike Lockwoodb239b6832011-04-05 10:21:27 -040068 public void removeStorage(MtpStorage storage) {
69 native_remove_storage(storage.getStorageId());
70 }
71
Mike Lockwood7d40d422011-06-21 08:27:06 -040072 private native final void native_setup(MtpDatabase database, boolean usePtp);
Mike Lockwood98ef64e2010-06-29 16:42:13 -040073 private native final void native_start();
74 private native final void native_stop();
Mike Lockwoodbe125a52010-07-12 18:54:16 -040075 private native final void native_send_object_added(int handle);
76 private native final void native_send_object_removed(int handle);
Mike Lockwoodb239b6832011-04-05 10:21:27 -040077 private native final void native_add_storage(MtpStorage storage);
78 private native final void native_remove_storage(int storageId);
Mike Lockwood98ef64e2010-06-29 16:42:13 -040079}