Skip to content

Commit

Permalink
fix #483: add ADB
Browse files Browse the repository at this point in the history
  • Loading branch information
ahadas committed May 19, 2023
1 parent ed5066f commit b5fb7dd
Show file tree
Hide file tree
Showing 12 changed files with 1,030 additions and 0 deletions.
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
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-commons-util')
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': 'Library with configuration tools',
'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,90 @@
/**
* 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 javax.swing.JFrame;

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.protocol.ui.ProtocolPanelProvider;
import com.mucommander.protocol.ui.ServerPanel;
import com.mucommander.protocol.ui.ServerPanelListener;

public class Activator implements BundleActivator {

private ServiceRegistration<FileProtocolService> serviceRegistration;
private ServiceRegistration<ProtocolPanelProvider> uiServiceRegistration;

@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"));
}
};
ProtocolPanelProvider panelProvider = new ProtocolPanelProvider() {
@Override
public String getSchema() {
return "adb";
}

@Override
public ServerPanel get(ServerPanelListener listener, JFrame mainFrame) {
return new AdbPanel(listener, mainFrame);
}

@Override
public int priority() {
return 5000;
}

@Override
public Class<? extends ServerPanel> getPanelClass() {
return AdbPanel.class;
}
};
serviceRegistration = context.registerService(FileProtocolService.class, service, null);
uiServiceRegistration = context.registerService(ProtocolPanelProvider.class, panelProvider, null);
}

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

0 comments on commit b5fb7dd

Please sign in to comment.