Files
OpenSpace/modules/sync/syncs/urlsynchronization.h
Alexander Bock 9b1143f02f Ubuntu 22.04 and GCC11 fixes (#2163)
* Update CEF version
* Update Ghoul
* Update SGCT
* Update codegen
* Remove warnings happening on Ubuntu 22.04 with GCC 11
* AppleClang warning fixes
* Compile fix for Ubuntu and MacOS
* Add Qt 6.2.3 to the CMAKE_PREFIX_PATH
2022-06-28 00:46:01 +02:00

101 lines
4.7 KiB
C++

/*****************************************************************************************
* *
* OpenSpace *
* *
* Copyright (c) 2014-2022 *
* *
* 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___URLSYNCHRONIZATION___H__
#define __OPENSPACE_MODULE_SYNC___URLSYNCHRONIZATION___H__
#include <openspace/util/resourcesynchronization.h>
#include <atomic>
#include <filesystem>
#include <string>
#include <thread>
#include <vector>
namespace openspace {
/**
* The UrlSynchronization will download one or more files by directly being provided with
* the list of URLs to the files that should be downloaded. The \c Override option in the
* Dictionary determines what should happen in a file with the same name and the same
* identifier has been previously downloaded.
*/
class UrlSynchronization : public ResourceSynchronization {
public:
/**
* The constructor that takes the parameter \p dictionary and the
* \p synchronizationRoot to the location that is used as the base to compute the
* final storage location. The provided list of URLs must not contain any duplicates.
*
* \param dictionary The parameter dictionary that contains all information that this
* UrlSynchronization needs to download the provided files
* \param synchronizationRoot The base location based off which the final placement
* is calculated
*/
UrlSynchronization(const ghoul::Dictionary& dictionary,
std::filesystem::path synchronizationRoot);
/// Contructor that will terminate the synchronization thread if it is still running
~UrlSynchronization() override;
/**
* Returns the location to which files downloaded through this ResourceSynchronization
* are saved.
*
* \return The location for files created by this class
*/
std::filesystem::path directory() const override;
/// Starts the synchronization for this ResourceSynchronization
void start() override;
/// Cancels any ongoing synchronization of this ResourceSynchronization
void cancel() override;
std::string generateUid() override;
static documentation::Documentation Documentation();
private:
/// The list of URLs that will be downloaded
std::vector<std::string> _urls;
/// Setting whether existing files should be ignored (false) or overwritten (true)
bool _forceOverride = false;
/// An optional filename that might overwrite the storage destination. This is only
/// valid if a single URL is specified
std::string _filename;
/// Contains a flag whether the current transfer should be cancelled
std::atomic_bool _shouldCancel = false;
// The thread that will be doing the synchronization
std::thread _syncThread;
};
} // namespace openspace
#endif // __OPENSPACE_MODULE_SYNC___URLSYNCHRONIZATION___H__