blob: 44c8b0bde4d9ca5681583381cd03f6777c2f5cdc [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
Ashok Bhate2e59322013-12-17 19:04:19 +000025 private long mNativeContext; // accessed by native methods
Daichi Hironofe259312016-04-06 13:00:22 +090026 private final MtpDatabase mDatabase;
Mike Lockwood98ef64e2010-06-29 16:42:13 -040027
28 static {
29 System.loadLibrary("media_jni");
30 }
31
Alex Klyubinabdc2b42016-12-21 11:19:52 -080032 public MtpServer(
33 MtpDatabase database,
34 boolean usePtp,
35 String deviceInfoManufacturer,
36 String deviceInfoModel,
37 String deviceInfoDeviceVersion,
38 String deviceInfoSerialNumber) {
Daichi Hironofe259312016-04-06 13:00:22 +090039 mDatabase = database;
Alex Klyubinabdc2b42016-12-21 11:19:52 -080040 native_setup(
41 database,
42 usePtp,
43 deviceInfoManufacturer,
44 deviceInfoModel,
45 deviceInfoDeviceVersion,
46 deviceInfoSerialNumber);
Mike Lockwood56c85242014-03-07 13:29:08 -080047 database.setServer(this);
Mike Lockwood98ef64e2010-06-29 16:42:13 -040048 }
49
Mike Lockwood98ef64e2010-06-29 16:42:13 -040050 public void start() {
Mike Lockwooddcc31942011-07-11 15:04:38 -040051 Thread thread = new Thread(this, "MtpServer");
52 thread.start();
Mike Lockwood98ef64e2010-06-29 16:42:13 -040053 }
54
Mike Lockwooddcc31942011-07-11 15:04:38 -040055 @Override
56 public void run() {
57 native_run();
58 native_cleanup();
Daichi Hironofe259312016-04-06 13:00:22 +090059 mDatabase.close();
Mike Lockwood98ef64e2010-06-29 16:42:13 -040060 }
61
Mike Lockwoodbe125a52010-07-12 18:54:16 -040062 public void sendObjectAdded(int handle) {
63 native_send_object_added(handle);
64 }
65
66 public void sendObjectRemoved(int handle) {
67 native_send_object_removed(handle);
68 }
69
Mike Lockwood56c85242014-03-07 13:29:08 -080070 public void sendDevicePropertyChanged(int property) {
71 native_send_device_property_changed(property);
72 }
73
Mike Lockwoodb239b6832011-04-05 10:21:27 -040074 public void addStorage(MtpStorage storage) {
75 native_add_storage(storage);
Mike Lockwood66e57f62011-02-18 13:24:01 -050076 }
77
Mike Lockwoodb239b6832011-04-05 10:21:27 -040078 public void removeStorage(MtpStorage storage) {
79 native_remove_storage(storage.getStorageId());
80 }
81
Jerry Zhangbb598ee2016-10-24 14:35:08 -070082 public static void configure(boolean usePtp) {
83 native_configure(usePtp);
84 }
85
86 public static native final void native_configure(boolean usePtp);
Alex Klyubinabdc2b42016-12-21 11:19:52 -080087 private native final void native_setup(
88 MtpDatabase database,
89 boolean usePtp,
90 String deviceInfoManufacturer,
91 String deviceInfoModel,
92 String deviceInfoDeviceVersion,
93 String deviceInfoSerialNumber);
Mike Lockwooddcc31942011-07-11 15:04:38 -040094 private native final void native_run();
95 private native final void native_cleanup();
Mike Lockwoodbe125a52010-07-12 18:54:16 -040096 private native final void native_send_object_added(int handle);
97 private native final void native_send_object_removed(int handle);
Mike Lockwood56c85242014-03-07 13:29:08 -080098 private native final void native_send_device_property_changed(int property);
Mike Lockwoodb239b6832011-04-05 10:21:27 -040099 private native final void native_add_storage(MtpStorage storage);
100 private native final void native_remove_storage(int storageId);
Mike Lockwood98ef64e2010-06-29 16:42:13 -0400101}