Java tutorial
/* * Created by Angel Leon (@gubatron), Alden Torres (aldenml) * Copyright (c) 2011, 2012, FrostWire(R). All rights reserved. * 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 com.frostwire.search; import java.io.FileInputStream; import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicBoolean; import org.apache.commons.io.IOUtils; import org.gudy.azureus2.core3.torrentdownloader.TorrentDownloader; import org.gudy.azureus2.core3.torrentdownloader.TorrentDownloaderCallBackInterface; import org.gudy.azureus2.core3.torrentdownloader.TorrentDownloaderFactory; import com.limegroup.gnutella.settings.SharingSettings; /** * * @author gubatron * @author aldenml * */ public class VuzeMagnetDownloader implements MagnetDownloader { public byte[] download(String magnet, int timeout) { CountDownLatch signal = new CountDownLatch(1); String saveDir = SharingSettings.TORRENTS_DIR_SETTING.getValue().getAbsolutePath(); TorrentDownloaderListener listener = new TorrentDownloaderListener(signal); TorrentDownloader td = TorrentDownloaderFactory.create(listener, magnet, null, saveDir); td.start(); try { signal.await(timeout, TimeUnit.MILLISECONDS); } catch (InterruptedException e) { // ignore } if (listener.getData() == null) { td.cancel(); } return listener.getData(); } private final class TorrentDownloaderListener implements TorrentDownloaderCallBackInterface { private final AtomicBoolean finished = new AtomicBoolean(false); private final CountDownLatch signal; private byte[] data; public TorrentDownloaderListener(CountDownLatch signal) { this.signal = signal; } public byte[] getData() { return data; } public void TorrentDownloaderEvent(int state, final TorrentDownloader inf) { if (state == TorrentDownloader.STATE_FINISHED && finished.compareAndSet(false, true)) { try { data = IOUtils.toByteArray(new FileInputStream(inf.getFile())); } catch (Throwable e) { // ignore } signal.countDown(); } else if (state == TorrentDownloader.STATE_ERROR) { signal.countDown(); } } } }