229 lines
5.4 KiB
Java
229 lines
5.4 KiB
Java
package ctbrec.ui;
|
|
|
|
import java.io.IOException;
|
|
import java.util.List;
|
|
import java.util.concurrent.ExecutionException;
|
|
|
|
import javax.xml.bind.JAXBException;
|
|
|
|
import com.iheartradio.m3u8.ParseException;
|
|
import com.iheartradio.m3u8.PlaylistException;
|
|
import com.squareup.moshi.JsonReader;
|
|
import com.squareup.moshi.JsonWriter;
|
|
|
|
import ctbrec.Model;
|
|
import ctbrec.recorder.download.Download;
|
|
import ctbrec.recorder.download.StreamSource;
|
|
import ctbrec.sites.Site;
|
|
import javafx.beans.property.BooleanProperty;
|
|
import javafx.beans.property.SimpleBooleanProperty;
|
|
|
|
/**
|
|
* Just a wrapper for Model, which augments it with JavaFX value binding properties, so that UI widgets get updated proeprly
|
|
*/
|
|
public class JavaFxModel implements Model {
|
|
private transient BooleanProperty onlineProperty = new SimpleBooleanProperty();
|
|
private transient BooleanProperty recordingProperty = new SimpleBooleanProperty();
|
|
private transient BooleanProperty pausedProperty = new SimpleBooleanProperty();
|
|
private Model delegate;
|
|
|
|
public JavaFxModel(Model delegate) {
|
|
this.delegate = delegate;
|
|
}
|
|
|
|
@Override
|
|
public String getUrl() {
|
|
return delegate.getUrl();
|
|
}
|
|
|
|
@Override
|
|
public void setUrl(String url) {
|
|
delegate.setUrl(url);
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return delegate.getName();
|
|
}
|
|
|
|
@Override
|
|
public void setName(String name) {
|
|
delegate.setName(name);
|
|
}
|
|
|
|
@Override
|
|
public String getSanitizedNamed() {
|
|
return delegate.getSanitizedNamed();
|
|
}
|
|
|
|
@Override
|
|
public String getPreview() {
|
|
return delegate.getPreview();
|
|
}
|
|
|
|
@Override
|
|
public void setPreview(String preview) {
|
|
delegate.setPreview(preview);
|
|
}
|
|
|
|
@Override
|
|
public List<String> getTags() {
|
|
return delegate.getTags();
|
|
}
|
|
|
|
@Override
|
|
public void setTags(List<String> tags) {
|
|
delegate.setTags(tags);
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return delegate.hashCode();
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object obj) {
|
|
return delegate.equals(obj);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return delegate.toString();
|
|
}
|
|
|
|
public BooleanProperty getOnlineProperty() {
|
|
return onlineProperty;
|
|
}
|
|
|
|
public BooleanProperty getRecordingProperty() {
|
|
return recordingProperty;
|
|
}
|
|
|
|
public BooleanProperty getPausedProperty() {
|
|
return pausedProperty;
|
|
}
|
|
|
|
public Model getDelegate() {
|
|
return delegate;
|
|
}
|
|
|
|
@Override
|
|
public boolean isOnline() throws IOException, ExecutionException, InterruptedException {
|
|
return delegate.isOnline();
|
|
}
|
|
|
|
@Override
|
|
public boolean isOnline(boolean ignoreCache) throws IOException, ExecutionException, InterruptedException {
|
|
return delegate.isOnline(ignoreCache);
|
|
}
|
|
|
|
@Override
|
|
public State getOnlineState(boolean failFast) throws IOException, ExecutionException {
|
|
return delegate.getOnlineState(failFast);
|
|
}
|
|
|
|
@Override
|
|
public List<StreamSource> getStreamSources() throws IOException, ExecutionException, ParseException, PlaylistException, JAXBException {
|
|
return delegate.getStreamSources();
|
|
}
|
|
|
|
@Override
|
|
public void invalidateCacheEntries() {
|
|
delegate.invalidateCacheEntries();
|
|
}
|
|
|
|
@Override
|
|
public void receiveTip(Double tokens) throws IOException {
|
|
SiteUiFactory.getUi(getSite()).login();
|
|
delegate.receiveTip(tokens);
|
|
}
|
|
|
|
@Override
|
|
public int[] getStreamResolution(boolean b) throws ExecutionException {
|
|
return delegate.getStreamResolution(b);
|
|
}
|
|
|
|
@Override
|
|
public boolean follow() throws IOException {
|
|
SiteUiFactory.getUi(getSite()).login();
|
|
return delegate.follow();
|
|
}
|
|
|
|
@Override
|
|
public boolean unfollow() throws IOException {
|
|
SiteUiFactory.getUi(getSite()).login();
|
|
return delegate.unfollow();
|
|
}
|
|
|
|
@Override
|
|
public void setSite(Site site) {
|
|
delegate.setSite(site);
|
|
}
|
|
|
|
@Override
|
|
public Site getSite() {
|
|
return delegate.getSite();
|
|
}
|
|
|
|
@Override
|
|
public void readSiteSpecificData(JsonReader reader) throws IOException {
|
|
delegate.readSiteSpecificData(reader);
|
|
}
|
|
|
|
@Override
|
|
public void writeSiteSpecificData(JsonWriter writer) throws IOException {
|
|
delegate.writeSiteSpecificData(writer);
|
|
}
|
|
|
|
@Override
|
|
public String getDescription() {
|
|
return delegate.getDescription();
|
|
}
|
|
|
|
@Override
|
|
public void setDescription(String description) {
|
|
delegate.setDescription(description);
|
|
}
|
|
|
|
@Override
|
|
public int getStreamUrlIndex() {
|
|
return delegate.getStreamUrlIndex();
|
|
}
|
|
|
|
@Override
|
|
public void setStreamUrlIndex(int streamUrlIndex) {
|
|
delegate.setStreamUrlIndex(streamUrlIndex);
|
|
}
|
|
|
|
@Override
|
|
public boolean isSuspended() {
|
|
return delegate.isSuspended();
|
|
}
|
|
|
|
@Override
|
|
public void setSuspended(boolean suspended) {
|
|
delegate.setSuspended(suspended);
|
|
pausedProperty.set(suspended);
|
|
}
|
|
|
|
@Override
|
|
public String getDisplayName() {
|
|
return delegate.getDisplayName();
|
|
}
|
|
|
|
@Override
|
|
public void setDisplayName(String name) {
|
|
delegate.setDisplayName(name);
|
|
}
|
|
|
|
@Override
|
|
public int compareTo(Model o) {
|
|
return delegate.compareTo(o);
|
|
}
|
|
|
|
@Override
|
|
public Download createDownload() {
|
|
return delegate.createDownload();
|
|
}
|
|
}
|