Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ADB #919

Merged
merged 3 commits into from
May 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ dependencies {
osgiRuntime project('mucommander-process')
osgiRuntime project('mucommander-translator')

osgiRuntime project('mucommander-protocol-adb')
osgiRuntime project('mucommander-protocol-ftp')
osgiRuntime project('mucommander-protocol-sftp')
osgiRuntime project('mucommander-format-rar')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public interface ProcessListener {
* <code>processError</code> will be made past this call.
* @param returnValue the value returned by the process (return code).
*/
public void processDied(int returnValue);
default void processDied(int returnValue) {}

/**
* This method is called whenever the process sends data to its output streams (stdout or stderr).
Expand All @@ -40,7 +40,7 @@ public interface ProcessListener {
* </p>
* @param output contains the encoded process output.
*/
public void processOutput(String output);
default void processOutput(String output) {}

/**
* This method is called whenever the process sends data to its output streams (stdout or stderr).
Expand All @@ -52,5 +52,5 @@ public interface ProcessListener {
* @param offset offset in buffer at which the process' output starts.
* @param length length of the process' output in buffer.
*/
public void processOutput(byte[] buffer, int offset, int length);
default void processOutput(byte[] buffer, int offset, int length) {}
}
31 changes: 31 additions & 0 deletions mucommander-protocol-adb/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
repositories.mavenCentral()

dependencies {
api project(':mucommander-commons-file')
api project(':mucommander-process')
api project(':mucommander-protocol-api')
api project(':mucommander-core')
api project(':mucommander-translator')

comprise files('libs/jadb-v1.2.1.jar') // 'com.github.vidstige:jadb:v1.2.1'

testImplementation 'org.testng:testng:6.11'
}

jar {
from configurations.comprise.collect { it.isDirectory() ? it : zipTree(it) }
bnd ('Bundle-Name': 'muCommander-adb',
'Bundle-Vendor': 'muCommander',
'Bundle-Description': 'Android Debug Bridge file-protocol',
'Bundle-DocURL': 'https://www.mucommander.com',
'Export-Package': 'com.mucommander.commons.protocol.adb',
'Bundle-Activator': 'com.mucommander.commons.file.protocol.adb.Activator',
'Specification-Title': "muCommander",
'Specification-Vendor': "Arik Hadas",
'Specification-Version': project.version,
'Implementation-Title': "muCommander",
'Implementation-Vendor': "Arik Hadas",
'Implementation-Version': revision.substring(0, 7),
'Build-Date': new Date().format('yyyyMMdd'),
'Build-Url': "https://www.mucommander.com/version/nightly.xml")
}
Binary file added mucommander-protocol-adb/libs/jadb-v1.2.1.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
/**
* This file is part of muCommander, http://www.mucommander.com
*
* muCommander is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* muCommander is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package com.mucommander.commons.file.protocol.adb;

import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceRegistration;

import com.mucommander.commons.file.AuthenticationType;
import com.mucommander.commons.file.Credentials;
import com.mucommander.commons.file.DefaultSchemeHandler;
import com.mucommander.commons.file.DefaultSchemeParser;
import com.mucommander.commons.file.SchemeHandler;
import com.mucommander.commons.file.osgi.FileProtocolService;
import com.mucommander.commons.file.protocol.ProtocolProvider;
import com.mucommander.osgi.BrowsableItemsMenuService;

public class Activator implements BundleActivator {

private ServiceRegistration<FileProtocolService> serviceRegistration;
private ServiceRegistration<BrowsableItemsMenuService> menuRegistration;

@Override
public void start(BundleContext context) throws Exception {
FileProtocolService service = new FileProtocolService() {
@Override
public String getSchema() {
return "adb";
}

@Override
public ProtocolProvider getProtocolProvider() {
return new AdbProtocolProvider();
}

@Override
public SchemeHandler getSchemeHandler() {
return new DefaultSchemeHandler(new DefaultSchemeParser(), 21, "/", AuthenticationType.NO_AUTHENTICATION, new Credentials("anonymous", "anonymous_coward@mucommander.com"));
}
};
serviceRegistration = context.registerService(FileProtocolService.class, service, null);
menuRegistration = context.registerService(BrowsableItemsMenuService.class, AndroidMenu::new, null);
}

@Override
public void stop(BundleContext context) throws Exception {
serviceRegistration.unregister();
menuRegistration.unregister();
}
}