2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-23 02:17:20 +00:00

79 lines
2.5 KiB
Java
Raw Normal View History

2014-11-16 23:14:06 -08:00
/*
* Copyright 2014 Albert Vaca Cintora <albertvaka@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License or (at your option) version 3 or any later version
* accepted by the membership of KDE e.V. (or its successor approved
* by the membership of KDE e.V.), which shall act as a proxy
* defined in Section 14 of version 3 of the license.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.kde.kdeconnect.Backends;
2013-06-17 12:23:08 +02:00
import org.kde.kdeconnect.Device;
import org.kde.kdeconnect.NetworkPackage;
2013-06-17 12:23:08 +02:00
import java.security.PrivateKey;
import java.security.PublicKey;
2013-06-17 12:23:08 +02:00
import java.util.ArrayList;
public abstract class BaseLink {
2013-06-17 12:23:08 +02:00
private final BaseLinkProvider linkProvider;
private final String deviceId;
private final ArrayList<PackageReceiver> receivers = new ArrayList<>();
protected PrivateKey privateKey;
protected BaseLink(String deviceId, BaseLinkProvider linkProvider) {
this.linkProvider = linkProvider;
2013-08-07 10:44:52 +02:00
this.deviceId = deviceId;
}
public String getDeviceId() {
return deviceId;
}
public void setPrivateKey(PrivateKey key) {
privateKey = key;
}
public BaseLinkProvider getLinkProvider() {
return linkProvider;
}
public interface PackageReceiver {
void onPackageReceived(NetworkPackage np);
}
2013-06-17 12:23:08 +02:00
public void addPackageReceiver(PackageReceiver pr) {
2013-06-17 12:23:08 +02:00
receivers.add(pr);
}
public void removePackageReceiver(PackageReceiver pr) {
2013-06-17 12:23:08 +02:00
receivers.remove(pr);
}
2013-06-18 03:05:32 +02:00
//Should be called from a background thread listening to packages
protected void packageReceived(NetworkPackage np) {
for(PackageReceiver pr : receivers) {
pr.onPackageReceived(np);
2013-06-17 12:23:08 +02:00
}
}
//TO OVERRIDE, should be sync
public abstract void sendPackage(NetworkPackage np,Device.SendPackageStatusCallback callback);
public abstract void sendPackageEncrypted(NetworkPackage np,Device.SendPackageStatusCallback callback, PublicKey key);
2013-06-17 12:23:08 +02:00
}