mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-05 19:19:39 -06:00
151 lines
5.1 KiB
C++
151 lines
5.1 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2018 *
|
|
* *
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of this *
|
|
* software and associated documentation files (the "Software"), to deal in the Software *
|
|
* without restriction, including without limitation the rights to use, copy, modify, *
|
|
* merge, publish, distribute, sublicense, and/or sell copies of the Software, and to *
|
|
* permit persons to whom the Software is furnished to do so, subject to the following *
|
|
* conditions: *
|
|
* *
|
|
* The above copyright notice and this permission notice shall be included in all copies *
|
|
* or substantial portions of the Software. *
|
|
* *
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, *
|
|
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A *
|
|
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT *
|
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF *
|
|
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE *
|
|
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
|
|
****************************************************************************************/
|
|
|
|
#ifndef __OPENSPACE_MODULE_SYNC___TORRENTCLIENT___H__
|
|
#define __OPENSPACE_MODULE_SYNC___TORRENTCLIENT___H__
|
|
|
|
#include <ghoul/misc/exception.h>
|
|
|
|
#include <functional>
|
|
|
|
namespace openspace {
|
|
|
|
struct TorrentError : public ghoul::RuntimeError {
|
|
/**
|
|
* Creates the SpecificationError exception instance.
|
|
* \param result The offending TestResult that is passed on
|
|
* \param component The component that initiated the specification test
|
|
* \pre \p result%'s TestResult::success must be \c false
|
|
*/
|
|
TorrentError(std::string component);
|
|
};
|
|
|
|
class TorrentClientBase {
|
|
public:
|
|
struct TorrentProgress {
|
|
bool finished = false;
|
|
bool nTotalBytesKnown = false;
|
|
size_t nTotalBytes = 0;
|
|
size_t nDownloadedBytes = 0;
|
|
};
|
|
|
|
virtual ~TorrentClientBase() = default;
|
|
|
|
using TorrentProgressCallback = std::function<void(TorrentProgress)>;
|
|
|
|
using TorrentId = int32_t;
|
|
|
|
virtual void initialize() = 0;
|
|
virtual TorrentId addTorrentFile(std::string torrentFile,
|
|
std::string destination,
|
|
TorrentProgressCallback cb) = 0;
|
|
|
|
virtual TorrentId addMagnetLink(std::string magnetLink,
|
|
std::string destination,
|
|
TorrentProgressCallback cb) = 0;
|
|
|
|
virtual void removeTorrent(TorrentId id) = 0;
|
|
virtual void pollAlerts() = 0;
|
|
};
|
|
|
|
} // namespace openspace
|
|
|
|
#ifdef SYNC_USE_LIBTORRENT
|
|
|
|
#include <atomic>
|
|
#include <string>
|
|
#include <memory>
|
|
#include <thread>
|
|
#include <mutex>
|
|
#include <unordered_map>
|
|
|
|
#include "libtorrent/torrent_handle.hpp"
|
|
|
|
namespace libtorrent { class session; }
|
|
|
|
namespace openspace {
|
|
|
|
class TorrentClient : public TorrentClientBase {
|
|
public:
|
|
TorrentClient();
|
|
virtual ~TorrentClient();
|
|
|
|
void initialize() override;
|
|
TorrentId addTorrentFile(std::string torrentFile,
|
|
std::string destination,
|
|
TorrentProgressCallback cb) override;
|
|
|
|
TorrentId addMagnetLink(std::string magnetLink,
|
|
std::string destination,
|
|
TorrentProgressCallback cb) override;
|
|
|
|
void removeTorrent(TorrentId id) override;
|
|
void pollAlerts() override;
|
|
|
|
private:
|
|
struct Torrent {
|
|
TorrentId id;
|
|
libtorrent::torrent_handle handle;
|
|
TorrentProgressCallback callback;
|
|
};
|
|
|
|
void notify(TorrentId id);
|
|
|
|
std::unordered_map<TorrentId, Torrent> _torrents;
|
|
std::unique_ptr<libtorrent::session> _session;
|
|
std::thread _torrentThread;
|
|
std::mutex _mutex;
|
|
std::atomic_bool _keepRunning;
|
|
};
|
|
|
|
} // namespace openspace
|
|
|
|
#else // SYNC_USE_LIBTORRENT
|
|
|
|
namespace openspace {
|
|
|
|
class TorrentClient : public TorrentClientBase {
|
|
public:
|
|
TorrentClient();
|
|
virtual ~TorrentClient();
|
|
|
|
void initialize() override;
|
|
TorrentId addTorrentFile(std::string torrentFile,
|
|
std::string destination,
|
|
TorrentProgressCallback cb) override;
|
|
|
|
TorrentId addMagnetLink(std::string magnetLink,
|
|
std::string destination,
|
|
TorrentProgressCallback cb) override;
|
|
|
|
void removeTorrent(TorrentId id) override;
|
|
void pollAlerts() override;
|
|
};
|
|
|
|
} // namespace openspace
|
|
|
|
#endif // SYNC_USE_LIBTORRENT
|
|
|
|
#endif // __OPENSPACE_MODULE_SYNC___TORRENTCLIENT___H__
|