/* * Copyright 2014 Albert Vaca Cintora * * 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 . */ package org.kde.kdeconnect.Backends; import org.kde.kdeconnect.NetworkPackage; import java.security.PrivateKey; import java.security.PublicKey; import java.util.ArrayList; public abstract class BaseLink { private final BaseLinkProvider linkProvider; private final String deviceId; private final ArrayList receivers = new ArrayList(); protected PrivateKey privateKey; protected BaseLink(String deviceId, BaseLinkProvider linkProvider) { this.linkProvider = linkProvider; this.deviceId = deviceId; } public String getDeviceId() { return deviceId; } public void setPrivateKey(PrivateKey key) { privateKey = key; } public BaseLinkProvider getLinkProvider() { return linkProvider; } public interface PackageReceiver { public void onPackageReceived(NetworkPackage np); } public void addPackageReceiver(PackageReceiver pr) { receivers.add(pr); } public void removePackageReceiver(PackageReceiver pr) { receivers.remove(pr); } //Should be called from a background thread listening to packages protected void packageReceived(NetworkPackage np) { for(PackageReceiver pr : receivers) { pr.onPackageReceived(np); } } //TO OVERRIDE, should be sync public abstract boolean sendPackage(NetworkPackage np); public abstract boolean sendPackageEncrypted(NetworkPackage np, PublicKey key); }