blob: f561cc0bbbad9c3fa9afcc9439a05e2129857e6a [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
Mike Lockwood98ef64e2010-06-29 16:42:13 -040019/**
20 * Java wrapper for MTP/PTP support as USB responder.
21 * {@hide}
22 */
Mike Lockwooddcc31942011-07-11 15:04:38 -040023public class MtpServer implements Runnable {
Mike Lockwood98ef64e2010-06-29 16:42:13 -040024
Mike Lockwooddcc31942011-07-11 15:04:38 -040025 private int mNativeContext; // accessed by native methods
Mike Lockwood98ef64e2010-06-29 16:42:13 -040026
27 static {
28 System.loadLibrary("media_jni");
29 }
30
Mike Lockwood7d40d422011-06-21 08:27:06 -040031 public MtpServer(MtpDatabase database, boolean usePtp) {
32 native_setup(database, usePtp);
Mike Lockwood98ef64e2010-06-29 16:42:13 -040033 }
34
Mike Lockwood98ef64e2010-06-29 16:42:13 -040035 public void start() {
Mike Lockwooddcc31942011-07-11 15:04:38 -040036 Thread thread = new Thread(this, "MtpServer");
37 thread.start();
Mike Lockwood98ef64e2010-06-29 16:42:13 -040038 }
39
Mike Lockwooddcc31942011-07-11 15:04:38 -040040 @Override
41 public void run() {
42 native_run();
43 native_cleanup();
Mike Lockwood98ef64e2010-06-29 16:42:13 -040044 }
45
Mike Lockwoodbe125a52010-07-12 18:54:16 -040046 public void sendObjectAdded(int handle) {
47 native_send_object_added(handle);
48 }
49
50 public void sendObjectRemoved(int handle) {
51 native_send_object_removed(handle);
52 }
53
Mike Lockwoodb239b6832011-04-05 10:21:27 -040054 public void addStorage(MtpStorage storage) {
55 native_add_storage(storage);
Mike Lockwood66e57f62011-02-18 13:24:01 -050056 }
57
Mike Lockwoodb239b6832011-04-05 10:21:27 -040058 public void removeStorage(MtpStorage storage) {
59 native_remove_storage(storage.getStorageId());
60 }
61
Mike Lockwood7d40d422011-06-21 08:27:06 -040062 private native final void native_setup(MtpDatabase database, boolean usePtp);
Mike Lockwooddcc31942011-07-11 15:04:38 -040063 private native final void native_run();
64 private native final void native_cleanup();
Mike Lockwoodbe125a52010-07-12 18:54:16 -040065 private native final void native_send_object_added(int handle);
66 private native final void native_send_object_removed(int handle);
Mike Lockwoodb239b6832011-04-05 10:21:27 -040067 private native final void native_add_storage(MtpStorage storage);
68 private native final void native_remove_storage(int storageId);
Mike Lockwood98ef64e2010-06-29 16:42:13 -040069}