bt.torrent.DefaultTorrentDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bt-core Show documentation
Show all versions of bt-core Show documentation
BitTorrent Client Library (Core)
/*
* Copyright (c) 2016—2017 Andrei Tomashpolskiy and individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package bt.torrent;
import bt.data.DataDescriptor;
import bt.event.EventSink;
import bt.metainfo.TorrentId;
class DefaultTorrentDescriptor implements TorrentDescriptor {
private final TorrentId torrentId;
private final EventSink eventSink;
// !! this can be null in case with magnets (and in the beginning of processing) !!
private volatile DataDescriptor dataDescriptor;
private volatile boolean active;
DefaultTorrentDescriptor(TorrentId torrentId, EventSink eventSink) {
this.torrentId = torrentId;
this.eventSink = eventSink;
}
@Override
public boolean isActive() {
return active;
}
@Override
public synchronized void start() {
active = true;
eventSink.fireTorrentStarted(torrentId);
}
@Override
public synchronized void stop() {
active = false;
eventSink.fireTorrentStopped(torrentId);
}
@Override
public void complete() {
// do nothing
// TODO: should this be deprecated in TorrentDescriptor interface?
}
@Override
public DataDescriptor getDataDescriptor() {
return dataDescriptor;
}
void setDataDescriptor(DataDescriptor dataDescriptor) {
this.dataDescriptor = dataDescriptor;
}
}